511eb544fa4e529d964d6c7541776f5c1fa99a8c
Bernd Wurst In neues Modul ausgelagert

Bernd Wurst authored 6 years ago

modules/handles/include/handles.php     1) <?php
modules/handles/include/handles.php     2) /*
modules/handles/include/handles.php     3) This file belongs to the Webinterface of schokokeks.org Hosting
modules/handles/include/handles.php     4) 
Bernd Wurst Copyright year update

Bernd Wurst authored 6 years ago

modules/handles/include/handles.php     5) Written 2008-2018 by schokokeks.org Hosting, namely
Bernd Wurst In neues Modul ausgelagert

Bernd Wurst authored 6 years ago

modules/handles/include/handles.php     6)   Bernd Wurst <bernd@schokokeks.org>
modules/handles/include/handles.php     7)   Hanno Böck <hanno@schokokeks.org>
modules/handles/include/handles.php     8) 
modules/handles/include/handles.php     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.
modules/handles/include/handles.php    10) 
Hanno Fix coding style with php-c...

Hanno authored 5 years ago

modules/contacts/include/contacts.php  11) You should have received a copy of the CC0 Public Domain Dedication along with this software. If not, see
Bernd Wurst In neues Modul ausgelagert

Bernd Wurst authored 6 years ago

modules/handles/include/handles.php    12) http://creativecommons.org/publicdomain/zero/1.0/
modules/handles/include/handles.php    13) 
modules/handles/include/handles.php    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.
modules/handles/include/handles.php    15) */
modules/handles/include/handles.php    16) 
modules/handles/include/handles.php    17) require_once('inc/debug.php');
Bernd Wurst Fehlendes Include eingetragen

Bernd Wurst authored 6 years ago

modules/contacts/include/contacts.php  18) require_once('inc/icons.php');
Bernd Wurst Ermögliche das Setzen des P...

Bernd Wurst authored 6 years ago

modules/contacts/include/contacts.php  19) require_once('inc/security.php');
Bernd Wurst In neues Modul ausgelagert

Bernd Wurst authored 6 years ago

modules/handles/include/handles.php    20) require_role(array(ROLE_CUSTOMER));
Bernd Wurst Security

Bernd Wurst authored 6 years ago

modules/contacts/include/contacts.php  21) require_once('class/domain.php');
Bernd Wurst In neues Modul ausgelagert

Bernd Wurst authored 6 years ago

modules/handles/include/handles.php    22) 
Bernd Wurst Setzen als Kundenkontakte e...

Bernd Wurst authored 6 years ago

modules/contacts/include/contacts.php  23) require_once('contactapi.php');
Bernd Wurst API-Funktionen um Kontakte...

Bernd Wurst authored 6 years ago

modules/contacts/include/contacts.php  24) 
Bernd Wurst $usage ist ein array

Bernd Wurst authored 6 years ago

modules/handles/include/handles.php    25) 
Hanno Fix coding style with php-c...

Hanno authored 5 years ago

modules/contacts/include/contacts.php  26) function new_contact()
modules/contacts/include/contacts.php  27) {
modules/contacts/include/contacts.php  28)     return array("id" => null,
modules/contacts/include/contacts.php  29)         "state" => null,
Bernd Wurst Vorbereitung für edit/new

Bernd Wurst authored 6 years ago

modules/contacts/include/contacts.php  30)         "lastchange" => time(),
Hanno Fix coding style with php-c...

Hanno authored 5 years ago

modules/contacts/include/contacts.php  31)         "nic_handle" => null,
modules/contacts/include/contacts.php  32)         "nic_id" => null,
Bernd Wurst Ermögliche das Speichern de...

Bernd Wurst authored 5 years ago

modules/contacts/include/contacts.php  33)         "salutation" => null,
Hanno Fix coding style with php-c...

Hanno authored 5 years ago

modules/contacts/include/contacts.php  34)         "company" => null,
modules/contacts/include/contacts.php  35)         "name" => null,
modules/contacts/include/contacts.php  36)         "address" => null,
modules/contacts/include/contacts.php  37)         "zip" => null,
modules/contacts/include/contacts.php  38)         "city" => null,
Bernd Wurst Vorbereitung für edit/new

Bernd Wurst authored 6 years ago

modules/contacts/include/contacts.php  39)         "country" => "DE",
Hanno Fix coding style with php-c...

Hanno authored 5 years ago

modules/contacts/include/contacts.php  40)         "phone" => null,
modules/contacts/include/contacts.php  41)         "mobile" => null,
modules/contacts/include/contacts.php  42)         "fax" => null,
modules/contacts/include/contacts.php  43)         "email" => null,
modules/contacts/include/contacts.php  44)         "pgp_id" => null,
modules/contacts/include/contacts.php  45)         "pgp_key" => null,
Bernd Wurst Vorbereitung für edit/new

Bernd Wurst authored 6 years ago

modules/contacts/include/contacts.php  46)         "customer" => $_SESSION['customerinfo']['customerno']);
modules/contacts/include/contacts.php  47) }
modules/contacts/include/contacts.php  48) 
modules/contacts/include/contacts.php  49) 
Bernd Wurst Ermögliche das Speichern de...

Bernd Wurst authored 5 years ago

modules/contacts/include/contacts.php  50) function get_contact($id, $customer = null)
Bernd Wurst Vorbereitung für edit/new

Bernd Wurst authored 6 years ago

modules/contacts/include/contacts.php  51) {
Bernd Wurst Ermögliche das Speichern de...

Bernd Wurst authored 5 years ago

modules/contacts/include/contacts.php  52)     $c = $_SESSION['customerinfo']['customerno'];
modules/contacts/include/contacts.php  53)     if ($customer != null && have_role(ROLE_SYSADMIN)) {
modules/contacts/include/contacts.php  54)         $c = $customer;
modules/contacts/include/contacts.php  55)     }
Bernd Wurst Vorbereitung für edit/new

