2017-08-03 18:44:57 -04:00
|
|
|
<?php
|
2017-08-14 16:13:46 -04:00
|
|
|
|
|
|
|
|
use ProcessMaker\Core\System;
|
2018-11-01 13:24:47 -04:00
|
|
|
use ProcessMaker\Validation\ExceptionRestApi;
|
2018-08-28 09:34:11 -04:00
|
|
|
use ProcessMaker\Validation\ValidationUploadedFiles;
|
2017-08-14 16:13:46 -04:00
|
|
|
|
2017-08-03 18:44:57 -04:00
|
|
|
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
|
|
|
|
|
*/
|
2018-08-20 10:20:00 -04:00
|
|
|
public function getList($httpData)
|
2017-08-03 18:44:57 -04:00
|
|
|
{
|
|
|
|
|
$configurations = new Configurations();
|
2017-08-04 16:21:06 -04:00
|
|
|
$processMap = new ProcessMap();
|
2017-08-03 18:44:57 -04:00
|
|
|
|
|
|
|
|
// setting parameters
|
2018-08-20 10:20:00 -04:00
|
|
|
$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;
|
2017-08-03 18:44:57 -04:00
|
|
|
|
|
|
|
|
if ($pro_uid !== null) {
|
2018-08-20 10:20:00 -04:00
|
|
|
$process = $pro_uid == '' ? ['not_equal' => $pro_uid] : ['equal' => $pro_uid];
|
|
|
|
|
$addTables = AdditionalTables::getAll(false, false, $filter, $process);
|
2017-08-03 18:44:57 -04:00
|
|
|
|
2018-08-20 10:20:00 -04:00
|
|
|
$c = $processMap->getReportTablesCriteria($pro_uid);
|
|
|
|
|
$oDataset = RoutePeer::doSelectRS($c);
|
|
|
|
|
$oDataset->setFetchmode(ResultSet::FETCHMODE_ASSOC);
|
|
|
|
|
$reportTablesOldList = array();
|
2017-08-03 18:44:57 -04:00
|
|
|
while ($oDataset->next()) {
|
|
|
|
|
$reportTablesOldList[] = $oDataset->getRow();
|
|
|
|
|
}
|
|
|
|
|
foreach ($reportTablesOldList as $i => $oldRepTab) {
|
2018-08-20 10:20:00 -04:00
|
|
|
if ($filter != '') {
|
|
|
|
|
if ((stripos($oldRepTab['REP_TAB_NAME'], $filter) !== false) ||
|
|
|
|
|
(stripos($oldRepTab['REP_TAB_TITLE'], $filter) !== false)) {
|
|
|
|
|
$addTables['rows'][] = [
|
|
|
|
|
'ADD_TAB_UID' => $oldRepTab['REP_TAB_UID'],
|
|
|
|
|
'PRO_UID' => $oldRepTab['PRO_UID'],
|
|
|
|
|
'DBS_UID' => ($oldRepTab['REP_TAB_CONNECTION'] == 'wf' ? 'workflow' : 'rp'),
|
|
|
|
|
'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['rows'][] = [
|
|
|
|
|
'ADD_TAB_UID' => $oldRepTab['REP_TAB_UID'],
|
|
|
|
|
'PRO_UID' => $oldRepTab['PRO_UID'],
|
|
|
|
|
'DBS_UID' => ($oldRepTab['REP_TAB_CONNECTION'] == 'wf' ? 'workflow' : 'rp'),
|
|
|
|
|
'ADD_TAB_DESCRIPTION' => $oldRepTab['REP_TAB_TITLE'],
|
|
|
|
|
'ADD_TAB_NAME' => $oldRepTab['REP_TAB_NAME'],
|
|
|
|
|
'ADD_TAB_TYPE' => $oldRepTab['REP_TAB_TYPE'],
|
|
|
|
|
'TYPE' => 'CLASSIC'
|
|
|
|
|
];
|
|
|
|
|
}
|
2017-08-03 18:44:57 -04:00
|
|
|
}
|
|
|
|
|
$addTables['count'] = count($addTables['rows']);
|
2018-08-20 10:20:00 -04:00
|
|
|
if ($start != 0) {
|
|
|
|
|
$addTables['rows'] = array_splice($addTables['rows'], $start);
|
2017-08-03 18:44:57 -04:00
|
|
|
}
|
|
|
|
|
$addTables['rows'] = array_splice($addTables['rows'], 0, $limit);
|
|
|
|
|
} else {
|
2018-08-20 10:20:00 -04:00
|
|
|
$addTables = AdditionalTables::getAll($start, $limit, $filter);
|
2017-08-03 18:44:57 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
foreach ($addTables['rows'] as $i => $table) {
|
2018-08-20 10:20:00 -04:00
|
|
|
//removing the prefix "PMT" to allow alphabetical order (just in view)
|
|
|
|
|
if (substr($addTables['rows'][$i]['ADD_TAB_NAME'], 0, 4) == 'PMT_') {
|
|
|
|
|
$addTables['rows'][$i]['ADD_TAB_NAME'] = substr($addTables['rows'][$i]['ADD_TAB_NAME'], 4);
|
2017-08-03 18:44:57 -04:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
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 ()
|
|
|
|
|
{
|
|
|
|
|
if (! isset( $_SESSION['PROCESS'] )) {
|
|
|
|
|
$_SESSION['PROCESS'] = $_POST['PRO_UID'];
|
|
|
|
|
}
|
|
|
|
|
$proUid = $_POST['PRO_UID'];
|
|
|
|
|
$dbConn = new DbConnections();
|
|
|
|
|
$dbConnections = $dbConn->getConnectionsProUid( $proUid, array('mysql') );
|
|
|
|
|
|
2017-10-10 12:33:25 -04:00
|
|
|
$workSpace = new WorkspaceTools(config("system.workspace"));
|
2017-08-03 18:44:57 -04:00
|
|
|
$workspaceDB = $workSpace->getDBInfo();
|
|
|
|
|
|
|
|
|
|
if ($workspaceDB['DB_NAME'] == $workspaceDB['DB_RBAC_NAME']) {
|
|
|
|
|
$defaultConnections = array (array ('DBS_UID' => 'workflow','DBS_NAME' => 'Workflow'));
|
|
|
|
|
} else {
|
|
|
|
|
$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)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
$aFields['FIELDS'] = array ();
|
|
|
|
|
$aFields['PRO_UID'] = $httpData->PRO_UID;
|
|
|
|
|
$dynFields = array ();
|
|
|
|
|
|
|
|
|
|
if (isset($httpData->loadField) && $httpData->loadField) {
|
|
|
|
|
unset($_SESSION['_cache_pmtables']);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$httpData->textFilter = (isset($httpData->textFilter))? $httpData->textFilter : null;
|
|
|
|
|
|
|
|
|
|
if (isset( $httpData->TYPE ) && $httpData->TYPE == 'GRID') {
|
|
|
|
|
if (isset( $httpData->GRID_UID )) {
|
|
|
|
|
list($gridId, $dynaFormUid) = explode('-', $httpData->GRID_UID);
|
|
|
|
|
|
|
|
|
|
$this->dynUid = $dynaFormUid;
|
|
|
|
|
$this->gridId = $gridId;
|
|
|
|
|
|
|
|
|
|
$dynFields = $this->_getDynafields($aFields['PRO_UID'], 'grid', $httpData->start, $httpData->limit, $httpData->textFilter);
|
|
|
|
|
} else {
|
|
|
|
|
$gridFields = $this->_getGridFields($aFields['PRO_UID']);
|
|
|
|
|
|
|
|
|
|
foreach ($gridFields as $value) {
|
|
|
|
|
$dynFields[] = [
|
|
|
|
|
'FIELD_UID' => $value['gridId'] . '-' . $value['uid'],
|
|
|
|
|
'FIELD_NAME' => $value['gridName']
|
|
|
|
|
];
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
// normal dynaform
|
|
|
|
|
$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 ($httpData, $alterTable = true)
|
|
|
|
|
{
|
|
|
|
|
try {
|
|
|
|
|
$reportTable = new \ProcessMaker\BusinessModel\ReportTable();
|
|
|
|
|
|
|
|
|
|
return $reportTable->saveStructureOfTable((array)($httpData), $alterTable);
|
|
|
|
|
} catch (Exception $e) {
|
|
|
|
|
throw $e;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* delete pm table
|
|
|
|
|
*
|
|
|
|
|
* @param string $httpData->rows
|
|
|
|
|
*/
|
|
|
|
|
public function delete ($httpData)
|
|
|
|
|
{
|
|
|
|
|
$result = new stdClass();
|
|
|
|
|
$rows = G::json_decode( stripslashes( $httpData->rows ) );
|
|
|
|
|
$errors = '';
|
|
|
|
|
$count = 0;
|
|
|
|
|
$result = new StdClass();
|
|
|
|
|
|
|
|
|
|
$tableCasesList = array();
|
|
|
|
|
$conf = new Configurations();
|
|
|
|
|
$confCasesListDraft = $conf->getConfiguration( 'casesList', 'draft');
|
|
|
|
|
$confCasesListPaused = $conf->getConfiguration( 'casesList', 'paused');
|
|
|
|
|
$confCasesListSent = $conf->getConfiguration( 'casesList', 'sent');
|
|
|
|
|
$confCasesListTodo = $conf->getConfiguration( 'casesList', 'todo');
|
|
|
|
|
$confCasesListUnassigned = $conf->getConfiguration( 'casesList', 'unassigned');
|
|
|
|
|
$tableCasesList['draft'] = ($confCasesListDraft != null) ? (isset($confCasesListDraft['PMTable']) ? $confCasesListDraft['PMTable'] : '') : '';
|
|
|
|
|
$tableCasesList['paused'] = ($confCasesListPaused != null) ? (isset($confCasesListPaused['PMTable']) ? $confCasesListPaused['PMTable'] : '') : '';
|
|
|
|
|
$tableCasesList['sent'] = ($confCasesListSent != null) ? (isset($confCasesListSent['PMTable']) ? $confCasesListSent['PMTable'] : '') : '';
|
|
|
|
|
$tableCasesList['todo'] = ($confCasesListTodo != null) ? (isset($confCasesListTodo['PMTable']) ? $confCasesListTodo['PMTable'] : '') : '';
|
|
|
|
|
$tableCasesList['unassigned'] = ($confCasesListUnassigned != null) ? (isset($confCasesListUnassigned['PMTable']) ? $confCasesListUnassigned['PMTable'] : '') : '';
|
|
|
|
|
|
|
|
|
|
foreach ($rows as $row) {
|
|
|
|
|
try {
|
|
|
|
|
$at = new AdditionalTables();
|
|
|
|
|
$table = $at->load( $row->id );
|
|
|
|
|
|
|
|
|
|
if (! isset( $table )) {
|
|
|
|
|
require_once 'classes/model/ReportTable.php';
|
|
|
|
|
$rtOld = new ReportTable();
|
|
|
|
|
$existReportTableOld = $rtOld->load( $row->id );
|
|
|
|
|
if (count($existReportTableOld) == 0) {
|
|
|
|
|
throw new Exception( G::LoadTranslation('ID_TABLE_NOT_EXIST_SKIPPED') );
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
foreach ($tableCasesList as $action => $idTable) {
|
|
|
|
|
if ($idTable == $row->id) {
|
|
|
|
|
$conf = new Configurations();
|
|
|
|
|
$resultJson = $conf->casesListDefaultFieldsAndConfig($action);
|
|
|
|
|
$conf->saveObject($resultJson, "casesList", $action, "", "", "");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ($row->type == 'CLASSIC') {
|
2017-08-14 10:56:14 -04:00
|
|
|
$rp = new ReportTables();
|
2017-08-03 18:44:57 -04:00
|
|
|
$rp->deleteReportTable( $row->id );
|
|
|
|
|
$count ++;
|
|
|
|
|
} else {
|
|
|
|
|
$at->deleteAll( $row->id );
|
|
|
|
|
$count ++;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$oCriteria = new Criteria('workflow');
|
|
|
|
|
$oCriteria->add(CaseConsolidatedCorePeer::REP_TAB_UID, $row->id);
|
|
|
|
|
$oResult = CaseConsolidatedCorePeer::doSelectOne($oCriteria);
|
|
|
|
|
if(!empty($oResult)) {
|
|
|
|
|
$sTasUid = $oResult->getTasUid();
|
|
|
|
|
$oCaseConsolidated = new CaseConsolidatedCore();
|
|
|
|
|
$oCaseConsolidated = CaseConsolidatedCorePeer::retrieveByPK($sTasUid);
|
|
|
|
|
$oCaseConsolidated->delete();
|
|
|
|
|
}
|
|
|
|
|
} catch (Exception $e) {
|
|
|
|
|
$tableName = isset( $table['ADD_TAB_NAME'] ) ? $table['ADD_TAB_NAME'] : $row->id;
|
|
|
|
|
$errors .= $e->getMessage() . "\n";
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ($errors == '') {
|
|
|
|
|
$result->success = true;
|
|
|
|
|
$result->message = $count.G::LoadTranslation( 'ID_TABLES_REMOVED_SUCCESSFULLY' );
|
|
|
|
|
G::auditLog("DeletePmtable", "Table Name: ". $table['ADD_TAB_NAME']." Table ID: (".$table['ADD_TAB_UID'].") ");
|
|
|
|
|
} else {
|
|
|
|
|
$result->success = false;
|
|
|
|
|
$result->message = $count. G::LoadTranslation( 'ID_TABLES_REMOVED_WITH_ERRORS' ) .$errors;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$result->errors = $errors;
|
|
|
|
|
|
|
|
|
|
return $result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* get pm tables data
|
|
|
|
|
*
|
|
|
|
|
* @param string $httpData->id
|
|
|
|
|
* @param string $httpData->start
|
|
|
|
|
* @param string $httpData->limit
|
|
|
|
|
* @param string $httpData->appUid
|
|
|
|
|
*/
|
|
|
|
|
public function dataView ($httpData)
|
|
|
|
|
{
|
|
|
|
|
$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;
|
|
|
|
|
$appUid = isset( $httpData->appUid ) ? $httpData->appUid : false;
|
|
|
|
|
$appUid = ($appUid == "true") ? true : false;
|
|
|
|
|
$filter = isset( $httpData->textFilter ) ? $httpData->textFilter : '';
|
|
|
|
|
$additionalTables = new AdditionalTables();
|
|
|
|
|
$table = $additionalTables->load( $httpData->id, true );
|
|
|
|
|
|
|
|
|
|
if ($filter != '') {
|
|
|
|
|
$result = $additionalTables->getAllData( $httpData->id, $start, $limit, true, $filter, $appUid);
|
|
|
|
|
} else {
|
|
|
|
|
$result = $additionalTables->getAllData( $httpData->id, $start, $limit );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$primaryKeys = $additionalTables->getPrimaryKeys();
|
|
|
|
|
|
|
|
|
|
if (is_array($result['rows'])) {
|
|
|
|
|
foreach ($result['rows'] as $i => $row) {
|
|
|
|
|
$primaryKeysValues = array ();
|
|
|
|
|
foreach ($primaryKeys as $key) {
|
|
|
|
|
$primaryKeysValues[] = isset( $row[$key['FLD_NAME']] ) ? $row[$key['FLD_NAME']] : '';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$result['rows'][$i]['__index__'] = G::encrypt( implode( ',', $primaryKeysValues ), 'pmtable' );
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
$result['rows'] = array();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return $result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* create pm tables record
|
|
|
|
|
*
|
|
|
|
|
* @param string $httpData->rows
|
|
|
|
|
*/
|
|
|
|
|
public function dataCreate ($httpData, $codification = 'json')
|
|
|
|
|
{
|
|
|
|
|
$result = new stdClass();
|
|
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
$reportTable = new \ProcessMaker\BusinessModel\ReportTable();
|
|
|
|
|
|
|
|
|
|
$arrayResult = $reportTable->createRecord((array)($httpData), $codification);
|
|
|
|
|
|
|
|
|
|
if ($arrayResult['success']) {
|
|
|
|
|
$result->success = true;
|
|
|
|
|
$result->message = $arrayResult['message'];
|
|
|
|
|
$result->rows = $arrayResult['rows'];
|
|
|
|
|
$result->rows['__index__'] = $arrayResult['index'];
|
|
|
|
|
} else {
|
|
|
|
|
$result->success = false;
|
|
|
|
|
$result->message = '$$';
|
|
|
|
|
$result->rows = [];
|
|
|
|
|
}
|
|
|
|
|
} catch (Exception $e) {
|
|
|
|
|
$result->success = false;
|
|
|
|
|
$result->rows = array ();
|
|
|
|
|
$result->message = $e->getMessage();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
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 );
|
|
|
|
|
$primaryKeys = $oAdditionalTables->getPrimaryKeys( 'keys' );
|
|
|
|
|
$this->className = $table['ADD_TAB_CLASS_NAME'];
|
|
|
|
|
$this->classPeerName = $this->className . 'Peer';
|
2017-10-10 12:33:25 -04:00
|
|
|
$sPath = PATH_DB . config("system.workspace") . PATH_SEP . 'classes' . PATH_SEP;
|
2017-08-03 18:44:57 -04:00
|
|
|
if (! file_exists( $sPath . $this->className . '.php' )) {
|
|
|
|
|
throw new Exception( 'Update:: ' . G::loadTranslation( 'ID_PMTABLE_CLASS_DOESNT_EXIST', $this->className ) );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
require_once $sPath . $this->className . '.php';
|
|
|
|
|
|
|
|
|
|
$rows = G::json_decode( $httpData->rows );
|
|
|
|
|
|
|
|
|
|
if (is_array( $rows )) {
|
|
|
|
|
foreach ($rows as $row) {
|
|
|
|
|
$row = (array) $row;
|
|
|
|
|
$result = $this->_dataUpdate( $row, $primaryKeys );
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
//then is object
|
|
|
|
|
$row = (array) $rows;
|
|
|
|
|
$result = $this->_dataUpdate( $row, $primaryKeys );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ($result) {
|
|
|
|
|
G::auditLog("UpdateDataPmtable", "Table Name: ".$table['ADD_TAB_NAME']." Table ID: (".$table['ADD_TAB_UID'].") ");
|
|
|
|
|
}
|
|
|
|
|
$this->success = $result;
|
|
|
|
|
$this->message = $result ? G::loadTranslation( 'ID_UPDATED_SUCCESSFULLY' ) : G::loadTranslation( 'ID_UPDATE_FAILED' );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 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';
|
2017-10-10 12:33:25 -04:00
|
|
|
$sPath = PATH_DB . config("system.workspace") . PATH_SEP . 'classes' . PATH_SEP;
|
2017-08-03 18:44:57 -04:00
|
|
|
|
|
|
|
|
if (! file_exists( $sPath . $this->className . '.php' )) {
|
|
|
|
|
throw new Exception( 'Destroy:: ' . G::loadTranslation( 'ID_PMTABLE_CLASS_DOESNT_EXIST', $this->className ) );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
require_once $sPath . $this->className . '.php';
|
|
|
|
|
|
|
|
|
|
G::auditLog("DeleteDataPmtable", "Table Name: ".$table['ADD_TAB_NAME']." Table ID: (".$table['ADD_TAB_UID'].") ");
|
|
|
|
|
|
|
|
|
|
$this->success = $this->_dataDestroy( $httpData->rows );
|
|
|
|
|
$this->message = $this->success ? G::loadTranslation( 'ID_DELETED_SUCCESSFULLY' ) : G::loadTranslation( 'ID_DELETE_FAILED' );
|
|
|
|
|
}
|
|
|
|
|
|
2017-08-07 13:11:09 -04:00
|
|
|
/**
|
|
|
|
|
* Import pmTable from CSV file
|
|
|
|
|
* @param $httpData
|
|
|
|
|
*/
|
|
|
|
|
public function importCSV($httpData)
|
2017-08-03 18:44:57 -04:00
|
|
|
{
|
|
|
|
|
$filter = new InputFilter();
|
|
|
|
|
$countRow = 250;
|
|
|
|
|
$tmpfilename = $_FILES['form']['tmp_name']['CSV_FILE'];
|
2017-08-07 13:11:09 -04:00
|
|
|
if (preg_match('/[\x00-\x08\x0b-\x0c\x0e\x1f]/', file_get_contents($tmpfilename)) === 0) {
|
2017-08-03 18:44:57 -04:00
|
|
|
$filename = $_FILES['form']['name']['CSV_FILE'];
|
2017-08-07 13:11:09 -04:00
|
|
|
if ($oFile = fopen($filter->xssFilterHard($tmpfilename, 'path'), 'r')) {
|
2017-08-03 18:44:57 -04:00
|
|
|
require_once 'classes/model/AdditionalTables.php';
|
|
|
|
|
$oAdditionalTables = new AdditionalTables();
|
2017-08-07 13:11:09 -04:00
|
|
|
$aAdditionalTables = $oAdditionalTables->load($_POST['form']['ADD_TAB_UID'], true);
|
2017-08-03 18:44:57 -04:00
|
|
|
$sErrorMessages = '';
|
|
|
|
|
$i = 1;
|
|
|
|
|
$conData = 0;
|
|
|
|
|
$insert = 'REPLACE INTO ' . $aAdditionalTables['ADD_TAB_NAME'] . ' (';
|
|
|
|
|
$query = '';
|
|
|
|
|
$swHead = false;
|
2017-08-07 13:11:09 -04:00
|
|
|
while (($aAux = fgetcsv($oFile, 4096, $_POST['form']['CSV_DELIMITER'], '"', '"')) !== false) {
|
|
|
|
|
if (!is_null($aAux[0])) {
|
|
|
|
|
if (count($aAdditionalTables['FIELDS']) > count($aAux)) {
|
2017-08-03 18:44:57 -04:00
|
|
|
$this->success = false;
|
2017-08-07 13:11:09 -04:00
|
|
|
$this->message = G::LoadTranslation('INVALID_FILE');
|
2017-08-03 18:44:57 -04:00
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
if ($i == 1) {
|
|
|
|
|
$j = 0;
|
|
|
|
|
foreach ($aAdditionalTables['FIELDS'] as $aField) {
|
|
|
|
|
$insert .= $aField['FLD_NAME'] . ', ';
|
|
|
|
|
if ($aField['FLD_NAME'] === $aAux[$j]) {
|
|
|
|
|
$swHead = true;
|
|
|
|
|
}
|
2017-08-07 13:11:09 -04:00
|
|
|
$j++;
|
2017-08-03 18:44:57 -04:00
|
|
|
}
|
|
|
|
|
$insert = substr($insert, 0, -2);
|
|
|
|
|
$insert .= ') VALUES ';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ($swHead == false) {
|
|
|
|
|
$queryRow = '(';
|
|
|
|
|
$j = 0;
|
|
|
|
|
foreach ($aAdditionalTables['FIELDS'] as $aField) {
|
|
|
|
|
$conData++;
|
|
|
|
|
if (array_key_exists($j, $aAux)) {
|
2017-08-07 13:11:09 -04:00
|
|
|
$temp = '"' . addslashes(G::is_utf8($aAux[$j]) ? $aAux[$j] : utf8_encode($aAux[$j])) . '"';
|
2017-08-03 18:44:57 -04:00
|
|
|
} else {
|
|
|
|
|
$temp = '""';
|
|
|
|
|
}
|
|
|
|
|
if ($temp == '') {
|
|
|
|
|
switch ($aField['FLD_TYPE']) {
|
|
|
|
|
case 'DATE':
|
|
|
|
|
case 'TIMESTAMP':
|
|
|
|
|
$temp = 'NULL';
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
2017-08-07 13:11:09 -04:00
|
|
|
$j++;
|
2017-08-03 18:44:57 -04:00
|
|
|
$queryRow .= $temp . ',';
|
|
|
|
|
}
|
|
|
|
|
$query .= substr($queryRow, 0, -1) . '),';
|
|
|
|
|
try {
|
|
|
|
|
if ($conData == $countRow) {
|
2018-07-10 11:48:13 -04:00
|
|
|
$query = $insert . substr($query, 0, -1) . ';';
|
|
|
|
|
$con = Propel::getConnection($aAdditionalTables['DBS_UID']);
|
|
|
|
|
$con->begin();
|
|
|
|
|
$con->executeUpdate($query);
|
|
|
|
|
$con->commit();
|
2017-08-03 18:44:57 -04:00
|
|
|
$query = '';
|
|
|
|
|
$conData = 0;
|
|
|
|
|
}
|
|
|
|
|
} catch (Exception $oError) {
|
2017-08-07 13:11:09 -04:00
|
|
|
$sErrorMessages .= G::LoadTranslation('ID_ERROR_INSERT_LINE') . ': ' . G::LoadTranslation('ID_LINE') . ' ' . $i . '. ';
|
2017-08-03 18:44:57 -04:00
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
$swHead = false;
|
|
|
|
|
}
|
2017-08-07 13:11:09 -04:00
|
|
|
$i++;
|
2017-08-03 18:44:57 -04:00
|
|
|
}
|
|
|
|
|
}
|
2017-08-07 13:11:09 -04:00
|
|
|
fclose($oFile);
|
2017-08-03 18:44:57 -04:00
|
|
|
if ($conData > 0) {
|
2018-07-10 11:48:13 -04:00
|
|
|
$query = $insert . substr($query, 0, -1) . ';';
|
|
|
|
|
$con = Propel::getConnection($aAdditionalTables['DBS_UID']);
|
|
|
|
|
$con->begin();
|
|
|
|
|
$con->executeUpdate($query);
|
|
|
|
|
$con->commit();
|
2017-08-03 18:44:57 -04:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if ($sErrorMessages != '') {
|
|
|
|
|
$this->success = false;
|
|
|
|
|
$this->message = $sErrorMessages;
|
|
|
|
|
} else {
|
|
|
|
|
$this->success = true;
|
2017-08-07 13:11:09 -04:00
|
|
|
$this->message = G::loadTranslation('ID_FILE_IMPORTED_SUCCESSFULLY', array($filename
|
|
|
|
|
));
|
2017-08-03 18:44:57 -04:00
|
|
|
G::auditLog("ImportTable", $filename);
|
|
|
|
|
}
|
|
|
|
|
} else {
|
2017-08-07 13:11:09 -04:00
|
|
|
$sMessage = G::LoadTranslation('ID_UPLOAD_VALID_CSV_FILE');
|
2017-08-03 18:44:57 -04:00
|
|
|
$this->success = false;
|
|
|
|
|
$this->message = $sMessage;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* import a CSV to pm tables record
|
|
|
|
|
*
|
|
|
|
|
* @param string $httpData->id
|
|
|
|
|
*/
|
|
|
|
|
public function importCSVDeprecated ($httpData)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
$filter = new InputFilter();
|
|
|
|
|
$tmpfilename = $_FILES['form']['tmp_name']['CSV_FILE'];
|
|
|
|
|
//$tmpfilename = $filter->xssFilterHard($tmpfilename, 'path');
|
|
|
|
|
if (preg_match( '/[\x00-\x08\x0b-\x0c\x0e\x1f]/', file_get_contents( $tmpfilename ) ) === 0) {
|
|
|
|
|
$filename = $_FILES['form']['name']['CSV_FILE'];
|
|
|
|
|
$filename = $filter->xssFilterHard($filename, 'path');
|
|
|
|
|
if ($oFile = fopen( $filter->xssFilterHard($tmpfilename, 'path'), '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 (! is_null( $aAux[0] )) {
|
|
|
|
|
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] : '');
|
|
|
|
|
if ($aData[$aField['FLD_NAME']] == '') {
|
|
|
|
|
switch ($aField['FLD_TYPE']) {
|
|
|
|
|
case 'DATE':
|
|
|
|
|
case 'TIMESTAMP':
|
|
|
|
|
$aData[$aField['FLD_NAME']] = null;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
$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 = G::loadTranslation( 'ID_FILE_IMPORTED_SUCCESSFULLY', array ($filename
|
|
|
|
|
) );
|
|
|
|
|
G::auditLog("ImportTable", $filename);
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
$sMessage = G::LoadTranslation( 'ID_UPLOAD_VALID_CSV_FILE' );
|
|
|
|
|
$this->success = false;
|
|
|
|
|
$this->message = $sMessage;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2017-08-07 13:11:09 -04:00
|
|
|
* Export pmTable to CSV format
|
|
|
|
|
* @param $httpData
|
|
|
|
|
* @return StdClass
|
2017-08-03 18:44:57 -04:00
|
|
|
*/
|
2017-08-07 13:11:09 -04:00
|
|
|
public function exportCSV($httpData)
|
2017-08-03 18:44:57 -04:00
|
|
|
{
|
|
|
|
|
$result = new StdClass();
|
|
|
|
|
try {
|
|
|
|
|
|
|
|
|
|
$link = '';
|
|
|
|
|
$size = '';
|
|
|
|
|
$META = 'Content';
|
|
|
|
|
$bytesSaved = 0;
|
|
|
|
|
|
|
|
|
|
require_once 'classes/model/AdditionalTables.php';
|
|
|
|
|
$oAdditionalTables = new AdditionalTables();
|
2017-08-07 13:11:09 -04:00
|
|
|
$aAdditionalTables = $oAdditionalTables->load($_POST['ADD_TAB_UID'], true);
|
2017-08-03 18:44:57 -04:00
|
|
|
$sErrorMessages = '';
|
|
|
|
|
$sDelimiter = $_POST['CSV_DELIMITER'];
|
|
|
|
|
|
2017-08-07 13:11:09 -04:00
|
|
|
$resultData = $oAdditionalTables->getAllData($_POST['ADD_TAB_UID'], null, null, false);
|
2017-08-03 18:44:57 -04:00
|
|
|
$rows = $resultData['rows'];
|
|
|
|
|
$count = $resultData['count'];
|
|
|
|
|
|
2017-10-10 12:33:25 -04:00
|
|
|
$PUBLIC_ROOT_PATH = PATH_DATA . 'sites' . PATH_SEP . config("system.workspace") . PATH_SEP . 'public' . PATH_SEP;
|
2017-08-07 13:11:09 -04:00
|
|
|
$filenameOnly = strtolower($aAdditionalTables['ADD_TAB_NAME'] . "_" . date("Y-m-d") . '_' . date("Hi") . ".csv");
|
2017-08-03 18:44:57 -04:00
|
|
|
$filename = $PUBLIC_ROOT_PATH . $filenameOnly;
|
2017-08-07 13:11:09 -04:00
|
|
|
$fp = fopen($filename, "wb");
|
2017-08-03 18:44:57 -04:00
|
|
|
$swColumns = true;
|
|
|
|
|
foreach ($rows as $keyCol => $cols) {
|
2017-08-07 13:11:09 -04:00
|
|
|
if ($swColumns) {
|
|
|
|
|
fputcsv($fp, array_keys($cols), $sDelimiter, '"', "\\");
|
|
|
|
|
$swColumns = false;
|
2017-08-03 18:44:57 -04:00
|
|
|
}
|
2017-08-07 13:11:09 -04:00
|
|
|
fputcsv($fp, $cols, $sDelimiter, '"');
|
2017-08-03 18:44:57 -04:00
|
|
|
}
|
|
|
|
|
|
2017-08-07 13:11:09 -04:00
|
|
|
fclose($fp);
|
2017-08-03 18:44:57 -04:00
|
|
|
$filenameLink = "streamExported?f=$filenameOnly";
|
2017-08-07 13:11:09 -04:00
|
|
|
$size = filesize($filename);
|
2017-08-03 18:44:57 -04:00
|
|
|
$link = $filenameLink;
|
|
|
|
|
|
|
|
|
|
$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;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* import a pm table
|
|
|
|
|
*
|
|
|
|
|
* @param string $httpData->id
|
|
|
|
|
*/
|
|
|
|
|
public function import ($httpData)
|
|
|
|
|
{
|
|
|
|
|
define('ERROR_PM_TABLES_OVERWRITE', 1);
|
|
|
|
|
define('ERROR_PROCESS_NOT_EXIST', 2);
|
|
|
|
|
define('ERROR_RP_TABLES_OVERWRITE', 3);
|
|
|
|
|
define('ERROR_NO_REPORT_TABLE', 4);
|
|
|
|
|
define('ERROR_OVERWRITE_RELATED_PROCESS', 5);
|
|
|
|
|
|
|
|
|
|
$fromAdmin = false;
|
|
|
|
|
if (isset( $_POST["form"]["TYPE_TABLE"] ) && ! empty( $_POST["form"]["TYPE_TABLE"] )) {
|
|
|
|
|
if($_POST["form"]["TYPE_TABLE"] == 'admin') {
|
|
|
|
|
$fromAdmin = true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
try {
|
2018-12-13 14:42:05 -04:00
|
|
|
ValidationUploadedFiles::getValidationUploadedFiles()->dispatch(function($validator) {
|
2018-11-01 13:24:47 -04:00
|
|
|
throw new ExceptionRestApi($validator->getMessage());
|
2018-08-28 09:34:11 -04:00
|
|
|
});
|
2017-08-03 18:44:57 -04:00
|
|
|
$result = new stdClass();
|
|
|
|
|
$errors = '';
|
|
|
|
|
$fromConfirm = false;
|
|
|
|
|
|
|
|
|
|
$overWrite = isset( $_POST['form']['OVERWRITE'] ) ? true : false;
|
|
|
|
|
|
|
|
|
|
if (isset( $_POST["form"]["FROM_CONFIRM"] ) && ! empty( $_POST["form"]["FROM_CONFIRM"] )) {
|
|
|
|
|
$fromConfirm = $_POST["form"]["FROM_CONFIRM"];
|
|
|
|
|
$_FILES['form'] = $_SESSION['FILES_FORM'];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//save the file
|
|
|
|
|
if ($_FILES['form']['error']['FILENAME'] !== 0) {
|
|
|
|
|
throw new Exception( G::loadTranslation( 'ID_PMTABLE_UPLOADING_FILE_PROBLEM' ) );
|
|
|
|
|
}
|
|
|
|
|
$_SESSION['FILES_FORM'] = $_FILES['form'];
|
|
|
|
|
|
|
|
|
|
|
2017-10-10 12:33:25 -04:00
|
|
|
$PUBLIC_ROOT_PATH = PATH_DATA . 'sites' . PATH_SEP . config("system.workspace") . PATH_SEP . 'public' . PATH_SEP;
|
2017-08-03 18:44:57 -04:00
|
|
|
$filename = $_FILES['form']['name']['FILENAME'];
|
|
|
|
|
$tempName = $_FILES['form']['tmp_name']['FILENAME'];
|
|
|
|
|
|
|
|
|
|
if(!$fromConfirm) {
|
|
|
|
|
G::uploadFile( $tempName, $PUBLIC_ROOT_PATH, $filename );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ($fromConfirm == 'clear') {
|
|
|
|
|
$fromConfirm = true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$fileContent = file_get_contents( $PUBLIC_ROOT_PATH . $filename );
|
|
|
|
|
|
|
|
|
|
if (strpos( $fileContent, '-----== ProcessMaker Open Source Private Tables ==-----' ) === false) {
|
|
|
|
|
$result->success = false;
|
|
|
|
|
$result->errorType = 'notice';
|
|
|
|
|
$result->message = G::loadTranslation( 'ID_PMTABLE_INVALID_FILE', array ($filename));
|
|
|
|
|
return $result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$currentProUid = '';
|
|
|
|
|
if (isset( $_POST["form"]["PRO_UID_HELP"] ) && !empty($_POST["form"]["PRO_UID_HELP"])) {
|
|
|
|
|
$currentProUid = $_POST["form"]["PRO_UID_HELP"];
|
|
|
|
|
} else {
|
|
|
|
|
if(isset( $_POST["form"]["PRO_UID"]) && !empty( $_POST["form"]["PRO_UID"])){
|
|
|
|
|
$currentProUid = $_POST["form"]["PRO_UID"];
|
|
|
|
|
$_SESSION['PROCESS'] = $currentProUid;
|
|
|
|
|
} else{
|
|
|
|
|
$currentProUid = $_SESSION['PROCESS'];
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//Get Additional Tables
|
|
|
|
|
$arrayTableSchema = [];
|
|
|
|
|
$arrayTableData = [];
|
|
|
|
|
|
|
|
|
|
$f = fopen($PUBLIC_ROOT_PATH . $filename, 'rb');
|
|
|
|
|
|
|
|
|
|
$fdata = intval(fread($f, 9));
|
|
|
|
|
$type = fread($f, $fdata);
|
|
|
|
|
|
|
|
|
|
while (!feof($f)) {
|
|
|
|
|
switch ($type) {
|
|
|
|
|
case '@META':
|
|
|
|
|
$fdata = intval(fread($f, 9));
|
|
|
|
|
$metadata = fread($f, $fdata);
|
|
|
|
|
break;
|
|
|
|
|
case '@SCHEMA':
|
|
|
|
|
$fdataUid = intval(fread($f, 9));
|
|
|
|
|
$uid = fread($f, $fdataUid );
|
|
|
|
|
|
|
|
|
|
$fdata = intval(fread($f, 9));
|
|
|
|
|
$schema = fread($f, $fdata);
|
|
|
|
|
|
|
|
|
|
$arrayTableSchema[] = unserialize($schema);
|
|
|
|
|
break;
|
|
|
|
|
case '@DATA':
|
|
|
|
|
$fdata = intval(fread($f, 9));
|
|
|
|
|
$tableName = fread($f, $fdata);
|
|
|
|
|
|
|
|
|
|
$fdata = intval(fread($f, 9));
|
|
|
|
|
|
|
|
|
|
if ($fdata > 0) {
|
|
|
|
|
$data = fread($f, $fdata);
|
|
|
|
|
|
|
|
|
|
$arrayTableData[$tableName] = unserialize($data);
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$fdata = intval(fread($f, 9));
|
|
|
|
|
|
|
|
|
|
if ($fdata > 0) {
|
|
|
|
|
$type = fread($f, $fdata);
|
|
|
|
|
} else {
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fclose($f);
|
|
|
|
|
|
|
|
|
|
//First Validate the file
|
|
|
|
|
$reportTable = new \ProcessMaker\BusinessModel\ReportTable();
|
|
|
|
|
|
|
|
|
|
$arrayOverwrite = array();
|
|
|
|
|
$arrayRelated = array();
|
|
|
|
|
$arrayMessage = array();
|
|
|
|
|
$validationType = 0;
|
|
|
|
|
if(!$fromConfirm){
|
|
|
|
|
$aErrors = $reportTable->checkPmtFileThrowErrors(
|
|
|
|
|
$arrayTableSchema, $currentProUid, $fromAdmin, $overWrite, $_POST['form']['PRO_UID']
|
|
|
|
|
);
|
|
|
|
|
$countC = 0;
|
|
|
|
|
$countM = 0;
|
|
|
|
|
$countI = 0;
|
|
|
|
|
foreach($aErrors as $row){
|
|
|
|
|
if($row['ERROR_TYPE'] == ERROR_PM_TABLES_OVERWRITE || $row['ERROR_TYPE'] == ERROR_RP_TABLES_OVERWRITE){
|
|
|
|
|
$arrayOverwrite[$countC] = $row;
|
|
|
|
|
$countC++;
|
|
|
|
|
} else {
|
|
|
|
|
if($row['ERROR_TYPE'] == ERROR_OVERWRITE_RELATED_PROCESS){
|
|
|
|
|
$arrayRelated[$countI] = $row;
|
|
|
|
|
$countI++;
|
|
|
|
|
} else {
|
|
|
|
|
$arrayMessage[$countM] = $row;
|
|
|
|
|
$countM++;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if(sizeof($aErrors)){
|
|
|
|
|
$validationType = 1; //Yes no
|
|
|
|
|
throw new Exception(G::loadTranslation( 'ID_PMTABLE_IMPORT_WITH_ERRORS', array ($filename)));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
//Then create the tables
|
|
|
|
|
if(isset($_POST["form"]["TABLES_OF_NO"])){
|
|
|
|
|
$arrayOfNo = $_POST["form"]["TABLES_OF_NO"];
|
|
|
|
|
$arrayOfNew = $_POST["form"]["TABLES_OF_NEW"];
|
|
|
|
|
$aTablesCreateNew = explode('|',$arrayOfNew);
|
|
|
|
|
$aTablesNoCreate = explode('|',$arrayOfNo);
|
|
|
|
|
$errors = $reportTable->createStructureOfTables(
|
|
|
|
|
$arrayTableSchema,
|
|
|
|
|
$arrayTableData,
|
|
|
|
|
$currentProUid,
|
|
|
|
|
$fromAdmin,
|
|
|
|
|
true,
|
|
|
|
|
$aTablesNoCreate,
|
|
|
|
|
$aTablesCreateNew
|
|
|
|
|
);
|
|
|
|
|
} else {
|
|
|
|
|
$errors = $reportTable->createStructureOfTables(
|
|
|
|
|
$arrayTableSchema,
|
|
|
|
|
$arrayTableData,
|
|
|
|
|
$currentProUid,
|
|
|
|
|
$fromAdmin,
|
|
|
|
|
true
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ($errors == '') {
|
|
|
|
|
$result->success = true;
|
|
|
|
|
$msg = G::loadTranslation( 'ID_DONE' );
|
|
|
|
|
} else {
|
|
|
|
|
$result->success = false;
|
|
|
|
|
$result->errorType = 'warning';
|
|
|
|
|
$msg = G::loadTranslation( 'ID_PMTABLE_IMPORT_WITH_ERRORS', array ($filename) ) . "\n\n" . $errors;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$result->message = $msg;
|
2018-11-01 13:24:47 -04:00
|
|
|
} catch (ExceptionRestApi $e) {
|
2018-08-28 09:34:11 -04:00
|
|
|
$result = new stdClass();
|
|
|
|
|
$result->success = false;
|
|
|
|
|
$result->errorType = 'notice';
|
|
|
|
|
$result->message = $e->getMessage();
|
2017-08-03 18:44:57 -04:00
|
|
|
} catch (Exception $e) {
|
|
|
|
|
$result = new stdClass();
|
|
|
|
|
$result->fromAdmin = $fromAdmin;
|
|
|
|
|
$result->arrayMessage = $arrayMessage;
|
|
|
|
|
$result->arrayRelated = $arrayRelated;
|
|
|
|
|
$result->arrayOverwrite = $arrayOverwrite;
|
|
|
|
|
$result->validationType = $validationType;
|
|
|
|
|
$result->errorType = 'error';
|
|
|
|
|
$result->buildResult = ob_get_contents();
|
|
|
|
|
ob_end_clean();
|
|
|
|
|
$result->success = false;
|
|
|
|
|
|
|
|
|
|
// if it is a propel exception message
|
|
|
|
|
if (preg_match( '/(.*)\s\[(.*):\s(.*)\]\s\[(.*):\s(.*)\]/', $e->getMessage(), $match )) {
|
|
|
|
|
$result->message = $match[3];
|
|
|
|
|
$result->type = G::loadTranslation( 'ID_ERROR' );
|
|
|
|
|
} else {
|
|
|
|
|
$result->message = $e->getMessage();
|
|
|
|
|
$result->type = G::loadTranslation( 'ID_EXCEPTION' );
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return $result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Export PM tables
|
2018-05-30 07:58:13 -04:00
|
|
|
*
|
|
|
|
|
* @param object $httpData
|
|
|
|
|
* @return object
|
2017-08-03 18:44:57 -04:00
|
|
|
*/
|
2018-05-30 07:58:13 -04:00
|
|
|
public function export($httpData)
|
2017-08-03 18:44:57 -04:00
|
|
|
{
|
2018-05-30 07:58:13 -04:00
|
|
|
$additionalTables = new AdditionalTables();
|
|
|
|
|
$tablesToExport = G::json_decode(stripslashes($httpData->rows));
|
2017-08-03 18:44:57 -04:00
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
$result = new stdClass();
|
2018-05-30 07:58:13 -04:00
|
|
|
$net = new Net(G::getIpAddress());
|
|
|
|
|
$metaInfo = " \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: " . config("system.workspace") . "\n" . " @Export trace back:\n\n";
|
|
|
|
|
$exportTraceback = [];
|
|
|
|
|
|
2017-08-03 18:44:57 -04:00
|
|
|
foreach ($tablesToExport as $table) {
|
2018-06-18 12:40:59 -04:00
|
|
|
$numberRecords = 0;
|
2018-05-30 07:58:13 -04:00
|
|
|
if ($table->_DATA) {
|
|
|
|
|
$tableData = $additionalTables->getAllData($table->ADD_TAB_UID, null, null, false);
|
2018-06-18 12:40:59 -04:00
|
|
|
$numberRecords = $tableData['count'];
|
2018-05-30 07:58:13 -04:00
|
|
|
}
|
2018-06-18 12:40:59 -04:00
|
|
|
$tableRecord = $additionalTables->load($table->ADD_TAB_UID);
|
|
|
|
|
$table->ADD_TAB_NAME = $tableRecord['ADD_TAB_NAME'];
|
|
|
|
|
array_push($exportTraceback, [
|
|
|
|
|
'uid' => $table->ADD_TAB_UID,
|
|
|
|
|
'name' => $table->ADD_TAB_NAME,
|
|
|
|
|
'num_regs' => $numberRecords,
|
|
|
|
|
'schema' => $table->_SCHEMA ? 'yes' : 'no',
|
|
|
|
|
'data' => $table->_DATA ? 'yes' : 'no'
|
|
|
|
|
]);
|
2017-08-03 18:44:57 -04:00
|
|
|
}
|
|
|
|
|
|
2018-05-30 07:58:13 -04:00
|
|
|
$trace = "TABLE UID TABLE NAME\tREGS\tSCHEMA\tDATA\n";
|
|
|
|
|
foreach ($exportTraceback as $row) {
|
|
|
|
|
$trace .= "{$row['uid']}\t{$row['name']}\t\t{$row['num_regs']}\t{$row['schema']}\t{$row['data']}\n";
|
2017-08-03 18:44:57 -04:00
|
|
|
}
|
2018-05-30 07:58:13 -04:00
|
|
|
$metaInfo .= $trace;
|
2017-08-03 18:44:57 -04:00
|
|
|
|
2018-05-30 07:58:13 -04:00
|
|
|
//Export table
|
|
|
|
|
$publicPath = PATH_DATA . 'sites' . PATH_SEP . config("system.workspace") . PATH_SEP . 'public' . PATH_SEP;
|
|
|
|
|
$filenameOnly = strtolower('SYS-' . config("system.workspace") . "_" . date("Y-m-d") . '_' . date("Hi") . ".pmt");
|
|
|
|
|
$filename = $publicPath . $filenameOnly;
|
|
|
|
|
$fp = fopen($filename, "wb");
|
2017-08-03 18:44:57 -04:00
|
|
|
$bytesSaved = 0;
|
|
|
|
|
$bufferType = '@META';
|
2018-05-30 07:58:13 -04:00
|
|
|
$fsData = sprintf("%09d", strlen($metaInfo));
|
|
|
|
|
$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, $metaInfo); //writing the $oData
|
2017-08-03 18:44:57 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
foreach ($tablesToExport as $table) {
|
|
|
|
|
|
|
|
|
|
if ($table->_SCHEMA) {
|
2018-05-30 07:58:13 -04:00
|
|
|
//Export Schema
|
|
|
|
|
$pmTables = new AdditionalTables();
|
|
|
|
|
$aData = $pmTables->load($table->ADD_TAB_UID, true);
|
2017-08-03 18:44:57 -04:00
|
|
|
|
|
|
|
|
$bufferType = '@SCHEMA';
|
2018-05-30 07:58:13 -04:00
|
|
|
$dataTable = serialize($aData);
|
|
|
|
|
$fsUid = sprintf("%09d", strlen($table->ADD_TAB_UID));
|
|
|
|
|
$fsData = sprintf("%09d", strlen($dataTable));
|
|
|
|
|
$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, $dataTable); //writing the xmlfile
|
2017-08-03 18:44:57 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ($table->_DATA) {
|
2018-05-30 07:58:13 -04:00
|
|
|
//Export data
|
|
|
|
|
$pmTables = new additionalTables();
|
|
|
|
|
$tableData = $pmTables->getAllData($table->ADD_TAB_UID, null, null, false);
|
2017-08-03 18:44:57 -04:00
|
|
|
|
2018-05-30 07:58:13 -04:00
|
|
|
$dataTable = serialize($tableData['rows']);
|
2017-08-03 18:44:57 -04:00
|
|
|
$bufferType = '@DATA';
|
2018-05-30 07:58:13 -04:00
|
|
|
$fsbufferType = sprintf("%09d", strlen($bufferType));
|
|
|
|
|
$fsTableName = sprintf("%09d", strlen($table->ADD_TAB_NAME));
|
|
|
|
|
$fsData = sprintf("%09d", strlen($dataTable));
|
|
|
|
|
$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, $dataTable); //writing the xmlfile
|
2017-08-03 18:44:57 -04:00
|
|
|
}
|
2018-05-30 07:58:13 -04:00
|
|
|
|
|
|
|
|
G::auditLog("ExportTable", $table->ADD_TAB_NAME . " (" . $table->ADD_TAB_UID . ") ");
|
2017-08-03 18:44:57 -04:00
|
|
|
}
|
|
|
|
|
|
2018-05-30 07:58:13 -04:00
|
|
|
fclose($fp);
|
2017-08-03 18:44:57 -04:00
|
|
|
|
|
|
|
|
$filenameLink = "pmTables/streamExported?f=$filenameOnly";
|
2018-05-30 07:58:13 -04:00
|
|
|
$size = round(($bytesSaved / 1024), 2) . " Kb";
|
2017-08-03 18:44:57 -04:00
|
|
|
$link = $filenameLink;
|
|
|
|
|
|
|
|
|
|
$result->success = true;
|
|
|
|
|
$result->filename = $filenameOnly;
|
|
|
|
|
$result->link = $link;
|
|
|
|
|
$result->message = "Generated file: $filenameOnly, size: $size";
|
|
|
|
|
} catch (Exception $e) {
|
|
|
|
|
$result = new stdClass();
|
|
|
|
|
$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
|
|
|
|
|
*
|
2019-05-15 21:12:33 -04:00
|
|
|
* @param array $row
|
|
|
|
|
* @param array $primaryKeys
|
|
|
|
|
* @return boolean
|
|
|
|
|
* @throws Exception
|
|
|
|
|
*
|
|
|
|
|
* @see workflow/engine/controllers/pmTablesProxy::dataUpdate()
|
|
|
|
|
* @link https://wiki.processmaker.com/3.2/PM_Tables
|
2017-08-03 18:44:57 -04:00
|
|
|
*/
|
2019-05-15 21:12:33 -04:00
|
|
|
public function _dataUpdate($row, $primaryKeys)
|
2017-08-03 18:44:57 -04:00
|
|
|
{
|
2019-05-15 21:12:33 -04:00
|
|
|
$keys = G::decrypt($row['__index__'], 'pmtable');
|
|
|
|
|
$keys = explode(',', $keys);
|
|
|
|
|
unset($row['__index__']);
|
2017-08-03 18:44:57 -04:00
|
|
|
|
2019-05-15 21:12:33 -04:00
|
|
|
$params = [];
|
2017-08-03 18:44:57 -04:00
|
|
|
|
|
|
|
|
foreach ($keys as $key) {
|
2019-05-15 21:12:33 -04:00
|
|
|
$params[] = is_int($key) ? (int)$key : (string)$key;
|
2017-08-03 18:44:57 -04:00
|
|
|
}
|
|
|
|
|
|
2019-05-15 21:12:33 -04:00
|
|
|
$className = $this->classPeerName;
|
|
|
|
|
$obj = call_user_func_array($className . "::retrieveByPk", $params);
|
|
|
|
|
if (is_object($obj)) {
|
2017-08-03 18:44:57 -04:00
|
|
|
foreach ($row as $key => $value) {
|
|
|
|
|
// validation, don't modify primary keys
|
2019-05-15 21:12:33 -04:00
|
|
|
if (in_array($key, $primaryKeys)) {
|
|
|
|
|
throw new Exception(G::loadTranslation('ID_DONT_MODIFY_PK_VALUE', [
|
|
|
|
|
$key
|
|
|
|
|
]));
|
2017-08-03 18:44:57 -04:00
|
|
|
}
|
2019-05-15 21:12:33 -04:00
|
|
|
$action = 'set' . AdditionalTables::getPHPName($key);
|
|
|
|
|
$obj->$action($value);
|
2017-08-03 18:44:57 -04:00
|
|
|
}
|
|
|
|
|
if ($r = $obj->validate()) {
|
|
|
|
|
$obj->save();
|
|
|
|
|
$result = true;
|
|
|
|
|
} else {
|
|
|
|
|
$msg = '';
|
|
|
|
|
foreach ($obj->getValidationFailures() as $objValidationFailure) {
|
|
|
|
|
$msg .= $objValidationFailure->getMessage() . "\n";
|
|
|
|
|
}
|
2019-05-15 21:12:33 -04:00
|
|
|
throw new Exception($msg);
|
2017-08-03 18:44:57 -04:00
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
$result = false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return $result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Update data from a addTable record
|
|
|
|
|
*
|
2019-05-15 21:12:33 -04:00
|
|
|
* @param array $row
|
|
|
|
|
* @return boolean
|
|
|
|
|
* @see workflow/engine/controllers/pmTablesProxy::dataDestroy()
|
|
|
|
|
* @link https://wiki.processmaker.com/3.2/PM_Tables
|
2017-08-03 18:44:57 -04:00
|
|
|
*/
|
2019-05-15 21:12:33 -04:00
|
|
|
public function _dataDestroy($row)
|
2017-08-03 18:44:57 -04:00
|
|
|
{
|
2019-05-15 21:12:33 -04:00
|
|
|
$row = G::decrypt($row, 'pmtable');
|
|
|
|
|
$row = str_replace('"', '', $row);
|
|
|
|
|
$keys = explode(',', $row);
|
|
|
|
|
$params = [];
|
2017-08-03 18:44:57 -04:00
|
|
|
foreach ($keys as $key) {
|
2019-05-15 21:12:33 -04:00
|
|
|
$params[] = is_int($key) ? (int)$key : (string)$key;
|
2017-08-03 18:44:57 -04:00
|
|
|
}
|
|
|
|
|
|
2019-05-15 21:12:33 -04:00
|
|
|
$className = $this->classPeerName;
|
|
|
|
|
$obj = call_user_func_array($className . "::retrieveByPk", $params);
|
2017-08-03 18:44:57 -04:00
|
|
|
|
2019-05-15 21:12:33 -04:00
|
|
|
if (is_object($obj)) {
|
2017-08-03 18:44:57 -04:00
|
|
|
$obj->delete();
|
|
|
|
|
return true;
|
|
|
|
|
} else {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-03-23 18:22:04 +00:00
|
|
|
/**
|
|
|
|
|
* It eliminates and generates the data report from the cases of a process.
|
|
|
|
|
*
|
|
|
|
|
* @param object $httpData
|
|
|
|
|
* @return object
|
|
|
|
|
*/
|
|
|
|
|
public function genDataReport($httpData)
|
2017-08-03 18:44:57 -04:00
|
|
|
{
|
|
|
|
|
$result = new stdClass();
|
|
|
|
|
|
|
|
|
|
$result->message = '';
|
|
|
|
|
$result->success = true;
|
|
|
|
|
|
|
|
|
|
$additionalTables = new AdditionalTables();
|
2018-03-23 18:22:04 +00:00
|
|
|
$table = $additionalTables->load($httpData->id);
|
|
|
|
|
|
|
|
|
|
if (!empty($table) && $table['PRO_UID'] != '') {
|
|
|
|
|
try {
|
|
|
|
|
$additionalTables->populateReportTable($table['ADD_TAB_NAME'], PmTable::resolveDbSource($table['DBS_UID']), $table['ADD_TAB_TYPE'], $table['PRO_UID'], $table['ADD_TAB_GRID'], $table['ADD_TAB_UID']);
|
|
|
|
|
$result->message = 'Generated for table ' . $table['ADD_TAB_NAME'];
|
|
|
|
|
} catch (Exception $e) {
|
|
|
|
|
$context = Bootstrap::getDefaultContextLog();
|
|
|
|
|
$context['proUid'] = $table['PRO_UID'];
|
|
|
|
|
$context['tableName'] = $table['ADD_TAB_NAME'];
|
|
|
|
|
$context['message'] = $e->getMessage();
|
|
|
|
|
Bootstrap::registerMonolog('dataReport', 500, 'Generation of data report could not be completed', $context, $context['workspace'], 'processmaker.log');
|
2017-08-03 18:44:57 -04:00
|
|
|
|
2018-03-23 18:22:04 +00:00
|
|
|
$result->message = 'Generation of data report could not be completed. Please check the processmaker.log for more details.';
|
|
|
|
|
$result->success = false;
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
$result->message = 'Unable to retrieve the table for this id: ' . $httpData->id . '.';
|
|
|
|
|
$result->success = false;
|
|
|
|
|
}
|
2017-08-03 18:44:57 -04:00
|
|
|
return $result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Get all dynaform fields from a process (without grid fields)
|
|
|
|
|
*
|
|
|
|
|
* @param $proUid
|
|
|
|
|
* @param $type [values:xmlform/grid]
|
|
|
|
|
*/
|
|
|
|
|
public 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;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public 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) || (isset( $_SESSION['_cache_pmtables'] ) && $_SESSION['_cache_pmtables']['dyn_uid'] != $this->dynUid)) {
|
|
|
|
|
|
|
|
|
|
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 ('multipleFile','title','subtitle','link','file','button','reset','submit','listbox','checkgroup','grid','javascript','location','scannerCode','array'
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
$labelFieldsTypeList = array ('dropdown','radiogroup');
|
|
|
|
|
|
|
|
|
|
$index = 0;
|
|
|
|
|
|
|
|
|
|
while ($aRow = $oDataset->getRow()) {
|
|
|
|
|
if (file_exists( PATH_DYNAFORM . PATH_SEP . $aRow['DYN_FILENAME'] . '.xml' )) {
|
2017-08-08 16:45:49 -04:00
|
|
|
$dynaformHandler = new DynaformHandler( PATH_DYNAFORM . $aRow['DYN_FILENAME'] . '.xml' );
|
2017-08-03 18:44:57 -04:00
|
|
|
$nodeFieldsList = $dynaformHandler->getFields();
|
|
|
|
|
|
|
|
|
|
foreach ($nodeFieldsList as $node) {
|
|
|
|
|
$arrayNode = $dynaformHandler->getArray( $node );
|
|
|
|
|
$fieldName = $arrayNode['__nodeName__'];
|
|
|
|
|
$fieldType = isset($arrayNode['type']) ? $arrayNode['type']: '';
|
|
|
|
|
$fieldValidate = ( isset($arrayNode['validate'])) ? $arrayNode['validate'] : '';
|
|
|
|
|
|
|
|
|
|
if (! in_array( $fieldType, $excludeFieldsList ) && ! in_array( $fieldName, $fieldsNames ) ) {
|
|
|
|
|
$fields[] = array (
|
|
|
|
|
'FIELD_UID' => $fieldName . '-' . $fieldType,
|
|
|
|
|
'FIELD_NAME' => $fieldName,
|
|
|
|
|
'FIELD_VALIDATE'=>$fieldValidate,
|
|
|
|
|
'_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',
|
|
|
|
|
'FIELD_VALIDATE'=>$fieldValidate,
|
|
|
|
|
'_index' => $index ++,
|
|
|
|
|
'_isset' => true
|
|
|
|
|
);
|
|
|
|
|
$fieldsNames[] = $fieldName;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
$oDataset->next();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// getting bpmn projects
|
|
|
|
|
$bpmn = new \ProcessMaker\Project\Bpmn();
|
|
|
|
|
|
|
|
|
|
if ($bpmn->exists($proUid)) {
|
|
|
|
|
switch ($type) {
|
|
|
|
|
case 'xmlform':
|
|
|
|
|
$arrayDataTypeToExclude = ['array', 'grid'];
|
|
|
|
|
$arrayTypeToExclude = ['multipleFile', 'title', 'subtitle', 'link', 'file', 'button', 'reset', 'submit', 'listbox', 'grid', 'array', 'javascript', 'location', 'scannerCode'];
|
|
|
|
|
|
|
|
|
|
$arrayControlSupported = [];
|
|
|
|
|
|
|
|
|
|
$dynaformAllControl = $this->getDynaformVariables($proUid, $arrayTypeToExclude, true, 'DATA');
|
|
|
|
|
|
|
|
|
|
foreach ($dynaformAllControl as $value) {
|
|
|
|
|
$arrayControl = array_change_key_case($value, CASE_UPPER);
|
|
|
|
|
|
|
|
|
|
if (isset($arrayControl['DATATYPE']) && isset($arrayControl['TYPE'])) {
|
|
|
|
|
if (!in_array($arrayControl['DATATYPE'], $arrayDataTypeToExclude) &&
|
|
|
|
|
!in_array($arrayControl['TYPE'], $arrayTypeToExclude)
|
|
|
|
|
) {
|
|
|
|
|
$arrayControlSupported[$arrayControl['VAR_UID']] = $arrayControl['TYPE'];
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$dynaformNotAllowedVariables = $this->getDynaformVariables($proUid, $arrayTypeToExclude, false);
|
|
|
|
|
|
|
|
|
|
$criteria = new Criteria('workflow');
|
|
|
|
|
|
|
|
|
|
$criteria->addSelectColumn(ProcessVariablesPeer::VAR_UID);
|
|
|
|
|
$criteria->addSelectColumn(ProcessVariablesPeer::VAR_NAME);
|
|
|
|
|
$criteria->addSelectColumn(ProcessVariablesPeer::VAR_FIELD_TYPE);
|
|
|
|
|
$criteria->add(ProcessVariablesPeer::PRJ_UID, $proUid, Criteria::EQUAL);
|
|
|
|
|
|
|
|
|
|
$rsCriteria = ProcessVariablesPeer::doSelectRS($criteria);
|
|
|
|
|
$rsCriteria->setFetchmode(ResultSet::FETCHMODE_ASSOC);
|
|
|
|
|
|
|
|
|
|
$index = 0;
|
|
|
|
|
|
|
|
|
|
while ($rsCriteria->next()) {
|
|
|
|
|
$record = $rsCriteria->getRow();
|
|
|
|
|
|
|
|
|
|
if (!in_array($record['VAR_NAME'], $dynaformNotAllowedVariables) &&
|
|
|
|
|
!in_array($record['VAR_FIELD_TYPE'], $arrayTypeToExclude) &&
|
|
|
|
|
!in_array($record['VAR_NAME'], $fieldsNames)
|
|
|
|
|
) {
|
|
|
|
|
$fields[] = [
|
|
|
|
|
'FIELD_UID' => $record['VAR_NAME'] . '-' . $record['VAR_FIELD_TYPE'],
|
|
|
|
|
'FIELD_NAME' => $record['VAR_NAME'],
|
|
|
|
|
'FIELD_VALIDATE' => 'any',
|
|
|
|
|
'_index' => $index++,
|
|
|
|
|
'_isset' => true
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
$fieldsNames[] = $record['VAR_NAME'];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (isset($arrayControlSupported[$record['VAR_UID']]) &&
|
|
|
|
|
!in_array($record['VAR_NAME'] . '_label', $fieldsNames)
|
|
|
|
|
) {
|
|
|
|
|
$fields[] = [
|
|
|
|
|
'FIELD_UID' => $record['VAR_NAME'] . '_label' . '-' . $arrayControlSupported[$record['VAR_UID']],
|
|
|
|
|
'FIELD_NAME' => $record['VAR_NAME'] . '_label',
|
|
|
|
|
'FIELD_VALIDATE' => 'any',
|
|
|
|
|
'_index' => $index++,
|
|
|
|
|
'_isset' => true
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
$fieldsNames[] = $record['VAR_NAME'] . '_label';
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case 'grid':
|
|
|
|
|
$dynaForm = new \ProcessMaker\BusinessModel\DynaForm();
|
|
|
|
|
|
|
|
|
|
$dynaFormUid = $this->dynUid;
|
|
|
|
|
$gridId = $this->gridId;
|
|
|
|
|
|
|
|
|
|
$arrayDynaFormData = $dynaForm->getDynaFormRecordByPk($dynaFormUid, [], false);
|
|
|
|
|
|
|
|
|
|
if ($arrayDynaFormData !== false) {
|
2017-08-11 15:49:39 -04:00
|
|
|
$arrayGrid = PmDynaform::getGridsAndFields($arrayDynaFormData['DYN_CONTENT']);
|
2017-08-03 18:44:57 -04:00
|
|
|
|
|
|
|
|
if ($arrayGrid !== false && isset($arrayGrid[$gridId])) {
|
|
|
|
|
$grid = $arrayGrid[$gridId];
|
|
|
|
|
|
|
|
|
|
$arrayValidTypes = [
|
|
|
|
|
'text' => ['type' => 'text', 'label' => false],
|
|
|
|
|
'textarea' => ['type' => 'textarea', 'label' => false],
|
|
|
|
|
'dropdown' => ['type' => 'dropdown', 'label' => true],
|
|
|
|
|
'checkbox' => ['type' => 'checkbox', 'label' => false],
|
|
|
|
|
'datetime' => ['type' => 'date', 'label' => false],
|
|
|
|
|
'suggest' => ['type' => 'suggest', 'label' => false],
|
|
|
|
|
'hidden' => ['type' => 'hidden', 'label' => false]
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
$index = 0;
|
|
|
|
|
|
|
|
|
|
foreach ($grid->columns as $value) {
|
|
|
|
|
$field = $value;
|
|
|
|
|
|
|
|
|
|
if (isset($field->type) && isset($arrayValidTypes[$field->type]) &&
|
|
|
|
|
isset($field->id) && $field->id != '' && isset($field->name) && $field->name != ''
|
|
|
|
|
) {
|
|
|
|
|
if (!in_array($field->id, $fieldsNames)) {
|
|
|
|
|
$fields[] = [
|
|
|
|
|
'FIELD_UID' => $field->id . '-' . $arrayValidTypes[$field->type]['type'],
|
|
|
|
|
'FIELD_NAME' => $field->id,
|
|
|
|
|
'FIELD_VALIDATE' => 'any',
|
|
|
|
|
'_index' => $index++,
|
|
|
|
|
'_isset' => true
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
$fieldsNames[] = $field->id;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ($arrayValidTypes[$field->type]['label'] &&
|
|
|
|
|
!in_array($field->id . '_label', $fieldsNames)
|
|
|
|
|
) {
|
|
|
|
|
$fields[] = [
|
|
|
|
|
'FIELD_UID' => $field->id . '_label' . '-' . $arrayValidTypes[$field->type]['type'],
|
|
|
|
|
'FIELD_NAME' => $field->id . '_label',
|
|
|
|
|
'FIELD_VALIDATE' => 'any',
|
|
|
|
|
'_index' => $index++,
|
|
|
|
|
'_isset' => true
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
$fieldsNames[] = $field->id . '_label';
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
|
|
$indexes = array();
|
|
|
|
|
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']['dyn_uid'] = $this->dynUid;
|
|
|
|
|
$_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
|
|
|
|
|
*/
|
|
|
|
|
public 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
|
|
|
|
|
*/
|
|
|
|
|
public function _getGridFields ($proUid)
|
|
|
|
|
{
|
|
|
|
|
try {
|
|
|
|
|
|
|
|
|
|
$bpmn = new \ProcessMaker\Project\Bpmn();
|
|
|
|
|
$flagIsBpmn = $bpmn->exists($proUid);
|
|
|
|
|
|
|
|
|
|
$arrayField = [];
|
|
|
|
|
$arrayFieldName = [];
|
|
|
|
|
|
|
|
|
|
$delimiter = DBAdapter::getStringDelimiter();
|
|
|
|
|
|
|
|
|
|
$criteria = new Criteria('workflow');
|
|
|
|
|
|
|
|
|
|
$criteria->addSelectColumn(DynaformPeer::DYN_UID);
|
|
|
|
|
$criteria->addSelectColumn(DynaformPeer::DYN_FILENAME);
|
|
|
|
|
$criteria->addSelectColumn(DynaformPeer::DYN_CONTENT);
|
|
|
|
|
$criteria->addSelectColumn(DynaformPeer::DYN_TITLE);
|
|
|
|
|
$criteria->add(DynaformPeer::PRO_UID, $proUid, Criteria::EQUAL);
|
|
|
|
|
$criteria->add(DynaformPeer::DYN_TYPE, 'xmlform', Criteria::EQUAL);
|
|
|
|
|
|
|
|
|
|
$rsCriteria = DynaformPeer::doSelectRS($criteria);
|
|
|
|
|
$rsCriteria->setFetchmode(ResultSet::FETCHMODE_ASSOC);
|
|
|
|
|
|
|
|
|
|
while ($rsCriteria->next()) {
|
|
|
|
|
$record = $rsCriteria->getRow();
|
|
|
|
|
|
|
|
|
|
if ($flagIsBpmn) {
|
2017-08-11 15:49:39 -04:00
|
|
|
$arrayGrid = PmDynaform::getGridsAndFields($record['DYN_CONTENT']);
|
2017-08-03 18:44:57 -04:00
|
|
|
|
|
|
|
|
if ($arrayGrid !== false) {
|
|
|
|
|
foreach ($arrayGrid as $value) {
|
|
|
|
|
$grid = $value;
|
|
|
|
|
|
|
|
|
|
$arrayField[] = [
|
|
|
|
|
'uid' => $record['DYN_UID'], //dynaFormUid
|
|
|
|
|
'gridId' => $grid->id,
|
|
|
|
|
'gridName' => $grid->id . ' (' . $record['DYN_TITLE'] . ')'
|
|
|
|
|
];
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
} else {
|
2017-08-08 16:45:49 -04:00
|
|
|
$dynaformHandler = new DynaformHandler(PATH_DYNAFORM . $record['DYN_FILENAME'] . '.xml');
|
2017-08-03 18:44:57 -04:00
|
|
|
$nodeFieldsList = $dynaformHandler->getFields();
|
|
|
|
|
|
|
|
|
|
foreach ($nodeFieldsList as $node) {
|
|
|
|
|
$arrayNode = $dynaformHandler->getArray($node);
|
|
|
|
|
$fieldName = $arrayNode['__nodeName__'];
|
|
|
|
|
$fieldType = $arrayNode['type'];
|
|
|
|
|
|
|
|
|
|
if ($fieldType == 'grid') {
|
|
|
|
|
if (!in_array($fieldName, $arrayFieldName)) {
|
|
|
|
|
$arrayField[] = [
|
|
|
|
|
'uid' => str_replace($proUid . '/', '', $arrayNode['xmlgrid']), //dynaFormUid (Grid)
|
|
|
|
|
'gridId' => $fieldName,
|
|
|
|
|
'gridName' => $fieldName
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
$arrayFieldName[] = $fieldName;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//Return
|
|
|
|
|
return $arrayField;
|
|
|
|
|
} catch (Exception $e) {
|
|
|
|
|
throw $e;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Get all dynaform variables
|
|
|
|
|
*
|
|
|
|
|
* @param $sProcessUID
|
|
|
|
|
*/
|
|
|
|
|
public function getDynaformVariables($sProcessUID, $excludeFieldsList, $allowed = true, $option = "VARIABLE")
|
|
|
|
|
{
|
|
|
|
|
$dynaformVariables = array();
|
|
|
|
|
$oC = new Criteria( 'workflow' );
|
|
|
|
|
$oC->addSelectColumn( DynaformPeer::DYN_CONTENT );
|
|
|
|
|
$oC->add( DynaformPeer::PRO_UID, $sProcessUID );
|
|
|
|
|
$oData = DynaformPeer::doSelectRS( $oC );
|
|
|
|
|
$oData->setFetchmode( ResultSet::FETCHMODE_ASSOC );
|
|
|
|
|
$oData->next();
|
|
|
|
|
while ($aRowd = $oData->getRow()) {
|
|
|
|
|
$dynaform = G::json_decode($aRowd['DYN_CONTENT'],true);
|
|
|
|
|
if(is_array($dynaform) && sizeof($dynaform)) {
|
|
|
|
|
$items = $dynaform['items'][0]['items'];
|
|
|
|
|
foreach($items as $key => $val){
|
|
|
|
|
foreach($val as $column) {
|
|
|
|
|
if($allowed) {
|
|
|
|
|
if(isset($column['type']) && !in_array( $column['type'], $excludeFieldsList )){
|
|
|
|
|
switch ($option) {
|
|
|
|
|
case "VARIABLE":
|
|
|
|
|
if (array_key_exists("variable", $column)) {
|
|
|
|
|
if($column["variable"] != "") {
|
|
|
|
|
$dynaformVariables[] = $column["variable"];
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case "DATA":
|
|
|
|
|
$dynaformVariables[] = $column;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
if(isset($column['type']) && in_array( $column['type'], $excludeFieldsList )){
|
|
|
|
|
switch ($option) {
|
|
|
|
|
case "VARIABLE":
|
|
|
|
|
if (array_key_exists("variable", $column)) {
|
|
|
|
|
if($column["variable"] != "") {
|
|
|
|
|
$dynaformVariables[] = $column["variable"];
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case "DATA":
|
|
|
|
|
$dynaformVariables[] = $column;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
$oData->next();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ($option == "VARIABLE") {
|
|
|
|
|
return array_unique($dynaformVariables);
|
|
|
|
|
} else {
|
|
|
|
|
return $dynaformVariables;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|