d96a86aa9e8ab73fd3b81d878ecaa669a4cfb1be
bernd VHosts können bearbeitet we...

bernd authored 17 years ago

1) <?php
2) 
3) require_once('session/start.php');
4) 
5) require_once('vhosts.php');
6) 
7) require_once('inc/security.php');
8) require_once('class/domain.php');
9) 
10) require_role(ROLE_SYSTEMUSER);
11) 
12) require_once("inc/debug.php");
13) global $debugmode;
14) 
15) 
16) if ($_GET['action'] == 'edit')
17) {
18)   check_form_token('vhosts_edit_vhost');
19)   $id = (int) $_GET['vhost'];
20)   $vhost = empty_vhost();
21)   if ($id != 0)
22)     $vhost = get_vhost_details( $id );
23)   DEBUG($vhost);
24) 
25)   $hostname = filter_input_hostname($_POST['hostname']);
26) 
bernd domain = NULL ==> user-subd...

bernd authored 17 years ago

27)   $domainid = (int) $_POST['domain'];
28)   if ($domainid != -1) {
29)     $domain = new Domain( (int) $_POST['domain'] );
bernd Mehr config-optionen und co...

bernd authored 15 years ago

30)     $domain->ensure_userdomain();
bernd domain = NULL ==> user-subd...

bernd authored 17 years ago

31)     $domainid = $domain->id;
32)   }
bernd VHosts können bearbeitet we...

bernd authored 17 years ago

33) 
34)   if (! is_array($_POST['options']))
35)     $_POST['options'] = array();
36)   $aliaswww = in_array('aliaswww', $_POST['options']);
37) 
bernd vhost-Modul kann jetzt SVN-...

bernd authored 17 years ago

38)   $docroot = '';
bernd VHosts können bearbeitet we...

bernd authored 17 years ago

39)   $php = '';
bernd Docroot auch bei WebDAV anz...

bernd authored 17 years ago

40)   if ($_POST['vhost_type'] == 'regular' || $_POST['vhost_type'] == 'dav')
bernd vhost-Modul kann jetzt SVN-...

bernd authored 17 years ago

41)   {
42)     $defaultdocroot = $vhost['homedir'].'/websites/'.((strlen($hostname) > 0) ? $hostname.'.' : '').($domain->fqdn).'/htdocs';
43)   
44)     if (! check_path( $_POST['docroot'] ))
45)       system_failure("Eingegebener Pfad enthält ungültige Angaben");
bernd mod_php deprecated, zwang z...

bernd authored 15 years ago

46)     $docroot = $vhost['homedir'].'/websites/'.$_POST['docroot'];
bernd vhost-Modul kann jetzt SVN-...

bernd authored 17 years ago

47)   
48)     if (($_POST['use_default_docroot'] == '1') || ($docroot == $defaultdocroot)) {
49)       $docroot = '';
50)     }
51)   
52)     DEBUG("Document-Root: ".$docroot);
bernd Docroot auch bei WebDAV anz...

bernd authored 17 years ago

53)   }
54)   $php = '';
55)   if ($_POST['vhost_type'] == 'regular')
56)   {
bernd vhost-Modul kann jetzt SVN-...

bernd authored 17 years ago

57)     switch ($_POST['php']) {
58)       case 'mod_php':
59)         $php = 'mod_php';
60)         break;
61)       case 'fastcgi':
62)         $php = 'fastcgi';
63)         break;
64)       /* Wenn etwas anderes kommt, ist das "kein PHP". So einfach ist das. */
65)     }
66)   }
bernd Docroot auch bei WebDAV anz...

bernd authored 17 years ago

67)   if ($_POST['vhost_type'] == 'regular') {
68)     $vhost['is_dav'] = 0;
69)     $vhost['is_svn'] = 0;
70)     $vhost['is_webapp'] = 0;
71)   }
bernd vhost-Modul kann jetzt SVN-...

bernd authored 17 years ago

72)   elseif ($_POST['vhost_type'] == 'dav') {
73)     $vhost['is_dav'] = 1;
74)     $vhost['is_svn'] = 0;
75)     $vhost['is_webapp'] = 0;
76)   }
77)   elseif ($_POST['vhost_type'] == 'svn') {
78)     $vhost['is_dav'] = 0;
79)     $vhost['is_svn'] = 1;
80)     $vhost['is_webapp'] = 0;
81)   }
82)   elseif ($_POST['vhost_type'] == 'webapp') {
83)     $vhost['is_dav'] = 0;
84)     $vhost['is_svn'] = 0;
85)     $vhost['is_webapp'] = 1;
bernd Webapps implementiert

