Hanno Böck 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. You should have received a copy of the CC0 Public Domain Dedication along with this software. If not, see http://creativecommons.org/publicdomain/zero/1.0/ 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. */ require_once('contacts.php'); require_once('numbers.php'); require_once('inc/debug.php'); require_once('session/start.php'); require_role(array(ROLE_CUSTOMER)); $section = 'contacts_list'; $back = 'list'; if (isset($_REQUEST['back'])) { $back = urldecode($_REQUEST['back']); } if (isset($_REQUEST['action']) && $_REQUEST['action'] == 'delete') { $contact = get_contact($_REQUEST['id']); $contact_string = display_contact($contact); $sure = user_is_sure(); if ($sure === null) { are_you_sure("action=delete&id={$contact['id']}&back=".urlencode($back), "Möchten Sie diese Adresse wirklich löschen? {$contact_string}"); } elseif ($sure === true) { delete_contact($contact['id']); if (! $debugmode) { header("Location: ".$back); } } elseif ($sure === false) { if (! $debugmode) { header("Location: ".$back); } } } else { check_form_token('contacts_edit'); $new = false; if ($_REQUEST['id'] == 'new') { title("Adresse anlegen"); $new = true; } else { title("Adresse bearbeiten"); } $c = new_contact(); if (! $new) { $c = get_contact($_REQUEST['id']); } if (!isset($_REQUEST['firma'])) { $_REQUEST['firma'] = $c['company']; } if (!isset($_REQUEST['name'])) { $_REQUEST['name'] = $c['name']; } if (!isset($_REQUEST['land'])) { $_REQUEST['land'] = $c['country']; } if ($c['nic_handle'] != null) { if ($c['name'] != $_REQUEST['name'] || $c['company'] != $_REQUEST['firma'] || $c['country'] != $_REQUEST['land']) { system_failure('Name/Firma/Land kann bei diesem Kontakt nicht geändert werden.'); } } $kundenkontakte = get_kundenkontakte(); if ($c['id'] == $kundenkontakte['kunde']) { if (!$_REQUEST['name'] && !$_REQUEST['firma']) { system_failure('Beim Inhaber darf nicht Firmenname und Name leer sein.'); } } $c['company'] = verify_input_general(maybe_null($_REQUEST['firma'])); $c['name'] = verify_input_general(maybe_null($_REQUEST['name'])); $c['address'] = verify_input_general(maybe_null($_REQUEST['adresse'])); $c['country'] = verify_input_general(maybe_null(strtoupper($_REQUEST['land']))); $c['zip'] = verify_input_general(maybe_null($_REQUEST['plz'])); $c['city'] = verify_input_general(maybe_null($_REQUEST['ort'])); if ($new && isset($_REQUEST['email'])) { $c['email'] = verify_input_general(maybe_null($_REQUEST['email'])); if (!check_emailaddr($c['email'])) { system_failure("Ungültige E-Mail-Adresse!"); } } if (isset($_REQUEST['telefon']) && $_REQUEST['telefon'] != '') { $num = format_number(verify_input_general($_REQUEST['telefon']), $_REQUEST['land']); if ($num) { $c['phone'] = $num; } else { system_failure('Die eingegebene Telefonnummer scheint nicht gültig zu sein!'); } } else { $c['phone'] = null; } if (isset($_REQUEST['mobile']) && $_REQUEST['mobile'] != '') { $num = format_number(verify_input_general($_REQUEST['mobile']), $_REQUEST['land']); if ($num) { $c['mobile'] = $num; } else { system_failure('Die eingegebene Mobiltelefonnummer scheint nicht gültig zu sein!'); } } else { $c['mobile'] = null; } if (isset($_REQUEST['telefax']) && $_REQUEST['telefax'] != '') { $num = format_number(verify_input_general($_REQUEST['telefax']), $_REQUEST['land']); if ($num) { $c['fax'] = $num; } else { system_failure('Die eingegebene Faxnummer scheint nicht gültig zu sein!'); } } else { $c['fax'] = null; } if (isset($_REQUEST['usepgp']) && $_REQUEST['usepgp'] == 'yes' && isset($_REQUEST['pgpid'])) { $pgpid = preg_replace('/[^0-9a-fA-F]/', '', $_REQUEST['pgpid']); DEBUG('PGP-ID: '.$pgpid.' / Länge: '.strlen($pgpid)); if (strlen($pgpid) == 8 || strlen($pgpid) == 16 || strlen($pgpid) == 40) { $c['pgp_id'] = $_REQUEST['pgpid']; if (isset($_REQUEST['pgpkey']) && $_REQUEST['pgpkey']) { $c['pgp_key'] = $_REQUEST['pgpkey']; } } else { warning('Ihre PGP-ID wurde nicht übernommen, da sie syntaktisch falsch erscheint'); } } else { $c['pgp_id'] = null; $c['pgp_key'] = null; } if (isset($_REQUEST['domainholder']) && $_REQUEST['domainholder'] == 1) { if (!possible_domainholder($c)) { DEBUG("Kein möglicher Domaininhaber:"); DEBUG($c); warning('Zur Verwendung als Domaininhaber fehlen noch Angaben.'); redirect('edit?id='.$_REQUEST['id'].'&back='.$_REQUEST['back'].'&domainholder=1'); } if (isset($_REQUEST['email']) && !have_mailaddress($_REQUEST['email'])) { warning("Die neu angelegte Adresse kann erst dann als Domaininhaber genutzt werden, wenn die E-Mail-Adresse bestätigt wurde."); } } $domains = domainlist_by_contact($c); if ($domains) { if (isset($_REQUEST['email']) && $c['email'] != $_REQUEST['email'] && !(isset($_REQUEST['designated']) && $_REQUEST['designated'] == 'yes')) { system_failure("Sie müssen die explizite Zustimmung des Domaininhabers bestätigen um diese Änderungen zu speichern."); } } // Zuerst Kontakt speichern und wenn eine Änderung der E-Mail gewünscht war, // dann hinterher das Token erzeugen und senden. Weil wir für das Token die // Contact-ID brauchen und die bekommen wir bei einer Neueintragung erst nach // dem Speichern. $id = save_contact($c); $c['id'] = $id; if (isset($_REQUEST['email']) && ($new || $c['email'] != $_REQUEST['email'])) { if (have_mailaddress($_REQUEST['email'])) { save_emailaddress($c['id'], verify_input_general($_REQUEST['email'])); } else { send_emailchange_token($c['id'], $_REQUEST['email']); } } if ($c['nic_id']) { $c = get_contact($c['id']); upload_contact($c); } redirect($back); }