f1f231f5e074dfa038e70a67d39849e80f2b4b4d
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) 
5) Written 2008-2013 by schokokeks.org Hosting, namely
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) 
22) require_once('terions.php');
23) 
24) 
25) function get_domain_offer($domainname) 
26) {
27)   $domainname = filter_input_hostname($domainname);
28)   $domainname = preg_replace('/^www\./', '', $domainname);
Bernd Wurst Ermögliche auch mehrgliedri...

Bernd Wurst authored 10 years ago

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

Bernd Wurst authored 10 years ago

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

Bernd Wurst authored 10 years ago

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

Bernd Wurst authored 10 years ago

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

Bernd Wurst authored 10 years ago

35)   $cid = (int) $_SESSION['customerinfo']['customerno'];
36) 
Bernd Wurst Neues Modul zum Prüfen der...

Bernd Wurst authored 10 years ago

37)   $data = array("domainname" => $domainname, "basename" => $basename, "tld" => $tld);
38) 
Bernd Wurst Lese Kunden-Sonderpreise fü...

Bernd Wurst authored 10 years ago

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

Bernd Wurst authored 10 years ago

40)   if ($result->rowCount() != 1) {
Bernd Wurst Lese Kunden-Sonderpreise fü...

Bernd Wurst authored 10 years ago

41)     $result = db_query("SELECT tld, gebuehr, setup FROM misc.domainpreise WHERE tld='{$tld}' AND ruecksprache='N'");
42)   }
Bernd Wurst Umstellung auf PDO-Datenban...

Bernd Wurst authored 10 years ago

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

Bernd Wurst authored 10 years ago

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

Bernd Wurst authored 10 years ago

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

Bernd Wurst authored 10 years ago

48)   $data["gebuehr"] = $temp["gebuehr"];
49)   $data["setup"] = ($temp["setup"] ? $temp["setup"] : 0.0);
50)   
51)   $available = terions_available($domainname);
52)   if (! $available) {
53)     warning('Die Domain »'.$domainname.'« ist leider nicht verfügbar.');
54)     return;
55)   }
56)   return $data;
57) }
58) 
59) 
60) 
61) function register_domain($domainname, $uid)
62) {
63)   $data = get_domain_offer($domainname);
64) 
65)   if (! $data) {
66)     // Die Include-Datei setzt eine passende Warning-Nachricht
67)     show_warnings();
68)     system_failure('Interner Fehler');
69)   }
70) 
71)   $cid = (int) $_SESSION['customerinfo']['customerno'];
72)   $useraccount = NULL;
73)   $available_users = list_useraccounts();
74)   foreach ($available_users as $u) {
75)     if ($uid == $u['uid']) {
76)       $useraccount = (int) $uid;
77)       break;
78)     } 
79)   }
80)   if (! $useraccount) {
81)     system_failure('Kein User gesetzt');
82)   }
83) 
84)   db_query("INSERT INTO kundendaten.domains (kunde, useraccount, domainname, tld, billing, registrierungsdatum, dns,webserver, mail, provider, betrag, brutto) VALUES ({$cid}, {$useraccount}, '{$data['basename']}', '{$data['tld']}', 'regular', NULL, 1, 1, 'auto', 'terions', {$data['gebuehr']}, 1) ");
85)   if ($data['setup']) {
Bernd Wurst Lese Kunden-Sonderpreise fü...

Bernd Wurst authored 10 years ago

86)     db_query("INSERT INTO kundendaten.leistungen (kunde,periodisch,datum,betrag,brutto,beschreibung,anzahl) VALUES ({$cid}, 0, CURDATE(), {$data['setup']}, 1, 'Einmalige Setup-Gebühren für Domain \"{$data['domainname']}\"', 1)");
Bernd Wurst Neues Modul zum Prüfen der...

Bernd Wurst authored 10 years ago

87)   }
88) }
89) 
90) function list_useraccounts()
91) {
92)   $customerno = (int) $_SESSION['customerinfo']['customerno'];
93)   $result = db_query("SELECT uid,username,name FROM system.useraccounts WHERE kunde={$customerno}");
94)   $ret = array();
Bernd Wurst Umstellung auf PDO-Datenban...

Bernd Wurst authored 10 years ago

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