65a198735fe7e320ae76dbec469f3205bd63b21f
Bernd Wurst Verify-Funktion für Kunden-...

Bernd Wurst authored 6 years ago

1) <?php
2) /*
3) This file belongs to the Webinterface of schokokeks.org Hosting
4) 
5) Written 2008-2014 by schokokeks.org Hosting, namely
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 
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) */
16) 
17) 
18) function verify_mail_token($token)
19) {
20)   db_query("DELETE FROM kundendaten.mailaddress_token WHERE expire<NOW()");
21)   $args = array(":token" => $token);
22)   $result = db_query("SELECT kunde, typ, email FROM kundendaten.mailaddress_token WHERE token=:token AND expire>NOW()", $args);
23)   if ($result->rowCount() > 0)
24)   {
25)     $line = $result->fetch();
26)     db_query("DELETE FROM kundendaten.mailaddress_token WHERE token=:token", $args); 
27)     return $line;
28)   } else {
29)     return NULL;
30)   }
31) }
32) 
33) 
34) function update_mailaddress($daten)
35) {
36)     $kunde = $daten['kunde'];
37)     $typ = $daten['typ'];
38)     $email = $daten['email'];
39) 
40)     $dbfield = NULL;
41)     if ($typ == 'regular') {
42)         $dbfield = 'email';
43)     } elseif ($typ == 'rechnung') {
44)         $dbfield = 'email_rechnung';    
45)     } elseif ($typ == 'newsletter') {
46)         $dbfield = 'email_newsletter';    
47)     } elseif ($typ == 'extern') {
48)         $dbfield = 'email_extern';
49)     }
50)     if ($dbfield == NULL) {
51)         system_failure('Ungültige Daten hinterlegt. Bitte die Änderung nochmal von vorne vornehmen.');
52)     }
53)     
54)     if (! check_emailaddr($email)) {
55)         system_failure('Es ist eine ungültige Adresse hinterlegt. So wird das nichts. Bitte die Änderung von vorne machen.');
56)     } 
57) 
58)     $args = array(':kunde' => $kunde,
59)                   ':email' => $email);
60)     db_query("UPDATE kundendaten.kunden SET $dbfield=:email WHERE id=:kunde", $args);
61)     
62) }
63) 
64)