| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250 |
- <?php
- Lib::loadClass('RouteBase');
- Lib::loadClass('UI');
- Lib::loadClass('DBG');
- /**
- * Executes ant build for dita file - creates pdf file
- * - ant build in SE/schema/ant-url_action/{object_namespace_to_file_path}/{function_name}/build.xml
- *
- * APP_PATH_SCHEMA . '/ant-url_action/' . {$namespace_sep_by_dot} . '/' . {$function_name} . '/build.xml'
- * APP_PATH_SCHEMA . '/ant-tool/' . {$ant_tool_name} . '/build.xml'
- *
- * usage:
- * index.php?_route=Ant
- * index.php?_route=Ant&_task=ant&path={$ant_tool_name}
- * index.php?_route=UrlAction_Ant
- * index.php?_route=UrlAction_Ant&_task=ant&path={$namespace_sep_by_dot}{$function_name}&featureID={featureID}&namespace={$namespace}
- *
- * @doc ant <exec> https://ant.apache.org/manual/Tasks/exec.html
- */
- class Route_Ant extends RouteBase {
- public $pathTools;
- public $pathUrlActions;
- public $antBin;
- public $_antUrlProjects;
- public $_antUrlProjectTemplates;
- public function __construct() {
- $this->pathTools = APP_PATH_SCHEMA . "/ant-tool/";
- $this->pathUrlActions = APP_PATH_SCHEMA . "/ant-url_action/";
- $this->antBin = APP_PATH_WWW . DS . 'stuff' . DS . 'dita-ot-2.3.3' . DS . 'bin' . DS . 'ant';
- $this->_antUrlProjects = [];// path => label
- $this->_antUrlProjectTemplates = [];// path => [ template => label ]
- }
- public function defaultAction() {
- UI::gora();
- UI::tag('h1', [], 'Ant');
- try {
- $taskList = $this->getAntToolList();
- DBG::nicePrint($taskList, 'ant-tool');
- $featureID = V::get('featureID', '', $_GET);
- $namespace = V::get('namespace', '', $_GET);
- UI::startTag('ul');
- foreach ($taskList as $path => $label) {
- $link = "index.php?_route=Ant&_task=ant&path={$path}";
- echo UI::h('li', [], [
- UI::h('a', ['href'=>$link], "Uruchom '{$label}'")
- ]);
- }
- UI::endTag('ul');
- } catch (Exception $e) {
- UI::alert('danger', $e->getMessage());
- DBG::log($e);
- }
- UI::dol();
- }
- public function antAction() {
- UI::gora();
- try {
- $path = V::get('path', '', $_GET);
- if (!$path) throw new Exception("Missing Ant path!");
- $taskList = $this->getAntToolList();
- if (!array_key_exists($path, $taskList)) throw new Exception("Ant path not exists! '{$path}'");
- $cmd = "cd {$this->pathTools}{$path} && {$this->antBin} 2>&1";// wymaga java jdk
- V::exec($cmd, $out, $ret);
- } catch (Exception $e) {
- UI::alert('danger', $e->getMessage());
- DBG::log($e);
- }
- UI::dol();
- }
- public function execAntTool($antTask) {
- $antList = $this->getAntToolList();
- if (!array_key_exists($antTask, $antList)) throw new Exception("ant task not found", 404);
- throw new Exception("TODO: run ant task '{$antTask}'", 501);
- }
- //todo headery xml itp - aby szly z anta do tej funkcji i wysylane byly przez php
- // /SE/ant.php?antTask=$ jakas nazwa z ant_tool
- //ant ogolne
- //
- public function getAntUrlActionList() {
- if (!empty($this->_antUrlProjects)) return $this->_antUrlProjects;
- V::exec("ls -1 {$this->pathUrlActions}*/*/build.xml", $out, $ret);
- $this->_antUrlProjects = array();
- foreach ($out as $line) {
- try {
- if ($this->pathUrlActions != substr($line, 0, strlen($this->pathUrlActions))) throw new Exception("Wrong line prefix '{$line}' - skip");
- if ('/build.xml' != substr($line, -1 * strlen('/build.xml'))) throw new Exception("Wrong line suffix '{$line}' - expected '/build.xml' - skip");
- } catch (Exception $e) {
- UI::alert('warning', $e->getMessage());
- continue;
- }
- $line = substr($line, strlen($this->pathUrlActions));
- $path = substr($line, 0, -1 * strlen('/build.xml'));
- $this->_antUrlProjects[$path] = $path;
- try {
- V::exec("cd {$this->pathUrlActions}/{$path} && ant -p|grep -v '^Unable to locate'|grep -v '^Buildfile:'", $out, $ret);
- // Test WFS for actions given featureID // TODO: first line - project description
- // Main targets:
- //
- // DescribeFeatureType URL_TASK Target DescribeFeatureType
- // GetFeature URL_TASK Target GetFeature
- // Default target: http_first_input
- if (!empty($out)) {
- $projectDesc = '';
- $templates = [];
- $state = 'projectDesc';// 'projectDesc', 'Main targets', 'Default target'
- foreach ($out as $line) {
- switch ($state) {
- case 'projectDesc': {
- if ('Main targets' == substr($line, 0, strlen('Main targets'))) {
- $state = 'Main targets';
- } else {
- $line = trim($line);
- if (!$projectDesc && $line) $projectDesc = $line;
- }
- } break;
- case 'Main targets': {
- if (false !== ($pos = strpos($line, 'URL_TASK'))) {
- $templateName = trim(substr($line, 0, $pos));
- $label = trim(substr($line, $pos + 9));
- if (!empty($templateName)) $templates[$templateName] = (!empty($label)) ? $label : $templateName;
- }
- if ('Default target' == substr($line, 0, strlen('Default target'))) {
- $state = 'Default target';
- }
- } break;
- }
- }
- if (!empty($projectDesc)) $this->_antUrlProjects[$path] = $projectDesc;
- if (!empty($templates)) foreach ($templates as $t => $l) $this->_antUrlProjectTemplates[$path][$t] = $l;
- }
- } catch (Exception $e) {
- DBG::log($e);
- }
- }
- DBG::log((array)$this, 'array', "Ant projects and main targets");
- return $this->_antUrlProjects;
- }
- public function getAntUrlActionTemplates($path) {
- if (!empty($this->_antUrlProjectTemplates[$path])) return $this->_antUrlProjectTemplates[$path];
- $this->getAntUrlActionList();
- if (!empty($this->_antUrlProjectTemplates[$path])) return $this->_antUrlProjectTemplates[$path];
- }
- public function getAntToolList() {
- V::exec("ls -1 {$this->pathTools}*/build.xml", $out, $ret);
- $taskList = array();
- foreach ($out as $line) {
- try {
- if ($this->pathTools != substr($line, 0, strlen($this->pathTools))) throw new Exception("Wrong line prefix '{$line}' - skip");
- if ('/build.xml' != substr($line, -1 * strlen('/build.xml'))) throw new Exception("Wrong line suffix '{$line}' - expected '/build.xml' - skip");
- } catch (Exception $e) {
- UI::alert('warning', $e->getMessage());
- continue;
- }
- $line = substr($line, strlen($this->pathTools));
- $name = substr($line, 0, -1 * strlen('/build.xml'));
- $taskList[$name] = $name;// TODO: $name => $description (read from build.xml file first xml tag <project...>)
- }
- return $taskList;
- }
- public function generatePdfAction() {// TODO: OLD TEST
- $antPath = V::get('ditaPath', '', $_GET);
- $idKoresp = V::get('idKoresp', 0, $_POST, 'int');
- $doExecute = V::get('doExecute', '', $_POST);
- $antList = $this->getAntToolList();
- if (!array_key_exists($antPath, $antList)) throw new Exception("dita path not found", 404);
- UI::gora();
- UI::startContainer();
- try {
- UI::tag('h1', [], "Dita: '{$antList[$antPath]}'");
- UI::startTag('form', ['action'=>"", 'method'=>"POST", 'class'=>'form-inline']);
- UI::tag('input', ['type'=>'number', 'value'=>$idKoresp, 'class'=>'form-control', 'style'=>'max-width:200px']);
- UI::tag('input', ['type'=>'hidden', 'name'=>'doExecute', 'value'=>'1']);
- UI::tag('input', ['type'=>"submit", 'value'=>"Wykonaj", 'class'=>'btn btn-primary']);
- UI::endTag('form');
- if ($doExecute) {
- // if ($idKoresp <= 0) throw new Exception("Bad Request - missing id koresp");
- if ($idKoresp <= 0) UI::alert('danger', "Missing id koresp - using default file");
- if ($idKoresp > 0) UI::alert('warning', "TODO: generate xml file for id koresp = {$idKoresp}");
- $execPath = APP_PATH_SCHEMA . DS . 'ant' . DS . $antPath;
- $ant = APP_PATH_WWW . DS . 'stuff' . DS . 'dita-ot-2.3.3' . DS . 'bin' . DS . 'ant';
- $cmd = "cd {$execPath} && {$ant} 2>&1";// wymaga java jdk
- V::exec($cmd, $out, $ret);
- DBG::_(true, true, "cmd: {$cmd} (return: {$ret})", $out, __CLASS__, __FUNCTION__, __LINE__);
- }
- throw new Exception("TODO: F." . __FUNCTION__ . " . L." . __LINE__);
- } catch (Exception $e) {
- UI::alert('danger', $e->getMessage());
- }
- UI::endContainer();
- UI::dol();
- }
- public function reinstallAction() {
- UI::gora();
- UI::tag('h1', [], 'Reinstall Dita Open Toolkit 2.3.3');
- $stuffPath = APP_PATH_WWW . DS . 'stuff';
- // $cmd[]['rsh']="cd /Library/Server/Web/Data/Sites/Default/SE/stuff && rm dita-ot-2.3.3.zip || echo PASSED";
- // $cmd[]['rsh']="cd /Library/Server/Web/Data/Sites/Default/SE/stuff && wget https://github.com/dita-ot/dita-ot/releases/download/2.3.3/dita-ot-2.3.3.zip -O dita-ot-2.3.3.zip ";
- // $cmd[]['rsh']="cd /Library/Server/Web/Data/Sites/Default/SE/stuff && rm dita-ot-2.3.3 || echo PASSED";
- // $cmd[]['rsh']="cd /Library/Server/Web/Data/Sites/Default/SE/stuff && unzip dita-ot-2.3.3.zip || echo PASSED";
- // $cmd[]['rsh']="cd /Library/Server/Web/Data/Sites/Default/SE/stuff/dita-ot-2.3.3 && ./startcmd.sh || echo PASSED";
- $wget = "/opt/local/bin/wget";
- $unzip = "/usr/bin/unzip";
- // $testCmd = "which unzip";
- // V::exec($testCmd, $out, $ret);
- // DBG::_(true, true, "testCmd: {$testCmd} (return: {$ret})", $out, __CLASS__, __FUNCTION__, __LINE__);
- // $testCmd = "which wget";
- // V::exec($testCmd, $out, $ret);
- // DBG::_(true, true, "testCmd: {$testCmd} (return: {$ret})", $out, __CLASS__, __FUNCTION__, __LINE__);
- $cmd = "cd {$stuffPath} ; [ -f dita-ot-2.3.3.zip ] && rm dita-ot-2.3.3.zip";
- V::exec($cmd, $out, $ret);
- DBG::_(true, true, "cmd: {$cmd} (return: {$ret})", $out, __CLASS__, __FUNCTION__, __LINE__);
- $cmd = "cd {$stuffPath} ; {$wget} https://github.com/dita-ot/dita-ot/releases/download/2.3.3/dita-ot-2.3.3.zip -O dita-ot-2.3.3.zip";
- V::exec($cmd, $out, $ret);
- DBG::_(true, true, "cmd: {$cmd} (return: {$ret})", $out, __CLASS__, __FUNCTION__, __LINE__);
- $cmd = "cd {$stuffPath}
- [ -f dita-ot-2.3.3.zip ] && rm dita-ot-2.3.3.zip
- {$wget} https://github.com/dita-ot/dita-ot/releases/download/2.3.3/dita-ot-2.3.3.zip -O dita-ot-2.3.3.zip
- [ -d dita-ot-2.3.3 ] && rm -rf dita-ot-2.3.3
- {$unzip} dita-ot-2.3.3.zip
- ";
- V::exec($cmd, $out, $ret);
- DBG::_(true, true, "cmd: {$cmd} (return: {$ret})", $out, __CLASS__, __FUNCTION__, __LINE__);
- }
- }
|