<?php
/*
This file belongs to the Webinterface of schokokeks.org Hosting
Written 2008-2018 by schokokeks.org Hosting, namely
Bernd Wurst <bernd@schokokeks.org>
Hanno Böck <hanno@schokokeks.org>
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.
You should have received a copy of the CC0 Public Domain Dedication along with this software. If not, see
http://creativecommons.org/publicdomain/zero/1.0/
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.
*/
require_once('inc/debug.php');
require_once('inc/base.php');
require_once('inc/security.php');
require_once('inc/error.php');
require_once('httpnet.php');
require_once('modules/email/include/vmail.php');
function get_domain_offer($domainname)
{
$domainname = filter_input_hostname($domainname);
$domainname = preg_replace('/^www\./', '', $domainname);
$basename = preg_replace('/([^\.]+)\..*$/', '\1', $domainname);
DEBUG('Found Basename: '.$basename);
$tld = preg_replace('/^[^\.]*\./', '', $domainname);
DEBUG('Found TLD: '.$tld);
$cid = (int) $_SESSION['customerinfo']['customerno'];
$result = db_query("SELECT id FROM kundendaten.domains WHERE domainname=:domainname AND tld=:tld", array("domainname" => $basename, "tld" => $tld));
if ($result->rowCount() != 0) {
warning('Diese Domain ist in unserem System bereits vorhanden und kann daher nicht noch einmal eingetragen werden.');
return;
}
$data = array("domainname" => $domainname, "basename" => $basename, "tld" => $tld);
$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));
if ($result->rowCount() != 1) {
$result = db_query("SELECT tld, gebuehr, setup FROM misc.domainpreise WHERE tld=:tld AND ruecksprache='N'", array(":tld" => $tld));
}
if ($result->rowCount() != 1) {