5effc2bd7685822df276c1372dab480cff321941
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 Lizenzinfos in eigenes Modu...

Bernd Wurst authored 10 years ago

5) Written 2008-2014 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) 
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 * Weitere Module auf prepar...

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'", array(":cid" => $cid, ":tld" => $tld));
Bernd Wurst Umstellung auf PDO-Datenban...

Bernd Wurst authored 10 years ago

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

Bernd Wurst authored 10 years ago

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

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) 
Bernd Wurst * Weitere Module auf prepar...

Bernd Wurst authored 10 years ago

84)   $args = array(":cid" => $cid,
85)                 ":useraccount" => $useraccount,
86)                 ":basename" => $data['basename'],
87)                 ":tld" => $data['tld'],
88)                 ":gebuehr" => $data['gebuehr']);
89)   db_query("INSERT INTO kundendaten.domains (kunde, useraccount, domainname, tld, billing, registrierungsdatum, dns,webserver, mail, provider, betrag, brutto) VALUES ".
90)            "(:cid, :useraccount, :basename, :tld, 'regular', NULL, 1, 1, 'auto', 'terions', :gebuehr, 1) ", $args);
Bernd Wurst Neues Modul zum Prüfen der...

Bernd Wurst authored 10 years ago

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

Bernd Wurst authored 10 years ago

92)     $args = array(":cid" => $cid, ":setup" => $data['setup'], ":text" => 'Einmalige Setup-Gebühren für Domain "'.$data['domainname'].'"');
93)     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

94)   }
95) }
96) 
97) function list_useraccounts()
98) {
99)   $customerno = (int) $_SESSION['customerinfo']['customerno'];
Bernd Wurst * Weitere Module auf prepar...

Bernd Wurst authored 10 years ago

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

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

Bernd Wurst authored 10 years ago

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