This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
khosb/plugins/provision/ENSIM_LINUX_PLAN_3_5.php
2008-11-26 14:50:40 -08:00

307 lines
10 KiB
PHP

<?php
/**
* AgileBill - Open Billing Software
*
* This body of work is free software; you can redistribute it and/or
* modify it under the terms of the Open AgileBill License
* License as published at http://www.agileco.com/agilebill/license1-4.txt
*
* For questions, help, comments, discussion, etc., please join the
* Agileco community forums at http://forum.agileco.com/
*
* @link http://www.agileco.com/
* @copyright 2004-2008 Agileco, LLC.
* @license http://www.agileco.com/agilebill/license1-4.txt
* @author Tony Landis <tony@agileco.com>
* @package AgileBill
* @version 1.4.93
*/
# Remote update retrieval
if(empty($VAR))
{
include_once('../../config.inc.php');
require_once(PATH_ADODB . 'adodb.inc.php');
require_once(PATH_CORE . 'database.inc.php');
require_once(PATH_CORE . 'setup.inc.php');
require_once(PATH_CORE . 'vars.inc.php');
require_once(PATH_CORE . 'xml.inc.php');
$C_debug = new CORE_debugger;
$C_vars = new CORE_vars;
$VAR = $C_vars->f;
$C_db = &DB();
$C_setup = new CORE_setup;
$plg = new plgn_prov_ENSIM_LINUX_PLAN_3_5();
$plg->p_all($VAR);
}
# Main Class
class plgn_prov_ENSIM_LINUX_PLAN_3_5
{
function plgn_prov_ENSIM_LINUX_PLAN_3_5()
{
$this->name = 'ENSIM_LINUX_PLAN_3_5';
$this->task_based = true;
$this->remote_based = false;
$this->nl = '; ';
}
# add new service
function p_new()
{
# get the common server class and set login details
include_once(PATH_MODULES.'host_server/host_server.inc.php');
$host = new host_server;
if($this->service['host_username'] == '' || $this->service['host_password'] == '')
{
$this->login = $host->generate_login($this->service, $this->account, 4, 4, false);
} else {
$this->login['username'] = $this->service['host_username'];
$this->login['password'] = $this->service['host_password'];
}
/**
# get ip address
if ($this->plugin_data['ipinfo_namebased'] == '0')
$this->ip = $host->useipaddress($this->service, $this->server);
else
$this->ip = false ;
*/
# start the command
$cmd = "AddVirtDomain " .
" -p {$this->plugin_data['plan']} " .
" -c siteinfo".
",domain=" . $this->service['domain_name'] . "." . $this->service['domain_tld'] .
",admin_user=\"" . $this->login['username'] . "\"".
",passwd=\"" . $this->login['password'] . "\"".
",tpasswd=\"" . $this->login['password'] . "\"".
",email=\"" . $this->account['email'] . "\"";
/**
# ip based?
if ($this->plugin_data['ipinfo_namebased'] == '0' && $this->ip == false)
{
$cmd .= " -c ipinfo,namebased=0,ipaddrs=\[" . $this->ip . "\]";
}
*/
$cmd .= $this->nl;
return $cmd;
}
# edit service
function p_edit()
{
/*
# get ip address
if(!empty($this->service['host_ip']))
$this->ip = $this->service['host_ip'];
else
$this->ip = $this->server['name_based_ip'];
*/
$cmd = "EditVirtDomain -D " .
$this->service['domain_name']. "." . $this->service['domain_tld'] .
" -p {$this->plugin_data['plan']} " .
" -c siteinfo".
",domain=" . $this->service['domain_name'] . "." . $this->service['domain_tld'] .
",admin_user=\"" . $this->service['host_username'] . "\"".
",passwd=" . $this->service['host_password'] .
",tpasswd=" . $this->service['host_password'] .
",email=" . $this->account['email'];
/*
# ip based?
if ($this->plugin_data['ipinfo_namebased'] == '0' && $this->ip == false)
{
$cmd .= " -c ipinfo,namebased=0,ipaddrs=\[" . $this->ip . "\]";
}
*/
return $cmd;
}
# activate service
function p_inactive()
{
return "DisableVirtDomain " . strtoupper($this->service['domain_name']. "." . $this->service['domain_tld']);
}
# deactivate service
function p_active()
{
return "EnableVirtDomain " . strtoupper($this->service['domain_name']. "." . $this->service['domain_tld']);
}
# delete service
function p_delete()
{
# recycle the IP if ip_based:
if ($this->plugin_data['ipinfo_namebased'] == '0') {
include_once(PATH_MODULES.'host_server/host_server.inc.php');
$host = new host_server;
$this->ip = $host->unuseipaddress($this->server, $this->service['host_ip']);
}
return "DeleteVirtDomain " . strtoupper($this->service['domain_name']. "." . $this->service['domain_tld']);
}
# construct echo all updates
function p_all($VAR)
{
global $C_debug;
# Error checking
if( empty($VAR['key']) ) {
echo 'REM Server Key Missing!';
exit;
}
# Get the server details
$db = &DB();
$sql = 'SELECT * FROM ' . AGILE_DB_PREFIX . 'host_server WHERE
keycode = ' . $db->qstr( $VAR['key'] ) . ' AND
site_id = ' . $db->qstr(DEFAULT_SITE);
$rs = $db->Execute($sql);
if (@$rs->RecordCount() <= 0) {
echo 'REM Server ID does not exist';
exit;
} else {
$this->server = $rs->fields;
@$this->server_cnfg = unserialize($rs->fields['provision_plugin_data']);
}
# Check that this server is using this plugin
if($this->server['provision_plugin'] != @$this->name)
{
echo 'REM Wrong plugin for this server ';
exit;
}
# Check the auth for this post
if (!empty($VAR['key']) && $VAR['key'] == $this->server['keycode'])
{
# authorized!
} else {
echo 'REM Unauthorized Key! ';
exit;
}
# Get the service details
$db = &DB();
$sql = 'SELECT * FROM ' . AGILE_DB_PREFIX . 'service WHERE
type = ' . $db->qstr( 'host' ) . ' OR
type = ' . $db->qstr( 'host_group' ) . ' AND
host_server_id = ' . $db->qstr( $this->server['id'] ) . ' AND
queue != ' . $db->qstr( 'none' ) . ' AND
site_id = ' . $db->qstr(DEFAULT_SITE);
$rs = $db->Execute($sql);
if($rs->RecordCount() == 0) {
echo 'REM No Records To Add/Update ';
exit;
}
$i=0;
while(!$rs->EOF)
{
# set details
$this->service = $rs->fields;
# Get the hosting plan plugin data for this product
$this->plugin_data = unserialize($this->service['host_provision_plugin_data']);
# Get the account details
$sql = 'SELECT * FROM ' . AGILE_DB_PREFIX . 'account WHERE
id = ' . $db->qstr( $this->service['account_id'] ) . ' AND
site_id = ' . $db->qstr(DEFAULT_SITE);
$acct = $db->Execute($sql);
$this->account = $acct->fields;
# determine the correct action
switch ($this->service['queue'])
{
# new
case 'new':
$result = $this->p_new();
# send the user the details
include_once(PATH_MODULES.'email_template/email_template.inc.php');
$email = new email_template;
$email->send('host_new_user', $this->account['id'], $rs->fields['id'], '', '');
break;
# active
case 'active':
$result = $this->p_active();
# send the user the details
include_once(PATH_MODULES.'email_template/email_template.inc.php');
$email = new email_template;
$email->send('host_edit_user', $this->account['id'], $rs->fields['id'], '', '');
break;
# inactive
case 'inactive':
$result = $this->p_inactive();
break;
# edit
case 'edit':
$result = $this->p_edit();
break;
# delete
case 'delete':
$result = $this->p_delete();
break;
}
# formatting
if (@$result != false)
{
if($i > 0)
echo $this->nl;
echo $result;
$i++;
}
# check if we need to update the status after an edit
if ($this->service['queue'] == 'edit') {
if ($this->service['active'] == 1 )
echo $this->nl . $this->p_active();
else
echo $this->nl . $this->p_inactive();
}
# update service record
if(@$result != false)
{
if($this->service['queue'] == "delete")
{
# delete
$sql = 'DELETE FROM ' . AGILE_DB_PREFIX . 'service WHERE
id = ' . $db->qstr( $rs->fields['id'] ) . ' AND
site_id = ' . $db->qstr(DEFAULT_SITE);
$upd = $db->Execute($sql);
} else {
# update
$sql = 'UPDATE ' . AGILE_DB_PREFIX . 'service SET
queue = ' . $db->qstr( 'none' ) . ',
date_last = ' . $db->qstr( time() ) . '
WHERE
id = ' . $db->qstr( $rs->fields['id'] ) . ' AND
site_id = ' . $db->qstr(DEFAULT_SITE);
$upd = $db->Execute($sql);
}
} else {
# error log
$C_debug->error($this->name.'php', $this->service['queue'], @$result);
}
$rs->MoveNext();
}
}
}
?>