5bc11a997260d5032ac755916565c266f93ab56d
bernd one-time-URLs für systemuser

bernd authored 15 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 Lizenzinfos in eigenes Modu...

Bernd Wurst authored 10 years ago

5) Written 2008-2014 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) 
11) You should have received a copy of the CC0 Public Domain Dedication along with this software. If not, see 
Hanno Böck URLs von http nach https

Hanno Böck authored 7 years ago

12) https://creativecommons.org/publicdomain/zero/1.0/
Bernd Wurst Added license tags for CC0,...

Bernd Wurst authored 12 years ago

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) */
16) 
Bernd Wurst Erlaube Useraccount-Initial...

Bernd Wurst authored 11 years ago

17) require_once('newpass.php');
18) require_once('inc/security.php');
19) 
bernd Benutze überall title() sta...

bernd authored 13 years ago

20) title("Passwort setzen");
bernd one-time-URLs für systemuser

bernd authored 15 years ago

21) $show = 'token';
22) 
Bernd Wurst destroy session when init-l...

Bernd Wurst authored 7 years ago

23) if (isset($_SESSION['role']) && $_SESSION['role'] != ROLE_ANONYMOUS) {
24)   @session_destroy();
25)   
26)   header('Location: '.$PHP_SELF);
27)   die(); 
28) }
29) 
Bernd Wurst Erlaube Useraccount-Initial...

Bernd Wurst authored 11 years ago

30) if (isset($_REQUEST['token']))
bernd one-time-URLs für systemuser

bernd authored 15 years ago

31) {
32)   $token = $_REQUEST['token'];
Bernd Wurst Erlaube Useraccount-Initial...

Bernd Wurst authored 11 years ago

33)   $uid = get_uid_for_token($token);
bernd one-time-URLs für systemuser

bernd authored 15 years ago

34)   
Bernd Wurst Erlaube Useraccount-Initial...

Bernd Wurst authored 11 years ago

35)   if ($uid != NULL && validate_uid_token($uid, $token))
bernd one-time-URLs für systemuser

bernd authored 15 years ago

36)   {
bernd AGB bestätigen lassen

bernd authored 15 years ago

37)     $show = 'agb';
Bernd Wurst Erlaube Useraccount-Initial...

Bernd Wurst authored 11 years ago

38)     if (isset($_REQUEST['agb']) && $_REQUEST['agb'] == '1') {
bernd AGB bestätigen lassen

bernd authored 15 years ago

39)       $show = 'password';
40)     }
bernd one-time-URLs für systemuser

bernd authored 15 years ago

41)     if (isset($_POST['password']))
42)     {
43)       if ($_POST['password'] != $_POST['password2'])
44)         input_error("Die beiden Passwort-Eingaben stimmen nicht überein.");
45)       elseif ($_POST['password'] == '')
46)         input_error("Es kann kein leeres Passwort gesetzt werden");
Bernd Wurst Zeige Username beim Passwor...

Bernd Wurst authored 11 years ago

47)       elseif (preg_match('/["\'\\\\]/', $_POST['password']) === 1)
48)         input_error("Das Passwort enthält problematische Zeichen. Bitte keine Anführungszeichen und kein Backslash benutzen.");
bernd one-time-URLs für systemuser

bernd authored 15 years ago

49)       elseif (($result = strong_password($_POST['password'])) !== true)
50)         input_error("Das Passwort ist zu einfach (cracklib sagt: {$result})!");
51)       else
52)       {
53)         require_once('session/checkuser.php');
54)         require_once('inc/base.php');
bernd Logger mit Logleveln

bernd authored 14 years ago

55)         logger(LOG_INFO, "modules/index/initialize_useraccount", "initialize", "uid »{$uid}« set a new password");
bernd one-time-URLs für systemuser

bernd authored 15 years ago

56)         set_systemuser_password($uid, $_POST['password']);
57)         invalidate_systemuser_token($uid);
58)         $_SESSION['role'] = find_role($uid, '', True);;
Bernd Wurst Erlaube Useraccount-Initial...

