cf54502a10b16c985ea28db17885d377226b6145
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 Neues Modul zum Prüfen der...

Bernd Wurst authored 10 years ago

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

Bernd Wurst authored 10 years ago

41)   $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

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

Bernd Wurst authored 10 years ago

43)     $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

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

Bernd Wurst authored 10 years ago

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

Bernd Wurst authored 10 years ago

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

Bernd Wurst authored 10 years ago

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

Bernd Wurst authored 10 years ago

50)   $data["gebuehr"] = $temp["gebuehr"];
51)   $data["setup"] = ($temp["setup"] ? $temp["setup"] : 0.0);
52)   
53)   $available = terions_available($domainname);
54)   if (! $available) {
55)     warning('Die Domain »'.$domainname.'« ist leider nicht verfügbar.');
56)     return;
57)   }
58)   return $data;
59) }
60) 
61) 
62) 
63) function register_domain($domainname, $uid)
64) {
65)   $data = get_domain_offer($domainname);
66) 
67)   if (! $data) {
68)     // Die Include-Datei setzt eine passende Warning-Nachricht
69)     show_warnings();
70)     system_failure('Interner Fehler');
71)   }
72) 
73)   $cid = (int) $_SESSION['customerinfo']['customerno'];
74)   $useraccount = NULL;
75)   $available_users = list_useraccounts();
76)   foreach ($available_users as $u) {
77)     if ($uid == $u['uid']) {
78)       $useraccount = (int) $uid;
79)       break;
80)     } 
81)   }
82)   if (! $useraccount) {
83)     system_failure('Kein User gesetzt');
84)   }
85) 
Bernd Wurst * Weitere Module auf prepar...

Bernd Wurst authored 10 years ago

86)   $args = array(":cid" => $cid,
87)                 ":useraccount" => $useraccount,
88)                 ":basename" => $data['basename'],
89)                 ":tld" => $data['tld'],
90)                 ":gebuehr" => $data['gebuehr']);
91)   db_query("INSERT INTO kundendaten.domains (kunde, useraccount, domainname, tld, billing, registrierungsdatum, dns,webserver, mail, provider, betrag, brutto) VALUES ".
92)            "(:cid, :useraccount, :basename, :tld, 'regular', NULL, 1, 1, 'auto', 'terions', :gebuehr, 1) ", $args);
Bernd Wurst Setze neu eingetragene Doma...

Bernd Wurst authored 9 years ago

93)   $domid = db_insert_id();
Bernd Wurst Neues Modul zum Prüfen der...

Bernd Wurst authored 10 years ago

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

Bernd Wurst authored 10 years ago

95)     $args = array(":cid" => $cid, ":setup" => $data['setup'], ":text" => 'Einmalige Setup-Gebühren für Domain "'.$data['domainname'].'"');
96)     db_query("INSERT INTO kundendaten.leistungen (kunde,periodisch,datum,betrag,brutto,beschreibung,anzahl) VALUES (:cid, 0, CURDATE(), :setup, 1, :text, 1)", $args);
Bernd Wurst Neues Modul zum Prüfen der...

Bernd Wurst authored 10 years ago

97)   }
Bernd Wurst Setze neu eingetragene Doma...

Bernd Wurst authored 9 years ago

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

Bernd Wurst authored 10 years ago

100) }
101) 
102) function list_useraccounts()
103) {
104)   $customerno = (int) $_SESSION['customerinfo']['customerno'];
Bernd Wurst * Weitere Module auf prepar...

Bernd Wurst authored 10 years ago

105)   $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

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

Bernd Wurst authored 10 years ago

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