Bernd Wurst authored 6 years ago

modules/contacts/include/contacts.php  56)     $args = array(
Bernd Wurst Ermögliche das Speichern de...

Bernd Wurst authored 5 years ago

modules/contacts/include/contacts.php  57)         "cid" => (int) $c,
Bernd Wurst Vorbereitung für edit/new

Bernd Wurst authored 6 years ago

modules/contacts/include/contacts.php  58)         "id" => (int) $id);
Bernd Wurst Ermögliche das Speichern de...

Bernd Wurst authored 5 years ago

modules/contacts/include/contacts.php  59)     $result = db_query("SELECT id, state, lastchange, nic_id, nic_handle, salutation, company, name, address, zip, city, country, phone, mobile, fax, email, pgp_id, pgp_key FROM kundendaten.contacts WHERE id=:id AND customer=:cid", $args);
Bernd Wurst Vorbereitung für edit/new

Bernd Wurst authored 6 years ago

modules/contacts/include/contacts.php  60)     if ($result->rowCount() == 0) {
modules/contacts/include/contacts.php  61)         system_failure("Kontakt nicht gefunden oder gehört nicht diesem Kunden");
modules/contacts/include/contacts.php  62)     }
Bernd Wurst Zeige bestehende Daten in d...

Bernd Wurst authored 6 years ago

modules/contacts/include/contacts.php  63)     $contact = $result->fetch();
Bernd Wurst Vorbereitung für edit/new

Bernd Wurst authored 6 years ago

modules/contacts/include/contacts.php  64)     return $contact;
modules/contacts/include/contacts.php  65) }
modules/contacts/include/contacts.php  66) 
Hanno Fix coding style with php-c...

Hanno authored 5 years ago

modules/contacts/include/contacts.php  67) function get_contacts()
modules/contacts/include/contacts.php  68) {
Bernd Wurst In neues Modul ausgelagert

Bernd Wurst authored 6 years ago

modules/handles/include/handles.php    69)     $cid = (int) $_SESSION['customerinfo']['customerno'];
Bernd Wurst Ermögliche das Speichern de...

Bernd Wurst authored 5 years ago

modules/contacts/include/contacts.php  70)     $result = db_query("SELECT id, state, lastchange, nic_id, nic_handle, salutation, company, name, address, zip, city, country, phone, mobile, fax, email, pgp_id, pgp_key FROM kundendaten.contacts WHERE (state<>'deleted' OR state IS NULL) AND customer=? ORDER BY COALESCE(company, name)", array($cid));
Bernd Wurst In neues Modul ausgelagert

Bernd Wurst authored 6 years ago

modules/handles/include/handles.php    71)     $ret = array();
Bernd Wurst Umbenennung Datenbank handl...

Bernd Wurst authored 6 years ago

modules/contacts/include/contacts.php  72)     while ($contact = $result->fetch()) {
modules/contacts/include/contacts.php  73)         $ret[$contact['id']] = $contact;
Bernd Wurst In neues Modul ausgelagert

Bernd Wurst authored 6 years ago

modules/handles/include/handles.php    74)     }
modules/handles/include/handles.php    75)     DEBUG($ret);
modules/handles/include/handles.php    76)     return $ret;
modules/handles/include/handles.php    77) }
modules/handles/include/handles.php    78) 
Bernd Wurst Prüfe Telefonnummer

Bernd Wurst authored 6 years ago

modules/contacts/include/contacts.php  79) 
Hanno Fix coding style with php-c...

Hanno authored 5 years ago

modules/contacts/include/contacts.php  80) function is_domainholder($contactid)
modules/contacts/include/contacts.php  81) {
Bernd Wurst Neue Darstellung der Kontak...

Bernd Wurst authored 6 years ago

modules/contacts/include/contacts.php  82)     $contactid = (int) $contactid;
modules/contacts/include/contacts.php  83)     $result = db_query("SELECT id FROM kundendaten.domains WHERE owner=? OR admin_c=?", array($contactid, $contactid));
modules/contacts/include/contacts.php  84)     if ($result->rowCount() > 0) {
modules/contacts/include/contacts.php  85)         return true;
modules/contacts/include/contacts.php  86)     }
modules/contacts/include/contacts.php  87)     return false;
modules/contacts/include/contacts.php  88) }
modules/contacts/include/contacts.php  89) 
Hanno Fix coding style with php-c...

Hanno authored 5 years ago

modules/contacts/include/contacts.php  90) function possible_domainholders()
modules/contacts/include/contacts.php  91) {
Bernd Wurst Prüfe Telefonnummer

Bernd Wurst authored 6 years ago

modules/contacts/include/contacts.php  92)     $allcontacts = get_contacts();
modules/contacts/include/contacts.php  93)     $ret = array();
modules/contacts/include/contacts.php  94)     foreach ($allcontacts as $id => $c) {
Bernd Wurst API-Funktionen um Kontakte...

Bernd Wurst authored 6 years ago

modules/contacts/include/contacts.php  95)         if (possible_domainholder($c)) {
Bernd Wurst Prüfe Telefonnummer

Bernd Wurst authored 6 years ago

modules/contacts/include/contacts.php  96)             $ret[$id] = $c;
modules/contacts/include/contacts.php  97)         }
modules/contacts/include/contacts.php  98)     }
modules/contacts/include/contacts.php  99)     return $ret;
modules/contacts/include/contacts.php 100) }
modules/contacts/include/contacts.php 101) 
Bernd Wurst API-Funktionen um Kontakte...

Bernd Wurst authored 6 years ago

modules/contacts/include/contacts.php 102) function possible_domainholder($c)
modules/contacts/include/contacts.php 103) {
modules/contacts/include/contacts.php 104)     if ($c['name'] && $c['address'] && $c['zip'] && $c['city'] && $c['country'] && $c['phone'] && $c['email']) {
modules/contacts/include/contacts.php 105)         return true;
modules/contacts/include/contacts.php 106)     }
modules/contacts/include/contacts.php 107)     return false;
modules/contacts/include/contacts.php 108) }
Bernd Wurst Prüfe Telefonnummer

