96649f21ba18d07757afa9d98998f7a22c0d86a3
Bernd Wurst Verify-Funktion für Kunden-...

Bernd Wurst authored 6 years ago

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

Bernd Wurst authored 6 years ago

modules/handles/include/verify.php     5) Written 2008-2018 by schokokeks.org Hosting, namely
Bernd Wurst Verify-Funktion für Kunden-...

Bernd Wurst authored 6 years ago

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

Hanno authored 5 years ago

modules/contacts/include/verify.php   11) You should have received a copy of the CC0 Public Domain Dedication along with this software. If not, see
Bernd Wurst Verify-Funktion für Kunden-...

Bernd Wurst authored 6 years ago

modules/index/include/kundendaten.php 12) http://creativecommons.org/publicdomain/zero/1.0/
modules/index/include/kundendaten.php 13) 
modules/index/include/kundendaten.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/index/include/kundendaten.php 15) */
modules/index/include/kundendaten.php 16) 
Bernd Wurst Ermögliche das Bestätigen d...

Bernd Wurst authored 6 years ago

modules/contacts/include/verify.php   17) require_once("inc/api.php");
Bernd Wurst sync legacy contact data wh...

Bernd Wurst authored 3 years ago

modules/contacts/include/verify.php   18) require_once("contacts.php");
Bernd Wurst Verify-Funktion für Kunden-...

Bernd Wurst authored 6 years ago

modules/index/include/kundendaten.php 19) 
modules/index/include/kundendaten.php 20) function verify_mail_token($token)
modules/index/include/kundendaten.php 21) {
Hanno Fix coding style with php-c...

Hanno authored 5 years ago

modules/contacts/include/verify.php   22)     db_query("DELETE FROM kundendaten.mailaddress_token WHERE expire<NOW()");
Hanno Böck Codingstyle PSR12 + array s...

Hanno Böck authored 2 years ago

modules/contacts/include/verify.php   23)     $args = [":token" => $token];
Hanno Fix coding style with php-c...

Hanno authored 5 years ago

modules/contacts/include/verify.php   24)     $result = db_query("SELECT contact, email FROM kundendaten.mailaddress_token WHERE token=:token AND expire>NOW()", $args);
modules/contacts/include/verify.php   25)     if ($result->rowCount() > 0) {
modules/contacts/include/verify.php   26)         $line = $result->fetch();
modules/contacts/include/verify.php   27)         db_query("DELETE FROM kundendaten.mailaddress_token WHERE token=:token", $args);
modules/contacts/include/verify.php   28)         return $line;
modules/contacts/include/verify.php   29)     } else {
modules/contacts/include/verify.php   30)         return null;
modules/contacts/include/verify.php   31)     }
Bernd Wurst Verify-Funktion für Kunden-...

Bernd Wurst authored 6 years ago

modules/index/include/kundendaten.php 32) }
modules/index/include/kundendaten.php 33) 
modules/index/include/kundendaten.php 34) 
modules/index/include/kundendaten.php 35) function update_mailaddress($daten)
modules/index/include/kundendaten.php 36) {
Bernd Wurst Umbenennung Datenbank handl...

Bernd Wurst authored 6 years ago

modules/contacts/include/verify.php   37)     $contact = $daten['contact'];
Bernd Wurst Verify-Funktion für Kunden-...

Bernd Wurst authored 6 years ago

modules/index/include/kundendaten.php 38)     $email = $daten['email'];
modules/index/include/kundendaten.php 39) 
modules/index/include/kundendaten.php 40)     if (! check_emailaddr($email)) {
modules/index/include/kundendaten.php 41)         system_failure('Es ist eine ungültige Adresse hinterlegt. So wird das nichts. Bitte die Änderung von vorne machen.');
Hanno Fix coding style with php-c...

Hanno authored 5 years ago

modules/contacts/include/verify.php   42)     }
Bernd Wurst Verify-Funktion für Kunden-...

Bernd Wurst authored 6 years ago

modules/index/include/kundendaten.php 43) 
Hanno Böck Codingstyle PSR12 + array s...

Hanno Böck authored 2 years ago

modules/contacts/include/verify.php   44)     $args = [':contact' => $contact,
modules/contacts/include/verify.php   45)                   ':email' => $email, ];
Bernd Wurst Umbenennung Datenbank handl...

