8b1fc399fb39f975898e0e50c2e9382a72424cca
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');
Bernd Wurst Nummercheck ausgelagert und...

Bernd Wurst authored 6 years ago

18) require_once('numbers.php');
Bernd Wurst Speichern der Eingaben (unv...

Bernd Wurst authored 6 years ago

19) require_once('inc/debug.php');
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)     
Bernd Wurst Nummercheck ausgelagert und...

Bernd Wurst authored 6 years ago

57) 
Bernd Wurst Prüfe Telefonnummer

Bernd Wurst authored 6 years ago

58) if ($_REQUEST['telefon']) {
Bernd Wurst Nummercheck ausgelagert und...

Bernd Wurst authored 6 years ago

59)     $num = format_number($_REQUEST['telefon'], $_REQUEST['land']);
60)     if ($num) {
61)         $c['phone'] = $num;
Bernd Wurst Prüfe Telefonnummer

Bernd Wurst authored 6 years ago

62)     } else {
63)         system_failure('Die eingegebene Telefonnummer scheint nicht gültig zu sein!');
64)     }
65) } else {
66)     $c['phone'] = NULL;
67) }
Bernd Wurst Nummercheck ausgelagert und...

Bernd Wurst authored 6 years ago

68) if ($_REQUEST['mobile']) {
69)     $num = format_number($_REQUEST['mobile'], $_REQUEST['land']);
70)     if ($num) {
71)         $c['mobile'] = $num;
72)     } else {
73)         system_failure('Die eingegebene Mobiltelefonnummer scheint nicht gültig zu sein!');
74)     }
75) } else {
76)     $c['mobile'] = NULL;
77) }
78) if ($_REQUEST['telefax']) {
79)     $num = format_number($_REQUEST['telefax'], $_REQUEST['land']);
80)     if ($num) {
81)         $c['fax'] = $num;
82)     } else {
83)         system_failure('Die eingegebene Faxnummer scheint nicht gültig zu sein!');
84)     }
85) } else {
86)     $c['fax'] = NULL;
87) }
Bernd Wurst Speichern der Eingaben (unv...

Bernd Wurst authored 6 years ago

88) 
89) // FIXME: PGP-ID/Key fehlen
90) 
Bernd Wurst Speichern der Änderungen mö...

Bernd Wurst authored 6 years ago

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

Bernd Wurst authored 6 years ago

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

Bernd Wurst authored 6 years ago

100)     if (have_mailaddress($_REQUEST['email'])) {
101)         save_emailaddress($c['id'], $_REQUEST['email']);
102)     } else {
103)         send_emailchange_token($c['id'], $_REQUEST['email']);
104)     }
Bernd Wurst Speichern der Eingaben (unv...

Bernd Wurst authored 6 years ago

105) }
106) 
107)