Bernd Wurst authored 6 years ago

modules/contacts/include/contacts.php 109) 
Hanno Fix coding style with php-c...

Hanno authored 5 years ago

modules/contacts/include/contacts.php 110) function have_mailaddress($email)
Bernd Wurst Speichern der Änderungen mö...

Bernd Wurst authored 6 years ago

modules/contacts/include/contacts.php 111) {
modules/contacts/include/contacts.php 112)     $cid = (int) $_SESSION['customerinfo']['customerno'];
modules/contacts/include/contacts.php 113)     $result = db_query("SELECT id FROM kundendaten.contacts WHERE customer=? AND email=?", array($cid, $email));
modules/contacts/include/contacts.php 114)     if ($result->rowCount() > 0) {
modules/contacts/include/contacts.php 115)         return true;
modules/contacts/include/contacts.php 116)     }
modules/contacts/include/contacts.php 117)     return false;
modules/contacts/include/contacts.php 118) }
modules/contacts/include/contacts.php 119) 
Bernd Wurst In neues Modul ausgelagert

Bernd Wurst authored 6 years ago

modules/handles/include/handles.php   120) 
Hanno Fix coding style with php-c...

Hanno authored 5 years ago

modules/contacts/include/contacts.php 121) function possible_kundenkontakt($c)
modules/contacts/include/contacts.php 122) {
Bernd Wurst Setzen als Kundenkontakte e...

Bernd Wurst authored 6 years ago

modules/contacts/include/contacts.php 123)     if ($c['name'] && $c['email']) {
modules/contacts/include/contacts.php 124)         return true;
modules/contacts/include/contacts.php 125)     }
modules/contacts/include/contacts.php 126) }
modules/contacts/include/contacts.php 127) 
modules/contacts/include/contacts.php 128) 
Hanno Fix coding style with php-c...

Hanno authored 5 years ago

modules/contacts/include/contacts.php 129) function set_kundenkontakt($typ, $id)
modules/contacts/include/contacts.php 130) {
Bernd Wurst Setzen als Kundenkontakte e...

Bernd Wurst authored 6 years ago

modules/contacts/include/contacts.php 131)     if (! $id) {
Hanno Fix coding style with php-c...

Hanno authored 5 years ago

modules/contacts/include/contacts.php 132)         $id = null;
Bernd Wurst Setzen als Kundenkontakte e...

Bernd Wurst authored 6 years ago

modules/contacts/include/contacts.php 133)     } else {
modules/contacts/include/contacts.php 134)         $id = (int) $id;
modules/contacts/include/contacts.php 135)     }
modules/contacts/include/contacts.php 136)     $args = array(
modules/contacts/include/contacts.php 137)         "kunde" => (int) $_SESSION['customerinfo']['customerno'],
modules/contacts/include/contacts.php 138)         "contact" => $id
modules/contacts/include/contacts.php 139)         );
Hanno Fix coding style with php-c...

Hanno authored 5 years ago

modules/contacts/include/contacts.php 140)     $field = null;
Bernd Wurst Setzen als Kundenkontakte e...

Bernd Wurst authored 6 years ago

modules/contacts/include/contacts.php 141)     if ($typ == 'kunde') {
modules/contacts/include/contacts.php 142)         $field = 'contact_kunde';
modules/contacts/include/contacts.php 143)     } elseif ($typ == 'extern') {
modules/contacts/include/contacts.php 144)         $field = 'contact_extern';
modules/contacts/include/contacts.php 145)     } elseif ($typ == 'rechnung') {
modules/contacts/include/contacts.php 146)         $field = 'contact_rechnung';
Bernd Wurst Verwaltung eines betrieblic...

Bernd Wurst authored 5 years ago

modules/contacts/include/contacts.php 147)     } elseif ($typ == 'dataprotection') {
modules/contacts/include/contacts.php 148)         $field = 'contact_dataprotection';
Bernd Wurst Setzen als Kundenkontakte e...

Bernd Wurst authored 6 years ago

modules/contacts/include/contacts.php 149)     } else {
modules/contacts/include/contacts.php 150)         system_failure("Falscher Typ!");
modules/contacts/include/contacts.php 151)     }
modules/contacts/include/contacts.php 152)     db_query("UPDATE kundendaten.kunden SET ".$field."=:contact WHERE id=:kunde", $args);
Bernd Wurst Synchronisiere die Legacy-D...

Bernd Wurst authored 6 years ago

modules/contacts/include/contacts.php 153)     sync_legacy_contactdata();
Bernd Wurst Setzen als Kundenkontakte e...

Bernd Wurst authored 6 years ago

modules/contacts/include/contacts.php 154) }
modules/contacts/include/contacts.php 155) 
Bernd Wurst Synchronisiere die Legacy-D...

Bernd Wurst authored 6 years ago

modules/contacts/include/contacts.php 156) 
modules/contacts/include/contacts.php 157) function sync_legacy_contactdata()
modules/contacts/include/contacts.php 158) {
modules/contacts/include/contacts.php 159)     $cid = (int) $_SESSION['customerinfo']['customerno'];
modules/contacts/include/contacts.php 160)     $kundenkontakte = get_kundenkontakte();
modules/contacts/include/contacts.php 161)     $kunde = get_contact($kundenkontakte['kunde']);
Hanno Fix coding style with php-c...

Hanno authored 5 years ago

modules/contacts/include/contacts.php 162)     $vorname = null;
modules/contacts/include/contacts.php 163)     $nachname = null;
Bernd Wurst Beim synchronisieren der le...

Bernd Wurst authored 6 years ago

