9e1bd04af49345890afa9a2cb2557cc0c2e4a094
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) 
Bernd Wurst API-Funktionen um Kontakte...

Bernd Wurst authored 6 years ago

42) if (!isset($_REQUEST['firma'])) {
43)     $_REQUEST['firma'] = $c['company'];
44) }
45) if (!isset($_REQUEST['name'])) {
46)     $_REQUEST['name'] = $c['name'];
47) }
48) if (!isset($_REQUEST['land'])) {
49)     $_REQUEST['land'] = $c['country'];
50) }
51) 
Bernd Wurst Speichern der Eingaben (unv...

Bernd Wurst authored 6 years ago

52) if ($c['nic_handle'] != NULL) {
Bernd Wurst API-Funktionen um Kontakte...

Bernd Wurst authored 6 years ago

53)     if ($c['name'] != $_REQUEST['name'] || $c['company'] != $_REQUEST['firma'] || $c['country'] != $_REQUEST['land']) {
Bernd Wurst Speichern der Eingaben (unv...

Bernd Wurst authored 6 years ago

54)         system_failure('Name/Firma/Land kann bei diesem Kontakt nicht geändert werden.');
55)     }
56) }
57) 
58) 
59) $c['company'] = maybe_null($_REQUEST['firma']);
60) $c['name'] = maybe_null($_REQUEST['name']);
61) $c['address'] = maybe_null($_REQUEST['adresse']);
62) $c['country'] = maybe_null(strtoupper($_REQUEST['land']));
63) $c['zip'] = maybe_null($_REQUEST['plz']);
64) $c['city'] = maybe_null($_REQUEST['ort']);
Bernd Wurst Prüfe Telefonnummer

Bernd Wurst authored 6 years ago

65) 
66)     
Bernd Wurst Nummercheck ausgelagert und...

Bernd Wurst authored 6 years ago

67) 
Bernd Wurst Prüfe Telefonnummer

Bernd Wurst authored 6 years ago

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

Bernd Wurst authored 6 years ago

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

Bernd Wurst authored 6 years ago

72)     } else {
73)         system_failure('Die eingegebene Telefonnummer scheint nicht gültig zu sein!');
74)     }
75) } else {
76)     $c['phone'] = NULL;
77) }
Bernd Wurst Nummercheck ausgelagert und...

Bernd Wurst authored 6 years ago

78) if ($_REQUEST['mobile']) {
79)     $num = format_number($_REQUEST['mobile'], $_REQUEST['land']);
80)     if ($num) {
81)         $c['mobile'] = $num;
82)     } else {
83)         system_failure('Die eingegebene Mobiltelefonnummer scheint nicht gültig zu sein!');
84)     }
85) } else {
86)     $c['mobile'] = NULL;
87) }
88) if ($_REQUEST['telefax']) {
89)     $num = format_number($_REQUEST['telefax'], $_REQUEST['land']);
90)     if ($num) {
91)         $c['fax'] = $num;
92)     } else {
93)         system_failure('Die eingegebene Faxnummer scheint nicht gültig zu sein!');
94)     }
95) } else {
96)     $c['fax'] = NULL;
97) }
Bernd Wurst Speichern der Eingaben (unv...

Bernd Wurst authored 6 years ago

98) 
99) // FIXME: PGP-ID/Key fehlen
100) 
Bernd Wurst Speichern der Änderungen mö...

Bernd Wurst authored 6 years ago

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

Bernd Wurst authored 6 years ago

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

Bernd Wurst authored 6 years ago

110)     if (have_mailaddress($_REQUEST['email'])) {
111)         save_emailaddress($c['id'], $_REQUEST['email']);
112)     } else {
113)         send_emailchange_token($c['id'], $_REQUEST['email']);
114)     }
Bernd Wurst Speichern der Eingaben (unv...

Bernd Wurst authored 6 years ago

115) }
Bernd Wurst API-Funktionen um Kontakte...

Bernd Wurst authored 6 years ago

116) if ($c['nic_id']) {
117)     $c = get_contact($c['id']);
118)     upload_contact($c);
119) }
Bernd Wurst Speichern der Eingaben (unv...

Bernd Wurst authored 6 years ago

120) 
121)