Bernd Wurst authored 11 years ago

59)       	setup_session($_SESSION['role'], $uid);
Bernd Wurst Nach dem Setzen des Passwor...

Bernd Wurst authored 11 years ago

60)         success_msg('Das Passwort wurde gesetzt!');
61)         redirect('index');
bernd one-time-URLs für systemuser

bernd authored 15 years ago

62)       }
63)     }
64)   }
65)   else
66)   {
bernd Fehlermeldung bei falschem...

bernd authored 13 years ago

67)     input_error("Der eingegebene Code war nicht korrekt. Eventuell haben Sie die Adresse nicht vollständig übernommen oder die Gültigkeit des Sicherheitscodes ist abgelaufen.");
bernd one-time-URLs für systemuser

bernd authored 15 years ago

68)   }
69) }
70) 
71) if ($show == 'password')
72) {
Bernd Wurst Zeige Username beim Passwor...

Bernd Wurst authored 11 years ago

73)   $username = get_username_for_uid($uid);
bernd Benutze überall title() sta...

bernd authored 13 years ago

74)   title("Neues Passwort setzen");
Bernd Wurst Zeige Username beim Passwor...

Bernd Wurst authored 11 years ago

75)   output('<p>Bitte legen Sie jetzt Ihr neues Passwort fest.</p>'.
bernd one-time-URLs für systemuser

bernd authored 15 years ago

76)   html_form('initialize_useraccount', '', '', '<p style="display: none"><input type="hidden" name="uid" value="'.$uid.'" />
bernd AGB bestätigen lassen

bernd authored 15 years ago

77)   <input type="hidden" name="token" value="'.$token.'" /><input type="hidden" name="agb" value="1" /></p>
Bernd Wurst Zeige Username beim Passwor...

Bernd Wurst authored 11 years ago

78)   <p><span class="login_label">Ihr Benutzername:</span> <strong>'.$username.'</strong></p>
bernd one-time-URLs für systemuser

bernd authored 15 years ago

79)   <p><span class="login_label">Neues Passwort:</span> <input type="password" name="password" size="30" /></p>
80)   <p><span class="login_label">Bestätigung:</span> <input type="password" name="password2" size="30" /></p>
81)   <p><span class="login_label">&#160;</span> <input type="submit" value="Passwort setzen" /></p>
82)   '));
83) }
bernd AGB bestätigen lassen

bernd authored 15 years ago

84) elseif ($show == 'agb')
85) {
bernd Benutze überall title() sta...

bernd authored 13 years ago

86)   title("Bestätigung unserer AGB");
Hanno Böck URLs von http nach https

Hanno Böck authored 7 years ago

87)   output('<p>Die Nutzung unseres Angebots ist an unsere <a href="https://schokokeks.org/agb">Allgemeinen Geschäftsbedingungen</a> gebunden. Bitte lesen Sie diese Bedingungen und bestätigen Sie Ihr Einverständnis. Sollten Sie diese Bedingungen nicht akzeptieren, setzen Sie sich bitte mit uns in Verbindung.</p>'.
bernd AGB bestätigen lassen

bernd authored 15 years ago

88)   html_form('initialize_useraccount_agb', '', '', '<p style="display: none"><input type="hidden" name="uid" value="'.$uid.'" />
89)   <input type="hidden" name="token" value="'.$token.'" /></p>
90)   <p><span class="login_label">&#160;</span><input type="checkbox" name="agb" value="1" /> Ja, ich akzeptiere die AGB.<p>
91)   <p><span class="login_label">&#160;</span> <input type="submit" value="Weiter" /></p>
92)   '));
93) }
bernd one-time-URLs für systemuser

bernd authored 15 years ago

94) elseif ($show == 'token')
95) {
bernd Benutze überall title() sta...

bernd authored 13 years ago

96)   title("Neues Passwort setzen");
97)   output('<p>Bitte rufen Sie die Adresse aus Ihrer Begrüßungs-E-Mail auf um ein neues Passwort zu setzen.');