modules/contacts/include/contacts.php 164)     if ($kunde['name']) {
modules/contacts/include/contacts.php 165)         $vorname = explode(' ', $kunde['name'], 2)[0];
modules/contacts/include/contacts.php 166)         $nachname = explode(' ', $kunde['name'], 2)[1];
modules/contacts/include/contacts.php 167)     }
Bernd Wurst Synchronisiere die Legacy-D...

Bernd Wurst authored 6 years ago

modules/contacts/include/contacts.php 168)     $args = array("firma" => $kunde['company'],
Bernd Wurst Ermögliche das Speichern de...

Bernd Wurst authored 5 years ago

modules/contacts/include/contacts.php 169)             "anrede" => $kunde['salutation'],
Bernd Wurst Beim synchronisieren der le...

Bernd Wurst authored 6 years ago

modules/contacts/include/contacts.php 170)             "vorname" => $vorname,
modules/contacts/include/contacts.php 171)             "nachname" => $nachname,
Bernd Wurst Synchronisiere die Legacy-D...

Bernd Wurst authored 6 years ago

modules/contacts/include/contacts.php 172)             "adresse" => $kunde['address'],
modules/contacts/include/contacts.php 173)             "plz" => $kunde['zip'],
modules/contacts/include/contacts.php 174)             "ort" => $kunde['city'],
modules/contacts/include/contacts.php 175)             "land" => $kunde['country'],
modules/contacts/include/contacts.php 176)             "telefon" => $kunde['phone'],
modules/contacts/include/contacts.php 177)             "mobile" => $kunde['mobile'],
modules/contacts/include/contacts.php 178)             "telefax" => $kunde['fax'],
modules/contacts/include/contacts.php 179)             "email" => $kunde['email'],
Bernd Wurst Synchronisiere pgp-key-date...

Bernd Wurst authored 6 years ago

modules/contacts/include/contacts.php 180)             "pgp_id" => $kunde['pgp_id'],
modules/contacts/include/contacts.php 181)             "pgp_key" => $kunde['pgp_key'],
Bernd Wurst Synchronisiere die Legacy-D...

Bernd Wurst authored 6 years ago

modules/contacts/include/contacts.php 182)             "cid" => $cid);
Bernd Wurst Ermögliche das Speichern de...

Bernd Wurst authored 5 years ago

modules/contacts/include/contacts.php 183)     db_query("UPDATE kundendaten.kunden SET anrede=:anrede, firma=:firma, vorname=:vorname, nachname=:nachname, adresse=:adresse,
Bernd Wurst Synchronisiere pgp-key-date...

Bernd Wurst authored 6 years ago

modules/contacts/include/contacts.php 184)             plz=:plz, ort=:ort, land=:land, telefon=:telefon, mobile=:mobile, telefax=:telefax, email=:email, 
modules/contacts/include/contacts.php 185)             pgp_id=:pgp_id, pgp_key=:pgp_key WHERE id=:cid", $args);
Bernd Wurst Synchronisiere die Legacy-D...

Bernd Wurst authored 6 years ago

modules/contacts/include/contacts.php 186)     if ($kundenkontakte['extern']) {
modules/contacts/include/contacts.php 187)         $extern = get_contact($kundenkontakte['extern'])['email'];
modules/contacts/include/contacts.php 188)         if ($extern) {
modules/contacts/include/contacts.php 189)             db_query("UPDATE kundendaten.kunden SET email_extern=? WHERE id=?", array($extern, $cid));
modules/contacts/include/contacts.php 190)         }
modules/contacts/include/contacts.php 191)     }
modules/contacts/include/contacts.php 192)     if ($kundenkontakte['rechnung']) {
modules/contacts/include/contacts.php 193)         $kunde = get_contact($kundenkontakte['rechnung']);
modules/contacts/include/contacts.php 194)         $args = array("firma" => $kunde['company'],
modules/contacts/include/contacts.php 195)                 "name" => $kunde['name'],
modules/contacts/include/contacts.php 196)                 "adresse" => $kunde['address'],
modules/contacts/include/contacts.php 197)                 "plz" => $kunde['zip'],
modules/contacts/include/contacts.php 198)                 "ort" => $kunde['city'],
modules/contacts/include/contacts.php 199)                 "email" => $kunde['email'],
modules/contacts/include/contacts.php 200)                 "cid" => $cid);
modules/contacts/include/contacts.php 201)         db_query("UPDATE kundendaten.kunden SET re_firma=:firma, re_name=:name, re_adresse=:adresse,
modules/contacts/include/contacts.php 202)                 re_plz=:plz, re_ort=:ort, email_rechnung=:email WHERE id=:cid", $args);
modules/contacts/include/contacts.php 203)     }
modules/contacts/include/contacts.php 204) }
modules/contacts/include/contacts.php 205) 
modules/contacts/include/contacts.php 206) 
Hanno Fix coding style with php-c...

Hanno authored 5 years ago

modules/contacts/include/contacts.php 207) function get_kundenkontakte()
modules/contacts/include/contacts.php 208) {
Bernd Wurst In neues Modul ausgelagert

Bernd Wurst authored 6 years ago

modules/handles/include/handles.php   209)     $cid = (int) $_SESSION['customerinfo']['customerno'];
Bernd Wurst Verwaltung eines betrieblic...

Bernd Wurst authored 5 years ago

modules/contacts/include/contacts.php 210)     $result = db_query("SELECT contact_kunde, contact_extern, contact_rechnung, contact_dataprotection FROM kundendaten.kunden WHERE id=?", array($cid));
Bernd Wurst In neues Modul ausgelagert

Bernd Wurst authored 6 years ago

modules/handles/include/handles.php   211)     $res = $result->fetch();
Bernd Wurst Umbenennung Datenbank handl...

Bernd Wurst authored 6 years ago

