* * This file is part of Easy-WI. * * Easy-WI is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Easy-WI is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Easy-WI. If not, see . * * Diese Datei ist Teil von Easy-WI. * * Easy-WI ist Freie Software: Sie koennen es unter den Bedingungen * der GNU General Public License, wie von der Free Software Foundation, * Version 3 der Lizenz oder (nach Ihrer Wahl) jeder spaeteren * veroeffentlichten Version, weiterverbreiten und/oder modifizieren. * * Easy-WI wird in der Hoffnung, dass es nuetzlich sein wird, aber * OHNE JEDE GEWAEHELEISTUNG, bereitgestellt; sogar ohne die implizite * Gewaehrleistung der MARKTFAEHIGKEIT oder EIGNUNG FUER EINEN BESTIMMTEN ZWECK. * Siehe die GNU General Public License fuer weitere Details. * * Sie sollten eine Kopie der GNU General Public License zusammen mit diesem * Programm erhalten haben. Wenn nicht, siehe . */ define('EASYWIDIR', dirname(__FILE__)); if (is_dir(EASYWIDIR . '/install')) { die('Please remove the "install" folder'); } include(EASYWIDIR . '/stuff/methods/functions.php'); include(EASYWIDIR . '/stuff/methods/class_validator.php'); include(EASYWIDIR . '/stuff/methods/vorlage.php'); include(EASYWIDIR . '/stuff/config.php'); include(EASYWIDIR . '/stuff/settings.php'); if (!isset($admin_id) and !isset($user_id)) { redirect('login.php'); } else if (isset($admin_id)) { $pa = User_Permissions($admin_id); } else if (isset($user_id)) { $pa = User_Permissions($user_id); } if (isset($admin_id) and $pa['dedicatedServer'] and $ui->smallletters('d', 7, 'get') == 'freeips' and $reseller_id == 0) { if ($ui->id('userID', 10, 'get')) { $query = $sql->prepare("SELECT `resellerid` FROM `userdata` WHERE `id`=? LIMIT 1"); $query->execute(array($ui->id('userID', 10, 'get'))); $ipsAvailable = freeips(($query->fetchColumn())); } else { $ipsAvailable = array(); } $template_file = 'ajax_admin_roots_ips.tpl'; } else if (isset($admin_id) and $pa['fastdl'] and $ui->smallletters('d', 8, 'get') == 'webmaster' and $ui->id('id', 10, 'get')) { $sprache = getlanguagefile('web', $user_language, $resellerLockupID); $maxVhost = 0; $maxHDD = 0; $webVhosts = 0; $leftHDD = 0; $totalHDD = 0; $totalVhosts = 0; $quotaActive = 'N'; $dns = ''; $query = $sql->prepare("SELECT m.`vhostTemplate`,m.`maxVhost`,m.`maxHDD`,m.`quotaActive`,m.`defaultdns`,(SELECT COUNT(v.`webVhostID`) AS `a` FROM `webVhost` AS v WHERE v.`webMasterID`=m.`webMasterID`) AS `totalVhosts`,(SELECT SUM(v.`hdd`) AS `a` FROM `webVhost` AS v WHERE v.`webMasterID`=m.`webMasterID`) AS `totalHDD` FROM `webMaster` AS m WHERE m.`webMasterID`=? AND m.`resellerID`=? LIMIT 1"); $query->execute(array($ui->id('id', 10, 'get'), $resellerLockupID)); foreach ($query->fetchAll(PDO::FETCH_ASSOC) as $row) { $vhostTemplate = $row['vhostTemplate']; $maxVhost = (int) $row['maxVhost']; $maxHDD = (int) $row['maxHDD']; $totalVhosts = (int) $row['totalVhosts']; $leftHDD = (int) $row['maxHDD'] - $row['totalHDD']; $quotaActive = $row['quotaActive']; $dns = $row['defaultdns']; } $template_file = 'ajax_admin_web_master.tpl'; } else if (isset($user_id) and $pa['voiceserverStats'] and $ui->smallletters('d', 14, 'get') == 'uservoicestats' and $ui->st('w', 'get')) { $data = array(); if ($ui->st('w', 'get') == 'se') { $query = $sql->prepare("SELECT v.`id`,v.`ip`,v.`port`,v.`dns`,m.`usedns` FROM `voice_server` v INNER JOIN `voice_masterserver` m ON v.`masterserver`=m.`id` WHERE v.`userid`=? AND v.`resellerid`=? AND v.`active`='Y' AND m.`active`='Y' ORDER BY v.`ip`,v.`port`"); $query->execute(array($user_id, $resellerLockupID)); foreach ($query->fetchAll(PDO::FETCH_ASSOC) as $row) { $data[] = ''; } } require_once IncludeTemplate($template_to_use,'ajax_userpanel_voice_stats.tpl', 'ajax'); } else if (isset($admin_id) and $pa['voiceserverStats'] and $ui->smallletters('d', 15, 'get') == 'adminvoicestats' and $ui->st('w', 'get')) { $data = array(); if ($ui->st('w', 'get') == 'us') { $query = $sql->prepare("SELECT u.`id`,u.`cname`,u.`vname`,u.`name` FROM `userdata` u INNER JOIN `voice_server` v ON u.`id`=v.`userid` AND v.`active`='Y' WHERE u.`resellerid`=? GROUP BY u.`id`"); $query->execute(array($resellerLockupID)); foreach ($query->fetchAll(PDO::FETCH_ASSOC) as $row) { $data[] = ''; } } else if ($ui->st('w', 'get') == 'se') { $query = $sql->prepare("SELECT v.`id`,v.`ip`,v.`port`,v.`dns`,m.`usedns` FROM `voice_server` v INNER JOIN `voice_masterserver` m ON v.`masterserver`=m.`id` WHERE v.`resellerid`=? ORDER BY v.`ip`,v.`port`"); $query->execute(array($resellerLockupID)); foreach ($query->fetchAll(PDO::FETCH_ASSOC) as $row) { $data[] = ''; } } else if ($ui->st('w', 'get') == 'ma') { $query = $sql->prepare("SELECT `id`,`ssh2ip` FROM `voice_masterserver` WHERE `resellerid`=? AND `active`='Y' ORDER BY `ssh2ip`"); $query->execute(array($resellerLockupID)); foreach ($query->fetchAll(PDO::FETCH_ASSOC) as $row) { $data[] = ''; } } require_once IncludeTemplate($template_to_use,'ajax_admin_voice_stats.tpl', 'ajax'); } if (isset($template_file)) { require_once IncludeTemplate($template_to_use, $template_file, 'ajax'); } else { die('No Access'); }