21b3811d6364bf81ab250707fed8a32f8bcc98d9
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) 
Bernd Wurst Neue Darstellung der Kontak...

Bernd Wurst authored 6 years ago

27) if (isset($_REQUEST['action']) && $_REQUEST['action'] == 'delete') {
28)     $contact = get_contact($_REQUEST['id']);
29)     
Bernd Wurst Abstrahieren der Anzeigefun...

Bernd Wurst authored 6 years ago

30)     $contact_string = display_contact($contact);
Bernd Wurst Neue Darstellung der Kontak...

Bernd Wurst authored 6 years ago

31) 
32)     $sure = user_is_sure();
33)     if ($sure === NULL)
34)     {
35)        are_you_sure("action=delete&id={$contact['id']}", "Möchten Sie diese Adresse wirklich löschen? {$contact_string}");
36)     }
37)     elseif ($sure === true)
38)     {
39)        delete_contact($contact['id']);
40)        if (! $debugmode)
41)            header("Location: list");
42)     }
43)     elseif ($sure === false)
44)     {
45)         if (! $debugmode)
46)             header("Location: list");
47)     }
48) 
Bernd Wurst Speichern der Eingaben (unv...

Bernd Wurst authored 6 years ago

49) 
50) } else {
Bernd Wurst Neue Darstellung der Kontak...

Bernd Wurst authored 6 years ago

51)     check_form_token('contacts_edit');
Bernd Wurst Speichern der Eingaben (unv...

Bernd Wurst authored 6 years ago

52) 
Bernd Wurst Neue Darstellung der Kontak...

Bernd Wurst authored 6 years ago

53)     $new = False;
54)     if ($_REQUEST['id'] == 'new') {
55)         title("Adresse anlegen");
56)         $new = True;
57)     } else {
58)         title("Adresse bearbeiten");
59)     }
Bernd Wurst Speichern der Eingaben (unv...

Bernd Wurst authored 6 years ago

60) 
Bernd Wurst Neue Darstellung der Kontak...

Bernd Wurst authored 6 years ago

61)     $c = new_contact();
62)     if (! $new) {
63)         $c = get_contact($_REQUEST['id']);
64)     }
Bernd Wurst API-Funktionen um Kontakte...

Bernd Wurst authored 6 years ago

65) 
Bernd Wurst Neue Darstellung der Kontak...

Bernd Wurst authored 6 years ago

66)     if (!isset($_REQUEST['firma'])) {
67)         $_REQUEST['firma'] = $c['company'];
68)     }
69)     if (!isset($_REQUEST['name'])) {
70)         $_REQUEST['name'] = $c['name'];
71)     }
72)     if (!isset($_REQUEST['land'])) {
73)         $_REQUEST['land'] = $c['country'];
Bernd Wurst Speichern der Eingaben (unv...

Bernd Wurst authored 6 years ago

74)     }
75) 
Bernd Wurst Neue Darstellung der Kontak...

Bernd Wurst authored 6 years ago

76)     if ($c['nic_handle'] != NULL) {
77)         if ($c['name'] != $_REQUEST['name'] || $c['company'] != $_REQUEST['firma'] || $c['country'] != $_REQUEST['land']) {
78)             system_failure('Name/Firma/Land kann bei diesem Kontakt nicht geändert werden.');
79)         }
80)     }
Bernd Wurst Speichern der Eingaben (unv...

Bernd Wurst authored 6 years ago

81) 
Bernd Wurst Abstrahieren der Anzeigefun...

Bernd Wurst authored 6 years ago

82)     $kundenkontakte = get_kundenkontakte();
83)     if ($c['id'] == $kundenkontakte['kunde']) {
84)         if (!$_REQUEST['name'] && !$_REQUEST['firma']) {
85)             system_failure('Beim Inhaber darf nicht Firmenname und Name leer sein.');
86)         }
87)     }
Bernd Wurst Prüfe Telefonnummer

Bernd Wurst authored 6 years ago

88) 
Bernd Wurst Security

Bernd Wurst authored 6 years ago

89)     $c['company'] = verify_input_general(maybe_null($_REQUEST['firma']));
90)     $c['name'] = verify_input_general(maybe_null($_REQUEST['name']));
91)     $c['address'] = verify_input_general(maybe_null($_REQUEST['adresse']));
92)     $c['country'] = verify_input_general(maybe_null(strtoupper($_REQUEST['land'])));
93)     $c['zip'] = verify_input_general(maybe_null($_REQUEST['plz']));
94)     $c['city'] = verify_input_general(maybe_null($_REQUEST['ort']));
Bernd Wurst Nummercheck ausgelagert und...

Bernd Wurst authored 6 years ago

95) 
Bernd Wurst Neue Darstellung der Kontak...

Bernd Wurst authored 6 years ago

