Initial Commit of AgileBill Open Source
This commit is contained in:
215
modules/voip_rate/voip_rate.inc.php
Normal file
215
modules/voip_rate/voip_rate.inc.php
Normal file
@@ -0,0 +1,215 @@
|
||||
<?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> and Thralling Penguin, LLC <http://www.thrallingpenguin.com>
|
||||
* @package AgileBill
|
||||
* @version 1.4.93
|
||||
*/
|
||||
|
||||
class voip_rate
|
||||
{
|
||||
|
||||
# Open the constructor for this mod
|
||||
function voip_rate()
|
||||
{
|
||||
# name of this module:
|
||||
$this->module = "voip_rate";
|
||||
|
||||
# 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"];
|
||||
}
|
||||
|
||||
function import($VAR)
|
||||
{
|
||||
$db =& DB();
|
||||
$rs = $db->Execute(sqlSelect($db,"product", "id,sku", "prod_plugin_file=::VOIP:: and prod_plugin=1"));
|
||||
$prods[0] = "-- NONE --";
|
||||
while (!$rs->EOF) {
|
||||
$prods[$rs->fields['id']] = $rs->fields['sku'];
|
||||
$rs->MoveNext();
|
||||
}
|
||||
$ic[0]['name'] = 'product_id';
|
||||
$ic[0]['type'] = 'select';
|
||||
$ic[0]['value'] = $prods;
|
||||
$this->import_custom = $ic;
|
||||
|
||||
include_once(PATH_CORE.'import.inc.php');
|
||||
$import = new CORE_import;
|
||||
|
||||
if(empty($VAR['confirm'])) {
|
||||
$import->prepare_import($VAR, $this);
|
||||
} else {
|
||||
$import->do_new_import($VAR, $this);
|
||||
}
|
||||
}
|
||||
|
||||
function import_line_process(&$db, &$VAR, &$fields, &$record)
|
||||
{
|
||||
if (!$VAR['import_select']['product_id'])
|
||||
return;
|
||||
$f['product_id'] = $VAR['import_select']['product_id'];
|
||||
$f['voip_rate_id'] = $record['id'];
|
||||
$db->Execute(sqlInsert($db, "voip_rate_prod", $f));
|
||||
}
|
||||
|
||||
/** Output avial/assigned rate tables for configuration
|
||||
*/
|
||||
function product_rates($VAR)
|
||||
{
|
||||
@$product = $VAR['product'];
|
||||
|
||||
$avail=false;
|
||||
$assigned=false;
|
||||
|
||||
$db=&DB();
|
||||
$as = $db->Execute($sql = sqlSelect($db,"voip_rate_prod","voip_rate_id","product_id = ::$product::"));
|
||||
if($as && $as->RecordCount() > 0) {
|
||||
while(!$as->EOF) {
|
||||
$av["{$as->fields['voip_rate_id']}"] = true;
|
||||
$as->MoveNext();
|
||||
}
|
||||
}
|
||||
|
||||
$rs = $db->Execute($sql = sqlSelect($db,"voip_rate","id,name,pattern,amount",""));
|
||||
if($rs && $rs->RecordCount() > 0)
|
||||
{
|
||||
while(!$rs->EOF)
|
||||
{
|
||||
if(is_array($av) && array_key_exists($rs->fields['id'], $av)) {
|
||||
$assigned[] = Array('id'=> $rs->fields['id'], 'name' => $rs->fields['name'].' - '. substr($rs->fields['pattern'],0,20).' - '.$rs->fields['amount']);
|
||||
} else {
|
||||
$avail[] = Array('id'=> $rs->fields['id'], 'name' => $rs->fields['name'].' - '.substr($rs->fields['pattern'],0,20).' - '.$rs->fields['amount']);
|
||||
}
|
||||
$rs->MoveNext();
|
||||
}
|
||||
}
|
||||
|
||||
global $smarty;
|
||||
$smarty->assign('avail', $avail);
|
||||
$smarty->assign('assigned', $assigned);
|
||||
}
|
||||
|
||||
/** Save updated rate tables for product
|
||||
*/
|
||||
function products($VAR)
|
||||
{
|
||||
$product = $VAR['product'];
|
||||
$avail = $VAR['avail'];
|
||||
$assigned = @$VAR['assigned'];
|
||||
$db = &DB();
|
||||
|
||||
// clean out any selected ids from the 'assigned' array
|
||||
if(is_array($assigned))
|
||||
foreach($assigned as $voip_rate_id)
|
||||
$db->Execute(sqlDelete($db,"voip_rate_prod"," product_id = ::$product:: AND voip_rate_id = $voip_rate_id"));
|
||||
|
||||
// add any selected ids from the 'avail' array
|
||||
if(is_array($avail)) {
|
||||
foreach($avail as $voip_rate_id) {
|
||||
$fields=Array('product_id' => $product, 'voip_rate_id' => $voip_rate_id);
|
||||
$id = $db->Execute(sqlInsert($db,"voip_rate_prod",$fields));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
##############################
|
||||
## ADD ##
|
||||
##############################
|
||||
function add($VAR)
|
||||
{
|
||||
$type = "add";
|
||||
$this->method["$type"] = split(",", $this->method["$type"]);
|
||||
$db = new CORE_database;
|
||||
$db->add($VAR, $this, $type);
|
||||
}
|
||||
|
||||
##############################
|
||||
## VIEW ##
|
||||
##############################
|
||||
function view($VAR)
|
||||
{
|
||||
$type = "view";
|
||||
$this->method["$type"] = split(",", $this->method["$type"]);
|
||||
$db = new CORE_database;
|
||||
$db->view($VAR, $this, $type);
|
||||
}
|
||||
|
||||
##############################
|
||||
## 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);
|
||||
}
|
||||
}
|
||||
?>
|
75
modules/voip_rate/voip_rate_construct.xml
Normal file
75
modules/voip_rate/voip_rate_construct.xml
Normal file
@@ -0,0 +1,75 @@
|
||||
<?xml version="1.0" encoding="ISO-8859-1" ?>
|
||||
<construct>
|
||||
<module>voip_rate</module>
|
||||
<table>voip_rate</table>
|
||||
<dependancy/>
|
||||
<cache>0</cache>
|
||||
<order_by>name</order_by>
|
||||
<limit>25</limit>
|
||||
<index>
|
||||
<id>id</id>
|
||||
</index>
|
||||
<field>
|
||||
<id>
|
||||
<type>I4</type>
|
||||
<unique>1</unique>
|
||||
</id>
|
||||
<site_id>
|
||||
<type>I4</type>
|
||||
</site_id>
|
||||
<date_added>
|
||||
<type>I8</type>
|
||||
<convert>date-time</convert>
|
||||
</date_added>
|
||||
<name>
|
||||
<type>C(32)</type>
|
||||
<min_len>2</min_len>
|
||||
<max_len>32</max_len>
|
||||
<validate>any</validate>
|
||||
</name>
|
||||
<pattern>
|
||||
<type>B</type>
|
||||
</pattern>
|
||||
<connect_fee>
|
||||
<type>F</type>
|
||||
</connect_fee>
|
||||
<increment_seconds>
|
||||
<type>I4</type>
|
||||
<validate>any</validate>
|
||||
</increment_seconds>
|
||||
<seconds_included>
|
||||
<type>I4</type>
|
||||
</seconds_included>
|
||||
<amount>
|
||||
<type>F</type>
|
||||
<validate>any</validate>
|
||||
</amount>
|
||||
<type>
|
||||
<type>N</type>
|
||||
</type>
|
||||
<direction>
|
||||
<type>N</type>
|
||||
</direction>
|
||||
<min>
|
||||
<type>I4</type>
|
||||
</min>
|
||||
<max>
|
||||
<type>I4</type>
|
||||
</max>
|
||||
<combine>
|
||||
<type>L</type>
|
||||
</combine>
|
||||
<percall>
|
||||
<type>L</type>
|
||||
</percall>
|
||||
</field>
|
||||
<method>
|
||||
<add>id,site_id,date_added,name,pattern,connect_fee,increment_seconds,seconds_included,amount,type,direction,min,max,combine,percall</add>
|
||||
<update>id,site_id,date_added,name,pattern,connect_fee,increment_seconds,seconds_included,amount,type,direction,min,max,combine,percall</update>
|
||||
<delete>id,site_id,date_added,name,pattern,connect_fee,increment_seconds,seconds_included,amount,type,direction,min,max,combine,percall</delete>
|
||||
<view>id,site_id,date_added,name,pattern,connect_fee,increment_seconds,seconds_included,amount,type,direction,min,max,combine,percall</view>
|
||||
<search>id,site_id,date_added,name,pattern,connect_fee,increment_seconds,seconds_included,amount,type,direction,min,max,combine,percall</search>
|
||||
<import>name,pattern,connect_fee,increment_seconds,seconds_included,amount,type,direction,min,max,combine,percall</import>
|
||||
</method>
|
||||
<trigger>0</trigger>
|
||||
</construct>
|
46
modules/voip_rate/voip_rate_install.xml
Normal file
46
modules/voip_rate/voip_rate_install.xml
Normal file
@@ -0,0 +1,46 @@
|
||||
<install>
|
||||
<module_properties>
|
||||
<name>voip_rate</name>
|
||||
<parent>voip</parent>
|
||||
<notes><![CDATA[This module allows you to rate and bill CDRs]]></notes>
|
||||
<menu_display>1</menu_display>
|
||||
<dependancy>voip</dependancy>
|
||||
</module_properties>
|
||||
<sql_inserts>
|
||||
<module_method>
|
||||
<search>
|
||||
<name>search</name>
|
||||
</search>
|
||||
<run>
|
||||
<name>run</name>
|
||||
</run>
|
||||
<view>
|
||||
<name>view</name>
|
||||
<page><![CDATA[core:search&module=%%&_escape=1&_next_page_one=view]]></page>
|
||||
<menu_display>1</menu_display>
|
||||
</view>
|
||||
<import>
|
||||
<name>import</name>
|
||||
<page><![CDATA[core:import_new&module=%%]]></page>
|
||||
<menu_display>1</menu_display>
|
||||
</import>
|
||||
<add>
|
||||
<name>add</name>
|
||||
<menu_display>1</menu_display>
|
||||
</add>
|
||||
<products>
|
||||
<name>products</name>
|
||||
<menu_display>1</menu_display>
|
||||
</products>
|
||||
<delete>
|
||||
<name>delete</name>
|
||||
</delete>
|
||||
<update>
|
||||
<name>update</name>
|
||||
</update>
|
||||
<search_show>
|
||||
<name>search_show</name>
|
||||
</search_show>
|
||||
</module_method>
|
||||
</sql_inserts>
|
||||
</install>
|
Reference in New Issue
Block a user