mirror of
https://github.com/serghey-rodin/vesta.git
synced 2026-03-15 08:30:32 +01:00
584 lines
21 KiB
PHP
584 lines
21 KiB
PHP
<?php
|
|
/**
|
|
* DOMAIN
|
|
*
|
|
* @author vesta, http://vestacp.com/
|
|
* @author Dmitry Malishev <dima.malishev@gmail.com>
|
|
* @author Dmitry Naumov-Socolov <naumov.socolov@gmail.com>
|
|
* @copyright vesta 2010-2011
|
|
*/
|
|
class WEB_DOMAIN extends AjaxHandler
|
|
{
|
|
|
|
public function getListExecute(Request $request)
|
|
{
|
|
$user = $this->getLoggedUser();
|
|
$reply = array();
|
|
|
|
$result = Vesta::execute(Vesta::V_LIST_WEB_DOMAINS, array('USER' => $user['uid']), self::JSON);
|
|
|
|
$stat = array();
|
|
$result_stat = Vesta::execute(Vesta::V_LIST_WEB_DOMAINS_STATS, array('USER' => $user['uid']), self::JSON);
|
|
|
|
foreach ($result_stat['data'] as $w_d => $w_d_details) {
|
|
$stat[$w_d] = $w_d_details;
|
|
}
|
|
foreach($result['data'] as $web_domain => $record)
|
|
{
|
|
$web_details = array(
|
|
'IP' => $record['IP'],
|
|
'U_DISK' => (int)$record['U_DISK'],
|
|
'U_BANDWIDTH' => (int)$record['U_BANDWIDTH'],
|
|
'TPL' => $record['TPL'],
|
|
'ALIAS' => @str_replace(",", ", ", $record['ALIAS']),
|
|
'PHP' => $record['PHP'],
|
|
'CGI' => $record['CGI'],
|
|
'ELOG' => $record['ELOG'],
|
|
'STAT' => $record['STATS'],
|
|
'STATS_LOGIN' => $record['STATS_AUTH'],
|
|
'SSL' => $record['SSL'],
|
|
'SSL_HOME' => $record['SSL_HOME'],
|
|
'SSL_CERT' => $record['SSL_CERT'],
|
|
'SSL_KEY' => $record['SSL_KEY'],
|
|
'NGINX' => $record['NGINX'],
|
|
'NGINX_EXT' => $record['NGINX_EXT'],
|
|
'SUSPEND' => $record['SUSPEND'],
|
|
'DATE' => date(Config::get('ui_date_format', strtotime($record['DATE'])))
|
|
);
|
|
$web_details['STAT'] == '' ? $web_details['STAT'] = 'none' : true;
|
|
$reply[$web_domain] = $web_details;
|
|
}
|
|
|
|
if (!$result['status']) {
|
|
$this->errors[] = array($result['error_code'] => $result['error_message']);
|
|
}
|
|
|
|
return $this->reply($result['status'], $reply);
|
|
}
|
|
|
|
|
|
|
|
public function addExecute(Request $request)
|
|
{
|
|
$_s = $request->getParameter('spell');
|
|
$user = $this->getLoggedUser();
|
|
|
|
$params = array(
|
|
'USER' => $user['uid'],
|
|
'DOMAIN' => $_s['DOMAIN'],
|
|
'IP' => $_s['IP']
|
|
);
|
|
|
|
$result = Vesta::execute(Vesta::V_ADD_WEB_DOMAIN, $params);
|
|
|
|
if (!$result['status']) {
|
|
$this->errors[] = array($result['error_code'] => $result['error_message']);
|
|
}
|
|
|
|
if (!empty($_s['TPL'])) {
|
|
$params = array(
|
|
'USER' => $user['uid'],
|
|
'DOMAIN' => $_s['DOMAIN'],
|
|
'TPL' => $_s['TPL']
|
|
);
|
|
$result = 0;
|
|
$result = Vesta::execute(Vesta::V_CHANGE_WEB_DOMAIN_TPL, $params);
|
|
|
|
if (!$result['status']) {
|
|
$this->errors['CHANGE_TPL'] = array($result['error_code'] => $result['error_message']);
|
|
}
|
|
}
|
|
|
|
if (!empty($_s['ALIAS'])) {
|
|
$alias = str_replace("\n", "", $_s['ALIAS']);
|
|
$alias = str_replace("\n", "", $alias);
|
|
|
|
foreach ($alias_arr as $alias) {
|
|
$params = array(
|
|
'USER' => $user['uid'],
|
|
'DOMAIN' => $_s['DOMAIN'],
|
|
'ALIAS' => trim($alias)
|
|
);
|
|
$result = 0;
|
|
|
|
$result = Vesta::execute(Vesta::V_ADD_WEB_DOMAIN_ALIAS, $params);
|
|
|
|
if (!$result['status']) {
|
|
$this->errors['ALIAS'] = array($result['error_code'] => $result['error_message']);
|
|
}
|
|
}
|
|
}
|
|
|
|
if (!empty($_s['STATS']) && @$_s['STATS'] != 'none') {
|
|
$params = array(
|
|
'USER' => $user['uid'],
|
|
'DOMAIN' => $_s['DOMAIN'],
|
|
'STAT' => $_s['STAT']);
|
|
$result = 0;
|
|
$result = Vesta::execute(Vesta::V_ADD_WEB_DOMAIN_STAT, $params);
|
|
|
|
if (!$result['status']) {
|
|
$this->errors['STATS'] = array($result['error_code'] => $result['error_message']);
|
|
}
|
|
}
|
|
|
|
if (!empty($_s['STAT_AUTH']) && @Utils::getCheckboxBooleanValue($_s['STATS_AUTH'])) {
|
|
$params = array(
|
|
'USER' => $user['uid'],
|
|
'DOMAIN' => $_s['DOMAIN'],
|
|
'STAT_USER' => $_s['STAT_USER'],
|
|
'STAT_PASSWORS' => $_s['STAT_PASSWORD']
|
|
);
|
|
$result = 0;
|
|
$result = Vesta::execute(Vesta::V_ADD_WEB_DOMAIN_STAT_AUTH, $params);
|
|
|
|
if(!$result['status'])
|
|
$this->errors['STAT_AUTH'] = array($result['error_code'] => $result['error_message']);
|
|
}
|
|
|
|
if (!empty($_new['CGI'])) {
|
|
if (Utils::getCheckboxBooleanValue($_new['CGI'])) {
|
|
$result = array();
|
|
$result = Vesta::execute(Vesta::V_ADD_WEB_DOMAIN_CGI, array('USER' => $user['uid'], 'DOMAIN' => $_DOMAIN));
|
|
if (!$result['status']) {
|
|
$this->status = FALSE;
|
|
$this->errors['ADD_CGI'] = array($result['error_code'] => $result['error_message']);
|
|
}
|
|
}
|
|
}
|
|
|
|
if (!empty($_new['ELOG'])) {
|
|
if (Utils::getCheckboxBooleanValue($_new['ELOG'])) {
|
|
$result = array();
|
|
$result = Vesta::execute(Vesta::V_ADD_WEB_DOMAIN_ELOG, array('USER' => $user['uid'], 'DOMAIN' => $_DOMAIN));
|
|
if (!$result['status']) {
|
|
$this->status = FALSE;
|
|
$this->errors['ADD_ELOG'] = array($result['error_code'] => $result['error_message']);
|
|
}
|
|
}
|
|
}
|
|
|
|
/* if ($_s['SSL']) {
|
|
$params = array(
|
|
'USER' => $user['uid'],
|
|
'DOMAIN' => $_s['DOMAIN'],
|
|
'SSL_CERT' => $_s['SSL_CERT']
|
|
);
|
|
|
|
if ($_s['SSL_HOME']) {
|
|
$params['SSL_HOME'] = $_s['SSL_HOME'];
|
|
}
|
|
|
|
$result = 0;
|
|
$result = Vesta::execute(Vesta::V_ADD_WEB_DOMAIN_SSL, $params);
|
|
|
|
if (!$result['status']) {
|
|
$this->errors['SSL'] = array($result['error_code'] => $result['error_message']);
|
|
}
|
|
}
|
|
if ($_s['SSL_HOME']) {
|
|
|
|
}*/
|
|
|
|
/*if (!empty($_s['DNS'])) {
|
|
$params = array(
|
|
'USER' => $user['uid'],
|
|
'DNS_DOMAIN' => $_s['DOMAIN'],
|
|
'IP' => $_s['IP']
|
|
);
|
|
|
|
require_once V_ROOT_DIR . 'api/DNS.class.php';
|
|
|
|
$dns = new DNS();
|
|
$result = 0;
|
|
$result = $dns->addExecute($params);
|
|
if (!$result['status']) {
|
|
$this->errors['DNS_DOMAIN'] = array($result['error_code'] => $result['error_message']);
|
|
}
|
|
}*/
|
|
|
|
|
|
/*if (!empty($_s['MAIL'])) {
|
|
$params = array(
|
|
'USER' => $_user,
|
|
'MAIL_DOMAIN' => $_s['DOMAIN'],
|
|
'IP' => $_s['IP']
|
|
);
|
|
|
|
|
|
require_once V_ROOT_DIR . 'api/MAIL.class.php';
|
|
|
|
$mail = new MAIL();
|
|
$result = 0;
|
|
$result = $mail->addExecute($params);
|
|
if (!$result['status'])
|
|
$this->errors['MAIL_DOMAIN'] = array($result['error_code'] => $result['error_message']);
|
|
}*/
|
|
|
|
|
|
|
|
if ($_s['SUSPEND'] == 'on') {
|
|
if($result['status']){
|
|
$result = array();
|
|
|
|
$result = Vesta::execute(Vesta::V_SUSPEND_WEB_DOMAIN, array('USER' => $user['uid'], 'JOB' => $_s['DOMAIN']));
|
|
if (!$result['status']) {
|
|
$this->status = FALSE;
|
|
$this->errors['SUSPEND'] = array($result['error_code'] => $result['error_message']);
|
|
}
|
|
}
|
|
}
|
|
|
|
return $this->reply($result['status'], $result['data']);
|
|
}
|
|
|
|
public function deleteExecute(Request $request)
|
|
{
|
|
$_s = $request->getParameter('spell');
|
|
$user = $this->getLoggedUser();
|
|
|
|
$params = array(
|
|
'USER' => $user['uid'],
|
|
'DOMAIN' => $_s['DOMAIN']
|
|
);
|
|
|
|
$result = Vesta::execute(Vesta::V_DEL_WEB_DOMAIN, $params);
|
|
|
|
if (!$result['status']) {
|
|
$this->errors[] = array($result['error_code'] => $result['error_message']);
|
|
}
|
|
|
|
$params = array(
|
|
'USER' => $_user,
|
|
'DNS_DOMAIN' => $_s['DOMAIN']
|
|
);
|
|
|
|
return $this->reply($result['status'], $result['data']);
|
|
}
|
|
|
|
public function changeExecute(Request $request)
|
|
{
|
|
$_s = $request->getParameter('spell');
|
|
$_old = $request->getParameter('old');
|
|
$_new = $request->getParameter('new');
|
|
|
|
$_old['ELOG'] = $_old['ELOG'] == 'yes' ? 'on' : 'off';
|
|
$_old['CGI'] = $_old['CGI'] == 'yes' ? 'on' : 'off';
|
|
$_old['AUTH'] = $_old['AUTH'] == 'yes' ? 'on' : 'off';
|
|
$_old['SSL'] = $_old['SSL'] == 'yes' ? 'on' : 'off';
|
|
|
|
$user = $this->getLoggedUser();
|
|
$_DOMAIN = $_new['DOMAIN'];
|
|
|
|
if ($_old['SUSPEND'] != $_new['SUSPEND']) {
|
|
if ($_new['SUSPEND'] == 'on') {
|
|
$result = Vesta::execute(Vesta::V_SUSPEND_WEB_DOMAIN, array('USER' => $user['uid'], 'DOMAIN' => $_DOMAIN));
|
|
if (!$result['status']) {
|
|
$this->status = FALSE;
|
|
$this->errors['SUSPEND'] = array($result['error_code'] => $result['error_message']);
|
|
}
|
|
// return $this->reply($result['status']);
|
|
}
|
|
else {
|
|
$result = Vesta::execute(Vesta::V_UNSUSPEND_WEB_DOMAIN, array('USER' => $user['uid'], 'DOMAIN' => $_DOMAIN));
|
|
if (!$result['status']) {
|
|
$this->status = FALSE;
|
|
$this->errors['UNSUSPEND'] = array($result['error_code'] => $result['error_message']);
|
|
}
|
|
}
|
|
if ($_new['SUSPEND'] == 'on') {
|
|
$result = Vesta::execute(Vesta::V_SUSPEND_WEB_DOMAIN, array('USER' => $user['uid'], 'DOMAIN' => $_DOMAIN));
|
|
if (!$result['status']) {
|
|
$this->status = FALSE;
|
|
$this->errors['SUSPEND'] = array($result['error_code'] => $result['error_message']);
|
|
}
|
|
// return $this->reply($result['status']);
|
|
}
|
|
else {
|
|
$result = Vesta::execute(Vesta::V_UNSUSPEND_WEB_DOMAIN, array('USER' => $user['uid'], 'DOMAIN' => $_DOMAIN));
|
|
if (!$result['status']) {
|
|
$this->status = FALSE;
|
|
$this->errors['UNSUSPEND'] = array($result['error_code'] => $result['error_message']);
|
|
}
|
|
}
|
|
}
|
|
|
|
if ($_old['IP'] != $_new['IP']) {
|
|
$result = array();
|
|
$result = Vesta::execute(Vesta::V_CHANGE_WEB_DOMAIN_IP, array('USER' => $user['uid'], 'DOMAIN' => $_DOMAIN, 'IP' => $_new['IP']));
|
|
if (!$result['status']) {
|
|
$this->status = FALSE;
|
|
$this->errors['IP_ADDRESS'] = array($result['error_code'] => $result['error_message']);
|
|
}
|
|
}
|
|
|
|
if ($_old['TPL'] != $_new['TPL']) {
|
|
$result = array();
|
|
$result = Vesta::execute(Vesta::V_CHANGE_WEB_DOMAIN_TPL, array('USER' => $user['uid'], 'DOMAIN' => $_DOMAIN, 'TPL' => $_new['TPL']));
|
|
if (!$result['status']) {
|
|
$this->status = FALSE;
|
|
$this->errors['TPL'] = array($result['error_code'] => $result['error_message']);
|
|
}
|
|
}
|
|
|
|
if ($_old['ALIAS'] != $_new['ALIAS']) {
|
|
$result = array();
|
|
|
|
$old_arr_raw = preg_split('/[,\s]/', $_old['ALIAS']);
|
|
$new_arr_raw = preg_split('/[,\s]/', $_new['ALIAS']);
|
|
$old_arr = array();
|
|
$new_arr = array();
|
|
foreach ($old_arr_raw as $alias) {
|
|
if ('' != trim($alias)) {
|
|
$old_arr[] = $alias;
|
|
}
|
|
}
|
|
foreach ($new_arr_raw as $alias) {
|
|
if ('' != trim($alias)) {
|
|
$new_arr[] = $alias;
|
|
}
|
|
}
|
|
|
|
$added = array_diff($new_arr, $old_arr);
|
|
$deleted = array_diff($old_arr, $new_arr);
|
|
|
|
foreach ($deleted as $alias) {
|
|
$result = Vesta::execute(Vesta::V_DEL_WEB_DOMAIN_ALIAS, array('USER' => $user['uid'], 'DOMAIN' => $_DOMAIN, 'ALIAS' => $alias));
|
|
if (!$result['status']) {
|
|
$this->status = FALSE;
|
|
$this->errors['DEL_ALIAS'] = array($result['error_code'] => $result['error_message']);
|
|
}
|
|
}
|
|
|
|
foreach ($added as $alias) {
|
|
$result = Vesta::execute(Vesta::V_ADD_WEB_DOMAIN_ALIAS, array('USER' => $user['uid'], 'DOMAIN' => $_DOMAIN, 'ALIAS' => $alias));
|
|
if (!$result['status']) {
|
|
$this->status = FALSE;
|
|
$this->errors['ADD_ALIAS'] = array($result['error_code'] => $result['error_message']);
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
if (($_old['STAT_AUTH'] != $_new['STAT_AUTH']) && !empty($_s['STAT_AUTH']) && @Utils::getCheckboxBooleanValue($_s['STATS_AUTH'])) {
|
|
$params = array(
|
|
'USER' => $user['uid'],
|
|
'DOMAIN' => $_DOMAIN,
|
|
'STAT_USER' => $_new['STAT_USER'],
|
|
'STAT_PASSWORS' => $_new['STAT_PASSWORD']
|
|
);
|
|
$result = 0;
|
|
$result = Vesta::execute(Vesta::V_ADD_WEB_DOMAIN_STAT_AUTH, $params);
|
|
|
|
if(!$result['status']) {
|
|
$this->errors['STAT_AUTH'] = array($result['error_code'] => $result['error_message']);
|
|
}
|
|
}
|
|
|
|
if (($_old['STAT'] != $_new['STAT'])) {
|
|
if ($_new['STAT'] != 'none') {
|
|
$result = array();
|
|
$result = Vesta::execute(Vesta::V_ADD_WEB_DOMAIN_STAT, array('USER' => $user['uid'], 'DOMAIN' => $_DOMAIN, 'STAT' => $_new['STAT']));
|
|
if (!$result['status']) {
|
|
$this->status = FALSE;
|
|
$this->errors['ADD_STAT'] = array($result['error_code'] => $result['error_message']);
|
|
}
|
|
}
|
|
else {
|
|
$result = array();
|
|
$result = Vesta::execute(Vesta::V_DEL_WEB_DOMAIN_STAT, array('USER' => $user['uid'], 'DOMAIN' => $_DOMAIN));
|
|
if (!$result['status']) {
|
|
$this->status = FALSE;
|
|
$this->errors['DEL_STAT'] = array($result['error_code'] => $result['error_message']);
|
|
}
|
|
$result = array();
|
|
|
|
$result = Vesta::execute(Vesta::V_DEL_WEB_DOMAIN_STAT_AUTH, array('USER' => $user['uid'], 'DOMAIN' => $_DOMAIN, 'STAT_USER' => $_new['STAT_USER']));
|
|
if (!$result['status']) {
|
|
$this->status = FALSE;
|
|
$this->errors['DEL_STAT_AUTH'] = array($result['error_code'] => $result['error_message']);
|
|
}
|
|
}
|
|
}
|
|
|
|
if (($_old['CGI'] != $_new['CGI'])) {
|
|
if (Utils::getCheckboxBooleanValue($_new['CGI'])) {
|
|
$result = array();
|
|
$result = Vesta::execute(Vesta::V_ADD_WEB_DOMAIN_CGI, array('USER' => $user['uid'], 'DOMAIN' => $_DOMAIN));
|
|
if (!$result['status']) {
|
|
$this->status = FALSE;
|
|
$this->errors['ADD_CGI'] = array($result['error_code'] => $result['error_message']);
|
|
}
|
|
}
|
|
else {
|
|
$result = array();
|
|
$result = Vesta::execute(Vesta::V_DEL_WEB_DOMAIN_CGI, array('USER' => $user['uid'], 'DOMAIN' => $_DOMAIN));
|
|
if (!$result['status']) {
|
|
$this->status = FALSE;
|
|
$this->errors['DEL_CGI'] = array($result['error_code'] => $result['error_message']);
|
|
}
|
|
}
|
|
}
|
|
|
|
if (($_old['ELOG'] != $_new['ELOG'])) {
|
|
if (Utils::getCheckboxBooleanValue($_new['ELOG'])) {
|
|
$result = array();
|
|
$result = Vesta::execute(Vesta::V_ADD_WEB_DOMAIN_ELOG, array('USER' => $user['uid'], 'DOMAIN' => $_DOMAIN));
|
|
if (!$result['status']) {
|
|
$this->status = FALSE;
|
|
$this->errors['ADD_ELOG'] = array($result['error_code'] => $result['error_message']);
|
|
}
|
|
}
|
|
else {
|
|
$result = array();
|
|
$result = Vesta::execute(Vesta::V_DEL_WEB_DOMAIN_ELOG, array('USER' => $user['uid'], 'DOMAIN' => $_DOMAIN));
|
|
if (!$result['status']) {
|
|
$this->status = FALSE;
|
|
$this->errors['DEL_ELOG'] = array($result['error_code'] => $result['error_message']);
|
|
}
|
|
}
|
|
}
|
|
|
|
/*if ($_new['SSL']) {
|
|
$params = array(
|
|
'USER' => $user['uid'],
|
|
'DOMAIN' => $_new['DOMAIN'],
|
|
'SSL_CERT' => $_new['SSL_CERT']
|
|
);
|
|
|
|
if ($_new['SSL_HOME']) {
|
|
$params['SSL_HOME'] = $_new['SSL_HOME'];
|
|
}
|
|
|
|
$result = 0;
|
|
$result = Vesta::execute(Vesta::V_ADD_WEB_DOMAIN_SSL, $params);
|
|
|
|
if (!$result['status']) {
|
|
$this->errors['SSL'] = array($result['error_code'] => $result['error_message']);
|
|
}
|
|
}*/
|
|
|
|
if (!empty($_s['SSL_KEY'])) {
|
|
$ssl_file = tempnam(sys_get_temp_dir(), 'ssl');
|
|
file_put_contents($ssl_file, $_s['SSL_KEY']);
|
|
|
|
$params = array(
|
|
'USER' => $user['uid'],
|
|
'DOMAIN' => $_s['DOMAIN'],
|
|
'SSL_KEY' => $ssl_file
|
|
);
|
|
|
|
if (!empty($_s['SSL_HOME'])) {
|
|
$params['SSL_HOME'] = $_s['SSL_HOME'];
|
|
}
|
|
|
|
$result = 0;
|
|
$result = Vesta::execute(Vesta::V_ADD_WEB_DOMAIN_SSL, $params);
|
|
|
|
if (!$result['status']) {
|
|
$this->errors['SSL'] = array($result['error_code'] => $result['error_message']);
|
|
}
|
|
}
|
|
|
|
|
|
if (!empty($_s['SSL_CERT'])) {
|
|
$sslcert_file = tempnam(sys_get_temp_dir(), 'ssl');
|
|
file_put_contents($sslcert_file, $_s['SSL_CERT']);
|
|
|
|
$params = array(
|
|
'USER' => $user['uid'],
|
|
'DOMAIN' => $_s['DOMAIN'],
|
|
'SSL_CERT' => $sslcert_file
|
|
);
|
|
|
|
$result = 0;
|
|
$result = Vesta::execute(Vesta::V_ADD_WEB_DOMAIN_SSLCERT, $params);
|
|
|
|
if (!$result['status']) {
|
|
$this->errors['SSL_CERT'] = array($result['error_code'] => $result['error_message']);
|
|
}
|
|
}
|
|
|
|
|
|
return $this->reply($result['status'], $result['data']);
|
|
}
|
|
|
|
|
|
|
|
public function suspendExecute(Request $request)
|
|
{
|
|
$_s = $request->getParameter('spell');
|
|
$user = $this->getLoggedUser();
|
|
|
|
$params = array(
|
|
'USER' => $user['uid'],
|
|
'DOMAIN' => $_s['DOMAIN']
|
|
);
|
|
|
|
$result = Vesta::execute(Vesta::V_SUSPEND_WEB_DOMAIN, $params);
|
|
|
|
if (!$result['status']) {
|
|
$this->errors[] = array($result['error_code'] => $result['error_message']);
|
|
}
|
|
|
|
return $this->reply($result['status'], $result['data']);
|
|
}
|
|
|
|
|
|
public function unsuspendExecute(Request $request)
|
|
{
|
|
$_s = $request->getParameter('spell');
|
|
$user = $this->getLoggedUser();
|
|
|
|
$params = array(
|
|
'USER' => $user['uid'],
|
|
'DOMAIN' => $_s['DOMAIN']
|
|
);
|
|
|
|
$result = Vesta::execute(Vesta::V_UNSUSPEND_WEB_DOMAIN, $params);
|
|
|
|
if (!$result['status']) {
|
|
$this->errors[] = array($result['error_code'] => $result['error_message']);
|
|
}
|
|
|
|
return $this->reply($result['status'], $result['data']);
|
|
}
|
|
|
|
|
|
public function massiveSuspendExecute(Request $request)
|
|
{
|
|
$user = $this->getLoggedUser();
|
|
$_entities = $request->getParameter('entities');
|
|
|
|
foreach($_entities as $entity){
|
|
$result = Vesta::execute(Vesta::V_SUSPEND_WEB_DOMAIN, array('USER' => $user, $entity['DOMAIN']));
|
|
}
|
|
|
|
return $this->reply($result['status'], $result['data']);
|
|
}
|
|
|
|
public function massiveUnsuspendExecute(Request $request)
|
|
{
|
|
$user = $this->getLoggedUser();
|
|
$_entities = $request->getParameter('entities');
|
|
|
|
foreach($_entities as $entity){
|
|
$result = Vesta::execute(Vesta::V_UNUSPEND_WEB_DOMAIN, array('USER' => $user, $entity['DOMAIN']));
|
|
}
|
|
|
|
return $this->reply($result['status'], $result['data']);
|
|
}
|
|
|
|
public function massiveDeleteExecute(Request $request)
|
|
{
|
|
$user = $this->getLoggedUser();
|
|
$_entities = $request->getParameter('entities');
|
|
|
|
foreach($_entities as $entity){
|
|
$result = Vesta::execute(Vesta::V_DEL_WEB_DOMAIN, array('USER' => $user, $entity['DOMAIN']));
|
|
}
|
|
|
|
return $this->reply($result['status'], $result['data']);
|
|
}
|
|
}
|