modules/contacts/include/contacts.php 212)     $ret = array("kunde" => $res['contact_kunde'],
modules/contacts/include/contacts.php 213)                  "extern" => $res['contact_extern'],
Bernd Wurst Verwaltung eines betrieblic...

Bernd Wurst authored 5 years ago

modules/contacts/include/contacts.php 214)                  "rechnung" => $res['contact_rechnung'],
modules/contacts/include/contacts.php 215)                  "dataprotection" => $res['contact_dataprotection']);
Bernd Wurst In neues Modul ausgelagert

Bernd Wurst authored 6 years ago

modules/handles/include/handles.php   216)     return $ret;
modules/handles/include/handles.php   217) }
modules/handles/include/handles.php   218) 
Hanno Fix coding style with php-c...

Hanno authored 5 years ago

modules/contacts/include/contacts.php 219) function save_emailaddress($id, $email)
Bernd Wurst Speichern der Änderungen mö...

Bernd Wurst authored 6 years ago

modules/contacts/include/contacts.php 220) {
Bernd Wurst Aktualisiere Domain- und In...

Bernd Wurst authored 6 years ago

modules/contacts/include/contacts.php 221)     // Speichert eine E-Mail-Adresse direkt, z.B. wenn diese schonmal geprüft wurde
Bernd Wurst Speichere E-Mail-Adresse oh...

Bernd Wurst authored 6 years ago

modules/contacts/include/contacts.php 222)     $args = array("cid" => (int) $_SESSION['customerinfo']['customerno'],
modules/contacts/include/contacts.php 223)         "id" => (int) $id,
modules/contacts/include/contacts.php 224)         "email" => $email);
Hanno Fix coding style with php-c...

Hanno authored 5 years ago

modules/contacts/include/contacts.php 225)     db_query("UPDATE kundendaten.contacts SET email=:email WHERE id=:id AND customer=:cid", $args);
Bernd Wurst Speichern der Änderungen mö...

Bernd Wurst authored 6 years ago

modules/contacts/include/contacts.php 226) }
modules/contacts/include/contacts.php 227) 
modules/contacts/include/contacts.php 228) function save_contact($c)
modules/contacts/include/contacts.php 229) {
Bernd Wurst API-Funktionen um Kontakte...

Bernd Wurst authored 6 years ago

modules/contacts/include/contacts.php 230)     if ($c['nic_id']) {
modules/contacts/include/contacts.php 231)         if (! possible_domainholder($c)) {
modules/contacts/include/contacts.php 232)             system_failure("Sie haben ein Feld geleert, das für die Eigenschaft als Domaininhaber erhalten bleiben muss. Ihre Änderungen wurden nicht gespeichert.");
modules/contacts/include/contacts.php 233)         }
modules/contacts/include/contacts.php 234)     }
Bernd Wurst Speichern der Änderungen mö...

Bernd Wurst authored 6 years ago

modules/contacts/include/contacts.php 235)     for ($i=0;array_key_exists($i, $c);$i++) {
modules/contacts/include/contacts.php 236)         unset($c[$i]);
modules/contacts/include/contacts.php 237)     }
modules/contacts/include/contacts.php 238)     unset($c['state']);
modules/contacts/include/contacts.php 239)     unset($c['lastchange']);
modules/contacts/include/contacts.php 240)     unset($c['email']);
modules/contacts/include/contacts.php 241)     $c['customer'] = (int) $_SESSION['customerinfo']['customerno'];
modules/contacts/include/contacts.php 242)     if ($c['id']) {
modules/contacts/include/contacts.php 243)         // Kontakt bestaht schon, Update
Bernd Wurst Ermögliche das Speichern de...

Bernd Wurst authored 5 years ago

modules/contacts/include/contacts.php 244)         db_query("UPDATE kundendaten.contacts SET nic_id=:nic_id, nic_handle=:nic_handle, salutation=:salutation, company=:company, name=:name, address=:address, zip=:zip, city=:city, country=:country, phone=:phone, mobile=:mobile, fax=:fax, pgp_id=:pgp_id, pgp_key=:pgp_key WHERE id=:id AND customer=:customer", $c);
Bernd Wurst Speichern der Änderungen mö...

Bernd Wurst authored 6 years ago

modules/contacts/include/contacts.php 245)     } else {
modules/contacts/include/contacts.php 246)         unset($c['id']);
modules/contacts/include/contacts.php 247)         // Neu anlegen
Bernd Wurst Ermögliche das Speichern de...

Bernd Wurst authored 5 years ago

modules/contacts/include/contacts.php 248)         db_query("INSERT INTO kundendaten.contacts (nic_id, nic_handle, customer, salutation, company, name, address, zip, city, country, phone, mobile, fax, pgp_id, pgp_key) VALUES (:nic_id, :nic_handle, :customer, :salutation, :company, :name, :address, :zip, :city, :country, :phone, :mobile, :fax, :pgp_id, :pgp_key)", $c);
Bernd Wurst Speichern der Änderungen mö...

Bernd Wurst authored 6 years ago

modules/contacts/include/contacts.php 249)         $c['id'] = db_insert_id();
modules/contacts/include/contacts.php 250)     }
Bernd Wurst Synchronisiere die Legacy-D...

Bernd Wurst authored 6 years ago

modules/contacts/include/contacts.php 251)     // FIXME: Das sollte eigentlich nicht bei jedem einzelnen Speicherovrgang passieren
modules/contacts/include/contacts.php 252)     sync_legacy_contactdata();
Bernd Wurst Speichern der Änderungen mö...

Bernd Wurst authored 6 years ago

