2008-11-26 22:50:40 +00:00
|
|
|
<?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
|
2009-08-03 04:10:16 +00:00
|
|
|
*
|
|
|
|
* Originally authored by Tony Landis, AgileBill LLC
|
|
|
|
*
|
|
|
|
* Recent modifications by Deon George
|
|
|
|
*
|
|
|
|
* @author Deon George <deonATleenooksDOTnet>
|
|
|
|
* @copyright 2009 Deon George
|
|
|
|
* @link http://osb.leenooks.net
|
2008-11-26 22:50:40 +00:00
|
|
|
*
|
|
|
|
* @link http://www.agileco.com/
|
|
|
|
* @copyright 2004-2008 Agileco, LLC.
|
|
|
|
* @license http://www.agileco.com/agilebill/license1-4.txt
|
2009-08-03 04:10:16 +00:00
|
|
|
* @author Tony Landis <tony@agileco.com>
|
2008-11-26 22:50:40 +00:00
|
|
|
* @package AgileBill
|
2009-08-03 04:10:16 +00:00
|
|
|
* @subpackage Core
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The main AgileBill CORE Database ADD Method
|
|
|
|
*
|
|
|
|
* @uses CORE_validate
|
|
|
|
* @uses CORE_static_var
|
|
|
|
* @uses CORE_trigger
|
2008-11-26 22:50:40 +00:00
|
|
|
*/
|
|
|
|
|
2009-08-03 04:10:16 +00:00
|
|
|
function CORE_database_add($VAR,$construct,$type) {
|
|
|
|
global $C_translate;
|
2008-11-26 22:50:40 +00:00
|
|
|
|
2009-08-03 04:10:16 +00:00
|
|
|
# Temp during code rework
|
|
|
|
if (! is_array($construct->val_error))
|
|
|
|
$construct->val_error = array();
|
2008-11-26 22:50:40 +00:00
|
|
|
|
2009-08-03 04:10:16 +00:00
|
|
|
# Set the field list for this method
|
|
|
|
$arr = $construct->method[$type];
|
2008-11-26 22:50:40 +00:00
|
|
|
|
2009-08-03 04:10:16 +00:00
|
|
|
# Define the validation class
|
|
|
|
include_once(PATH_CORE.'validate.inc.php');
|
|
|
|
$validate = new CORE_validate($VAR,$construct->module);
|
|
|
|
$construct->validated = true;
|
2008-11-26 22:50:40 +00:00
|
|
|
|
2009-08-03 04:10:16 +00:00
|
|
|
# Quick Validation to see if we have too many variables.
|
|
|
|
foreach ($VAR as $field_name => $value)
|
|
|
|
if (preg_match("/^{$construct->module}_/",$field_name))
|
|
|
|
if (! in_array(preg_replace("/^{$construct->module}_/",'',$field_name),$arr))
|
|
|
|
array_push($construct->val_error,array(
|
|
|
|
'field'=>sprintf('%s_%s',$construct->table,$field_name),
|
|
|
|
'field_trans'=>$field_name,
|
|
|
|
'error'=>sprintf('WARNING: Variable passed to %s but it will be ignored.',__METHOD__),
|
|
|
|
'method'=>sprintf('%s:%s(%s)',__FILE__,__METHOD__,__LINE__)
|
|
|
|
));
|
|
|
|
|
|
|
|
# Quick Validation to see if we are missing variables.
|
|
|
|
foreach ($construct->method[$type] as $field_name) {
|
|
|
|
$field_var = sprintf('%s_%s',$construct->module,$field_name);
|
|
|
|
|
|
|
|
if (! array_key_exists($field_var,$VAR))
|
|
|
|
array_push($construct->val_error,array(
|
|
|
|
'field'=>$field_var,
|
|
|
|
'field_trans'=>$field_name,
|
|
|
|
'error'=>sprintf('WARNING: Variable NOT passed to %s.',__METHOD__),
|
|
|
|
'method'=>sprintf('%s:%s(%s)',__FILE__,__METHOD__,__LINE__)
|
|
|
|
));
|
|
|
|
}
|
2008-11-26 22:50:40 +00:00
|
|
|
|
2009-08-03 04:10:16 +00:00
|
|
|
# Perform each field validation
|
|
|
|
while (list($key,$field_name) = each($arr)) {
|
|
|
|
# Get the field value
|
|
|
|
$field_var = sprintf('%s_%s',$construct->module,$field_name);
|
2008-11-26 22:50:40 +00:00
|
|
|
|
2009-08-03 04:10:16 +00:00
|
|
|
# Check if this value is unique
|
|
|
|
if (isset($construct->field[$field_name]['unique']) && isset($VAR[$field_var])) {
|
|
|
|
if (! $validate->validate_unique($construct->table,$field_name,'record_id',$VAR[$field_var])) {
|
2008-11-26 22:50:40 +00:00
|
|
|
$construct->validated = false;
|
2009-08-03 04:10:16 +00:00
|
|
|
|
|
|
|
array_push($construct->val_error,array(
|
|
|
|
'field'=>sprintf('%s_%s',$construct->module,$field_name),
|
|
|
|
'field_trans'=>$C_translate->translate('field_'.$field_name,$construct->module,''),
|
|
|
|
'error'=>$C_translate->translate('validate_unique','',''),
|
|
|
|
'method'=>sprintf('%s:%s(%s)',__FILE__,__METHOD__,__LINE__)
|
|
|
|
));
|
2008-11-26 22:50:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-08-03 04:10:16 +00:00
|
|
|
# Check if the submitted value meets the specifed requirements
|
|
|
|
if (isset($construct->field[$field_name]['validate'])) {
|
|
|
|
if (isset($VAR[$field_var]) && ($VAR[$field_var] != '')) {
|
|
|
|
if (! $validate->validate($field_name,$construct->field[$field_name],$VAR[$field_var],$construct->field[$field_name]['validate'])) {
|
2008-11-26 22:50:40 +00:00
|
|
|
$construct->validated = false;
|
2009-08-03 04:10:16 +00:00
|
|
|
|
|
|
|
array_push($construct->val_error,array(
|
|
|
|
'field'=>sprintf('%s_%s',$construct->module,$field_name),
|
|
|
|
'field_trans'=>$C_translate->translate('field_'.$field_name,$construct->module,''),
|
|
|
|
'error'=>$validate->error[$field_name],
|
|
|
|
'method'=>sprintf('%s:%s(%s)',__FILE__,__METHOD__,__LINE__)
|
|
|
|
));
|
2008-11-26 22:50:40 +00:00
|
|
|
}
|
2009-08-03 04:10:16 +00:00
|
|
|
|
|
|
|
} else {
|
2008-11-26 22:50:40 +00:00
|
|
|
$construct->validated = false;
|
2009-08-03 04:10:16 +00:00
|
|
|
|
|
|
|
array_push($construct->val_error,array(
|
|
|
|
'field'=>sprintf('%s_%s',$construct->module,$field_name),
|
|
|
|
'field_trans'=>$C_translate->translate('field_'.$field_name,$construct->module,''),
|
|
|
|
'error'=>$C_translate->translate('validate_any','',''),
|
|
|
|
'method'=>sprintf('%s:%s(%s)',__FILE__,__METHOD__,__LINE__)
|
|
|
|
));
|
2008-11-26 22:50:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-08-03 04:10:16 +00:00
|
|
|
# Get required static_vars and validate them
|
|
|
|
require_once(PATH_CORE.'static_var.inc.php');
|
|
|
|
$static_var = new CORE_static_var;
|
|
|
|
|
|
|
|
$all_error = $static_var->validate_form($construct->module,$construct->val_error);
|
2008-11-26 22:50:40 +00:00
|
|
|
|
2009-08-03 04:10:16 +00:00
|
|
|
if ($all_error != false && gettype($all_error) == 'array')
|
|
|
|
$construct->validated = false;
|
|
|
|
else
|
|
|
|
$construct->validated = true;
|
2008-11-26 22:50:40 +00:00
|
|
|
|
2009-08-03 04:10:16 +00:00
|
|
|
/* If validation has failed, skip the db insert & set the errors & original fields as Smarty objects,
|
|
|
|
and change the page to be loaded.*/
|
|
|
|
if (! $construct->validated) {
|
|
|
|
global $smarty;
|
2008-11-26 22:50:40 +00:00
|
|
|
|
2009-08-03 04:10:16 +00:00
|
|
|
# Set the errors as a Smarty Object
|
|
|
|
$smarty->assign('form_validation',$construct->val_error);
|
2008-11-26 22:50:40 +00:00
|
|
|
|
2009-08-03 04:10:16 +00:00
|
|
|
# Set the page to be loaded
|
|
|
|
if (! defined('FORCE_PAGE'))
|
|
|
|
define('FORCE_PAGE',$VAR['_page_current']);
|
|
|
|
|
|
|
|
# Define any triggers
|
|
|
|
if (isset($construct->trigger[$type])) {
|
|
|
|
include_once(PATH_CORE.'trigger.inc.php');
|
|
|
|
$trigger = new CORE_trigger;
|
2008-11-26 22:50:40 +00:00
|
|
|
|
2009-08-03 04:10:16 +00:00
|
|
|
$trigger->trigger($construct->trigger[$type],0,$VAR);
|
2008-11-26 22:50:40 +00:00
|
|
|
}
|
|
|
|
|
2009-08-03 04:10:16 +00:00
|
|
|
# Strip slashes
|
2008-11-26 22:50:40 +00:00
|
|
|
global $C_vars;
|
|
|
|
$C_vars->strip_slashes_all();
|
2009-08-03 04:10:16 +00:00
|
|
|
|
2008-11-26 22:50:40 +00:00
|
|
|
return false;
|
2009-08-03 04:10:16 +00:00
|
|
|
|
|
|
|
} else {
|
|
|
|
# Begin the new database class
|
2008-11-26 22:50:40 +00:00
|
|
|
$db = &DB();
|
|
|
|
|
2009-08-03 04:10:16 +00:00
|
|
|
# Loop through the field list to create the sql queries
|
|
|
|
$field_list = array();
|
2008-11-26 22:50:40 +00:00
|
|
|
reset($arr);
|
2009-08-03 04:10:16 +00:00
|
|
|
while (list($key,$field_name) = each($arr)) {
|
|
|
|
# Get the field value
|
|
|
|
$field_var = sprintf('%s_%s',$construct->module,$field_name);
|
|
|
|
|
|
|
|
if (isset($VAR[$field_var])) {
|
|
|
|
# Check if HTML allowed
|
|
|
|
if (@$construct->field[$field_name]['html'] != 1 && ! is_array($VAR[$field_var]))
|
|
|
|
$insert_value = htmlspecialchars($VAR[$field_var]);
|
|
|
|
else
|
|
|
|
$insert_value = $VAR[$field_var];
|
|
|
|
|
|
|
|
# Perform data conversions
|
2010-11-29 22:41:08 +00:00
|
|
|
if (isset($construct->field[$field_name]['convert']) && ! isset($VAR['_noconvert']))
|
2009-08-03 04:10:16 +00:00
|
|
|
$insert_value = $validate->convert($field_name,$insert_value,$construct->field[$field_name]['convert']);
|
2008-11-26 22:50:40 +00:00
|
|
|
|
2009-08-03 04:10:16 +00:00
|
|
|
# Create the sql statement
|
|
|
|
if (! is_null($insert_value))
|
|
|
|
$field_list[$field_name] = $insert_value;
|
|
|
|
}
|
2008-11-26 22:50:40 +00:00
|
|
|
}
|
|
|
|
|
2009-08-03 04:10:16 +00:00
|
|
|
# Check and see if we have some default fields
|
|
|
|
foreach (array('date_orig','date_last') as $field_name) {
|
|
|
|
$field_var = sprintf('%s_%s',$construct->module,$field_name);
|
2008-11-26 22:50:40 +00:00
|
|
|
|
2009-08-03 04:10:16 +00:00
|
|
|
if (isset($construct->field[$field_name]) && ! isset($VAR[$field_var]))
|
2010-11-29 22:41:08 +00:00
|
|
|
if (isset($construct->field[$field_name]['convert']) && ! isset($VAR['_noconvert']))
|
2009-08-03 04:10:16 +00:00
|
|
|
$field_list[$field_name] = $validate->convert($field_name,time(),$construct->field[$field_name]['convert']);
|
|
|
|
else
|
|
|
|
$field_list[$field_name] = time();
|
|
|
|
}
|
2008-11-26 22:50:40 +00:00
|
|
|
|
2009-08-03 04:10:16 +00:00
|
|
|
# Determine the record id
|
2010-11-29 22:41:08 +00:00
|
|
|
$construct->record_id = isset($field_list['id']) ? $field_list['id'] : $db->GenID(AGILE_DB_PREFIX.$construct->table.'_id');
|
2008-11-26 22:50:40 +00:00
|
|
|
|
2009-08-03 04:10:16 +00:00
|
|
|
# Execute the query
|
|
|
|
$result = $db->Execute(sqlInsert($db,$construct->table,$field_list,$construct->record_id));
|
2008-11-26 22:50:40 +00:00
|
|
|
|
2009-08-03 04:10:16 +00:00
|
|
|
# Error reporting
|
|
|
|
if ($result === false) {
|
2008-11-26 22:50:40 +00:00
|
|
|
global $C_debug;
|
2009-08-03 04:10:16 +00:00
|
|
|
$C_debug->error(__FILE__,__METHOD__,$db->ErrorMsg());
|
|
|
|
|
|
|
|
if (isset($construct->trigger[$type])) {
|
|
|
|
include_once(PATH_CORE.'trigger.inc.php');
|
|
|
|
$trigger = new CORE_trigger;
|
|
|
|
|
|
|
|
$trigger->trigger($construct->trigger[$type],0,$VAR);
|
2008-11-26 22:50:40 +00:00
|
|
|
}
|
2009-08-03 04:10:16 +00:00
|
|
|
|
|
|
|
return false;
|
2008-11-26 22:50:40 +00:00
|
|
|
}
|
|
|
|
|
2009-08-03 04:10:16 +00:00
|
|
|
# Define any triggers
|
|
|
|
if (isset($construct->trigger[$type])) {
|
|
|
|
include_once(PATH_CORE.'trigger.inc.php');
|
|
|
|
$trigger = new CORE_trigger;
|
|
|
|
|
|
|
|
$trigger->trigger($construct->trigger[$type],1,$VAR);
|
2008-11-26 22:50:40 +00:00
|
|
|
}
|
|
|
|
|
2009-08-03 04:10:16 +00:00
|
|
|
# Insert the static vars
|
|
|
|
$static_var->add($VAR,$construct->module,$construct->record_id);
|
|
|
|
|
|
|
|
$_escape = '';
|
|
|
|
if (isset($VAR['_escape']) || isset($VAR['_escape_next']))
|
|
|
|
$_escape = '&_escape=1&_escape_next=1';
|
|
|
|
|
|
|
|
if (! isset($VAR['_noredirect']))
|
|
|
|
define('REDIRECT_PAGE',sprintf('?_page=%s&id=%s%s',$VAR['_page'],$construct->record_id,$_escape));
|
|
|
|
|
2008-11-26 22:50:40 +00:00
|
|
|
return $construct->record_id;
|
|
|
|
}
|
|
|
|
}
|
2009-08-03 04:10:16 +00:00
|
|
|
?>
|