527b20bbde1e044e6cfcc513fbd70379b014d06c
Bernd Wurst Neues Modul zum Prüfen der...

Bernd Wurst authored 10 years ago

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

Bernd Wurst authored 6 years ago

5) Written 2008-2018 by schokokeks.org Hosting, namely
Bernd Wurst Neues Modul zum Prüfen der...

Bernd Wurst authored 10 years ago

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('inc/debug.php');
18) require_once('inc/base.php');
19) require_once('inc/security.php');
20) require_once('inc/error.php');
21) 
Bernd Wurst Neue Version der http.net-P...

Bernd Wurst authored 8 years ago

22) require_once('httpnet.php');
Bernd Wurst Neues Modul zum Prüfen der...

Bernd Wurst authored 10 years ago

23) 
Bernd Wurst Setze neu eingetragene Doma...

Bernd Wurst authored 9 years ago

24) require_once('modules/email/include/vmail.php');
25) 
Bernd Wurst Neues Modul zum Prüfen der...

Bernd Wurst authored 10 years ago

26) 
27) function get_domain_offer($domainname) 
28) {
29)   $domainname = filter_input_hostname($domainname);
30)   $domainname = preg_replace('/^www\./', '', $domainname);
Bernd Wurst Ermögliche auch mehrgliedri...

Bernd Wurst authored 10 years ago

31) 
32)   $basename = preg_replace('/([^\.]+)\..*$/', '\1', $domainname);
Bernd Wurst Neues Modul zum Prüfen der...

Bernd Wurst authored 10 years ago

33)   DEBUG('Found Basename: '.$basename);
Bernd Wurst Ermögliche auch mehrgliedri...

Bernd Wurst authored 10 years ago

34)   $tld = preg_replace('/^[^\.]*\./', '', $domainname);
Bernd Wurst Neues Modul zum Prüfen der...

Bernd Wurst authored 10 years ago

35)   DEBUG('Found TLD: '.$tld);
36) 
Bernd Wurst Lese Kunden-Sonderpreise fü...

Bernd Wurst authored 10 years ago

37)   $cid = (int) $_SESSION['customerinfo']['customerno'];
38) 
Bernd Wurst Duplikaterkennung beim Eint...

Bernd Wurst authored 6 years ago

39)   $result = db_query("SELECT id FROM kundendaten.domains WHERE domainname=:domainname AND tld=:tld", array("domainname" => $basename, "tld" => $tld));
40)   if ($result->rowCount() != 0) {
41)     warning('Diese Domain ist in unserem System bereits vorhanden und kann daher nicht noch einmal eingetragen werden.');
42)     return;
43)   }
44) 
Bernd Wurst Neues Modul zum Prüfen der...

Bernd Wurst authored 10 years ago

45)   $data = array("domainname" => $domainname, "basename" => $basename, "tld" => $tld);
46) 
Bernd Wurst * Weitere Module auf prepar...

Bernd Wurst authored 10 years ago

47)   $result = db_query("SELECT tld, gebuehr, setup FROM misc.domainpreise_kunde WHERE kunde=:cid AND tld=:tld AND ruecksprache='N'", array(":cid" => $cid, ":tld" => $tld));
Bernd Wurst Umstellung auf PDO-Datenban...

Bernd Wurst authored 10 years ago

48)   if ($result->rowCount() != 1) {
Bernd Wurst * Weitere Module auf prepar...

Bernd Wurst authored 10 years ago

49)     $result = db_query("SELECT tld, gebuehr, setup FROM misc.domainpreise WHERE tld=:tld AND ruecksprache='N'", array(":tld" => $tld));
Bernd Wurst Lese Kunden-Sonderpreise fü...

Bernd Wurst authored 10 years ago

50)   }
Bernd Wurst Umstellung auf PDO-Datenban...

Bernd Wurst authored 10 years ago

51)   if ($result->rowCount() != 1) {
Bernd Wurst Neues Modul zum Prüfen der...

Bernd Wurst authored 10 years ago

52)     warning('Die Endung »'.$tld.'« steht zur automatischen Eintragung nicht zur Verfügung.');
53)     return;
54)   }
Bernd Wurst Umstellung auf PDO-Datenban...