modules/contacts/include/contacts.php 253)     return $c['id'];
modules/contacts/include/contacts.php 254) }
modules/contacts/include/contacts.php 255) 
modules/contacts/include/contacts.php 256) 
modules/contacts/include/contacts.php 257) function send_emailchange_token($id, $email)
modules/contacts/include/contacts.php 258) {
modules/contacts/include/contacts.php 259)     if (! check_emailaddr($email)) {
modules/contacts/include/contacts.php 260)         system_falure("Die E-Mail-Adresse scheint nicht gültig zu sein.");
modules/contacts/include/contacts.php 261)     }
modules/contacts/include/contacts.php 262)     $args = array("id" => (int) $id,
modules/contacts/include/contacts.php 263)         "email" => $email,
modules/contacts/include/contacts.php 264)         "token" => random_string(20));
modules/contacts/include/contacts.php 265) 
Hanno Fix coding style with php-c...

Hanno authored 5 years ago

modules/contacts/include/contacts.php 266)     db_query("INSERT INTO kundendaten.mailaddress_token (token, expire, contact, email) VALUES (:token, NOW() + INTERVAL 1 DAY, :id, :email)", $args);
Bernd Wurst Speichern der Änderungen mö...

Bernd Wurst authored 6 years ago

modules/contacts/include/contacts.php 267)     DEBUG('Token erzeugt: '.print_r($args, true));
modules/contacts/include/contacts.php 268)     $message = 'Diese E-Mail-Adresse wurde angegeben als möglicher Domaininhaber oder Kundenkontakt bei schokokeks.org Hosting.
modules/contacts/include/contacts.php 269) 
modules/contacts/include/contacts.php 270) Bitte bestätigen Sie mit einem Klick auf den nachfolgenden Link, dass diese E-Mail-Adresse funktioniert und verwendet werden soll:
modules/contacts/include/contacts.php 271) 
modules/contacts/include/contacts.php 272)     '.config('webinterface_url').'/verify'.$args['token'].'
modules/contacts/include/contacts.php 273) 
modules/contacts/include/contacts.php 274) Wenn Sie diesen Link nicht innerhalb von 24 Stunden abrufen, wird Ihre Adresse gelöscht und nicht verwendet.
modules/contacts/include/contacts.php 275) Sollten Sie mit der Verwendung Ihrer E-Mail-Adresse nicht einverstanden sein, so ignorieren Sie daher bitte diese Nachricht oder teilen Sie uns dies mit.
modules/contacts/include/contacts.php 276) 
modules/contacts/include/contacts.php 277) -- 
modules/contacts/include/contacts.php 278) schokokeks.org GbR, Bernd Wurst, Johannes Böck
modules/contacts/include/contacts.php 279) Köchersberg 32, 71540 Murrhardt
modules/contacts/include/contacts.php 280) 
modules/contacts/include/contacts.php 281) https://schokokeks.org
modules/contacts/include/contacts.php 282) ';
modules/contacts/include/contacts.php 283)     # send welcome message
modules/contacts/include/contacts.php 284)     mail($email, '=?UTF-8?Q?Best=C3=A4tigung_Ihrer_E-Mail-Adresse?=', $message, "X-schokokeks-org-message: verify\nFrom: ".config('company_name').' <'.config('adminmail').">\nMIME-Version: 1.0\nContent-Type: text/plain; charset=UTF-8\n");
modules/contacts/include/contacts.php 285) }
Bernd Wurst E-Mail-Adresse verifizieren...

Bernd Wurst authored 6 years ago

modules/handles/include/handles.php   286) 
Hanno Fix coding style with php-c...

Hanno authored 5 years ago

modules/contacts/include/contacts.php 287) function update_pending($contactid)
modules/contacts/include/contacts.php 288) {
Bernd Wurst Umbenennung Datenbank handl...

Bernd Wurst authored 6 years ago

modules/contacts/include/contacts.php 289)     $contactid = (int) $contactid;
modules/contacts/include/contacts.php 290)     $result = db_query("SELECT email FROM kundendaten.mailaddress_token WHERE contact=?", array($contactid));
Bernd Wurst E-Mail-Adresse verifizieren...

Bernd Wurst authored 6 years ago

modules/handles/include/handles.php   291)     if ($result->rowCount() == 0) {
Hanno Fix coding style with php-c...

Hanno authored 5 years ago

modules/contacts/include/contacts.php 292)         return null;
Bernd Wurst E-Mail-Adresse verifizieren...

Bernd Wurst authored 6 years ago

modules/handles/include/handles.php   293)     }
modules/handles/include/handles.php   294)     $res = $result->fetch();
modules/handles/include/handles.php   295)     return $res['email'];
modules/handles/include/handles.php   296) }
modules/handles/include/handles.php   297) 
modules/handles/include/handles.php   298) 
modules/handles/include/handles.php   299) 
Hanno Fix coding style with php-c...

Hanno authored 5 years ago

modules/contacts/include/contacts.php 300) function delete_contact($id)
modules/contacts/include/contacts.php 301) {
Bernd Wurst Neue Darstellung der Kontak...

Bernd Wurst authored 6 years ago

modules/contacts/include/contacts.php 302)     $c = get_contact($id);
Bernd Wurst Zeige Kundenkontakte immer...

Bernd Wurst authored 6 years ago

modules/contacts/include/contacts.php 303)     $kundenkontakte = get_kundenkontakte();
modules/contacts/include/contacts.php 304)     if ($id == $kundenkontakte['kunde']) {
modules/contacts/include/contacts.php 305)         system_failure("Die Stamm-Adresse kann nicht gelöscht werden, bitte erst eine andere Adresse als Stamm-Adresse festlegen!");
modules/contacts/include/contacts.php 306)     }
modules/contacts/include/contacts.php 307)     if ($id == $kundenkontakte['rechnung']) {
Hanno Fix coding style with php-c...

Hanno authored 5 years ago

modules/contacts/include/contacts.php 308)         set_kundenkontakt('rechnung', null);
Bernd Wurst Zeige Kundenkontakte immer...

Bernd Wurst authored 6 years ago