96)         
97) 
98)     if ($_REQUEST['telefon']) {
Bernd Wurst Security

Bernd Wurst authored 6 years ago

99)         $num = format_number(verify_input_general($_REQUEST['telefon']), $_REQUEST['land']);
Bernd Wurst Neue Darstellung der Kontak...

Bernd Wurst authored 6 years ago

100)         if ($num) {
101)             $c['phone'] = $num;
102)         } else {
103)             system_failure('Die eingegebene Telefonnummer scheint nicht gültig zu sein!');
104)         }
Bernd Wurst Prüfe Telefonnummer

Bernd Wurst authored 6 years ago

105)     } else {
Bernd Wurst Neue Darstellung der Kontak...

Bernd Wurst authored 6 years ago

106)         $c['phone'] = NULL;
Bernd Wurst Prüfe Telefonnummer

Bernd Wurst authored 6 years ago

107)     }
Bernd Wurst Neue Darstellung der Kontak...

Bernd Wurst authored 6 years ago

108)     if ($_REQUEST['mobile']) {
Bernd Wurst Security

Bernd Wurst authored 6 years ago

109)         $num = format_number(verify_input_general($_REQUEST['mobile']), $_REQUEST['land']);
Bernd Wurst Neue Darstellung der Kontak...

Bernd Wurst authored 6 years ago

110)         if ($num) {
111)             $c['mobile'] = $num;
112)         } else {
113)             system_failure('Die eingegebene Mobiltelefonnummer scheint nicht gültig zu sein!');
114)         }
Bernd Wurst Nummercheck ausgelagert und...

Bernd Wurst authored 6 years ago

115)     } else {
Bernd Wurst Neue Darstellung der Kontak...

Bernd Wurst authored 6 years ago

116)         $c['mobile'] = NULL;
Bernd Wurst Nummercheck ausgelagert und...

Bernd Wurst authored 6 years ago

117)     }
Bernd Wurst Neue Darstellung der Kontak...

Bernd Wurst authored 6 years ago

118)     if ($_REQUEST['telefax']) {
Bernd Wurst Security

Bernd Wurst authored 6 years ago

119)         $num = format_number(verify_input_general($_REQUEST['telefax']), $_REQUEST['land']);
Bernd Wurst Neue Darstellung der Kontak...

Bernd Wurst authored 6 years ago

120)         if ($num) {
121)             $c['fax'] = $num;
122)         } else {
123)             system_failure('Die eingegebene Faxnummer scheint nicht gültig zu sein!');
124)         }
Bernd Wurst Nummercheck ausgelagert und...

Bernd Wurst authored 6 years ago

125)     } else {
Bernd Wurst Neue Darstellung der Kontak...

Bernd Wurst authored 6 years ago

126)         $c['fax'] = NULL;
Bernd Wurst Nummercheck ausgelagert und...

Bernd Wurst authored 6 years ago

127)     }
Bernd Wurst Speichern der Eingaben (unv...

Bernd Wurst authored 6 years ago

128) 
Bernd Wurst Neue Darstellung der Kontak...

Bernd Wurst authored 6 years ago

129)     // FIXME: PGP-ID/Key fehlen
Bernd Wurst Speichern der Eingaben (unv...

Bernd Wurst authored 6 years ago

130) 
Bernd Wurst Neue Darstellung der Kontak...

Bernd Wurst authored 6 years ago

131)     // Zuerst Kontakt speichern und wenn eine Änderung der E-Mail gewünscht war,
132)     // dann hinterher das Token erzeugen und senden. Weil wir für das Token die 
133)     // Contact-ID brauchen und die bekommen wir bei einer Neueintragung erst nach 
134)     // dem Speichern.
Bernd Wurst Speichern der Änderungen mö...

Bernd Wurst authored 6 years ago

135) 
Bernd Wurst Neue Darstellung der Kontak...

Bernd Wurst authored 6 years ago

136)     $id = save_contact($c);
137)     $c['id'] = $id;
Bernd Wurst Speichern der Eingaben (unv...

Bernd Wurst authored 6 years ago

138) 
Bernd Wurst Neue Darstellung der Kontak...

Bernd Wurst authored 6 years ago

139)     if ($c['email'] != $_REQUEST['email']) {
140)         if (have_mailaddress($_REQUEST['email'])) {
Bernd Wurst Security

Bernd Wurst authored 6 years ago

141)             save_emailaddress($c['id'], verify_input_general($_REQUEST['email']));
Bernd Wurst Neue Darstellung der Kontak...

Bernd Wurst authored 6 years ago

142)         } else {
143)             send_emailchange_token($c['id'], $_REQUEST['email']);
144)         }
145)     }
146)     if ($c['nic_id']) {
147)         $c = get_contact($c['id']);
148)         upload_contact($c);
Bernd Wurst Speichern der Änderungen mö...

Bernd Wurst authored 6 years ago

149)     }
Bernd Wurst Speichern der Eingaben (unv...

Bernd Wurst authored 6 years ago

150) 
151)