Bernd Wurst authored 6 years ago

modules/contacts/include/verify.php   46)     db_query("UPDATE kundendaten.contacts SET email=:email WHERE id=:contact", $args);
Bernd Wurst sync legacy contact data wh...

Bernd Wurst authored 3 years ago

modules/contacts/include/verify.php   47)     sync_legacy_contactdata();
Bernd Wurst Verify-Funktion für Kunden-...

Bernd Wurst authored 6 years ago

modules/index/include/kundendaten.php 48) }
modules/index/include/kundendaten.php 49) 
modules/index/include/kundendaten.php 50) 
Bernd Wurst Ermögliche das Bestätigen d...

Bernd Wurst authored 6 years ago

modules/contacts/include/verify.php   51) function upload_changed_contact($id)
modules/contacts/include/verify.php   52) {
Hanno Böck Codingstyle PSR12 + array s...

Hanno Böck authored 2 years ago

modules/contacts/include/verify.php   53)     $args = [
modules/contacts/include/verify.php   54)         "id" => (int) $id, ];
Bernd Wurst Ermögliche das Bestätigen d...

Bernd Wurst authored 6 years ago

modules/contacts/include/verify.php   55)     $result = db_query("SELECT id, state, lastchange, nic_id, nic_handle, company, name, address, zip, city, country, phone, mobile, fax, email, pgp_id, pgp_key FROM kundendaten.contacts WHERE id=:id", $args);
modules/contacts/include/verify.php   56)     if ($result->rowCount() == 0) {
modules/contacts/include/verify.php   57)         return ;
modules/contacts/include/verify.php   58)     }
modules/contacts/include/verify.php   59)     $c = $result->fetch();
modules/contacts/include/verify.php   60)     if (! ($c['nic_id'] || $c['nic_handle'])) {
modules/contacts/include/verify.php   61)         return ;
modules/contacts/include/verify.php   62)     }
Hanno Böck Codingstyle PSR12 + array s...

Hanno Böck authored 2 years ago

modules/contacts/include/verify.php   63)     $ac = [];
Bernd Wurst Ermögliche das Bestätigen d...

Bernd Wurst authored 6 years ago

modules/contacts/include/verify.php   64)     $ac['id'] = $c['nic_id'];
modules/contacts/include/verify.php   65)     $ac['handle'] = $c['nic_handle'];
modules/contacts/include/verify.php   66)     $ac['type'] = 'person';
modules/contacts/include/verify.php   67)     $ac['name'] = $c['name'];
modules/contacts/include/verify.php   68)     $ac['organization'] = $c['company'];
modules/contacts/include/verify.php   69)     $ac['street'] = explode("\n", $c['address'], 3);
modules/contacts/include/verify.php   70)     $ac['postalCode'] = $c['zip'];
modules/contacts/include/verify.php   71)     $ac['city'] = $c['city'];
modules/contacts/include/verify.php   72)     $ac['country'] = strtolower($c['country']);
modules/contacts/include/verify.php   73)     $ac['emailAddress'] = $c['email'];
modules/contacts/include/verify.php   74)     $ac['phoneNumber'] = $c['phone'];
modules/contacts/include/verify.php   75)     $ac['faxNumber'] = $c['fax'];
modules/contacts/include/verify.php   76)     if ($c['state'] == 'deleted') {
modules/contacts/include/verify.php   77)         $ac['hidden'] = true;
modules/contacts/include/verify.php   78)     }
Hanno Böck Codingstyle PSR12 + array s...

Hanno Böck authored 2 years ago

modules/contacts/include/verify.php   79)     $data = ["contact" => $ac,
modules/contacts/include/verify.php   80)             "actingAs" => "designatedAgent", ];
Bernd Wurst Ermögliche das Bestätigen d...

Bernd Wurst authored 6 years ago

modules/contacts/include/verify.php   81)     $result = api_request('contactUpdate', $data);
modules/contacts/include/verify.php   82)     if ($result['status'] != 'success') {
Hanno Fix coding style with php-c...

Hanno authored 5 years ago

modules/contacts/include/verify.php   83)         warning("Es gab ein Problem beim Hochladen der geänderten Adresse zum Domainregistrar. Das sollte nicht sein!");