modules/contacts/include/contacts.php 309)     }
modules/contacts/include/contacts.php 310)     if ($id == $kundenkontakte['extern']) {
Hanno Fix coding style with php-c...

Hanno authored 5 years ago

modules/contacts/include/contacts.php 311)         set_kundenkontakt('extern', null);
Bernd Wurst Zeige Kundenkontakte immer...

Bernd Wurst authored 6 years ago

modules/contacts/include/contacts.php 312)     }
Bernd Wurst Neue Darstellung der Kontak...

Bernd Wurst authored 6 years ago

modules/contacts/include/contacts.php 313)     if ($c['nic_id']) {
modules/contacts/include/contacts.php 314)         // Lösche bei der Registry
modules/contacts/include/contacts.php 315)         $c['state'] = 'deleted';
modules/contacts/include/contacts.php 316)         upload_contact($c);
modules/contacts/include/contacts.php 317)     }
modules/contacts/include/contacts.php 318)     db_query("UPDATE kundendaten.contacts SET state='deleted' WHERE id=?", array($c['id']));
modules/contacts/include/contacts.php 319) }
modules/contacts/include/contacts.php 320) 
Bernd Wurst Security

Bernd Wurst authored 6 years ago

modules/contacts/include/contacts.php 321) 
Hanno Fix coding style with php-c...

Hanno authored 5 years ago

modules/contacts/include/contacts.php 322) function search_pgp_key($search)
modules/contacts/include/contacts.php 323) {
Bernd Wurst Ermögliche das Setzen des P...

Bernd Wurst authored 6 years ago

modules/contacts/include/contacts.php 324)     if (! check_emailaddr($search)) {
modules/contacts/include/contacts.php 325)         # Keine Ausgabe weil diese Funktion im AJAX-Call verwendet wird
Hanno Fix coding style with php-c...

Hanno authored 5 years ago

modules/contacts/include/contacts.php 326)         return null;
Bernd Wurst Ermögliche das Setzen des P...

Bernd Wurst authored 6 years ago

modules/contacts/include/contacts.php 327)     }
modules/contacts/include/contacts.php 328)     $output = array();
modules/contacts/include/contacts.php 329)     exec('LC_ALL=C /usr/bin/gpg --batch --with-colons --keyserver hkp://pool.sks-keyservers.net --search-key '.escapeshellarg($search), $output);
modules/contacts/include/contacts.php 330)     DEBUG($output);
modules/contacts/include/contacts.php 331)     $keys = array();
Hanno Fix coding style with php-c...

Hanno authored 5 years ago

modules/contacts/include/contacts.php 332)     foreach ($output as $row) {
Bernd Wurst Ermögliche das Setzen des P...

Bernd Wurst authored 6 years ago

modules/contacts/include/contacts.php 333)         if (substr($row, 0, 4) === 'pub:') {
modules/contacts/include/contacts.php 334)             $parts = explode(':', $row);
modules/contacts/include/contacts.php 335)             if ($parts[5] && ($parts[5] < time())) {
modules/contacts/include/contacts.php 336)                 // abgelaufener key
modules/contacts/include/contacts.php 337)                 continue;
modules/contacts/include/contacts.php 338)             }
modules/contacts/include/contacts.php 339)             // array-key = create-timestamp
modules/contacts/include/contacts.php 340)             // array-value = key-id
modules/contacts/include/contacts.php 341)             $keys[$parts[4]] = $parts[1];
modules/contacts/include/contacts.php 342)         }
modules/contacts/include/contacts.php 343)     }
modules/contacts/include/contacts.php 344)     if (count($keys) == 0) {
Hanno Fix coding style with php-c...

Hanno authored 5 years ago

modules/contacts/include/contacts.php 345)         return null;
Bernd Wurst Ermögliche das Setzen des P...

Bernd Wurst authored 6 years ago

modules/contacts/include/contacts.php 346)     }
modules/contacts/include/contacts.php 347)     ksort($keys, SORT_NUMERIC);
modules/contacts/include/contacts.php 348)     DEBUG(end($keys));
modules/contacts/include/contacts.php 349)     // liefert den neuesten Key
modules/contacts/include/contacts.php 350)     return end($keys);
modules/contacts/include/contacts.php 351) }
modules/contacts/include/contacts.php 352) 
modules/contacts/include/contacts.php 353) 
Hanno Fix coding style with php-c...

Hanno authored 5 years ago

modules/contacts/include/contacts.php 354) function fetch_pgp_key($pgp_id)
modules/contacts/include/contacts.php 355) {
Bernd Wurst Ermögliche das Setzen des P...

Bernd Wurst authored 6 years ago

modules/contacts/include/contacts.php 356)     $output = array();
Hanno Fix coding style with php-c...

Hanno authored 5 years ago

modules/contacts/include/contacts.php 357)     $ret = null;
Bernd Wurst Ermögliche das Setzen des P...

Bernd Wurst authored 6 years ago

modules/contacts/include/contacts.php 358)     DEBUG('/usr/bin/gpg --batch --keyserver hkp://pool.sks-keyservers.net --recv-key '.escapeshellarg($pgp_id));
modules/contacts/include/contacts.php 359)     exec('/usr/bin/gpg --batch --keyserver hkp://pool.sks-keyservers.net --recv-key '.escapeshellarg($pgp_id), $output, $ret);
modules/contacts/include/contacts.php 360)     DEBUG($output);
modules/contacts/include/contacts.php 361)     DEBUG($ret);
modules/contacts/include/contacts.php 362)     if ($ret == 0) {
modules/contacts/include/contacts.php 363)         exec('/usr/bin/gpg --batch --with-colons --list-keys '.escapeshellarg($pgp_id), $output);
modules/contacts/include/contacts.php 364)         DEBUG($output);
Hanno Fix coding style with php-c...

Hanno authored 5 years ago

