1340 lines
48 KiB
PHP
1340 lines
48 KiB
PHP
<?php
|
|
/**
|
|
* pmTablesProxy
|
|
* @author Erik Amaru Ortiz <erik@colosa.com, aortiz.erik@gmail.com>
|
|
* @inherits HttpProxyController
|
|
* @access public
|
|
*/
|
|
|
|
require_once 'classes/model/AdditionalTables.php';
|
|
|
|
class pmTablesProxy extends HttpProxyController
|
|
{
|
|
|
|
protected $className;
|
|
protected $classPeerName;
|
|
protected $dynUid;
|
|
|
|
/**
|
|
* get pmtables list
|
|
* @param string $httpData->start
|
|
* @param string $httpData->limit
|
|
* @param string $httpData->textFilter
|
|
*/
|
|
public function getList($httpData)
|
|
{
|
|
G::LoadClass('configuration');
|
|
G::LoadClass('processMap');
|
|
$configurations = new Configurations();
|
|
$processMap = new processMap();
|
|
|
|
// setting parameters
|
|
$config = $configurations->getConfiguration('additionalTablesList', 'pageSize','',$_SESSION['USER_LOGGED']);
|
|
$env = $configurations->getConfiguration('ENVIRONMENT_SETTINGS', '');
|
|
$limit_size = isset($config->pageSize) ? $config['pageSize'] : 20;
|
|
$start = isset($httpData->start) ? $httpData->start : 0;
|
|
$limit = isset($httpData->limit) ? $httpData->limit : $limit_size;
|
|
$filter = isset($httpData->textFilter) ? $httpData->textFilter : '';
|
|
$pro_uid = isset($httpData->pro_uid) ? $httpData->pro_uid : null;
|
|
|
|
if ($pro_uid !== null) {
|
|
$process = $pro_uid == '' ? array('not_equal'=>$pro_uid) : array('equal'=>$pro_uid);
|
|
$addTables = AdditionalTables::getAll($start, $limit, $filter, $process);
|
|
|
|
$c = $processMap->getReportTablesCriteria($pro_uid);
|
|
$oDataset = RoutePeer::doSelectRS($c);
|
|
$oDataset->setFetchmode(ResultSet::FETCHMODE_ASSOC);
|
|
$reportTablesOldList = array();
|
|
while($oDataset->next()) {
|
|
$reportTablesOldList[] = $oDataset->getRow();
|
|
}
|
|
$addTables['count'] += count($reportTablesOldList);
|
|
|
|
foreach ($reportTablesOldList as $i => $oldRepTab) {
|
|
$addTables['rows'][] = array(
|
|
'ADD_TAB_UID' => $oldRepTab['REP_TAB_UID'],
|
|
'PRO_UID' => $oldRepTab['PRO_UID'],
|
|
'ADD_TAB_DESCRIPTION' => $oldRepTab['REP_TAB_TITLE'],
|
|
'ADD_TAB_NAME' => $oldRepTab['REP_TAB_NAME'],
|
|
'ADD_TAB_TYPE' => $oldRepTab['REP_TAB_TYPE'],
|
|
'TYPE' => 'CLASSIC'
|
|
);
|
|
}
|
|
}
|
|
else {
|
|
$addTables = AdditionalTables::getAll($start, $limit, $filter);
|
|
}
|
|
|
|
return $addTables;
|
|
}
|
|
|
|
/**
|
|
* get processesList
|
|
*/
|
|
public function getProcessList()
|
|
{
|
|
require_once 'classes/model/Process.php';
|
|
|
|
$process = new Process();
|
|
return $process->getAll();
|
|
}
|
|
|
|
/**
|
|
* get database connection list
|
|
*/
|
|
public function getDbConnectionsList()
|
|
{
|
|
G::LoadClass ( 'dbConnections');
|
|
$proUid = $_POST['PRO_UID'];
|
|
$dbConn = new DbConnections();
|
|
$dbConnections = $dbConn->getConnectionsProUid($proUid);
|
|
$defaultConnections = array (
|
|
array('DBS_UID'=>'workflow', 'DBS_NAME'=>'Workflow'),
|
|
array('DBS_UID'=>'rp', 'DBS_NAME'=>'REPORT')
|
|
);
|
|
|
|
$dbConnections = array_merge($defaultConnections, $dbConnections);
|
|
|
|
return $dbConnections;
|
|
}
|
|
|
|
/**
|
|
* get dynaform fields
|
|
* @param string $httpData->PRO_UID
|
|
* @param string $httpData->TYPE
|
|
* @param string $httpData->GRID_UID
|
|
*/
|
|
public function getDynafields($httpData)
|
|
{
|
|
G::LoadClass('reportTables');
|
|
|
|
$aFields['FIELDS'] = array();
|
|
$aFields['PRO_UID'] = $httpData->PRO_UID;
|
|
$dynFields = array();
|
|
|
|
if(isset($httpData->TYPE) && $httpData->TYPE == 'GRID') {
|
|
$aProcessGridFields = Array();
|
|
if (isset($httpData->GRID_UID)) {
|
|
list($gridName, $gridId) = explode('-', $httpData->GRID_UID);
|
|
$this->dynUid = $gridId;
|
|
|
|
$httpData->textFilter = isset($httpData->textFilter) ? $httpData->textFilter : null;
|
|
$dynFields = $this->_getDynafields($aFields['PRO_UID'], 'grid', $httpData->start, $httpData->limit, $httpData->textFilter);
|
|
}
|
|
else {
|
|
if (isset($_SESSION['_cache_pmtables'])) {
|
|
unset($_SESSION['_cache_pmtables']);
|
|
}
|
|
$gridFields = $this->_getGridFields($aFields['PRO_UID']);
|
|
|
|
foreach ($gridFields as $gfield) {
|
|
$dynFields[] = array(
|
|
'FIELD_UID' => $gfield['name'] . '-' . $gfield['xmlform'],
|
|
'FIELD_NAME' => $gfield['name']
|
|
);
|
|
}
|
|
}
|
|
|
|
}
|
|
else {
|
|
$httpData->textFilter = isset($httpData->textFilter) ? $httpData->textFilter : null;
|
|
$dynFields = $this->_getDynafields($aFields['PRO_UID'], 'xmlform', $httpData->start, $httpData->limit, $httpData->textFilter);
|
|
}
|
|
|
|
return $dynFields;
|
|
}
|
|
|
|
public function updateAvDynafields($httpData)
|
|
{
|
|
$indexes = explode(',', $httpData->indexes);
|
|
$fields = array();
|
|
$httpData->isset = $httpData->isset=='true'? true: false;
|
|
|
|
if (isset($_SESSION['_cache_pmtables']) && $_SESSION['_cache_pmtables']['pro_uid']== $httpData->PRO_UID) {
|
|
foreach ($indexes as $i) {
|
|
if (is_numeric($i)) {
|
|
if (isset($_SESSION['_cache_pmtables']['rows'][$i])) {
|
|
$_SESSION['_cache_pmtables']['rows'][$i]['_isset'] = $httpData->isset;
|
|
if ($httpData->isset) {
|
|
$_SESSION['_cache_pmtables']['count']++;
|
|
} else {
|
|
$_SESSION['_cache_pmtables']['count']--;
|
|
}
|
|
|
|
$fields[] = $_SESSION['_cache_pmtables']['rows'][$i]['FIELD_NAME'];
|
|
}
|
|
} else {
|
|
|
|
$index = $_SESSION['_cache_pmtables']['indexes'][$i];
|
|
$_SESSION['_cache_pmtables']['rows'][$index]['_isset'] = $httpData->isset;
|
|
}
|
|
}
|
|
}
|
|
|
|
return $fields;
|
|
}
|
|
|
|
/**
|
|
* save pm table
|
|
*/
|
|
public function save()
|
|
{
|
|
require_once 'classes/model/AdditionalTables.php';
|
|
require_once 'classes/model/Fields.php';
|
|
try {
|
|
$data = $_POST;
|
|
$data['PRO_UID'] = trim($data['PRO_UID']);
|
|
$data['columns'] = G::json_decode($_POST['columns']); //decofing data columns
|
|
$isReportTable = $data['PRO_UID'] != '' ? true : false;
|
|
|
|
// Reserved Words
|
|
$aReservedWords = array(
|
|
'ALTER', 'CLOSE', 'COMMIT', 'CREATE', 'DECLARE',
|
|
'DELETE', 'DROP', 'FETCH', 'FUNCTION', 'GRANT',
|
|
'INDEX', 'INSERT', 'OPEN', 'REVOKE', 'ROLLBACK',
|
|
'SELECT', 'SYNONYM', 'TABLE', 'UPDATE', 'VIEW',
|
|
'APP_UID', 'ROW'
|
|
);
|
|
|
|
$oAdditionalTables = new AdditionalTables();
|
|
$oFields = new Fields();
|
|
|
|
// verify if exists.
|
|
$aNameTable = $oAdditionalTables->loadByName($data['REP_TAB_NAME']);
|
|
|
|
$repTabClassName = $oAdditionalTables->getPHPName($data['REP_TAB_NAME']);
|
|
|
|
$repTabData = array(
|
|
'ADD_TAB_UID' => $data['REP_TAB_UID'],
|
|
'ADD_TAB_NAME' => $data['REP_TAB_NAME'],
|
|
'ADD_TAB_CLASS_NAME' => $repTabClassName,
|
|
'ADD_TAB_DESCRIPTION' => $data['REP_TAB_DSC'],
|
|
'ADD_TAB_PLG_UID' => '',
|
|
'DBS_UID' => ($data['REP_TAB_CONNECTION'] ? $data['REP_TAB_CONNECTION'] : 'workflow'),
|
|
'PRO_UID' => $data['PRO_UID'],
|
|
'ADD_TAB_TYPE' => $data['REP_TAB_TYPE'],
|
|
'ADD_TAB_GRID' => $data['REP_TAB_GRID']
|
|
);
|
|
|
|
$columns = $data['columns'];
|
|
|
|
if ($data['REP_TAB_UID'] == '') { //new report table
|
|
|
|
if ($isReportTable) { //setting default columns
|
|
$defaultColumns = $this->_getReportTableDefaultColumns($data['REP_TAB_TYPE']);
|
|
$columns = array_merge($defaultColumns, $columns);
|
|
}
|
|
|
|
/** validations **/
|
|
if(is_array($aNameTable)) {
|
|
throw new Exception('The table "' . $data['REP_TAB_NAME'] . '" already exits.');
|
|
}
|
|
|
|
if (in_array(strtoupper($data['REP_TAB_NAME']), $aReservedWords) ) {
|
|
throw new Exception('Could not create the table with the name "' . $data['REP_TAB_NAME'] . '" because it is a reserved word.');
|
|
}
|
|
//create record
|
|
$addTabUid = $oAdditionalTables->create($repTabData);
|
|
|
|
} else { //editing report table
|
|
$addTabUid = $data['REP_TAB_UID'];
|
|
//loading old data before update
|
|
$addTabBeforeData = $oAdditionalTables->load($addTabUid, true);
|
|
//updating record
|
|
$oAdditionalTables->update($repTabData);
|
|
|
|
//removing old data fields references
|
|
$oCriteria = new Criteria('workflow');
|
|
$oCriteria->add(FieldsPeer::ADD_TAB_UID, $data['REP_TAB_UID']);
|
|
//$oCriteria->add(FieldsPeer::FLD_NAME, 'APP_UID', Criteria::NOT_EQUAL);
|
|
//$oCriteria->add(FieldsPeer::FLD_NAME, 'ROW', Criteria::NOT_EQUAL);
|
|
FieldsPeer::doDelete($oCriteria);
|
|
|
|
//getting old fieldnames
|
|
$oldFields = array();
|
|
foreach ($addTabBeforeData['FIELDS'] as $field) {
|
|
$oldFields[$field['FLD_UID']] = $field;
|
|
}
|
|
}
|
|
|
|
$aFields = array();
|
|
$fieldsList = array();
|
|
$editFieldsList = array();
|
|
|
|
foreach ($columns as $i => $column) {
|
|
//new feature, to reorder the columns
|
|
// if (isset($oldFields[$column->uid])) { // the the field alreaday exists
|
|
// if ($oldFields[$column->uid]['FLD_INDEX'] != $i) { // if its index has changed
|
|
// $column->uid = ''; //set as new field,
|
|
// }
|
|
// }
|
|
|
|
$field = array(
|
|
'FLD_UID' => $column->uid,
|
|
'FLD_INDEX' => $i,
|
|
'ADD_TAB_UID' => $addTabUid,
|
|
'FLD_NAME' => $column->field_name,
|
|
'FLD_DESCRIPTION' => $column->field_label,
|
|
'FLD_TYPE' => $column->field_type,
|
|
'FLD_SIZE' => $column->field_size,
|
|
'FLD_NULL' => (isset($column->field_null) && $column->field_null ? 1 : 0),
|
|
'FLD_AUTO_INCREMENT' => (isset($column->field_bai) && $column->field_bai ? 1 : 0),
|
|
'FLD_KEY' => (isset($column->field_key) && $column->field_key ? 1 : 0),
|
|
'FLD_FOREIGN_KEY' => 0,
|
|
'FLD_FOREIGN_KEY_TABLE' => '',
|
|
'FLD_DYN_NAME' => $column->field_dyn,
|
|
'FLD_DYN_UID' => $column->field_uid,
|
|
'FLD_FILTER' => (isset($column->field_filter) && $column->field_filter ? 1 : 0)
|
|
);
|
|
|
|
$fieldUid = $oFields->create($field);
|
|
$fieldsList[] = $field;
|
|
|
|
if($data['REP_TAB_UID'] == '') { //new
|
|
$aFields[] = array(
|
|
'sType' => $column->field_type,
|
|
'iSize' => $column->field_size,
|
|
'sFieldName' => $column->field_name,
|
|
'bNull' => (isset($column->field_null) ? $column->field_null : 1),
|
|
'bAI' => (isset($column->field_bai) ? $column->field_bai : 0),
|
|
'bPrimaryKey' => (isset($column->field_key) ? $column->field_key : 0)
|
|
);
|
|
} else { //editing
|
|
$field['FLD_UID'] = $fieldUid;
|
|
$aFields[$fieldUid] = $field;
|
|
}
|
|
}
|
|
if ($data['REP_TAB_UID'] == '') { //create a new report table
|
|
$oAdditionalTables->createTable($data['REP_TAB_NAME'], $data['REP_TAB_CONNECTION'], $aFields);
|
|
|
|
} else { //editing
|
|
//print_R($aFields);
|
|
$oAdditionalTables->updateTable($data['REP_TAB_NAME'], $data['REP_TAB_CONNECTION'], $aFields, $oldFields);
|
|
}
|
|
$oAdditionalTables->createPropelClasses($data['REP_TAB_NAME'], '', $fieldsList, $addTabUid, $data['REP_TAB_CONNECTION']);
|
|
if ($isReportTable) {
|
|
$oAdditionalTables->populateReportTable($data['REP_TAB_NAME'], $data['REP_TAB_CONNECTION'], $data['REP_TAB_TYPE'], $fieldsList, $data['PRO_UID'], $data['REP_TAB_GRID']);
|
|
}
|
|
|
|
$result->success = true;
|
|
} catch (Exception $e) {
|
|
$result->success = false;
|
|
$result->msg = $e->getMessage();
|
|
$result->trace = $e->getTraceAsString();
|
|
}
|
|
|
|
return $result;
|
|
}
|
|
|
|
/**
|
|
* delete pm table
|
|
* @param string $httpData->rows
|
|
*/
|
|
public function delete($httpData)
|
|
{
|
|
G::LoadClass('reportTables');
|
|
$rows = G::json_decode(stripslashes($httpData->rows));
|
|
$rp = new reportTables();
|
|
$at = new AdditionalTables();
|
|
|
|
try {
|
|
foreach ($rows as $row ) {
|
|
if($row->type == 'CLASSIC') {
|
|
$rp->deleteReportTable($row->id);
|
|
} else {
|
|
$at->deleteAll($row->id);
|
|
}
|
|
}
|
|
$result->success = true;
|
|
} catch(Exception $e) {
|
|
$result->success = false;
|
|
$result->msg = $e->getMessage();
|
|
}
|
|
|
|
return $result;
|
|
}
|
|
|
|
/**
|
|
* get pm tables data
|
|
* @param string $httpData->id
|
|
* @param string $httpData->start
|
|
* @param string $httpData->limit
|
|
*/
|
|
public function dataView($httpData)
|
|
{
|
|
require_once 'classes/model/AdditionalTables.php';
|
|
|
|
G::LoadClass('configuration');
|
|
$co = new Configurations();
|
|
$config = $co->getConfiguration('additionalTablesData', 'pageSize','',$_SESSION['USER_LOGGED']);
|
|
$limit_size = isset($config['pageSize']) ? $config['pageSize'] : 20;
|
|
$start = isset($httpData->start) ? $httpData->start : 0;
|
|
$limit = isset($httpData->limit) ? $httpData->limit : $limit_size;
|
|
|
|
$oAdditionalTables = new AdditionalTables();
|
|
$table = $oAdditionalTables->load($httpData->id, true);
|
|
$result = $oAdditionalTables->getAllData($httpData->id, $start, $limit);
|
|
|
|
$keys = array();
|
|
foreach ($table['FIELDS'] as $field) {
|
|
if ($field['FLD_KEY'] == '1') {
|
|
$keys[] = $field['FLD_NAME'];
|
|
}
|
|
}
|
|
|
|
foreach ($result['rows'] as $i => $row) {
|
|
$indexes = array();
|
|
foreach ($keys as $key) {
|
|
$indexes[] = $row[$key];
|
|
}
|
|
|
|
$result['rows'][$i]['__index__'] = implode('-', $indexes);
|
|
}
|
|
|
|
return $result;
|
|
}
|
|
|
|
/**
|
|
* create pm tables record
|
|
* @param string $httpData->id
|
|
* @param string $httpData->start
|
|
* @param string $httpData->limit
|
|
*/
|
|
public function dataCreate($httpData)
|
|
{
|
|
$rows = G::json_decode(stripslashes($httpData->rows));
|
|
|
|
require_once 'classes/model/AdditionalTables.php';
|
|
$oAdditionalTables = new AdditionalTables();
|
|
$table = $oAdditionalTables->load($httpData->id, true);
|
|
$this->className = $table['ADD_TAB_CLASS_NAME'];
|
|
$this->classPeerName = $this->className . 'Peer';
|
|
$sPath = PATH_DB . SYS_SYS . PATH_SEP . 'classes' . PATH_SEP;
|
|
|
|
if (!file_exists ($sPath . $this->className . '.php') ) {
|
|
throw new Exception("ERROR: $className class file doesn't exit!");
|
|
}
|
|
|
|
require_once $sPath . $this->className . '.php';
|
|
$toSave = false;
|
|
|
|
if (is_array($rows)) { //multiple
|
|
$c = $cs = 0;
|
|
foreach ($rows as $i => $row) {
|
|
$fieldsCount = 0;
|
|
eval('$obj = new ' .$this->className. '();');
|
|
foreach ($row as $key => $value) {
|
|
$action = 'set' . AdditionalTables::getPHPName($key);
|
|
$obj->$action($value);
|
|
$fieldsCount++;
|
|
$toSave = true;
|
|
}
|
|
if ($fieldsCount != 0) {
|
|
$c++;
|
|
if ($obj->save() > 0) {
|
|
$cs++;
|
|
}
|
|
}
|
|
}
|
|
|
|
if ($toSave) {
|
|
$result->success = $cs == $c ? true: false;
|
|
$result->message = 'Saved #' . $c . ' records successfully';
|
|
}
|
|
else {
|
|
$result->success = false;
|
|
$result->message = 'Nothing to do';
|
|
}
|
|
}
|
|
else { //single
|
|
eval('$obj = new ' .$this->className. '();');
|
|
foreach ($rows as $key => $value) {
|
|
$action = 'set' . AdditionalTables::getPHPName($key);
|
|
$obj->$action($value);
|
|
$toSave = true;
|
|
}
|
|
if ($toSave) {
|
|
if ($obj->save() > 0) {
|
|
$rows->__index__ = 5;
|
|
$result->success = true;
|
|
$result->message = 'Record saved successfully';
|
|
$result->data = (array) $rows;
|
|
}
|
|
else {
|
|
$result->success = false;
|
|
$result->message = 'Error Updating records';
|
|
}
|
|
}
|
|
else {
|
|
$result->success = true;
|
|
$result->data = array('__index__'=>1132);
|
|
$result->message = 'Nothing to do';
|
|
}
|
|
}
|
|
|
|
return $result;
|
|
}
|
|
|
|
/**
|
|
* update pm tables record
|
|
* @param string $httpData->id
|
|
*/
|
|
public function dataUpdate($httpData)
|
|
{
|
|
require_once 'classes/model/AdditionalTables.php';
|
|
$oAdditionalTables = new AdditionalTables();
|
|
$table = $oAdditionalTables->load($httpData->id, true);
|
|
$this->className = $table['ADD_TAB_CLASS_NAME'];
|
|
$this->classPeerName = $this->className . 'Peer';
|
|
$sPath = PATH_DB . SYS_SYS . PATH_SEP . 'classes' . PATH_SEP;
|
|
|
|
if (!file_exists ($sPath . $this->className . '.php') ) {
|
|
throw new Exception("ERROR: $className class file doesn't exit!");
|
|
}
|
|
|
|
require_once $sPath . $this->className . '.php';
|
|
|
|
$rows = G::json_decode(stripslashes($httpData->rows));
|
|
|
|
if (is_array($rows)) {
|
|
foreach($rows as $row) {
|
|
$result = $this->_dataUpdate($row);
|
|
}
|
|
}
|
|
else { //then is object
|
|
$result = $this->_dataUpdate($rows);
|
|
}
|
|
|
|
$this->success = $result;
|
|
$this->message = $result ? 'Updated Successfully' : 'Error Updating record';
|
|
}
|
|
|
|
/**
|
|
* remove a pm tables record
|
|
* @param string $httpData->id
|
|
*/
|
|
public function dataDestroy($httpData)
|
|
{
|
|
require_once 'classes/model/AdditionalTables.php';
|
|
$oAdditionalTables = new AdditionalTables();
|
|
$table = $oAdditionalTables->load($httpData->id, true);
|
|
$this->className = $table['ADD_TAB_CLASS_NAME'];
|
|
$this->classPeerName = $this->className . 'Peer';
|
|
$sPath = PATH_DB . SYS_SYS . PATH_SEP . 'classes' . PATH_SEP;
|
|
|
|
if (!file_exists ($sPath . $this->className . '.php') ) {
|
|
throw new Exception("ERROR: $className class file doesn't exit!");
|
|
}
|
|
|
|
require_once $sPath . $this->className . '.php';
|
|
|
|
$this->success = $this->_dataDestroy($httpData->rows);
|
|
$this->message = $this->success ? 'Deleted Successfully' : 'Error Deleting record';
|
|
}
|
|
|
|
/**
|
|
* import a CSV to pm tables record
|
|
* @param string $httpData->id
|
|
*/
|
|
public function importCSV($httpData)
|
|
{
|
|
if (preg_match('/[\x00-\x08\x0b-\x0c\x0e\x1f]/', file_get_contents($_FILES['form']['tmp_name']['CSV_FILE'])) === 0) {
|
|
$filename = $_FILES['form']['name']['CSV_FILE'];
|
|
if ($oFile = fopen($_FILES['form']['tmp_name']['CSV_FILE'], 'r')) {
|
|
require_once 'classes/model/AdditionalTables.php';
|
|
$oAdditionalTables = new AdditionalTables();
|
|
$aAdditionalTables = $oAdditionalTables->load($_POST['form']['ADD_TAB_UID'], true);
|
|
$sErrorMessages = '';
|
|
$i = 1;
|
|
$swHead = false;
|
|
while (($aAux = fgetcsv($oFile, 4096, $_POST['form']['CSV_DELIMITER'])) !== false) {
|
|
if(count($aAdditionalTables['FIELDS']) != count($aAux)){
|
|
$this->success = false;
|
|
$this->message = G::LoadTranslation('INVALID_FILE');
|
|
return 0;
|
|
}
|
|
if($i == 1) {
|
|
$j = 0;
|
|
foreach ($aAdditionalTables['FIELDS'] as $aField) {
|
|
if($aField['FLD_NAME'] === $aAux[$j]) $swHead = true;
|
|
$j++;
|
|
}
|
|
}
|
|
|
|
if ($swHead == false) {
|
|
$aData = array();
|
|
$j = 0;
|
|
foreach ($aAdditionalTables['FIELDS'] as $aField) {
|
|
$aData[$aField['FLD_NAME']] = (isset($aAux[$j]) ? $aAux[$j] : '');
|
|
$j++;
|
|
}
|
|
try {
|
|
if (!$oAdditionalTables->saveDataInTable($_POST['form']['ADD_TAB_UID'], $aData)) {
|
|
$sErrorMessages .= G::LoadTranslation('ID_DUPLICATE_ENTRY_PRIMARY_KEY') . ', ' . G::LoadTranslation('ID_LINE') . ' ' . $i . '. ';
|
|
}
|
|
}
|
|
catch (Exception $oError) {
|
|
$sErrorMessages .= G::LoadTranslation('ID_ERROR_INSERT_LINE') . ': ' . G::LoadTranslation('ID_LINE') . ' ' . $i . '. ';
|
|
}
|
|
} else {
|
|
$swHead = false;
|
|
}
|
|
$i++;
|
|
}
|
|
fclose($oFile);
|
|
}
|
|
if ($sErrorMessages != '') {
|
|
$this->success = false;
|
|
$this->message = $sErrorMessages;
|
|
} else {
|
|
$this->success = true;
|
|
$this->message = 'File Imported "'.$filename.'" Successfully';
|
|
}
|
|
}
|
|
else {
|
|
$sMessage = G::LoadTranslation('ID_UPLOAD_VALID_CSV_FILE');
|
|
$this->success = false;
|
|
$this->message = $sMessage;
|
|
|
|
}
|
|
}
|
|
|
|
/**
|
|
* import a pm table
|
|
* @param string $httpData->id
|
|
*/
|
|
public function import($httpData)
|
|
{
|
|
require_once 'classes/model/AdditionalTables.php';
|
|
try {
|
|
$overWrite = isset($_POST['form']['OVERWRITE'])? true: false;
|
|
|
|
//save the file
|
|
if ($_FILES['form']['error']['FILENAME'] == 0) {
|
|
$PUBLIC_ROOT_PATH = PATH_DATA.'sites'.PATH_SEP.SYS_SYS.PATH_SEP.'public'.PATH_SEP;
|
|
|
|
$filename = $_FILES['form']['name']['FILENAME'];
|
|
$tempName = $_FILES['form']['tmp_name']['FILENAME'];
|
|
G::uploadFile($tempName, $PUBLIC_ROOT_PATH, $filename );
|
|
|
|
$fileContent = file_get_contents($PUBLIC_ROOT_PATH.$filename);
|
|
|
|
if(strpos($fileContent, '-----== ProcessMaker Open Source Private Tables ==-----') === false) {
|
|
$this->success = false;
|
|
$this->message = 'INVALID_FILE';
|
|
exit(0);
|
|
}
|
|
|
|
|
|
$oMap = new aTablesMap();
|
|
|
|
$fp = fopen($PUBLIC_ROOT_PATH.$filename, "rb");
|
|
$fsData = intval(fread($fp, 9)); //reading the metadata
|
|
$sType = fread($fp, $fsData); //reading string $oData
|
|
|
|
require_once 'classes/model/AdditionalTables.php';
|
|
$oAdditionalTables = new AdditionalTables();
|
|
require_once 'classes/model/Fields.php';
|
|
$oFields = new Fields();
|
|
|
|
while ( !feof($fp) ) {
|
|
switch($sType){
|
|
case '@META':
|
|
$fsData = intval(fread($fp, 9));
|
|
$METADATA = fread($fp, $fsData);
|
|
break;
|
|
case '@SCHEMA':
|
|
$fsUid = intval(fread($fp, 9));
|
|
$uid = fread($fp, $fsUid);
|
|
|
|
$fsData = intval(fread($fp, 9));
|
|
$schema = fread($fp, $fsData);
|
|
$contentSchema = unserialize($schema);
|
|
//var_dump($overWrite); print_r($contentSchema); continue;
|
|
|
|
if($overWrite){
|
|
$aTable = new additionalTables();
|
|
try{
|
|
$tRecord = $aTable->load($uid);
|
|
$aTable->deleteAll($uid);
|
|
} catch(Exception $e){
|
|
$tRecord = $aTable->loadByName($contentSchema['ADD_TAB_NAME']);
|
|
if($tRecord[0]){
|
|
$aTable->deleteAll($tRecord[0]['ADD_TAB_UID']);
|
|
}
|
|
}
|
|
} else {
|
|
#verify if exists some table with the same name
|
|
$aTable = new additionalTables();
|
|
$tRecord = $aTable->loadByName("{$contentSchema['ADD_TAB_NAME']}%");
|
|
|
|
if($tRecord){
|
|
$tNameOld = $contentSchema['ADD_TAB_NAME'];
|
|
$contentSchema['ADD_TAB_UID'] = G::generateUniqueID();
|
|
$contentSchema['ADD_TAB_NAME'] = "{$contentSchema['ADD_TAB_NAME']}".sizeof($tRecord);
|
|
$contentSchema['ADD_TAB_CLASS_NAME'] = "{$contentSchema['ADD_TAB_CLASS_NAME']}".sizeof($tRecord);
|
|
$oMap->addRoute($tNameOld, $contentSchema['ADD_TAB_NAME']);
|
|
}
|
|
|
|
}
|
|
|
|
// validating invalid bds_uid in old tables definition -> mapped to workflow
|
|
if (!$contentSchema['DBS_UID'] || $contentSchema['DBS_UID'] == '0') {
|
|
$contentSchema['DBS_UID'] = 'workflow';
|
|
}
|
|
|
|
$sAddTabUid = $oAdditionalTables->create(
|
|
array(
|
|
'ADD_TAB_UID' => $contentSchema['ADD_TAB_UID'],
|
|
'ADD_TAB_NAME' => $contentSchema['ADD_TAB_NAME'],
|
|
'ADD_TAB_CLASS_NAME' => $contentSchema['ADD_TAB_CLASS_NAME'],
|
|
'ADD_TAB_DESCRIPTION' => $contentSchema['ADD_TAB_DESCRIPTION'],
|
|
'ADD_TAB_SDW_LOG_INSERT' => $contentSchema['ADD_TAB_SDW_LOG_INSERT'],
|
|
'ADD_TAB_SDW_LOG_UPDATE' => $contentSchema['ADD_TAB_SDW_LOG_UPDATE'],
|
|
'ADD_TAB_SDW_LOG_DELETE' => $contentSchema['ADD_TAB_SDW_LOG_DELETE'],
|
|
'ADD_TAB_SDW_LOG_SELECT' => $contentSchema['ADD_TAB_SDW_LOG_SELECT'],
|
|
'ADD_TAB_SDW_MAX_LENGTH' => $contentSchema['ADD_TAB_SDW_MAX_LENGTH'],
|
|
'ADD_TAB_SDW_AUTO_DELETE' => $contentSchema['ADD_TAB_SDW_AUTO_DELETE'],
|
|
'ADD_TAB_PLG_UID' => $contentSchema['ADD_TAB_PLG_UID'],
|
|
'DBS_UID' => $contentSchema['DBS_UID'],
|
|
'PRO_UID' => isset($contentSchema['PRO_UID'])? $contentSchema['PRO_UID']: '',
|
|
'ADD_TAB_TYPE' => isset($contentSchema['ADD_TAB_TYPE'])? $contentSchema['ADD_TAB_TYPE']: '',
|
|
'ADD_TAB_GRID' => isset($contentSchema['ADD_TAB_GRID'])? $contentSchema['ADD_TAB_GRID']: '',
|
|
'ADD_TAB_TAG' => isset($contentSchema['ADD_TAB_TAG'])? $contentSchema['ADD_TAB_TAG']: '',
|
|
),
|
|
$contentSchema['FIELDS']
|
|
);
|
|
|
|
|
|
$aFields = array();
|
|
foreach( $contentSchema['FIELDS'] as $iRow => $aRow ){
|
|
unset($aRow['FLD_UID']);
|
|
$aRow['ADD_TAB_UID'] = $sAddTabUid;
|
|
$oFields->create($aRow);
|
|
$aFields[] = array(
|
|
'sType' => $contentSchema['FIELDS'][$iRow]['FLD_TYPE'],
|
|
'iSize' => $contentSchema['FIELDS'][$iRow]['FLD_SIZE'],
|
|
'sFieldName' => $contentSchema['FIELDS'][$iRow]['FLD_NAME'],
|
|
'bNull' => $contentSchema['FIELDS'][$iRow]['FLD_NULL'],
|
|
'bAI' => $contentSchema['FIELDS'][$iRow]['FLD_AUTO_INCREMENT'],
|
|
'bPrimaryKey' => $contentSchema['FIELDS'][$iRow]['FLD_KEY']
|
|
);
|
|
}
|
|
$oAdditionalTables->createTable($contentSchema['ADD_TAB_NAME'], $contentSchema['DBS_UID'], $aFields);
|
|
|
|
for($i=1; $i <= count($contentSchema['FIELDS']); $i++){
|
|
$contentSchema['FIELDS'][$i]['FLD_NULL'] = $contentSchema['FIELDS'][$i]['FLD_NULL'] == '1' ? 'on' : '';
|
|
$contentSchema['FIELDS'][$i]['FLD_AUTO_INCREMENT'] = $contentSchema['FIELDS'][$i]['FLD_AUTO_INCREMENT'] == '1' ? 'on' : '';
|
|
$contentSchema['FIELDS'][$i]['FLD_KEY'] = $contentSchema['FIELDS'][$i]['FLD_KEY'] == '1' ? 'on' : '';
|
|
$contentSchema['FIELDS'][$i]['FLD_FOREIGN_KEY'] = $contentSchema['FIELDS'][$i]['FLD_FOREIGN_KEY'] == '1' ? 'on' : '';
|
|
}
|
|
|
|
$oAdditionalTables->createPropelClasses($contentSchema['ADD_TAB_NAME'], $contentSchema['ADD_TAB_CLASS_NAME'], $contentSchema['FIELDS'], $sAddTabUid);
|
|
|
|
$isReportTable = (isset($contentSchema['PRO_UID']) && $contentSchema['PRO_UID'] != '') ? true : false;
|
|
if ($isReportTable) {
|
|
$oAdditionalTables->populateReportTable($contentSchema['ADD_TAB_NAME'], $contentSchema['DBS_UID'], $contentSchema['ADD_TAB_TYPE'], $contentSchema['FIELDS'], $contentSchema['PRO_UID'], $contentSchema['ADD_TAB_GRID']);
|
|
}
|
|
|
|
break;
|
|
case '@DATA':
|
|
$fstName = intval(fread($fp, 9));
|
|
$tName = fread($fp, $fstName);
|
|
$fsData = intval(fread($fp, 9));
|
|
|
|
if ($fsData > 0) {
|
|
$data = fread($fp, $fsData);
|
|
$contentData = unserialize($data);
|
|
|
|
//var_dump($data); print_r($contentData); continue;
|
|
|
|
$tName = $oMap->route($tName);
|
|
|
|
$oAdditionalTables = new AdditionalTables();
|
|
$tRecord = $oAdditionalTables->loadByName($tName);
|
|
|
|
if($tRecord){
|
|
foreach($contentData as $data){
|
|
unset($data['DUMMY']);
|
|
$oAdditionalTables->saveDataInTable($tRecord[0]['ADD_TAB_UID'], $data);
|
|
}
|
|
}
|
|
}
|
|
break;
|
|
}
|
|
$fsData = intval(fread($fp, 9));
|
|
if($fsData > 0){
|
|
$sType = fread($fp, $fsData);
|
|
} else {
|
|
break;
|
|
}
|
|
}
|
|
|
|
$this->success = true;
|
|
$this->message = 'File Imported "'.$filename.'" Successfully';
|
|
|
|
|
|
|
|
}
|
|
} catch(Exception $e){
|
|
$this->success = false;
|
|
$this->message = $e->getMessage();
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Export PM tables
|
|
* @author: Erik Amaru Ortiz <aortiz.erik@gmail.com>
|
|
*/
|
|
public function export($httpData)
|
|
{
|
|
require_once 'classes/model/AdditionalTables.php';
|
|
|
|
$tablesToExport = G::json_decode(stripslashes($httpData->rows));
|
|
|
|
try{
|
|
G::LoadCLass('net');
|
|
$net = new NET(G::getIpAddress());
|
|
|
|
G::LoadClass("system");
|
|
|
|
$META = " \n-----== ProcessMaker Open Source Private Tables ==-----\n".
|
|
" @Ver: 1.0 Oct-2009\n".
|
|
" @Processmaker version: ".System::getVersion()."\n".
|
|
" -------------------------------------------------------\n".
|
|
" @Export Date: ".date("l jS \of F Y h:i:s A")."\n".
|
|
" @Server address: ".getenv('SERVER_NAME')." (".getenv('SERVER_ADDR').")\n".
|
|
" @Client address: ".$net->hostname."\n".
|
|
" @Workspace: ".SYS_SYS."\n".
|
|
" @Export trace back:\n\n";
|
|
|
|
$EXPORT_TRACEBACK = Array();
|
|
$c = 0;
|
|
foreach ($tablesToExport as $table) {
|
|
$at = new additionalTables();
|
|
$tableData = $at->getAllData($table->ADD_TAB_UID);
|
|
$rows = $tableData['rows'];
|
|
$count = $tableData['count'];
|
|
|
|
array_push($EXPORT_TRACEBACK, Array(
|
|
'uid' => $table->ADD_TAB_UID,
|
|
'name' => $table->ADD_TAB_NAME,
|
|
'num_regs' => $tableData['count'],
|
|
'schema' => $table->_SCHEMA ? 'yes': 'no',
|
|
'data' => $table->_DATA ? 'yes': 'no'
|
|
));
|
|
}
|
|
|
|
$sTrace = "TABLE UID TABLE NAME\tREGS\tSCHEMA\tDATA\n";
|
|
|
|
foreach($EXPORT_TRACEBACK as $row){
|
|
$sTrace .= "{$row['uid']}\t{$row['name']}\t\t{$row['num_regs']}\t{$row['schema']}\t{$row['data']}\n";
|
|
}
|
|
|
|
$META .= $sTrace;
|
|
|
|
///////////////EXPORT PROCESS
|
|
$PUBLIC_ROOT_PATH = PATH_DATA . 'sites' . PATH_SEP . SYS_SYS . PATH_SEP . 'public' . PATH_SEP;
|
|
|
|
$filenameOnly = strtolower('SYS-'.SYS_SYS."_".date("Y-m-d").'_'.date("Hi").".pmt");
|
|
|
|
$filename = $PUBLIC_ROOT_PATH . $filenameOnly;
|
|
$fp = fopen( $filename, "wb");
|
|
|
|
$bytesSaved = 0;
|
|
$bufferType = '@META';
|
|
$fsData = sprintf("%09d", strlen($META));
|
|
$fsbufferType = sprintf("%09d", strlen($bufferType));
|
|
$bytesSaved += fwrite($fp, $fsbufferType); //writing the size of $oData
|
|
$bytesSaved += fwrite($fp, $bufferType); //writing the $oData
|
|
$bytesSaved += fwrite($fp, $fsData); //writing the size of $oData
|
|
$bytesSaved += fwrite($fp, $META); //writing the $oData
|
|
|
|
foreach($tablesToExport as $table){
|
|
|
|
if ($table->_SCHEMA) {
|
|
$oAdditionalTables = new AdditionalTables();
|
|
$aData = $oAdditionalTables->load($table->ADD_TAB_UID, true);
|
|
|
|
$bufferType = '@SCHEMA';
|
|
$SDATA = serialize($aData);
|
|
$fsUid = sprintf("%09d", strlen($table->ADD_TAB_UID));
|
|
$fsData = sprintf("%09d", strlen ($SDATA));
|
|
$fsbufferType = sprintf("%09d", strlen($bufferType));
|
|
|
|
$bytesSaved += fwrite($fp, $fsbufferType); //writing the size of $oData
|
|
$bytesSaved += fwrite($fp, $bufferType); //writing the $oData
|
|
$bytesSaved += fwrite($fp, $fsUid ); //writing the size of xml file
|
|
$bytesSaved += fwrite($fp, $table->ADD_TAB_UID); //writing the xmlfile
|
|
$bytesSaved += fwrite($fp, $fsData); //writing the size of xml file
|
|
$bytesSaved += fwrite($fp, $SDATA); //writing the xmlfile
|
|
}
|
|
|
|
if ($table->_DATA) {
|
|
//export data
|
|
$oAdditionalTables = new additionalTables();
|
|
$tableData = $oAdditionalTables->getAllData($table->ADD_TAB_UID);
|
|
|
|
$SDATA = serialize($tableData['rows']);
|
|
$bufferType = '@DATA';
|
|
|
|
$fsbufferType = sprintf("%09d", strlen($bufferType));
|
|
$fsTableName = sprintf("%09d", strlen($table->ADD_TAB_NAME));
|
|
$fsData = sprintf("%09d", strlen ($SDATA));
|
|
|
|
$bytesSaved += fwrite($fp, $fsbufferType); //writing type size
|
|
$bytesSaved += fwrite($fp, $bufferType); //writing type
|
|
$bytesSaved += fwrite($fp, $fsTableName ); //writing the size of xml file
|
|
$bytesSaved += fwrite($fp, $table->ADD_TAB_NAME); //writing the xmlfile
|
|
$bytesSaved += fwrite($fp, $fsData); //writing the size of xml file
|
|
$bytesSaved += fwrite($fp, $SDATA); //writing the xmlfile
|
|
}
|
|
}
|
|
|
|
fclose ($fp);
|
|
|
|
$filenameLink = "pmTables/streamExported?f=$filenameOnly";
|
|
$size = round(($bytesSaved/1024), 2)." Kb";
|
|
$meta = "<pre>".$META."</pre>";
|
|
$filename = $filenameOnly;
|
|
$link = $filenameLink;
|
|
|
|
// $G_PUBLISH = new Publisher();
|
|
// $G_PUBLISH->AddContent('xmlform', 'xmlform', 'additionalTables/doExport', '', $aFields, '');
|
|
// G::RenderPage('publish', 'raw');
|
|
|
|
$result->success = true;
|
|
$result->filename = $filenameOnly;
|
|
$result->link = $link;
|
|
$result->message = "Generated file: $filenameOnly, size: $size";
|
|
}
|
|
catch (Exception $e) {
|
|
$result->success = false;
|
|
$result->message = $e->getMessage();
|
|
}
|
|
|
|
return $result;
|
|
}
|
|
|
|
public function exportList()
|
|
{
|
|
require_once 'classes/model/AdditionalTables.php';
|
|
|
|
$oCriteria = new Criteria('workflow');
|
|
$oCriteria->addSelectColumn(AdditionalTablesPeer::ADD_TAB_UID);
|
|
$oCriteria->addSelectColumn(AdditionalTablesPeer::ADD_TAB_NAME);
|
|
$oCriteria->addSelectColumn(AdditionalTablesPeer::ADD_TAB_DESCRIPTION);
|
|
$oCriteria->addSelectColumn("'".G::LoadTranslation('ID_ACTION_EXPORT')."' as 'CH_SCHEMA'");
|
|
$oCriteria->addSelectColumn("'".G::LoadTranslation('ID_ACTION_EXPORT')."' as 'CH_DATA'");
|
|
|
|
$uids = explode(',',$_GET['id']);
|
|
|
|
foreach ($uids as $UID){
|
|
if (!isset($CC)){
|
|
$CC = $oCriteria->getNewCriterion(AdditionalTablesPeer::ADD_TAB_UID, $UID ,Criteria::EQUAL);
|
|
}else{
|
|
$CC->addOr($oCriteria->getNewCriterion(AdditionalTablesPeer::ADD_TAB_UID, $UID ,Criteria::EQUAL));
|
|
}
|
|
}
|
|
$oCriteria->add($CC);
|
|
$oCriteria->addAnd($oCriteria->getNewCriterion(AdditionalTablesPeer::ADD_TAB_UID, '', Criteria::NOT_EQUAL));
|
|
|
|
$oDataset = AdditionalTablesPeer::doSelectRS ( $oCriteria );
|
|
$oDataset->setFetchmode ( ResultSet::FETCHMODE_ASSOC );
|
|
|
|
$addTables = Array();
|
|
while( $oDataset->next() ) {
|
|
$addTables[] = $oDataset->getRow();
|
|
}
|
|
|
|
return $addTables;
|
|
}
|
|
|
|
public function updateTag($httpData)
|
|
{
|
|
require_once 'classes/model/AdditionalTables.php';
|
|
$oAdditionalTables = new AdditionalTables();
|
|
$uid = $_REQUEST['ADD_TAB_UID'];
|
|
$value = $_REQUEST['value'];
|
|
|
|
$repTabData = array(
|
|
'ADD_TAB_UID' => $uid,
|
|
'ADD_TAB_TAG' => $value
|
|
);
|
|
$oAdditionalTables->update($repTabData);
|
|
}
|
|
|
|
/**
|
|
* - protected functions (non callable from controller outside) -
|
|
*/
|
|
|
|
/**
|
|
* Update data from a addTable record
|
|
* @param $row
|
|
*/
|
|
function _dataUpdate($row)
|
|
{
|
|
$keys = explode('-', $row->__index__);
|
|
unset($row->__index__);
|
|
$params = array();
|
|
foreach ($keys as $key) {
|
|
$params[] = is_numeric($key) ? $key : "'$key'";
|
|
}
|
|
|
|
$obj = null;
|
|
eval('$obj = '.$this->classPeerName.'::retrieveByPk('.implode(',', $params).');');
|
|
|
|
if (is_object($obj)) {
|
|
foreach ($row as $key => $value) {
|
|
$action = 'set' . AdditionalTables::getPHPName($key);
|
|
$obj->$action($value);
|
|
}
|
|
$obj->save();
|
|
return true;
|
|
} else {
|
|
return false;
|
|
$this->success = false;
|
|
$this->message = 'Update Failed';
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Update data from a addTable record
|
|
* @param $row
|
|
*/
|
|
function _dataDestroy($row)
|
|
{
|
|
$row = str_replace('"', '', $row);
|
|
$keys = explode('-', $row);
|
|
$params = array();
|
|
foreach ($keys as $key) {
|
|
$params[] = is_numeric($key) ? $key : "'$key'";
|
|
}
|
|
|
|
$obj = null;
|
|
eval('$obj = '.$this->classPeerName.'::retrieveByPk('.implode(',', $params).');');
|
|
|
|
if (is_object($obj)) {
|
|
$obj->delete();
|
|
return true;
|
|
} else {
|
|
return false;
|
|
$this->success = false;
|
|
$this->message = 'Update Failed';
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Get report table default columns
|
|
* @param $type
|
|
*/
|
|
protected function _getReportTableDefaultColumns($type='NORMAL')
|
|
{
|
|
$defaultColumns = array();
|
|
$application = new stdClass(); //APPLICATION KEY
|
|
$application->uid = '';
|
|
$application->field_dyn = '';
|
|
$application->field_uid = '';
|
|
$application->field_name = 'APP_UID';
|
|
$application->field_label = 'APP_UID';
|
|
$application->field_type = 'VARCHAR';
|
|
$application->field_size = 32;
|
|
$application->field_dyn = '';
|
|
$application->field_key = 1;
|
|
$application->field_null = 0;
|
|
$application->field_filter = false;
|
|
array_push($defaultColumns, $application);
|
|
|
|
$application = new stdClass(); //APP_NUMBER
|
|
$application->uid = '';
|
|
$application->field_dyn = '';
|
|
$application->field_uid = '';
|
|
$application->field_name = 'APP_NUMBER';
|
|
$application->field_label = 'APP_NUMBER';
|
|
$application->field_type = 'INT';
|
|
$application->field_size = 11;
|
|
$application->field_dyn = '';
|
|
$application->field_key = 0;
|
|
$application->field_null = 0;
|
|
$application->field_filter = false;
|
|
array_push($defaultColumns, $application);
|
|
|
|
//if it is a grid report table
|
|
if ($type == 'GRID') { //GRID INDEX
|
|
$gridIndex = new stdClass();
|
|
$gridIndex->uid = '';
|
|
$gridIndex->field_dyn = '';
|
|
$gridIndex->field_uid = '';
|
|
$gridIndex->field_name = 'ROW';
|
|
$gridIndex->field_label = 'ROW';
|
|
$gridIndex->field_type = 'INT';
|
|
$gridIndex->field_size = '11';
|
|
$gridIndex->field_dyn = '';
|
|
$gridIndex->field_key = 1;
|
|
$gridIndex->field_null = 0;
|
|
$gridIndex->field_filter = false;
|
|
array_push($defaultColumns, $gridIndex);
|
|
}
|
|
|
|
return $defaultColumns;
|
|
}
|
|
|
|
/**
|
|
* Get all dynaform fields from a process (without grid fields)
|
|
* @param $proUid
|
|
* @param $type [values:xmlform/grid]
|
|
*/
|
|
function _getDynafields2($proUid, $type = 'xmlform')
|
|
{
|
|
require_once 'classes/model/Dynaform.php';
|
|
$fields = array();
|
|
$fieldsNames = array();
|
|
|
|
$oCriteria = new Criteria('workflow');
|
|
$oCriteria->addSelectColumn(DynaformPeer::DYN_FILENAME);
|
|
$oCriteria->add(DynaformPeer::PRO_UID, $proUid);
|
|
$oCriteria->add(DynaformPeer::DYN_TYPE, $type);
|
|
$oDataset = DynaformPeer::doSelectRS($oCriteria);
|
|
$oDataset->setFetchmode(ResultSet::FETCHMODE_ASSOC);
|
|
$oDataset->next();
|
|
|
|
$excludeFieldsList = array('title', 'subtitle', 'link', 'file', 'button', 'reset', 'submit',
|
|
'listbox', 'checkgroup', 'grid', 'javascript');
|
|
|
|
$labelFieldsTypeList = array('dropdown', 'checkbox', 'radiogroup', 'yesno');
|
|
|
|
while ($aRow = $oDataset->getRow()) {
|
|
if (file_exists(PATH_DYNAFORM . PATH_SEP . $aRow['DYN_FILENAME'] . '.xml')) {
|
|
$G_FORM = new Form($aRow['DYN_FILENAME'], PATH_DYNAFORM, SYS_LANG);
|
|
|
|
if ($G_FORM->type == 'xmlform' || $G_FORM->type == '') {
|
|
foreach($G_FORM->fields as $fieldName => $fieldNode) {
|
|
if (!in_array($fieldNode->type, $excludeFieldsList) && !in_array($fieldName, $fieldsNames)) {
|
|
$fields[] = array('name' => $fieldName, 'type' => $fieldNode->type, 'label'=> $fieldNode->label);
|
|
$fieldsNames[] = $fieldName;
|
|
|
|
if (in_array($fieldNode->type, $labelFieldsTypeList) && !in_array($fieldName.'_label', $fieldsNames)) {
|
|
$fields[] = array('name' => $fieldName . '_label', 'type' => $fieldNode->type, 'label'=>$fieldNode->label . '_label');
|
|
$fieldsNames[] = $fieldName;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
$oDataset->next();
|
|
}
|
|
|
|
return $fields;
|
|
}
|
|
|
|
function _getDynafields($proUid, $type = 'xmlform', $start=null, $limit=null, $filter=null)
|
|
{
|
|
$cache = 1;
|
|
if (!isset($_SESSION['_cache_pmtables']) || (isset($_SESSION['_cache_pmtables']) && $_SESSION['_cache_pmtables']['pro_uid'] != $proUid)) {
|
|
require_once 'classes/model/Dynaform.php';
|
|
$cache = 0;
|
|
$fields = array();
|
|
$fieldsNames = array();
|
|
|
|
$oCriteria = new Criteria('workflow');
|
|
$oCriteria->addSelectColumn(DynaformPeer::DYN_FILENAME);
|
|
$oCriteria->add(DynaformPeer::PRO_UID, $proUid);
|
|
$oCriteria->add(DynaformPeer::DYN_TYPE, $type);
|
|
|
|
|
|
if (isset($this->dynUid)) {
|
|
$oCriteria->add(DynaformPeer::DYN_UID, $this->dynUid);
|
|
}
|
|
|
|
$oDataset = DynaformPeer::doSelectRS($oCriteria);
|
|
$oDataset->setFetchmode(ResultSet::FETCHMODE_ASSOC);
|
|
$oDataset->next();
|
|
|
|
$excludeFieldsList = array('title', 'subtitle', 'link', 'file', 'button', 'reset', 'submit',
|
|
'listbox', 'checkgroup', 'grid', 'javascript');
|
|
|
|
$labelFieldsTypeList = array('dropdown', 'radiogroup');
|
|
G::loadSystem('dynaformhandler');
|
|
$index = 0;
|
|
|
|
while ($aRow = $oDataset->getRow()) {
|
|
if (file_exists(PATH_DYNAFORM . PATH_SEP . $aRow['DYN_FILENAME'] . '.xml')) {
|
|
$dynaformHandler = new dynaformHandler(PATH_DYNAFORM . $aRow['DYN_FILENAME']. '.xml');
|
|
$nodeFieldsList = $dynaformHandler->getFields();
|
|
|
|
foreach($nodeFieldsList as $node) {
|
|
$arrayNode = $dynaformHandler->getArray($node);
|
|
$fieldName = $arrayNode['__nodeName__'];
|
|
$fieldType = $arrayNode['type'];
|
|
|
|
if (!in_array($fieldType, $excludeFieldsList) && !in_array($fieldName, $fieldsNames)) {
|
|
$fields[] = array(
|
|
'FIELD_UID' => $fieldName . '-' . $fieldType,
|
|
'FIELD_NAME' => $fieldName,
|
|
'_index' => $index++,
|
|
'_isset' => true
|
|
);
|
|
$fieldsNames[] = $fieldName;
|
|
|
|
if (in_array($fieldType, $labelFieldsTypeList) && !in_array($fieldName . '_label', $fieldsNames)) {
|
|
$fields[] = array(
|
|
'FIELD_UID' => $fieldName . '_label' . '-' . $fieldType,
|
|
'FIELD_NAME' => $fieldName . '_label',
|
|
'_index' => $index++,
|
|
'_isset' => true
|
|
);
|
|
$fieldsNames[] = $fieldName;
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|
|
$oDataset->next();
|
|
}
|
|
|
|
sort($fields);
|
|
|
|
// if is a editing
|
|
$fieldsEdit = array();
|
|
if (isset($_SESSION['ADD_TAB_UID'])) {
|
|
require_once 'classes/model/AdditionalTables.php';
|
|
|
|
$additionalTables = new AdditionalTables();
|
|
$table = $additionalTables->load($_SESSION['ADD_TAB_UID'], true);
|
|
|
|
foreach ($table['FIELDS'] as $i=>$field) {
|
|
array_push($fieldsEdit, $field['FLD_DYN_NAME']);
|
|
}
|
|
}//end editing
|
|
|
|
foreach($fields as $i => $field) {
|
|
$fields[$i]['_index'] = $i;
|
|
$indexes[$field['FIELD_NAME']] = $i;
|
|
|
|
if(in_array($field['FIELD_NAME'], $fieldsEdit)) {
|
|
$fields[$i]['_isset'] = false;
|
|
}
|
|
}
|
|
|
|
$_SESSION['_cache_pmtables']['pro_uid'] = $proUid;
|
|
$_SESSION['_cache_pmtables']['rows'] = $fields;
|
|
$_SESSION['_cache_pmtables']['count'] = count($fields);
|
|
$_SESSION['_cache_pmtables']['indexes'] = $indexes;
|
|
} //end reload
|
|
|
|
$fields = array();
|
|
$tmp = array();
|
|
|
|
foreach ($_SESSION['_cache_pmtables']['rows'] as $i => $row) {
|
|
if (isset($filter) && $filter != '') {
|
|
if ($row['_isset'] && stripos($row['FIELD_NAME'], $filter) !== false) {
|
|
$tmp[] = $row;
|
|
}
|
|
}
|
|
else {
|
|
if ($row['_isset']) {
|
|
$tmp[] = $row;
|
|
}
|
|
}
|
|
}
|
|
|
|
$fields = array_slice($tmp, $start, $limit);
|
|
|
|
return array('cache'=>$cache, 'count'=>count($tmp), 'rows'=>$fields);
|
|
}
|
|
|
|
/**
|
|
* Get all dynaform grid fields from a process
|
|
* @param $proUid
|
|
* @param $gridId
|
|
*/
|
|
function _getGridDynafields($proUid, $gridId)
|
|
{
|
|
$fields = array();
|
|
$fieldsNames = array();
|
|
$excludeFieldsList = array('title', 'subtitle', 'link', 'file', 'button', 'reset', 'submit',
|
|
'listbox', 'checkgroup', 'grid', 'javascript');
|
|
|
|
$labelFieldsTypeList = array('dropdown', 'checkbox', 'radiogroup', 'yesno');
|
|
|
|
$G_FORM = new Form($proUid . '/' . $gridId, PATH_DYNAFORM, SYS_LANG, false);
|
|
|
|
if ($G_FORM->type == 'grid') {
|
|
foreach($G_FORM->fields as $fieldName => $fieldNode) {
|
|
if (!in_array($fieldNode->type, $excludeFieldsList) && !in_array($fieldName, $fieldsNames)) {
|
|
$fields[] = array('name' => $fieldName, 'type' => $fieldNode->type, 'label'=> $fieldNode->label);
|
|
$fieldsNames[] = $fieldName;
|
|
|
|
if (in_array($fieldNode->type, $labelFieldsTypeList) && !in_array($fieldName.'_label', $fieldsNames)) {
|
|
$fields[] = array('name' => $fieldName . '_label', 'type' => $fieldNode->type, 'label'=>$fieldNode->label . '_label');
|
|
$fieldsNames[] = $fieldName;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
return $fields;
|
|
}
|
|
|
|
/**
|
|
* Get all dynaform fields inside all grids from a process
|
|
* @param $proUid
|
|
*/
|
|
function _getGridFields($proUid)
|
|
{
|
|
require_once 'classes/model/Dynaform.php';
|
|
G::loadSystem('dynaformhandler');
|
|
$aFields = array();
|
|
$aFieldsNames = array();
|
|
|
|
$oCriteria = new Criteria('workflow');
|
|
$oCriteria->addSelectColumn(DynaformPeer::DYN_FILENAME);
|
|
$oCriteria->add(DynaformPeer::PRO_UID, $proUid);
|
|
$oCriteria->add(DynaformPeer::DYN_TYPE, 'xmlform');
|
|
$oDataset = DynaformPeer::doSelectRS($oCriteria);
|
|
$oDataset->setFetchmode(ResultSet::FETCHMODE_ASSOC);
|
|
$oDataset->next();
|
|
|
|
while ($aRow = $oDataset->getRow()) {
|
|
//$G_FORM = new Form($aRow['DYN_FILENAME'], PATH_DYNAFORM, SYS_LANG);
|
|
$dynaformHandler = new dynaformHandler(PATH_DYNAFORM . $aRow['DYN_FILENAME']. '.xml');
|
|
$nodeFieldsList = $dynaformHandler->getFields();
|
|
|
|
foreach($nodeFieldsList as $node) {
|
|
$arrayNode = $dynaformHandler->getArray($node);
|
|
$fieldName = $arrayNode['__nodeName__'];
|
|
$fieldType = $arrayNode['type'];
|
|
|
|
if ($fieldType == 'grid') {
|
|
|
|
if (!in_array($fieldName, $aFieldsNames)) {
|
|
$aFields[] = array('name' => $fieldName, 'xmlform' => str_replace($proUid . '/', '', $arrayNode['xmlgrid']));
|
|
$aFieldsNames[] = $fieldName;
|
|
}
|
|
}
|
|
}
|
|
|
|
$oDataset->next();
|
|
}
|
|
return $aFields;
|
|
}
|
|
}
|
|
|
|
|
|
class aTablesMap{
|
|
var $aMap;
|
|
|
|
function route($uid){
|
|
if( isset($this->aMap[$uid]) ){
|
|
return $this->aMap[$uid];
|
|
} else {
|
|
return $uid;
|
|
}
|
|
}
|
|
|
|
function addRoute($item, $equal){
|
|
$this->aMap[$item] = $equal;
|
|
}
|
|
|
|
}
|