81b1fedd7d2a84b77212fd7ba61d4de2b2df7e3d
Bernd Wurst Speichern der Eingaben (unv...

Bernd Wurst authored 6 years ago

1) <?php
2) /*
3) This file belongs to the Webinterface of schokokeks.org Hosting
4) 
5) Written 2008-2018 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) require_once('contacts.php');
18) require_once('inc/debug.php');
Bernd Wurst Prüfe Telefonnummer

Bernd Wurst authored 6 years ago

19) require_once('vendor/autoload.php');
Bernd Wurst Speichern der Eingaben (unv...

Bernd Wurst authored 6 years ago

20) 
21) require_once('session/start.php');
22) 
23) 
24) require_role(array(ROLE_CUSTOMER));
25) $section = 'contacts_list';
26) 
27) check_form_token('contacts_edit');
28) 
29) $new = False;
30) if ($_REQUEST['id'] == 'new') {
31)     title("Adresse anlegen");
32)     $new = True;
33) } else {
34)     title("Adresse bearbeiten");
35) }
36) 
37) $c = new_contact();
38) if (! $new) {
39)     $c = get_contact($_REQUEST['id']);
40) }
41) 
42) if ($c['nic_handle'] != NULL) {
43)     if (c['name'] != $_REQUEST['name'] || $c['company'] != $_REQUEST['firma'] || $c['country'] != $_REQUEST['land']) {
44)         system_failure('Name/Firma/Land kann bei diesem Kontakt nicht geändert werden.');
45)     }
46) }
47) 
48) 
49) $c['company'] = maybe_null($_REQUEST['firma']);
50) $c['name'] = maybe_null($_REQUEST['name']);
51) $c['address'] = maybe_null($_REQUEST['adresse']);
52) $c['country'] = maybe_null(strtoupper($_REQUEST['land']));
53) $c['zip'] = maybe_null($_REQUEST['plz']);
54) $c['city'] = maybe_null($_REQUEST['ort']);
Bernd Wurst Prüfe Telefonnummer

Bernd Wurst authored 6 years ago

55) 
56)     
57) if ($_REQUEST['telefon']) {
58)     $phoneNumberUtil = \libphonenumber\PhoneNumberUtil::getInstance();
59)     try {
60)         $phoneNumber = $phoneNumberUtil->parse($_REQUEST['telefon'], $_REQUEST['land'], null, true);
61)     } catch (Exception $e) {
62)         system_failure('Die eingegebene Telefonnummer scheint nicht gültig zu sein!');
63)     }
64)     if ($phoneNumberUtil->isValidNumber($phoneNumber)) {
65)         $c['phone'] = $phoneNumberUtil->format($phoneNumber, 1);
66)     } else {
67)         system_failure('Die eingegebene Telefonnummer scheint nicht gültig zu sein!');
68)         $c['phone'] = NULL;
69)     }
70) } else {
71)     $c['phone'] = NULL;
72) }
73) //$c['phone'] = maybe_null($_REQUEST['telefon']);
Bernd Wurst Speichern der Eingaben (unv...

Bernd Wurst authored 6 years ago

74) $c['mobile'] = maybe_null($_REQUEST['mobile']);
75) $c['fax'] = maybe_null($_REQUEST['telefax']);
76) 
77) // FIXME: PGP-ID/Key fehlen
78) 
Bernd Wurst Speichern der Änderungen mö...

Bernd Wurst authored 6 years ago

79) // Zuerst Kontakt speichern und wenn eine Änderung der E-Mail gewünscht war,
80) // dann hinterher das Token erzeugen und senden. Weil wir für das Token die 
81) // Contact-ID brauchen und die bekommen wir bei einer Neueintragung erst nach 
82) // dem Speichern.
83) 
84) $id = save_contact($c);
85) $c['id'] = $id;
Bernd Wurst Speichern der Eingaben (unv...

Bernd Wurst authored 6 years ago

86) 
87) if ($c['email'] != $_REQUEST['email']) {
Bernd Wurst Speichern der Änderungen mö...

Bernd Wurst authored 6 years ago

88)     if (have_mailaddress($_REQUEST['email'])) {
89)         save_emailaddress($c['id'], $_REQUEST['email']);
90)     } else {
91)         send_emailchange_token($c['id'], $_REQUEST['email']);
92)     }
Bernd Wurst Speichern der Eingaben (unv...

Bernd Wurst authored 6 years ago

93) }
94) 
95)