1ec97dc01a324a8191f9ddfca778af0fc3d8ff0f
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/db_connect.php');
19) require_once('inc/base.php');
20) require_once('inc/security.php');
21) require_once('inc/error.php');
22) 
23) require_once('terions.php');
24) 
25) 
26) function get_domain_offer($domainname) 
27) {
28)   $domainname = filter_input_hostname($domainname);
29)   $domainname = preg_replace('/^www\./', '', $domainname);
Bernd Wurst Ermögliche auch mehrgliedri...

Bernd Wurst authored 10 years ago

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

Bernd Wurst authored 10 years ago

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

Bernd Wurst authored 10 years ago

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

Bernd Wurst authored 10 years ago

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

Bernd Wurst authored 10 years ago

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

Bernd Wurst authored 10 years ago

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

Bernd Wurst authored 10 years ago

40)   $result = db_query("SELECT tld, gebuehr, setup FROM misc.domainpreise_kunde WHERE kunde={$cid} AND tld='{$tld}' AND ruecksprache='N'");
41)   if (mysql_num_rows($result) != 1) {
42)     $result = db_query("SELECT tld, gebuehr, setup FROM misc.domainpreise WHERE tld='{$tld}' AND ruecksprache='N'");
43)   }
Bernd Wurst Neues Modul zum Prüfen der...

Bernd Wurst authored 10 years ago

44)   if (mysql_num_rows($result) != 1) {
45)     warning('Die Endung »'.$tld.'« steht zur automatischen Eintragung nicht zur Verfügung.');
46)     return;
47)   }
48)   $temp = mysql_fetch_assoc($result);
49)   $data["gebuehr"] = $temp["gebuehr"];
50)   $data["setup"] = ($temp["setup"] ? $temp["setup"] : 0.0);
51)   
52)   $available = terions_available($domainname);
53)   if (! $available) {
54)     warning('Die Domain »'.$domainname.'« ist leider nicht verfügbar.');
55)     return;
56)   }
57)   return $data;
58) }
59) 
60) 
61) 
62) function register_domain($domainname, $uid)
63) {
64)   $data = get_domain_offer($domainname);
65) 
66)   if (! $data) {
67)     // Die Include-Datei setzt eine passende Warning-Nachricht
68)     show_warnings();
69)     system_failure('Interner Fehler');
70)   }
71) 
72)   $cid = (int) $_SESSION['customerinfo']['customerno'];
73)   $useraccount = NULL;
74)   $available_users = list_useraccounts();
75)   foreach ($available_users as $u) {
76)     if ($uid == $u['uid']) {
77)       $useraccount = (int) $uid;
78)       break;
79)     } 
80)   }
81)   if (! $useraccount) {
82)     system_failure('Kein User gesetzt');
83)   }
84) 
85)   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) ");
86)   if ($data['setup']) {
Bernd Wurst Lese Kunden-Sonderpreise fü...

Bernd Wurst authored 10 years ago

87)     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)");