Bernd Wurst authored 10 years ago

55)   $temp = $result->fetch();
Bernd Wurst Neues Modul zum Prüfen der...

Bernd Wurst authored 10 years ago

56)   $data["gebuehr"] = $temp["gebuehr"];
57)   $data["setup"] = ($temp["setup"] ? $temp["setup"] : 0.0);
58)   
Bernd Wurst Umstellung von SOAP-API auf...

Bernd Wurst authored 6 years ago

59)   $available = api_domain_available($domainname);
Bernd Wurst Neues Modul zum Prüfen der...

Bernd Wurst authored 10 years ago

60)   if (! $available) {
61)     warning('Die Domain »'.$domainname.'« ist leider nicht verfügbar.');
62)     return;
63)   }
64)   return $data;
65) }
66) 
67) 
68) 
69) function register_domain($domainname, $uid)
70) {
71)   $data = get_domain_offer($domainname);
72) 
73)   if (! $data) {
74)     // Die Include-Datei setzt eine passende Warning-Nachricht
75)     show_warnings();
76)     system_failure('Interner Fehler');
77)   }
78) 
79)   $cid = (int) $_SESSION['customerinfo']['customerno'];
80)   $useraccount = NULL;
81)   $available_users = list_useraccounts();
82)   foreach ($available_users as $u) {
83)     if ($uid == $u['uid']) {
84)       $useraccount = (int) $uid;
85)       break;
86)     } 
87)   }
88)   if (! $useraccount) {
89)     system_failure('Kein User gesetzt');
90)   }
Bernd Wurst Beim Hinzufügen einer Domai...

Bernd Wurst authored 6 years ago

91)   
Bernd Wurst * Weitere Module auf prepar...

Bernd Wurst authored 10 years ago

92)   $args = array(":cid" => $cid,
93)                 ":useraccount" => $useraccount,
94)                 ":basename" => $data['basename'],
Bernd Wurst Beim Hinzufügen einer Domai...

Bernd Wurst authored 6 years ago

95)                 ":tld" => $data['tld']);
96)   db_query("INSERT INTO kundendaten.domains (kunde, useraccount, domainname, tld, billing, registrierungsdatum, dns,webserver, mail) VALUES ".
97)            "(:cid, :useraccount, :basename, :tld, 'regular', NULL, 1, 1, 'auto') ", $args);
Bernd Wurst Setze neu eingetragene Doma...

Bernd Wurst authored 9 years ago

98)   $domid = db_insert_id();
Bernd Wurst Beim Hinzufügen einer Domai...

Bernd Wurst authored 6 years ago

99)   /*if ($data['setup']) {
Bernd Wurst * Weitere Module auf prepar...

Bernd Wurst authored 10 years ago

100)     $args = array(":cid" => $cid, ":setup" => $data['setup'], ":text" => 'Einmalige Setup-Gebühren für Domain "'.$data['domainname'].'"');
101)     db_query("INSERT INTO kundendaten.leistungen (kunde,periodisch,datum,betrag,brutto,beschreibung,anzahl) VALUES (:cid, 0, CURDATE(), :setup, 1, :text, 1)", $args);
Bernd Wurst Beim Hinzufügen einer Domai...

Bernd Wurst authored 6 years ago

102)   }*/
Bernd Wurst Setze neu eingetragene Doma...

Bernd Wurst authored 9 years ago

103)   # Umstellen auf vmail
104)   change_domain($domid, 'virtual');
Bernd Wurst Neues Modul zum Prüfen der...

Bernd Wurst authored 10 years ago

105) }
106) 
107) function list_useraccounts()
108) {
109)   $customerno = (int) $_SESSION['customerinfo']['customerno'];
Bernd Wurst * Weitere Module auf prepar...

Bernd Wurst authored 10 years ago

110)   $result = db_query("SELECT uid,username,name FROM system.useraccounts WHERE kunde=?", array($customerno));
Bernd Wurst Neues Modul zum Prüfen der...

Bernd Wurst authored 10 years ago

111)   $ret = array();
Bernd Wurst Umstellung auf PDO-Datenban...

Bernd Wurst authored 10 years ago

112)   while ($item = $result->fetch())