b2ad7569cf15b7ca49876dc8121fd612e78695c4
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 Security

Bernd Wurst authored 6 years ago

30)     $adresse = nl2br("\n".filter_input_general($contact['address'])."\n".filter_input_general($contact['country']).'-'.filter_input_general($contact['zip']).' '.filter_input_general($contact['city']));
Bernd Wurst Neue Darstellung der Kontak...

Bernd Wurst authored 6 years ago

31)     if (! $contact['city']) {
32)         $adresse = '';
33)     }
Bernd Wurst Security

Bernd Wurst authored 6 years ago

34)     $name = filter_input_general($contact['name']);
Bernd Wurst Neue Darstellung der Kontak...

Bernd Wurst authored 6 years ago

35)     if ($contact['company']) {
Bernd Wurst Security

Bernd Wurst authored 6 years ago

36)         $name = filter_input_general($contact['company'])."<br />".filter_input_general($contact['name']);
Bernd Wurst Neue Darstellung der Kontak...

Bernd Wurst authored 6 years ago

37)     }
38)     $email = implode("<br>\n", array_filter(array($contact['email'], $contact['phone'], $contact['fax'], $contact['mobile'])));
39)  
40)     $contact_string = "<div class=\"contact\" id=\"contact-{$contact['id']}\"><p class=\"contact-id\">#{$contact['id']}</p><p class=\"contact-address\"><strong>$name</strong>$adresse</p><p class=\"contact-contact\">$email</p></div>";
41)     
42) 
43)     $sure = user_is_sure();
44)     if ($sure === NULL)
45)     {
46)        are_you_sure("action=delete&id={$contact['id']}", "Möchten Sie diese Adresse wirklich löschen? {$contact_string}");
47)     }
48)     elseif ($sure === true)
49)     {
50)        delete_contact($contact['id']);
51)        if (! $debugmode)
52)            header("Location: list");
53)     }
54)     elseif ($sure === false)
55)     {
56)         if (! $debugmode)
57)             header("Location: list");
58)     }
59) 
Bernd Wurst Speichern der Eingaben (unv...

Bernd Wurst authored 6 years ago

60) 
61) } else {
Bernd Wurst Neue Darstellung der Kontak...

Bernd Wurst authored 6 years ago

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

Bernd Wurst authored 6 years ago

63) 
Bernd Wurst Neue Darstellung der Kontak...

Bernd Wurst authored 6 years ago

64)     $new = False;
65)     if ($_REQUEST['id'] == 'new') {
66)         title("Adresse anlegen");
67)         $new = True;
68)     } else {
69)         title("Adresse bearbeiten");
70)     }
Bernd Wurst Speichern der Eingaben (unv...

Bernd Wurst authored 6 years ago

71) 
Bernd Wurst Neue Darstellung der Kontak...

Bernd Wurst authored 6 years ago

72)     $c = new_contact();
73)     if (! $new) {
74)         $c = get_contact($_REQUEST['id']);
75)     }
Bernd Wurst API-Funktionen um Kontakte...

Bernd Wurst authored 6 years ago

76) 
Bernd Wurst Neue Darstellung der Kontak...

Bernd Wurst authored 6 years ago

77)     if (!isset($_REQUEST['firma'])) {
78)         $_REQUEST['firma'] = $c['company'];
79)     }
80)     if (!isset($_REQUEST['name'])) {
81)         $_REQUEST['name'] = $c['name'];
82)     }
83)     if (!isset($_REQUEST['land'])) {
84)         $_REQUEST['land'] = $c['country'];
Bernd Wurst Speichern der Eingaben (unv...

Bernd Wurst authored 6 years ago

85)     }
86) 
Bernd Wurst Neue Darstellung der Kontak...

Bernd Wurst authored 6 years ago

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

Bernd Wurst authored 6 years ago

92) 
Bernd Wurst Prüfe Telefonnummer

Bernd Wurst authored 6 years ago

93) 
Bernd Wurst Security

Bernd Wurst authored 6 years ago

94)     $c['company'] = verify_input_general(maybe_null($_REQUEST['firma']));
95)     $c['name'] = verify_input_general(maybe_null($_REQUEST['name']));
96)     $c['address'] = verify_input_general(maybe_null($_REQUEST['adresse']));
97)     $c['country'] = verify_input_general(maybe_null(strtoupper($_REQUEST['land'])));
98)     $c['zip'] = verify_input_general(maybe_null($_REQUEST['plz']));
99)     $c['city'] = verify_input_general(maybe_null($_REQUEST['ort']));
Bernd Wurst Nummercheck ausgelagert und...

Bernd Wurst authored 6 years ago

100) 
Bernd Wurst Neue Darstellung der Kontak...

Bernd Wurst authored 6 years ago

101)         
102) 
103)     if ($_REQUEST['telefon']) {
Bernd Wurst Security

Bernd Wurst authored 6 years ago

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

Bernd Wurst authored 6 years ago

105)         if ($num) {
106)             $c['phone'] = $num;
107)         } else {
108)             system_failure('Die eingegebene Telefonnummer scheint nicht gültig zu sein!');
109)         }
Bernd Wurst Prüfe Telefonnummer

Bernd Wurst authored 6 years ago

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

Bernd Wurst authored 6 years ago

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

Bernd Wurst authored 6 years ago

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

Bernd Wurst authored 6 years ago

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

Bernd Wurst authored 6 years ago

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

Bernd Wurst authored 6 years ago

115)         if ($num) {
116)             $c['mobile'] = $num;
117)         } else {
118)             system_failure('Die eingegebene Mobiltelefonnummer scheint nicht gültig zu sein!');
119)         }
Bernd Wurst Nummercheck ausgelagert und...

Bernd Wurst authored 6 years ago

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

Bernd Wurst authored 6 years ago

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

Bernd Wurst authored 6 years ago

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

Bernd Wurst authored 6 years ago

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

Bernd Wurst authored 6 years ago

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

Bernd Wurst authored 6 years ago

125)         if ($num) {
126)             $c['fax'] = $num;
127)         } else {
128)             system_failure('Die eingegebene Faxnummer scheint nicht gültig zu sein!');
129)         }
Bernd Wurst Nummercheck ausgelagert und...

Bernd Wurst authored 6 years ago

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

Bernd Wurst authored 6 years ago

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

Bernd Wurst authored 6 years ago

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

Bernd Wurst authored 6 years ago

133) 
Bernd Wurst Neue Darstellung der Kontak...

Bernd Wurst authored 6 years ago

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

Bernd Wurst authored 6 years ago

135) 
Bernd Wurst Neue Darstellung der Kontak...

Bernd Wurst authored 6 years ago

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

Bernd Wurst authored 6 years ago

140) 
Bernd Wurst Neue Darstellung der Kontak...

Bernd Wurst authored 6 years ago

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

Bernd Wurst authored 6 years ago

143) 
Bernd Wurst Neue Darstellung der Kontak...

Bernd Wurst authored 6 years ago

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

Bernd Wurst authored 6 years ago

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

Bernd Wurst authored 6 years ago

147)         } else {
148)             send_emailchange_token($c['id'], $_REQUEST['email']);
149)         }
150)     }
151)     if ($c['nic_id']) {
152)         $c = get_contact($c['id']);
153)         upload_contact($c);
Bernd Wurst Speichern der Änderungen mö...

Bernd Wurst authored 6 years ago

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

Bernd Wurst authored 6 years ago

155) 
156)