Files
luos/workflow/engine/methods/cases/casesGenerateDocumentPage_Ajax.php

137 lines
4.7 KiB
PHP
Raw Normal View History

<?php
/**
* casesGenerateDocumentPage_Ajax.php
*
* ProcessMaker Open Source Edition
* Copyright (C) 2004 - 2008 Colosa Inc.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* For more information, contact Colosa Inc, 2566 Le Jeune Rd.,
* Coral Gables, FL, 33134, USA, or email info@colosa.com.
*/
2017-12-04 13:25:35 +00:00
$actionAjax = isset($_REQUEST['actionAjax']) ? $_REQUEST['actionAjax'] : null;
2017-12-04 13:25:35 +00:00
function casesShowOuputDocumentExist($url)
{
2017-12-04 13:25:35 +00:00
$urlArray = explode("?", $url);
$urlParametroString = $urlArray[1];
2017-12-04 13:25:35 +00:00
parse_str($urlParametroString, $_GET);
2017-12-04 13:25:35 +00:00
require_once("classes/model/AppDocumentPeer.php");
$oAppDocument = new AppDocument();
2017-12-04 13:25:35 +00:00
$oAppDocument->Fields = $oAppDocument->load($_GET['a'], (isset($_GET['v'])) ? $_GET['v'] : null);
$sAppDocUid = $oAppDocument->getAppDocUid();
2017-12-04 13:25:35 +00:00
$info = pathinfo($oAppDocument->getAppDocFilename());
if (! isset($_GET['ext'])) {
$ext = $info['extension'];
} else {
if ($_GET['ext'] != '') {
$ext = $_GET['ext'];
} else {
$ext = $info['extension'];
}
}
2017-12-04 13:25:35 +00:00
$ver = (isset($_GET['v']) && $_GET['v'] != '') ? '_' . $_GET['v'] : '';
if (! $ver) {
//This code is in the case the outputdocument won't be versioned
$ver = '_1';
}
$realPath = PATH_DOCUMENT . G::getPathFromUID($oAppDocument->Fields['APP_UID']) . '/outdocs/' . $sAppDocUid . $ver . '.' . $ext;
$realPath1 = PATH_DOCUMENT . G::getPathFromUID($oAppDocument->Fields['APP_UID']) . '/outdocs/' . $info['basename'] . $ver . '.' . $ext;
$realPath2 = PATH_DOCUMENT . G::getPathFromUID($oAppDocument->Fields['APP_UID']) . '/outdocs/' . $info['basename'] . '.' . $ext;
$sw_file_exists = false;
2017-12-04 13:25:35 +00:00
if (file_exists($realPath)) {
$sw_file_exists = true;
2017-12-04 13:25:35 +00:00
} elseif (file_exists($realPath1)) {
$sw_file_exists = true;
$realPath = $realPath1;
2017-12-04 13:25:35 +00:00
} elseif (file_exists($realPath2)) {
$sw_file_exists = true;
$realPath = $realPath2;
}
$swFileExist = 0;
if ($sw_file_exists) {
$swFileExist = 1;
}
return $swFileExist;
}
if ($actionAjax == 'casesGenerateDocumentPage') {
global $G_PUBLISH;
2017-12-04 13:25:35 +00:00
$oHeadPublisher = headPublisher::getSingleton();
$conf = new Configurations();
2017-12-04 13:25:35 +00:00
$oHeadPublisher->addExtJsScript('cases/casesGenerateDocumentPage', true); //adding a javascript file .js
$oHeadPublisher->addContent('cases/casesGenerateDocumentPage'); //adding a html file .html.
$oHeadPublisher->assign("FORMATS", $conf->getFormats());
2017-12-04 13:25:35 +00:00
$oHeadPublisher->assign('pageSize', $conf->getEnvSetting('casesListRowNumber'));
G::RenderPage('publish', 'extJs');
}
if ($actionAjax == 'generateDocumentGrid_Ajax') {
global $G_PUBLISH;
$oCase = new Cases();
2017-12-04 13:25:35 +00:00
$aProcesses = array();
$G_PUBLISH = new Publisher();
2017-12-04 13:25:35 +00:00
$c = $oCase->getAllGeneratedDocumentsCriteria($_SESSION['PROCESS'], $_SESSION['APPLICATION'], $_SESSION['TASK'], $_SESSION['USER_LOGGED']);
if ($c->getDbName() == 'dbarray') {
2017-12-04 13:25:35 +00:00
$rs = ArrayBasePeer::doSelectRs($c);
} else {
2017-12-04 13:25:35 +00:00
$rs = GulliverBasePeer::doSelectRs($c);
}
2017-12-04 13:25:35 +00:00
$rs->setFetchmode(ResultSet::FETCHMODE_ASSOC);
$rs->next();
$totalCount = 0;
for ($j = 0; $j < $rs->getRecordCount(); $j ++) {
$result = $rs->getRow();
2017-12-04 13:25:35 +00:00
$result["FILEDOCEXIST"] = casesShowOuputDocumentExist($result["FILEDOC"]);
$result["FILEPDFEXIST"] = casesShowOuputDocumentExist($result["FILEPDF"]);
$aProcesses[] = $result;
$rs->next();
$totalCount ++;
}
//!dateFormat
$conf = new Configurations();
try {
2017-12-04 13:25:35 +00:00
$generalConfCasesList = $conf->getConfiguration('ENVIRONMENT_SETTINGS', '');
} catch (Exception $e) {
2017-12-04 13:25:35 +00:00
$generalConfCasesList = array();
}
$dateFormat = "";
2017-12-04 13:25:35 +00:00
if (isset($generalConfCasesList['casesListDateFormat']) && ! empty($generalConfCasesList['casesListDateFormat'])) {
$dateFormat = $generalConfCasesList['casesListDateFormat'];
}
$newDir = '/tmp/test/directory';
2017-12-04 13:25:35 +00:00
$r = G::verifyPath($newDir);
$r->data = $aProcesses;
$r->totalCount = $totalCount;
$r->dataFormat = $dateFormat;
2017-12-04 13:25:35 +00:00
echo G::json_encode($r);
}