bernd authored 17 years ago

86)     $vhost['webapp_id'] = (int) $_POST['webapp'];
bernd VHosts können bearbeitet we...

bernd authored 17 years ago

87)   }
88) 
bernd vhost-Modul kann jetzt SVN-...

bernd authored 17 years ago

89)   
bernd SSL auch über webinterface...

bernd authored 17 years ago

90)   $ssl = '';
91)   switch ($_POST['ssl']) {
92)     case 'http':
93)       $ssl = 'http';
94)       break;
95)     case 'https':
96)       $ssl = 'https';
97)       break;
98)     case 'forward':
99)       $ssl = 'forward';
100)       break;
101)     /* Wenn etwas anderes kommt, ist das "beides". So einfach ist das. */
102)   }
103) 
bernd VHosts können bearbeitet we...

bernd authored 17 years ago

104)   $logtype = '';
105)   switch ($_POST['logtype']) {
106)     case 'anonymous':
107)       $logtype = 'anonymous';
108)       break;
109)     case 'default':
110)       $logtype = 'default';
111)       break;
112)     /* Wenn etwas anderes kommt, ist das "kein Logging". So einfach ist das. */
113)   }
114) 
bernd error_log konfigurierbar

bernd authored 17 years ago

115)   $errorlog = 0;
116)   if (isset($_POST['errorlog']) and ($_POST['errorlog'] == 1))
117)     $errorlog = 1;
118) 
bernd VHosts können bearbeitet we...

bernd authored 17 years ago

119)   DEBUG("PHP: {$php} / Logging: {$logtype}");
120) 
121)   $old_options = explode(',', $vhost['options']);
122)   $new_options = array();
123)   foreach ($old_options AS $op)
124)   {
125)     if ($op != 'aliaswww')
126)       array_push($new_options, $op);
127)   }
128)   if ($aliaswww)
129)     array_push($new_options, 'aliaswww');
130) 
131)   DEBUG($old_options);
132)   DEBUG($new_options);
133)   $options = implode(',', $new_options);
134)   DEBUG('New options: '.$options);
135) 
136)   $vhost['hostname'] = $hostname;
bernd domain = NULL ==> user-subd...

bernd authored 17 years ago

137)   $vhost['domainid'] = $domainid;
bernd VHosts können bearbeitet we...

bernd authored 17 years ago

138)   $vhost['docroot'] = $docroot;
139)   $vhost['php'] = $php;
bernd SSL auch über webinterface...

bernd authored 17 years ago

140)   $vhost['ssl'] = $ssl;
bernd VHosts können bearbeitet we...

bernd authored 17 years ago

141)   $vhost['logtype'] = $logtype;
bernd error_log konfigurierbar

bernd authored 17 years ago

142)   $vhost['errorlog'] = $errorlog; 
bernd VHosts können bearbeitet we...

bernd authored 17 years ago

143)   $vhost['options'] = $options;
144)     
bernd vhost-Modul kann jetzt SVN-...

bernd authored 17 years ago

145)   DEBUG($vhost);
bernd VHosts können bearbeitet we...

bernd authored 17 years ago

146)   save_vhost($vhost);
147) 
148)   if (! $debugmode)
bernd eliminate .php extensions f...

bernd authored 16 years ago

149)     header('Location: vhosts');
bernd VHosts können bearbeitet we...

bernd authored 17 years ago

150) 
151) }
bernd Aliases editieren

bernd authored 17 years ago

152) elseif ($_GET['action'] == 'addalias')
153) {
154)   check_form_token('vhosts_add_alias');
155)   $id = (int) $_GET['vhost'];
156)   $vhost = get_vhost_details( $id );
157)   DEBUG($vhost);
158) 
159)   $alias = empty_alias();
160)   $alias['vhost'] = $vhost['id'];
161) 
162)   
163)   $hostname = filter_input_hostname($_POST['hostname']);
bernd auch aliases dürfen usernam...

bernd authored 17 years ago

164)   $domainid = (int) $_POST['domain'];
165)   if ($domainid != -1) {
166)     $domain = new Domain( (int) $_POST['domain'] );
bernd Mehr config-optionen und co...

bernd authored 15 years ago

167)     $domain->ensure_userdomain();
bernd auch aliases dürfen usernam...

bernd authored 17 years ago

168)     $domainid = $domain->id;
169)   }
bernd Aliases editieren

bernd authored 17 years ago

