4c47b141318ea257f902c6ccbf4c345ef4fe4593
bernd Systemuser-Modul hinzugefügt

bernd authored 17 years ago

1) <?php
Bernd Wurst Added license tags for CC0,...

Bernd Wurst authored 12 years ago

2) /*
3) This file belongs to the Webinterface of schokokeks.org Hosting
4) 
Bernd Wurst Copyright year update

Bernd Wurst authored 6 years ago

5) Written 2008-2018 by schokokeks.org Hosting, namely
Bernd Wurst Added license tags for CC0,...

Bernd Wurst authored 12 years ago

6)   Bernd Wurst <bernd@schokokeks.org>
7)   Hanno Böck <hanno@schokokeks.org>
8) 
9) To the extent possible under law, the author(s) have dedicated all copyright and related and neighboring rights to this software to the public domain worldwide. This software is distributed without any warranty.
10) 
Hanno Fix coding style with php-c...

Hanno authored 6 years ago

11) You should have received a copy of the CC0 Public Domain Dedication along with this software. If not, see
Bernd Wurst Added license tags for CC0,...

Bernd Wurst authored 12 years ago

12) http://creativecommons.org/publicdomain/zero/1.0/
13) 
14) Nevertheless, in case you use a significant part of this code, we ask (but not require, see the license) that you keep the authors' names in place and return your changes to the public. We would be especially happy if you tell us what you're going to do with this code.
15) */
bernd Systemuser-Modul hinzugefügt

bernd authored 17 years ago

16) 
17) require_once('session/start.php');
18) 
19) require_once('useraccounts.php');
20) 
21) require_once('inc/security.php');
22) 
23) 
bernd Erlaube Änderung von Name u...

bernd authored 14 years ago

24) require_role(array(ROLE_CUSTOMER, ROLE_SYSTEMUSER));
25) 
26) $role = $_SESSION['role'];
bernd Systemuser-Modul hinzugefügt

bernd authored 17 years ago

27) 
28) require_once("inc/debug.php");
29) global $debugmode;
30) 
Hanno Fix coding style with php-c...

Hanno authored 6 years ago

31) if ($_GET['action'] == 'new') {
32)     system_failure('not implemented');
33) /*
34) check_form_token('systemuser_new');
35) if (filter_input_username($_POST['username']) == '' ||
36)     filter_shell($_POST['password']) == '')
bernd Systemuser-Modul hinzugefügt

bernd authored 17 years ago

37) {
Hanno Fix coding style with php-c...

Hanno authored 6 years ago

38)   input_error('Sie müssen alle Felder ausfüllen!');
bernd Systemuser-Modul hinzugefügt

bernd authored 17 years ago

39) }
Hanno Fix coding style with php-c...

Hanno authored 6 years ago

40) else
bernd Systemuser-Modul hinzugefügt

bernd authored 17 years ago

41) {
Hanno Fix coding style with php-c...

Hanno authored 6 years ago

42)   create_jabber_account($_POST['local'], $_POST['domain'], $_POST['password']);
43)   if (! $debugmode)
bernd Falsche Umleitung

bernd authored 14 years ago

44)     header('Location: account');
bernd Überarbeitetes Systemuser-M...

bernd authored 14 years ago

45) }
Hanno Fix coding style with php-c...

Hanno authored 6 years ago

46) */
47) } elseif ($_GET['action'] == 'pwchange') {
48)     if (! $role & ROLE_CUSTOMER) {
49)         system_failure("Zum Ändern Ihres Passworts verwenden Sie bitte die Funktion im Hauptmenü!");
50)     }
51)     $error = false;
52)     check_form_token('systemuser_pwchange');
53)     if (customer_useraccount($_REQUEST['uid'])) {
54)         system_failure('Zum Ändern dieses Passworts verwenden Sie bitte die Funktion im Hauptmenü!');
55)     }
56) 
57)     //if (! strong_password($_POST['newpass']))
58)     //  input_error('Das Passwort ist zu einfach');
59)     //else
60)     if ($_POST['newpass1'] == '' ||
61)       $_POST['newpass1'] != $_POST['newpass2']) {
62)         input_error('Bitte zweimal ein neues Passwort eingeben!');
63)         $error = true;
64)     } else {
65)         $user = get_account_details($_REQUEST['uid']);
66)         # set_systemuser_password kommt aus den Session-Funktionen!
67)         set_systemuser_password($user['uid'], $_POST['newpass1']);
68)     }
69)     if (! ($debugmode || $error)) {
70)         header('Location: account');
71)     }
72) } elseif ($_GET['action'] == 'edit') {
Hanno make sure is initialized t...

Hanno authored 6 years ago

73)     $error = false;
Hanno Fix coding style with php-c...