modules/contacts/include/contacts.php 365)         foreach ($output as $row) {
Bernd Wurst Ermögliche das Setzen des P...

Bernd Wurst authored 6 years ago

modules/contacts/include/contacts.php 366)             if (substr($row, 0, 4) === 'fpr:') {
modules/contacts/include/contacts.php 367)                 $parts = explode(':', $row);
modules/contacts/include/contacts.php 368)                 // Fingerprint
modules/contacts/include/contacts.php 369)                 return $parts[9];
modules/contacts/include/contacts.php 370)             }
modules/contacts/include/contacts.php 371)         }
modules/contacts/include/contacts.php 372)     }
Hanno Fix coding style with php-c...

Hanno authored 5 years ago

modules/contacts/include/contacts.php 373)     return null;
Bernd Wurst Ermögliche das Setzen des P...

Bernd Wurst authored 6 years ago

modules/contacts/include/contacts.php 374) }
modules/contacts/include/contacts.php 375) 
modules/contacts/include/contacts.php 376) 
Hanno Fix coding style with php-c...

Hanno authored 5 years ago

modules/contacts/include/contacts.php 377) function domainlist_by_contact($c)
modules/contacts/include/contacts.php 378) {
Bernd Wurst Beim synchronisieren der le...

Bernd Wurst authored 6 years ago

modules/contacts/include/contacts.php 379)     $cid = (int) $_SESSION['customerinfo']['customerno'];
modules/contacts/include/contacts.php 380)     $result = db_query("SELECT id FROM kundendaten.domains WHERE (owner=? OR admin_c=?) AND kunde=?", array($c['id'], $c['id'], $cid));
Bernd Wurst Security

Bernd Wurst authored 6 years ago

modules/contacts/include/contacts.php 381)     $ret = array();
modules/contacts/include/contacts.php 382)     while ($domain = $result->fetch()) {
Hanno Fix coding style with php-c...

Hanno authored 5 years ago

modules/contacts/include/contacts.php 383)         $ret[] = new Domain((int) $domain['id']);
Bernd Wurst Security

Bernd Wurst authored 6 years ago

modules/contacts/include/contacts.php 384)     }
modules/contacts/include/contacts.php 385)     return $ret;
modules/contacts/include/contacts.php 386) }
modules/contacts/include/contacts.php 387) 
modules/contacts/include/contacts.php 388) 
Bernd Wurst Choose-Funktion

Bernd Wurst authored 6 years ago

modules/contacts/include/contacts.php 389) function contact_as_string($contact)
Bernd Wurst Abstrahieren der Anzeigefun...

Bernd Wurst authored 6 years ago

modules/contacts/include/contacts.php 390) {
modules/contacts/include/contacts.php 391)     $adresse = nl2br("\n".filter_input_general($contact['address'])."\n".filter_input_general($contact['country']).'-'.filter_input_general($contact['zip']).' '.filter_input_general($contact['city']));
modules/contacts/include/contacts.php 392)     if (! $contact['city']) {
modules/contacts/include/contacts.php 393)         $adresse = '';
modules/contacts/include/contacts.php 394)     }
modules/contacts/include/contacts.php 395)     $name = filter_input_general($contact['name']);
modules/contacts/include/contacts.php 396)     if ($contact['company']) {
modules/contacts/include/contacts.php 397)         $name = filter_input_general($contact['company'])."<br />".filter_input_general($contact['name']);
modules/contacts/include/contacts.php 398)     }
modules/contacts/include/contacts.php 399)     $email = filter_input_general($contact['email']);
modules/contacts/include/contacts.php 400)     $new_email = update_pending($contact['id']);
modules/contacts/include/contacts.php 401)     if ($new_email) {
modules/contacts/include/contacts.php 402)         $email = "<strike>$email</strike><br/>".filter_input_general($new_email).footnote('Die E-Mail-Adresse wurde noch nicht bestätigt');
modules/contacts/include/contacts.php 403)     }
modules/contacts/include/contacts.php 404)     $email = implode("<br>\n", array_filter(array($email, filter_input_general($contact['phone']), filter_input_general($contact['fax']), filter_input_general($contact['mobile']))));
Bernd Wurst Ermögliche das Setzen des P...

Bernd Wurst authored 6 years ago

modules/contacts/include/contacts.php 405)     $pgp = '';
modules/contacts/include/contacts.php 406)     if ($contact['pgp_id']) {
modules/contacts/include/contacts.php 407)         $pgpid = $contact['pgp_id'];
modules/contacts/include/contacts.php 408)         if (strlen($pgpid) > 20) {
modules/contacts/include/contacts.php 409)             $pgpid = substr($pgpid, 0, 20).' '.substr($pgpid, 20);
modules/contacts/include/contacts.php 410)         }
modules/contacts/include/contacts.php 411)         $pgp = '<p class="contact-pgp">'.other_icon('key.png').' PGP ID:<br>'.$pgpid.'</p>';
modules/contacts/include/contacts.php 412)     }
Hanno remove whitespace in empty...

Hanno authored 5 years ago

modules/contacts/include/contacts.php 413) 
Bernd Wurst Ermögliche das Setzen des P...

Bernd Wurst authored 6 years ago

modules/contacts/include/contacts.php 414)     $contact_string = "<p class=\"contact-id\">#{$contact['id']}</p><p class=\"contact-address\"><strong>$name</strong>$adresse</p><p class=\"contact-contact\">$email</p>$pgp";
Bernd Wurst Choose-Funktion

Bernd Wurst authored 6 years ago

modules/contacts/include/contacts.php 415)     return $contact_string;
modules/contacts/include/contacts.php 416) }
modules/contacts/include/contacts.php 417) 
modules/contacts/include/contacts.php 418) function display_contact($contact, $additional_html='', $cssclass='')
modules/contacts/include/contacts.php 419) {
modules/contacts/include/contacts.php 420)     $html = contact_as_string($contact);
modules/contacts/include/contacts.php 421)     $contact_string = "<div class=\"contact {$cssclass}\" id=\"contact-{$contact['id']}\">{$html}{$additional_html}</div>";