170) 
171)   if (! is_array($_POST['options']))
172)     $_POST['options'] = array();
173)   $aliaswww = in_array('aliaswww', $_POST['options']);
174)   $forward = in_array('forward', $_POST['options']);
175) 
176)   $new_options = array();
177)   if ($aliaswww)
178)     array_push($new_options, 'aliaswww');
179)   if ($forward)
180)     array_push($new_options, 'forward');
181)   DEBUG($new_options);
182)   $options = implode(',', $new_options);
183)   DEBUG('New options: '.$options);
184) 
185)   $alias['hostname'] = $hostname;
bernd auch aliases dürfen usernam...

bernd authored 17 years ago

186)   $alias['domainid'] = $domainid;
bernd Aliases editieren

bernd authored 17 years ago

187)     
188)   $alias ['options'] = $options;
189)     
190)   save_alias($alias);
191) 
192)   if (! $debugmode)
bernd eliminate .php extensions f...

bernd authored 16 years ago

193)     header('Location: aliases?vhost='.$vhost['id']);
bernd Aliases editieren

bernd authored 17 years ago

194) 
195) }
196) elseif ($_GET['action'] == 'deletealias')
197) {
198)   $title = "Subdomain löschen";
199)   $section = 'vhosts_vhosts';
200)   
201)   $alias = get_alias_details( (int) $_GET['alias'] );
202)   DEBUG($alias);
bernd domain = NULL ==> user-subd...

bernd authored 17 years ago

203)   $alias_string = $alias['fqdn'];
bernd Aliases editieren

bernd authored 17 years ago

204)   
205)   $vhost = get_vhost_details( $alias['vhost'] );
206)   DEBUG($vhost);
bernd domain = NULL ==> user-subd...

bernd authored 17 years ago

207)   $vhost_string = $vhost['fqdn'];
bernd Aliases editieren

bernd authored 17 years ago

208)   
209)   $sure = user_is_sure();
210)   if ($sure === NULL)
211)   {
bernd * alle internen Links sinnv...

bernd authored 15 years ago

212)     are_you_sure("action=deletealias&alias={$_GET['alias']}", "Möchten Sie das Alias »{$alias_string}« für die Subdomain »{$vhost_string}« wirklich löschen?");
bernd Aliases editieren

bernd authored 17 years ago

213)   }
214)   elseif ($sure === true)
215)   {
216)     delete_alias($alias['id']);
217)     if (! $debugmode)
bernd eliminate .php extensions f...

bernd authored 16 years ago

218)       header('Location: aliases?vhost='.$vhost['id']);
bernd Aliases editieren

bernd authored 17 years ago

219)   }
220)   elseif ($sure === false)
221)   {
222)     if (! $debugmode)
bernd eliminate .php extensions f...

bernd authored 16 years ago

223)       header('Location: aliases?vhost='.$vhost['id']);
bernd Aliases editieren

bernd authored 17 years ago

224)   }
225) }
bernd VHosts können bearbeitet we...

bernd authored 17 years ago

226) elseif ($_GET['action'] == 'delete')
227) {
bernd Aliases editieren

bernd authored 17 years ago

228)   $title = "Subdomain löschen";
229)   $section = 'vhosts_vhosts';
230)   
bernd VHosts können bearbeitet we...

bernd authored 17 years ago

231)   $vhost = get_vhost_details( (int) $_GET['vhost'] );
bernd domain = NULL ==> user-subd...

bernd authored 17 years ago

232)   $vhost_string = $vhost['fqdn'];
bernd VHosts können bearbeitet we...

bernd authored 17 years ago

233)   
234)   $sure = user_is_sure();
235)   if ($sure === NULL)
236)   {
bernd * alle internen Links sinnv...

bernd authored 15 years ago

237)     are_you_sure("action=delete&vhost={$_GET['vhost']}", "Möchten Sie die Subdomain »{$vhost_string}« wirklich löschen?");
bernd VHosts können bearbeitet we...

bernd authored 17 years ago

238)   }
239)   elseif ($sure === true)
240)   {
241)     delete_vhost($vhost['id']);
242)     if (! $debugmode)
bernd eliminate .php extensions f...

bernd authored 16 years ago

243)       header("Location: vhosts");
bernd VHosts können bearbeitet we...

bernd authored 17 years ago

244)   }
245)   elseif ($sure === false)
246)   {
247)     if (! $debugmode)
bernd eliminate .php extensions f...

bernd authored 16 years ago

248)       header("Location: vhosts");