Initial Commit of AgileBill Open Source
This commit is contained in:
311
modules/host_server/host_server.inc.php
Normal file
311
modules/host_server/host_server.inc.php
Normal file
@@ -0,0 +1,311 @@
|
||||
<?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
|
||||
*/
|
||||
|
||||
class host_server
|
||||
{
|
||||
|
||||
# Open the constructor for this mod
|
||||
function host_server()
|
||||
{
|
||||
# name of this module:
|
||||
$this->module = "host_server";
|
||||
|
||||
# location of the construct XML file:
|
||||
$this->xml_construct = PATH_MODULES . "" . $this->module . "/" . $this->module . "_construct.xml";
|
||||
|
||||
# open the construct file for parsing
|
||||
$C_xml = new CORE_xml;
|
||||
$construct = $C_xml->xml_to_array($this->xml_construct);
|
||||
|
||||
$this->method = $construct["construct"]["method"];
|
||||
$this->trigger = $construct["construct"]["trigger"];
|
||||
$this->field = $construct["construct"]["field"];
|
||||
$this->table = $construct["construct"]["table"];
|
||||
$this->module = $construct["construct"]["module"];
|
||||
$this->cache = $construct["construct"]["cache"];
|
||||
$this->order_by = $construct["construct"]["order_by"];
|
||||
$this->limit = $construct["construct"]["limit"];
|
||||
}
|
||||
|
||||
# manual add
|
||||
function host_manual_new($service, $server, $account)
|
||||
{
|
||||
}
|
||||
|
||||
# manual edit
|
||||
function host_manual_edit($service, $server, $account)
|
||||
{
|
||||
}
|
||||
|
||||
# manual activate
|
||||
function host_manual_active($service, $server, $account)
|
||||
{
|
||||
}
|
||||
|
||||
# manual deactivate
|
||||
function host_manual_inactive($service, $server, $account)
|
||||
{
|
||||
}
|
||||
|
||||
# manual delete
|
||||
function host_manual_delete($service, $server, $account)
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
# Generate a new login
|
||||
function generate_login($service,$account,$max_un_len, $max_pw_len, $shared)
|
||||
{
|
||||
# define username
|
||||
if($service['host_username'] != '')
|
||||
{
|
||||
$ret['username'] = $service['host_username'];
|
||||
} else
|
||||
{
|
||||
if ($shared == false)
|
||||
{
|
||||
# is username already in use on this server?
|
||||
$db = &DB();
|
||||
$sql = 'SELECT * FROM ' . AGILE_DB_PREFIX . 'service WHERE
|
||||
id != ' . $db->qstr( $service['id'] ) . ' AND
|
||||
host_server_id = ' . $db->qstr( $service['host_server_id'] ) . ' AND
|
||||
host_username = ' . $db->qstr( $account['username'] ) . ' AND
|
||||
site_id = ' . $db->qstr(DEFAULT_SITE);
|
||||
$rs = $db->Execute($sql);
|
||||
if ($rs->RecordCount() == 0)
|
||||
{
|
||||
$ret['username'] = $account['username'];
|
||||
} else {
|
||||
$ret['username'] = $this->generate_login1($max_un_len);
|
||||
}
|
||||
} else {
|
||||
$ret['username'] = $account['username'];
|
||||
}
|
||||
}
|
||||
|
||||
# define password
|
||||
if($service['host_password'] != '') {
|
||||
$ret['password'] = $service['host_password'];
|
||||
} else {
|
||||
$ret['password'] = $this->generate_login1($max_pw_len);
|
||||
}
|
||||
|
||||
# save the username/password for this service
|
||||
$db = &DB();
|
||||
$sql = 'UPDATE ' . AGILE_DB_PREFIX . 'service
|
||||
SET
|
||||
host_username = ' . $db->qstr( $ret['username'] ) . ',
|
||||
host_password = ' . $db->qstr( $ret['password'] ) . '
|
||||
WHERE
|
||||
id = ' . $db->qstr( $service['id'] ) . ' AND
|
||||
site_id = ' . $db->qstr(DEFAULT_SITE);
|
||||
$db->Execute($sql);
|
||||
return $ret;
|
||||
}
|
||||
|
||||
|
||||
# random un/pw
|
||||
function generate_login1($length)
|
||||
{
|
||||
srand((double)microtime()*1000000);
|
||||
$vowels = array("a", "e", "i", "o", "u");
|
||||
$cons = array("b", "c", "d", "g", "h", "j", "k", "l", "m", "n", "p",
|
||||
"r", "s", "t", "u", "v", "w", "tr", "cr", "br", "fr", "th",
|
||||
"dr", "ch", "ph", "wr", "st", "sp", "sw", "pr", "sl", "cl");
|
||||
$num_vowels = count($vowels);
|
||||
$num_cons = count($cons);
|
||||
for($i = 0; $i < $length; $i++){
|
||||
@$rand .= $cons[rand(0, $num_cons - 1)] . $vowels[rand(0, $num_vowels - 1)];
|
||||
}
|
||||
return $rand;
|
||||
}
|
||||
|
||||
# use ip address
|
||||
function useipaddress($service, $server)
|
||||
{
|
||||
if($service['host_ip'] != '') return $service['host_ip'];
|
||||
|
||||
$pat = "\r\n";
|
||||
$ips_r = '';
|
||||
@$ips = explode($pat, $server['ip_based_ip']);
|
||||
for($i=0; $i<count(@$ips); $i++) {
|
||||
if($i==0)
|
||||
{
|
||||
if($ips[0] != '')
|
||||
$ip = $ips[0];
|
||||
else
|
||||
return false;
|
||||
}
|
||||
else
|
||||
{
|
||||
if($ips[$i] != '')
|
||||
@$ips_r .= $ips[$i].$pat;
|
||||
}
|
||||
}
|
||||
|
||||
# update this service
|
||||
$db = &DB();
|
||||
$sql = 'UPDATE ' . AGILE_DB_PREFIX . 'service
|
||||
SET
|
||||
host_ip = ' . $db->qstr( $ip ) . '
|
||||
WHERE
|
||||
id = ' . $db->qstr( $service['id'] ) . ' AND
|
||||
site_id = ' . $db->qstr(DEFAULT_SITE);
|
||||
$db->Execute($sql);
|
||||
|
||||
# update ip list for this server
|
||||
$sql = 'UPDATE ' . AGILE_DB_PREFIX . 'host_server
|
||||
SET
|
||||
ip_based_ip = ' . $db->qstr( $ips_r ) . '
|
||||
WHERE
|
||||
id = ' . $db->qstr( $server['id'] ) . ' AND
|
||||
site_id = ' . $db->qstr(DEFAULT_SITE);
|
||||
$db->Execute($sql);
|
||||
|
||||
return $ip;
|
||||
}
|
||||
|
||||
# re-use ip address
|
||||
function unuseipaddress($server, $ip)
|
||||
{
|
||||
if(empty($ip)) return false;
|
||||
|
||||
# update ip list for this server
|
||||
$ips = $ip;
|
||||
if(!empty($server['ip_based_ip']))
|
||||
$ips .= "\r\n".$server['ip_based_ip'];
|
||||
|
||||
# update
|
||||
$db = &DB();
|
||||
$sql = 'UPDATE ' . AGILE_DB_PREFIX . 'host_server
|
||||
SET
|
||||
ip_based_ip = ' . $db->qstr( $ips ) . '
|
||||
WHERE
|
||||
id = ' . $db->qstr( $server['id'] ) . ' AND
|
||||
site_id = ' . $db->qstr(DEFAULT_SITE);
|
||||
$db->Execute($sql);
|
||||
return true;
|
||||
}
|
||||
|
||||
|
||||
##############################
|
||||
## ADD ##
|
||||
##############################
|
||||
function add($VAR)
|
||||
{
|
||||
$VAR['host_server_keycode'] = md5(rand(99,999) . microtime());
|
||||
|
||||
$type = "add";
|
||||
$this->method["$type"] = split(",", $this->method["$type"]);
|
||||
$db = new CORE_database;
|
||||
$db->add($VAR, $this, $type);
|
||||
}
|
||||
|
||||
##############################
|
||||
## VIEW ##
|
||||
##############################
|
||||
function view($VAR)
|
||||
{
|
||||
global $smarty;
|
||||
|
||||
$type = "view";
|
||||
$this->method["$type"] = split(",", $this->method["$type"]);
|
||||
$dx = new CORE_database;
|
||||
$rs = $dx->view($VAR, $this, $type);
|
||||
|
||||
# get the list of available servers to define as "next server"
|
||||
$db = &DB();
|
||||
$sql= 'SELECT id,name FROM ' . AGILE_DB_PREFIX . 'host_server WHERE
|
||||
id != ' . $db->qstr( $rs[0]['id'] ) . ' AND
|
||||
next_host_server_id != ' . $db->qstr( $rs[0]['id'] ) . ' AND
|
||||
provision_plugin = ' . $db->qstr( $rs[0]['provision_plugin'] ) . ' AND
|
||||
site_id = ' . $db->qstr(DEFAULT_SITE);
|
||||
$rs = $db->Execute($sql);
|
||||
if(@$rs->RecordCount() > 0)
|
||||
{
|
||||
$arr[0] = '';
|
||||
while(!$rs->EOF) {
|
||||
$arr[$rs->fields['id']] = $rs->fields['name'];
|
||||
$rs->MoveNext();
|
||||
}
|
||||
$smarty->assign('next_server_options', $arr);
|
||||
$smarty->assign('next_server', true);
|
||||
|
||||
} else {
|
||||
$smarty->assign('next_server', false);
|
||||
}
|
||||
}
|
||||
|
||||
##############################
|
||||
## UPDATE ##
|
||||
##############################
|
||||
function update($VAR)
|
||||
{
|
||||
$type = "update";
|
||||
$this->method["$type"] = split(",", $this->method["$type"]);
|
||||
$db = new CORE_database;
|
||||
$db->update($VAR, $this, $type);
|
||||
}
|
||||
|
||||
##############################
|
||||
## DELETE ##
|
||||
##############################
|
||||
function delete($VAR)
|
||||
{
|
||||
$db = new CORE_database;
|
||||
$db->mass_delete($VAR, $this, "");
|
||||
}
|
||||
|
||||
##############################
|
||||
## SEARCH FORM ##
|
||||
##############################
|
||||
function search_form($VAR)
|
||||
{
|
||||
$type = "search";
|
||||
$this->method["$type"] = split(",", $this->method["$type"]);
|
||||
$db = new CORE_database;
|
||||
$db->search_form($VAR, $this, $type);
|
||||
}
|
||||
|
||||
##############################
|
||||
## SEARCH ##
|
||||
##############################
|
||||
function search($VAR)
|
||||
{
|
||||
$type = "search";
|
||||
$this->method["$type"] = split(",", $this->method["$type"]);
|
||||
$db = new CORE_database;
|
||||
$db->search($VAR, $this, $type);
|
||||
}
|
||||
|
||||
##############################
|
||||
## SEARCH SHOW ##
|
||||
##############################
|
||||
|
||||
function search_show($VAR)
|
||||
{
|
||||
$type = "search";
|
||||
$this->method["$type"] = split(",", $this->method["$type"]);
|
||||
$db = new CORE_database;
|
||||
$db->search_show($VAR, $this, $type);
|
||||
}
|
||||
|
||||
}
|
||||
?>
|
96
modules/host_server/host_server_construct.xml
Normal file
96
modules/host_server/host_server_construct.xml
Normal file
@@ -0,0 +1,96 @@
|
||||
<?xml version="1.0" encoding="ISO-8859-1" ?>
|
||||
<construct>
|
||||
<!-- define the module name -->
|
||||
<module>host_server</module>
|
||||
<!-- define the module table name -->
|
||||
<table>host_server</table>
|
||||
<!-- define the module dependancy(s) -->
|
||||
<dependancy/>
|
||||
<!-- define the DB cache in seconds -->
|
||||
<cache>0</cache>
|
||||
<!-- define the default order_by field for SQL queries -->
|
||||
<order_by>name</order_by>
|
||||
<!-- define the methods -->
|
||||
<limit>25</limit>
|
||||
<!-- define the fields -->
|
||||
<field>
|
||||
<id>
|
||||
<type>I4</type>
|
||||
<unique>1</unique>
|
||||
<index>1</index>
|
||||
</id>
|
||||
<site_id>
|
||||
<type>I4</type>
|
||||
<index>1</index>
|
||||
</site_id>
|
||||
<status>
|
||||
<type>L</type>
|
||||
</status>
|
||||
<debug>
|
||||
<type>L</type>
|
||||
</debug>
|
||||
<name>
|
||||
<type>C(128)</type>
|
||||
<min_len>1</min_len>
|
||||
<max_len>128</max_len>
|
||||
<validate>any</validate>
|
||||
</name>
|
||||
<notes>
|
||||
<type>C(255)</type>
|
||||
</notes>
|
||||
<provision_plugin>
|
||||
<type>C(128)</type>
|
||||
<min_len>1</min_len>
|
||||
<max_len>128</max_len>
|
||||
</provision_plugin>
|
||||
<provision_plugin_data>
|
||||
<type>X2</type>
|
||||
<convert>array</convert>
|
||||
</provision_plugin_data>
|
||||
<max_accounts>
|
||||
<type>I4</type>
|
||||
</max_accounts>
|
||||
<next_host_server_id>
|
||||
<type>I4</type>
|
||||
<asso_table>host_server</asso_table>
|
||||
<asso_field>name</asso_field>
|
||||
</next_host_server_id>
|
||||
<name_based>
|
||||
<type>L</type>
|
||||
</name_based>
|
||||
<name_based_ip>
|
||||
<type>C(32)</type>
|
||||
</name_based_ip>
|
||||
<ip_based>
|
||||
<type>L</type>
|
||||
</ip_based>
|
||||
<ip_based_ip>
|
||||
<type>X2</type>
|
||||
</ip_based_ip>
|
||||
<ns_primary>
|
||||
<type>C(128)</type>
|
||||
</ns_primary>
|
||||
<ns_secondary>
|
||||
<type>C(128)</type>
|
||||
</ns_secondary>
|
||||
<ns_ip_primary>
|
||||
<type>C(128)</type>
|
||||
</ns_ip_primary>
|
||||
<ns_ip_secondary>
|
||||
<type>C(128)</type>
|
||||
</ns_ip_secondary>
|
||||
<keycode>
|
||||
<type>C(64)</type>
|
||||
</keycode>
|
||||
</field>
|
||||
<!-- define all the methods for this class, and the fields they have access to, if applicable. -->
|
||||
<method>
|
||||
<add>id,site_id,status,debug,name,notes,provision_plugin,provision_plugin_data,max_accounts,next_host_server_id,name_based,name_based_ip,ip_based,ip_based_ip,ns_ip_secondary,ns_ip_primary,ns_primary,ns_secondary,keycode</add>
|
||||
<update>id,site_id,status,debug,name,notes,provision_plugin,provision_plugin_data,max_accounts,next_host_server_id,name_based,name_based_ip,ip_based,ip_based_ip,ns_ip_secondary,ns_ip_primary,ns_primary,ns_secondary,keycode</update>
|
||||
<delete>id,site_id,status,debug,name,notes,provision_plugin,provision_plugin_data,max_accounts,next_host_server_id,name_based,name_based_ip,ip_based,ip_based_ip,ns_ip_secondary,ns_ip_primary,ns_primary,ns_secondary,keycode</delete>
|
||||
<view>id,site_id,status,debug,name,notes,provision_plugin,provision_plugin_data,max_accounts,next_host_server_id,name_based,name_based_ip,ip_based,ip_based_ip,ns_ip_secondary,ns_ip_primary,ns_primary,ns_secondary,keycode</view>
|
||||
<search>id,site_id,status,debug,name,notes,provision_plugin,provision_plugin_data,max_accounts,next_host_server_id,name_based,name_based_ip,ip_based,ip_based_ip,ns_ip_secondary,ns_ip_primary,ns_primary,ns_secondary,keycode</search>
|
||||
</method>
|
||||
<!-- define the method triggers -->
|
||||
<trigger>0</trigger>
|
||||
</construct>
|
40
modules/host_server/host_server_install.xml
Normal file
40
modules/host_server/host_server_install.xml
Normal file
@@ -0,0 +1,40 @@
|
||||
<install>
|
||||
<module_properties>
|
||||
<name>host_server</name>
|
||||
<parent>host_server</parent>
|
||||
<notes><![CDATA[This module controls the servers your new accounts/domains can be provisioned on.]]></notes>
|
||||
<menu_display>1</menu_display>
|
||||
<sub_modules>host_tld,host_registrar_plugin</sub_modules>
|
||||
</module_properties>
|
||||
<sql_inserts>
|
||||
<module_method>
|
||||
<add>
|
||||
<name>add</name>
|
||||
<page><![CDATA[%%:add]]></page>
|
||||
<menu_display>1</menu_display>
|
||||
</add>
|
||||
<update>
|
||||
<name>update</name>
|
||||
</update>
|
||||
<search>
|
||||
<name>search</name>
|
||||
</search>
|
||||
<search_form>
|
||||
<name>search_form</name>
|
||||
<notes><![CDATA[Allow users to view the search form]]></notes>
|
||||
</search_form>
|
||||
<view>
|
||||
<name>view</name>
|
||||
<page><![CDATA[core:search&module=%%&_escape=1]]></page>
|
||||
<menu_display>1</menu_display>
|
||||
</view>
|
||||
<delete>
|
||||
<name>delete</name>
|
||||
</delete>
|
||||
<search_show>
|
||||
<name>search_show</name>
|
||||
<notes><![CDATA[Allow users to view the search results]]></notes>
|
||||
</search_show>
|
||||
</module_method>
|
||||
</sql_inserts>
|
||||
</install>
|
Reference in New Issue
Block a user