Hanno authored 6 years ago

74)     check_form_token('systemuser_edit');
75)     $account = null;
76)     if ($role & ROLE_CUSTOMER) {
77)         $account = get_account_details($_REQUEST['uid']);
78)     } else {
79)         $account = get_account_details($_SESSION['userinfo']['uid'], $_SESSION['userinfo']['customerno']);
80)     }
81) 
82)     if ($role & ROLE_CUSTOMER) {
83)         $customerquota = get_customer_quota();
84)         $maxquota = $customerquota['max'] - $customerquota['assigned'] + $account['quota'];
Hanno remove whitespace in empty...

Hanno authored 6 years ago

85) 
Hanno Fix coding style with php-c...

Hanno authored 6 years ago

86)         $quota = (int) $_POST['quota'];
87)         if ($quota > $maxquota) {
88)             system_failure("Sie können diesem Account maximal {$maxquota} MB Speicherplatz zuweisen.");
89)         }
90)         $account['quota'] = $quota;
91)     }
92) 
93)     if ($_POST['defaultname'] == 1) {
94)         $account['name'] = null;
95)     } else {
96)         $account['name'] = filter_input_general($_POST['fullname']);
Bernd Wurst Redirect non-customer users...

Bernd Wurst authored 12 years ago

97)     }
Hanno remove whitespace in empty...

Hanno authored 6 years ago

98) 
Hanno Fix coding style with php-c...

Hanno authored 6 years ago

99)     $shells = available_shells();
100)     if (isset($shells[$_POST['shell']])) {
101)         $account['shell'] = $_POST['shell'];
102)     } elseif (isset($_POST['shell']) && $_POST['shell'] != '') {
103)         system_failure('Ungültige Shell');
104)     }
105) 
106)     set_account_details($account);
107)     if (! ($debugmode || $error)) {
108)         $location = 'myaccount';
109)         if ($_SESSION['role'] & ROLE_CUSTOMER) {
110)             $location = 'account';
111)         }
112)         header('Location: '.$location);
113)     }
114) } elseif ($_GET['action'] == 'delete') {
115)     system_failure("Benutzeraccounts zu löschen ist momentan nicht über diese Oberfläche möglich. Bitte wenden Sie sich an einen Administrator.");
116) /*
117) $account_string = filter_input_general( $account['local'].'@'.$account['domain'] );
118) $sure = user_is_sure();
119) if ($sure === NULL)
120) {
121)   are_you_sure("action=delete&account={$_GET['account']}", "Möchten Sie den Account »{$account_string}« wirklich löschen?");
bernd Systemuser-Modul hinzugefügt

bernd authored 17 years ago

122) }
Hanno Fix coding style with php-c...

Hanno authored 6 years ago

123) elseif ($sure === true)
bernd Systemuser-Modul hinzugefügt

bernd authored 17 years ago

124) {
Hanno Fix coding style with php-c...

Hanno authored 6 years ago

125)   delete_jabber_account($account['id']);
126)   if (! $debugmode)
127)     header("Location: account");
128) }
129) elseif ($sure === false)
130) {
131)   if (! $debugmode)
132)     header("Location: account");
133) }
134) */
135) } else {
136)     system_failure("Unimplemented action");