compiler.class.inc.php 78 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496
  1. <?php
  2. // Copyright (C) 2011-2017 Combodo SARL
  3. //
  4. // This file is part of iTop.
  5. //
  6. // iTop is free software; you can redistribute it and/or modify
  7. // it under the terms of the GNU Affero General Public License as published by
  8. // the Free Software Foundation, either version 3 of the License, or
  9. // (at your option) any later version.
  10. //
  11. // iTop is distributed in the hope that it will be useful,
  12. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. // GNU Affero General Public License for more details.
  15. //
  16. // You should have received a copy of the GNU Affero General Public License
  17. // along with iTop. If not, see <http://www.gnu.org/licenses/>
  18. require_once(APPROOT.'setup/setuputils.class.inc.php');
  19. require_once(APPROOT.'setup/modelfactory.class.inc.php');
  20. require_once(APPROOT.'core/moduledesign.class.inc.php');
  21. class DOMFormatException extends Exception
  22. {
  23. /**
  24. * Overrides the Exception default constructor to automatically add informations about the concerned node (path and line number)
  25. *
  26. * @param string $message
  27. * @param type $code
  28. * @param type $previous
  29. * @param DOMNode $node [Optionnal] DOMNode causing the DOMFormatException
  30. */
  31. public function __construct($message, $code = null, $previous = null, DOMNode $node = null)
  32. {
  33. if($node !== null)
  34. {
  35. $message .= ' ('.MFDocument::GetItopNodePath($node).' at line '.$node->getLineNo().')';
  36. }
  37. parent::__construct($message, $code, $previous);
  38. }
  39. }
  40. /**
  41. * Compiler class
  42. */
  43. class MFCompiler
  44. {
  45. protected $oFactory;
  46. protected $aRootClasses;
  47. protected $aLog;
  48. protected $sMainPHPCode; // Code that goes into core/main.php
  49. protected $aSnippets;
  50. protected $aRelations;
  51. public function __construct($oModelFactory)
  52. {
  53. $this->oFactory = $oModelFactory;
  54. $this->oFactory->ApplyChanges();
  55. $this->aLog = array();
  56. $this->sMainPHPCode = '<'.'?'."php\n";
  57. $this->sMainPHPCode .= "/**\n";
  58. $this->sMainPHPCode .= " * This file was automatically generated by the compiler on ".date('Y-m-d H:i:s')." -- DO NOT EDIT\n";
  59. $this->sMainPHPCode .= " */\n";
  60. $this->aSnippets = array();
  61. $this->aRelations = array();
  62. }
  63. protected function Log($sText)
  64. {
  65. $this->aLog[] = $sText;
  66. }
  67. protected function DumpLog($oPage)
  68. {
  69. foreach ($this->aLog as $sText)
  70. {
  71. $oPage->p($sText);
  72. }
  73. }
  74. public function GetLog()
  75. {
  76. return $this->aLog;
  77. }
  78. public function Compile($sTargetDir, $oP = null, $bUseSymbolicLinks = false)
  79. {
  80. $sFinalTargetDir = $sTargetDir;
  81. if ($bUseSymbolicLinks)
  82. {
  83. // Skip the creation of a temporary dictionary, not compatible with symbolic links
  84. $sTempTargetDir = $sFinalTargetDir;
  85. }
  86. else
  87. {
  88. // Create a temporary directory
  89. // Once the compilation is 100% successful, then move the results into the target directory
  90. $sTempTargetDir = tempnam(SetupUtils::GetTmpDir(), 'itop-');
  91. unlink($sTempTargetDir); // I need a directory, not a file...
  92. SetupUtils::builddir($sTempTargetDir); // Here is the directory
  93. }
  94. try
  95. {
  96. $this->DoCompile($sTempTargetDir, $sFinalTargetDir, $oP = null, $bUseSymbolicLinks);
  97. }
  98. catch (Exception $e)
  99. {
  100. if ($sTempTargetDir != $sFinalTargetDir)
  101. {
  102. // Cleanup the temporary directory
  103. SetupUtils::rrmdir($sTempTargetDir);
  104. }
  105. throw $e;
  106. }
  107. if ($sTempTargetDir != $sFinalTargetDir)
  108. {
  109. // Move the results to the target directory
  110. SetupUtils::movedir($sTempTargetDir, $sFinalTargetDir);
  111. }
  112. // Reset the opcache since otherwise the PHP "model" files may still be cached !!
  113. // In case of bad luck (this happens **sometimes** - see N. 550), we may analyze the database structure
  114. // with the previous datamodel still loaded (in opcode cache) and thus fail to create the new fields
  115. // Finally the application crashes (because of the missing field) when the cache gets updated
  116. if (function_exists('opcache_reset'))
  117. {
  118. // Zend opcode cache
  119. opcache_reset();
  120. }
  121. else if (function_exists('apc_clear_cache'))
  122. {
  123. // old style APC
  124. apc_clear_cache();
  125. }
  126. }
  127. protected function DoCompile($sTempTargetDir, $sFinalTargetDir, $oP = null, $bUseSymbolicLinks = false)
  128. {
  129. $aAllClasses = array(); // flat list of classes
  130. // Determine the target modules for the MENUS
  131. //
  132. $aMenuNodes = array();
  133. $aMenusByModule = array();
  134. foreach ($this->oFactory->GetNodes('menus/menu') as $oMenuNode)
  135. {
  136. $sMenuId = $oMenuNode->getAttribute('id');
  137. $aMenuNodes[$sMenuId] = $oMenuNode;
  138. $sModuleMenu = $oMenuNode->getAttribute('_created_in');
  139. $aMenusByModule[$sModuleMenu][] = $sMenuId;
  140. }
  141. // Determine the target module (exactly one!) for USER RIGHTS
  142. // This used to be based solely on the module which created the user_rights node first
  143. // Unfortunately, our sample extension was delivered with the xml structure, resulting in the new module to be the recipient of the compilation
  144. // Then model.itop-profiles-itil would not exist... resulting in an error after the compilation (and the actual product of the compiler would never be included
  145. // The bullet proof implementation would be to compile in a separate directory as it has been done with the dictionaries... that's another story
  146. $aModules = $this->oFactory->GetLoadedModules();
  147. $sUserRightsModule = '';
  148. foreach($aModules as $foo => $oModule)
  149. {
  150. if ($oModule->GetName() == 'itop-profiles-itil')
  151. {
  152. $sUserRightsModule = 'itop-profiles-itil';
  153. break;
  154. }
  155. }
  156. $oUserRightsNode = $this->oFactory->GetNodes('user_rights')->item(0);
  157. if ($oUserRightsNode && ($sUserRightsModule == ''))
  158. {
  159. // Legacy algorithm (itop <= 2.0.3)
  160. $sUserRightsModule = $oUserRightsNode->getAttribute('_created_in');
  161. }
  162. $this->Log("User Rights module found: '$sUserRightsModule'");
  163. // List root classes
  164. //
  165. $this->aRootClasses = array();
  166. foreach ($this->oFactory->ListRootClasses() as $oClass)
  167. {
  168. $this->Log("Root class (with child classes): ".$oClass->getAttribute('id'));
  169. $this->aRootClasses[$oClass->getAttribute('id')] = $oClass;
  170. }
  171. $this->LoadSnippets();
  172. // Compile, module by module
  173. //
  174. $aModules = $this->oFactory->GetLoadedModules();
  175. $aDataModelFiles = array();
  176. $aWebservicesFiles = array();
  177. foreach($aModules as $foo => $oModule)
  178. {
  179. $sModuleName = $oModule->GetName();
  180. $sModuleVersion = $oModule->GetVersion();
  181. $sModuleRootDir = $oModule->GetRootDir();
  182. if ($sModuleRootDir != '')
  183. {
  184. $sModuleRootDir = realpath($sModuleRootDir);
  185. $sRelativeDir = basename($sModuleRootDir);
  186. // Push the other module files
  187. SetupUtils::copydir($sModuleRootDir, $sTempTargetDir.'/'.$sRelativeDir, $bUseSymbolicLinks);
  188. }
  189. else
  190. {
  191. $sRelativeDir = '';
  192. }
  193. $sCompiledCode = '';
  194. $oConstants = $this->oFactory->ListConstants($sModuleName);
  195. if ($oConstants->length > 0)
  196. {
  197. foreach($oConstants as $oConstant)
  198. {
  199. $sCompiledCode .= $this->CompileConstant($oConstant)."\n";
  200. }
  201. }
  202. if (array_key_exists($sModuleName, $this->aSnippets))
  203. {
  204. foreach( $this->aSnippets[$sModuleName]['before'] as $aSnippet)
  205. {
  206. $sCompiledCode .= "\n";
  207. $sCompiledCode .= "/**\n";
  208. $sCompiledCode .= " * Snippet: {$aSnippet['snippet_id']}\n";
  209. $sCompiledCode .= " */\n";
  210. $sCompiledCode .= $aSnippet['content']."\n";
  211. }
  212. }
  213. $oClasses = $this->oFactory->ListClasses($sModuleName);
  214. $iClassCount = $oClasses->length;
  215. if ($iClassCount == 0)
  216. {
  217. $this->Log("Found module without classes declared: $sModuleName");
  218. }
  219. else
  220. {
  221. foreach($oClasses as $oClass)
  222. {
  223. $sClass = $oClass->getAttribute("id");
  224. $aAllClasses[] = $sClass;
  225. try
  226. {
  227. $sCompiledCode .= $this->CompileClass($oClass, $sTempTargetDir, $sFinalTargetDir, $sRelativeDir, $oP);
  228. }
  229. catch (DOMFormatException $e)
  230. {
  231. throw new Exception("Failed to process class '$sClass', from '$sModuleRootDir': ".$e->getMessage());
  232. }
  233. }
  234. }
  235. if (!array_key_exists($sModuleName, $aMenusByModule))
  236. {
  237. $this->Log("Found module without menus declared: $sModuleName");
  238. }
  239. else
  240. {
  241. $sMenuCreationClass = 'MenuCreation_'.preg_replace('/[^A-Za-z0-9_]/', '_', $sModuleName);
  242. $sCompiledCode .=
  243. <<<EOF
  244. //
  245. // Menus
  246. //
  247. class $sMenuCreationClass extends ModuleHandlerAPI
  248. {
  249. public static function OnMenuCreation()
  250. {
  251. global \$__comp_menus__; // ensure that the global variable is indeed global !
  252. EOF;
  253. // Preliminary: determine parent menus not defined within the current module
  254. $aMenusToLoad = array();
  255. $aParentMenus = array();
  256. foreach($aMenusByModule[$sModuleName] as $sMenuId)
  257. {
  258. $oMenuNode = $aMenuNodes[$sMenuId];
  259. if ($sParent = $oMenuNode->GetChildText('parent', null))
  260. {
  261. $aMenusToLoad[] = $sParent;
  262. $aParentMenus[] = $sParent;
  263. }
  264. // Note: the order matters: the parents must be defined BEFORE
  265. $aMenusToLoad[] = $sMenuId;
  266. }
  267. $aMenusToLoad = array_unique($aMenusToLoad);
  268. $aMenusForAll = array();
  269. $aMenusForAdmins = array();
  270. foreach($aMenusToLoad as $sMenuId)
  271. {
  272. $oMenuNode = $aMenuNodes[$sMenuId];
  273. if ($oMenuNode->getAttribute("xsi:type") == 'MenuGroup')
  274. {
  275. // Note: this algorithm is wrong
  276. // 1 - the module may appear empty in the current module, while children are defined in other modules
  277. // 2 - check recursively that child nodes are not empty themselves
  278. // Future algorithm:
  279. // a- browse the modules and build the menu tree
  280. // b- browse the tree and blacklist empty menus
  281. // c- before compiling, discard if blacklisted
  282. if (!in_array($oMenuNode->getAttribute("id"), $aParentMenus))
  283. {
  284. // Discard empty menu groups
  285. continue;
  286. }
  287. }
  288. try
  289. {
  290. $aMenuLines = $this->CompileMenu($oMenuNode, $sTempTargetDir, $sFinalTargetDir, $sRelativeDir, $oP);
  291. }
  292. catch (DOMFormatException $e)
  293. {
  294. throw new Exception("Failed to process menu '$sMenuId', from '$sModuleRootDir': ".$e->getMessage());
  295. }
  296. if ($oMenuNode->GetChildText('enable_admin_only') == '1')
  297. {
  298. $aMenusForAdmins = array_merge($aMenusForAdmins, $aMenuLines);
  299. }
  300. else
  301. {
  302. $aMenusForAll = array_merge($aMenusForAll, $aMenuLines);
  303. }
  304. }
  305. $sIndent = "\t\t";
  306. foreach ($aMenusForAll as $sPHPLine)
  307. {
  308. $sCompiledCode .= $sIndent.$sPHPLine."\n";
  309. }
  310. if (count($aMenusForAdmins) > 0)
  311. {
  312. $sCompiledCode .= $sIndent."if (UserRights::IsAdministrator())\n";
  313. $sCompiledCode .= $sIndent."{\n";
  314. foreach ($aMenusForAdmins as $sPHPLine)
  315. {
  316. $sCompiledCode .= $sIndent."\t".$sPHPLine."\n";
  317. }
  318. $sCompiledCode .= $sIndent."}\n";
  319. }
  320. $sCompiledCode .=
  321. <<<EOF
  322. }
  323. } // class $sMenuCreationClass
  324. EOF;
  325. }
  326. // User rights
  327. //
  328. if ($sModuleName == $sUserRightsModule)
  329. {
  330. $sCompiledCode .= $this->CompileUserRights($oUserRightsNode);
  331. }
  332. if (array_key_exists($sModuleName, $this->aSnippets))
  333. {
  334. foreach( $this->aSnippets[$sModuleName]['after'] as $aSnippet)
  335. {
  336. $sCompiledCode .= "\n";
  337. $sCompiledCode .= "/**\n";
  338. $sCompiledCode .= " * Snippet: {$aSnippet['snippet_id']}\n";
  339. $sCompiledCode .= " */\n";
  340. $sCompiledCode .= $aSnippet['content']."\n";
  341. }
  342. }
  343. // Create (overwrite if existing) the compiled file
  344. //
  345. if (strlen($sCompiledCode) > 0)
  346. {
  347. // We have compiled something: write the code somewhere
  348. //
  349. if (strlen($sRelativeDir) > 0)
  350. {
  351. // Write the code into the given module as model.<module>.php
  352. //
  353. $sResultFile = $sTempTargetDir.'/'.$sRelativeDir.'/model.'.$sModuleName.'.php';
  354. if (is_file($sResultFile))
  355. {
  356. $this->Log("Updating $sResultFile for module $sModuleName in version $sModuleVersion ($iClassCount classes)");
  357. } else
  358. {
  359. $sResultDir = dirname($sResultFile);
  360. if (!is_dir($sResultDir))
  361. {
  362. $this->Log("Creating directory $sResultDir");
  363. mkdir($sResultDir, 0777, true);
  364. }
  365. $this->Log("Creating $sResultFile for module $sModuleName in version $sModuleVersion ($iClassCount classes)");
  366. }
  367. // Compile the module into a single file
  368. //
  369. $sId = $sModuleName;
  370. $sCurrDate = date(DATE_ISO8601);
  371. $sAuthor = 'iTop compiler';
  372. $sLicence = 'http://opensource.org/licenses/AGPL-3.0';
  373. $sFileHeader =
  374. <<<EOF
  375. <?php
  376. //
  377. // File generated by ... on the $sCurrDate
  378. // Please do not edit manually
  379. //
  380. /**
  381. * Classes and menus for $sModuleName (version $sModuleVersion)
  382. *
  383. * @author $sAuthor
  384. * @license $sLicence
  385. */
  386. EOF;
  387. $ret = file_put_contents($sResultFile, $sFileHeader.$sCompiledCode);
  388. if ($ret === false)
  389. {
  390. $iLen = strlen($sFileHeader.$sCompiledCode);
  391. $fFree = @disk_free_space(dirname($sResultFile));
  392. $aErr = error_get_last();
  393. throw new Exception("Failed to write '$sResultFile'. Last error: '{$aErr['message']}', content to write: $iLen bytes, available free space on disk: $fFree.");
  394. }
  395. }
  396. else
  397. {
  398. // Write the code into core/main.php
  399. //
  400. $this->sMainPHPCode .=
  401. <<<EOF
  402. /**
  403. * Data model from the delta file
  404. */
  405. EOF;
  406. $this->sMainPHPCode .= $sCompiledCode;
  407. }
  408. }
  409. else
  410. {
  411. $this->Log("Compilation of module $sModuleName in version $sModuleVersion produced not code at all. No file written.");
  412. }
  413. // files to include (PHP datamodels)
  414. foreach($oModule->GetFilesToInclude('business') as $sRelFileName)
  415. {
  416. $aDataModelFiles[] = "MetaModel::IncludeModule('".basename($sFinalTargetDir).'/'.$sRelativeDir.'/'.$sRelFileName."');";
  417. }
  418. // files to include (PHP webservices providers)
  419. foreach($oModule->GetFilesToInclude('webservices') as $sRelFileName)
  420. {
  421. $aWebservicesFiles[] = "MetaModel::IncludeModule('".basename($sFinalTargetDir).'/'.$sRelativeDir.'/'.$sRelFileName."');";
  422. }
  423. } // foreach module
  424. // Compile the dictionaries -out of the modules
  425. //
  426. $sDictDir = $sTempTargetDir.'/dictionaries';
  427. if (!is_dir($sDictDir))
  428. {
  429. $this->Log("Creating directory $sDictDir");
  430. mkdir($sDictDir, 0777, true);
  431. }
  432. $oDictionaries = $this->oFactory->GetNodes('dictionaries/dictionary');
  433. $this->CompileDictionaries($oDictionaries, $sTempTargetDir, $sFinalTargetDir);
  434. // Compile the branding
  435. //
  436. $oBrandingNode = $this->oFactory->GetNodes('branding')->item(0);
  437. $this->CompileBranding($oBrandingNode, $sTempTargetDir, $sFinalTargetDir);
  438. if (array_key_exists('_core_', $this->aSnippets))
  439. {
  440. foreach( $this->aSnippets['_core_']['before'] as $aSnippet)
  441. {
  442. $this->sMainPHPCode .= "\n";
  443. $this->sMainPHPCode .= "/**\n";
  444. $this->sMainPHPCode .= " * Snippet: {$aSnippet['snippet_id']}\n";
  445. $this->sMainPHPCode .= " */\n";
  446. $this->sMainPHPCode .= $aSnippet['content']."\n";
  447. }
  448. }
  449. // Compile the portals
  450. $oPortalsNode = $this->oFactory->GetNodes('/itop_design/portals')->item(0);
  451. $this->CompilePortals($oPortalsNode, $sTempTargetDir, $sFinalTargetDir);
  452. // Create module design XML files
  453. $oModuleDesignsNode = $this->oFactory->GetNodes('/itop_design/module_designs')->item(0);
  454. $this->CompileModuleDesigns($oModuleDesignsNode, $sTempTargetDir, $sFinalTargetDir);
  455. // Compile the XML parameters
  456. $oParametersNode = $this->oFactory->GetNodes('/itop_design/module_parameters')->item(0);
  457. $this->CompileParameters($oParametersNode, $sTempTargetDir, $sFinalTargetDir);
  458. if (array_key_exists('_core_', $this->aSnippets))
  459. {
  460. foreach( $this->aSnippets['_core_']['after'] as $aSnippet)
  461. {
  462. $this->sMainPHPCode .= "\n";
  463. $this->sMainPHPCode .= "/**\n";
  464. $this->sMainPHPCode .= " * Snippet: {$aSnippet['snippet_id']}\n";
  465. $this->sMainPHPCode .= " */\n";
  466. $this->sMainPHPCode .= $aSnippet['content']."\n";
  467. }
  468. }
  469. if (count($this->aRelations) > 0)
  470. {
  471. $this->sMainPHPCode .= "\n";
  472. $this->sMainPHPCode .= "/**\n";
  473. $this->sMainPHPCode .= " * Relations\n";
  474. $this->sMainPHPCode .= " */\n";
  475. foreach($this->aRelations as $sRelationCode => $aData)
  476. {
  477. $sRelCodeSafe = addslashes($sRelationCode);
  478. $this->sMainPHPCode .= "MetaModel::RegisterRelation('$sRelCodeSafe');\n";
  479. }
  480. }
  481. // Write core/main.php
  482. SetupUtils::builddir($sTempTargetDir.'/core');
  483. $sPHPFile = $sTempTargetDir.'/core/main.php';
  484. file_put_contents($sPHPFile, $this->sMainPHPCode);
  485. // Autoload
  486. $sPHPFile = $sTempTargetDir.'/autoload.php';
  487. $sPHPFileContent =
  488. <<<EOF
  489. <?php
  490. //
  491. // File generated on $sCurrDate
  492. // Please do not edit manually
  493. //
  494. EOF
  495. ;
  496. $sPHPFileContent .= "\nMetaModel::IncludeModule('".basename($sFinalTargetDir)."/core/main.php');\n";
  497. $sPHPFileContent .= implode("\n", $aDataModelFiles);
  498. $sPHPFileContent .= implode("\n", $aWebservicesFiles);
  499. file_put_contents($sPHPFile, $sPHPFileContent);
  500. } // DoCompile()
  501. /**
  502. * Helper to form a valid ZList from the array built by GetNodeAsArrayOfItems()
  503. */
  504. protected function ArrayOfItemsToZList(&$aItems)
  505. {
  506. $aTransformed = array();
  507. foreach ($aItems as $key => $value)
  508. {
  509. if (is_null($value))
  510. {
  511. $aTransformed[] = $key;
  512. }
  513. else
  514. {
  515. if (is_array($value))
  516. {
  517. $this->ArrayOfItemsToZList($value);
  518. }
  519. $aTransformed[$key] = $value;
  520. }
  521. }
  522. $aItems = $aTransformed;
  523. }
  524. /**
  525. * Helper to format the flags for an attribute, in a given state
  526. * @param object $oAttNode DOM node containing the information to build the flags
  527. * Returns string PHP flags, based on the OPT_ATT_ constants, or empty (meaning 0, can be omitted)
  528. */
  529. protected function FlagsToPHP($oAttNode)
  530. {
  531. static $aNodeAttributeToFlag = array(
  532. 'mandatory' => 'OPT_ATT_MANDATORY',
  533. 'read_only' => 'OPT_ATT_READONLY',
  534. 'must_prompt' => 'OPT_ATT_MUSTPROMPT',
  535. 'must_change' => 'OPT_ATT_MUSTCHANGE',
  536. 'hidden' => 'OPT_ATT_HIDDEN',
  537. );
  538. $aFlags = array();
  539. foreach ($aNodeAttributeToFlag as $sNodeAttribute => $sFlag)
  540. {
  541. $bFlag = ($oAttNode->GetOptionalElement($sNodeAttribute) != null);
  542. if ($bFlag)
  543. {
  544. $aFlags[] = $sFlag;
  545. }
  546. }
  547. if (empty($aFlags))
  548. {
  549. $aFlags[] = 'OPT_ATT_NORMAL'; // When no flag is defined, reset the state to "normal"
  550. }
  551. $sRes = implode(' | ', $aFlags);
  552. return $sRes;
  553. }
  554. /**
  555. * Helper to format the tracking level for linkset (direct or indirect attributes)
  556. * @param string $sTrackingLevel Value set from within the XML
  557. * Returns string PHP flag
  558. */
  559. protected function TrackingLevelToPHP($sAttType, $sTrackingLevel)
  560. {
  561. static $aXmlToPHP_Links = array(
  562. 'none' => 'LINKSET_TRACKING_NONE',
  563. 'list' => 'LINKSET_TRACKING_LIST',
  564. 'details' => 'LINKSET_TRACKING_DETAILS',
  565. 'all' => 'LINKSET_TRACKING_ALL',
  566. );
  567. static $aXmlToPHP_Others = array(
  568. 'none' => 'ATTRIBUTE_TRACKING_NONE',
  569. 'all' => 'ATTRIBUTE_TRACKING_ALL',
  570. );
  571. switch ($sAttType)
  572. {
  573. case 'AttributeLinkedSetIndirect':
  574. case 'AttributeLinkedSet':
  575. $aXmlToPHP = $aXmlToPHP_Links;
  576. break;
  577. default:
  578. $aXmlToPHP = $aXmlToPHP_Others;
  579. }
  580. if (!array_key_exists($sTrackingLevel, $aXmlToPHP))
  581. {
  582. throw new DOMFormatException("Tracking level: unknown value '$sTrackingLevel', expecting a value in {".implode(', ', array_keys($aXmlToPHP))."}");
  583. }
  584. return $aXmlToPHP[$sTrackingLevel];
  585. }
  586. /**
  587. * Helper to format the edit-mode for direct linkset
  588. * @param string $sEditMode Value set from within the XML
  589. * Returns string PHP flag
  590. */
  591. protected function EditModeToPHP($sEditMode)
  592. {
  593. static $aXmlToPHP = array(
  594. 'none' => 'LINKSET_EDITMODE_NONE',
  595. 'add_only' => 'LINKSET_EDITMODE_ADDONLY',
  596. 'actions' => 'LINKSET_EDITMODE_ACTIONS',
  597. 'in_place' => 'LINKSET_EDITMODE_INPLACE',
  598. 'add_remove' => 'LINKSET_EDITMODE_ADDREMOVE',
  599. );
  600. if (!array_key_exists($sEditMode, $aXmlToPHP))
  601. {
  602. throw new DOMFormatException("Edit mode: unknown value '$sEditMode'");
  603. }
  604. return $aXmlToPHP[$sEditMode];
  605. }
  606. /**
  607. * Format a path (file or url) as an absolute path or relative to the module or the app
  608. */
  609. protected function PathToPHP($sPath, $sModuleRelativeDir, $bIsUrl = false)
  610. {
  611. if ($sPath == '')
  612. {
  613. $sPHP = "''";
  614. }
  615. elseif (substr($sPath, 0, 2) == '$$')
  616. {
  617. // Absolute
  618. $sPHP = self::QuoteForPHP(substr($sPath, 2));
  619. }
  620. elseif (substr($sPath, 0, 1) == '$')
  621. {
  622. // Relative to the application
  623. if ($bIsUrl)
  624. {
  625. $sPHP = "utils::GetAbsoluteUrlAppRoot().".self::QuoteForPHP(substr($sPath, 1));
  626. }
  627. else
  628. {
  629. $sPHP = "APPROOT.".self::QuoteForPHP(substr($sPath, 1));
  630. }
  631. }
  632. else
  633. {
  634. // Relative to the module
  635. if ($bIsUrl)
  636. {
  637. $sPHP = "utils::GetAbsoluteUrlAppRoot().".self::QuoteForPHP($sModuleRelativeDir.''.$sPath);
  638. }
  639. else
  640. {
  641. $sPHP = "dirname(__FILE__).'/$sPath'";
  642. }
  643. }
  644. return $sPHP;
  645. }
  646. protected function GetPropString($oNode, $sTag, $sDefault = null)
  647. {
  648. $val = $oNode->GetChildText($sTag);
  649. if (is_null($val))
  650. {
  651. if (is_null($sDefault))
  652. {
  653. return null;
  654. }
  655. else
  656. {
  657. $val = $sDefault;
  658. }
  659. }
  660. return "'".$val."'";
  661. }
  662. protected function GetMandatoryPropString($oNode, $sTag)
  663. {
  664. $val = $oNode->GetChildText($sTag);
  665. if (!is_null($val) && ($val !== ''))
  666. {
  667. return "'".$val."'";
  668. }
  669. else
  670. {
  671. throw new DOMFormatException("missing (or empty) mandatory tag '$sTag' under the tag '".$oNode->nodeName."'");
  672. }
  673. }
  674. protected function GetPropBoolean($oNode, $sTag, $bDefault = null)
  675. {
  676. $val = $oNode->GetChildText($sTag);
  677. if (is_null($val))
  678. {
  679. if (is_null($bDefault))
  680. {
  681. return null;
  682. }
  683. else
  684. {
  685. return $bDefault ? 'true' : 'false';
  686. }
  687. }
  688. return $val == 'true' ? 'true' : 'false';
  689. }
  690. protected function GetMandatoryPropBoolean($oNode, $sTag)
  691. {
  692. $val = $oNode->GetChildText($sTag);
  693. if (is_null($val))
  694. {
  695. throw new DOMFormatException("missing (or empty) mandatory tag '$sTag' under the tag '".$oNode->nodeName."'");
  696. }
  697. return $val == 'true' ? 'true' : 'false';
  698. }
  699. protected function GetPropNumber($oNode, $sTag, $nDefault = null)
  700. {
  701. $val = $oNode->GetChildText($sTag);
  702. if (is_null($val))
  703. {
  704. if (is_null($nDefault))
  705. {
  706. return null;
  707. }
  708. else
  709. {
  710. $val = $nDefault;
  711. }
  712. }
  713. return (string)$val;
  714. }
  715. protected function GetMandatoryPropNumber($oNode, $sTag)
  716. {
  717. $val = $oNode->GetChildText($sTag);
  718. if (is_null($val))
  719. {
  720. throw new DOMFormatException("missing (or empty) mandatory tag '$sTag' under the tag '".$oNode->nodeName."'");
  721. }
  722. return (string)$val;
  723. }
  724. /**
  725. * Adds quotes and escape characters
  726. */
  727. protected function QuoteForPHP($sStr, $bSimpleQuotes = false)
  728. {
  729. if ($bSimpleQuotes)
  730. {
  731. $sEscaped = str_replace(array('\\', "'"), array('\\\\', "\\'"), $sStr);
  732. $sRet = "'$sEscaped'";
  733. }
  734. else
  735. {
  736. $sEscaped = str_replace(array('\\', '"', "\n"), array('\\\\', '\\"', '\\n'), $sStr);
  737. $sRet = '"'.$sEscaped.'"';
  738. }
  739. return $sRet;
  740. }
  741. protected function CompileConstant($oConstant)
  742. {
  743. $sName = $oConstant->getAttribute('id');
  744. $sType = $oConstant->getAttribute('xsi:type');
  745. $sText = $oConstant->GetText(null);
  746. switch ($sType)
  747. {
  748. case 'integer':
  749. if (is_null($sText))
  750. {
  751. // No data given => null
  752. $sScalar = 'null';
  753. }
  754. else
  755. {
  756. $sScalar = (string)(int)$sText;
  757. }
  758. break;
  759. case 'float':
  760. if (is_null($sText))
  761. {
  762. // No data given => null
  763. $sScalar = 'null';
  764. }
  765. else
  766. {
  767. $sScalar = (string)(float)$sText;
  768. }
  769. break;
  770. case 'bool':
  771. if (is_null($sText))
  772. {
  773. // No data given => null
  774. $sScalar = 'null';
  775. }
  776. else
  777. {
  778. $sScalar = ($sText == 'true') ? 'true' : 'false';
  779. }
  780. break;
  781. case 'string':
  782. default:
  783. $sScalar = $this->QuoteForPHP($sText, true);
  784. }
  785. $sPHPDefine = "define('$sName', $sScalar);";
  786. return $sPHPDefine;
  787. }
  788. protected function CompileClass($oClass, $sTempTargetDir, $sFinalTargetDir, $sModuleRelativeDir, $oP)
  789. {
  790. $sClass = $oClass->getAttribute('id');
  791. $oProperties = $oClass->GetUniqueElement('properties');
  792. // Class caracteristics
  793. //
  794. $aClassParams = array();
  795. $aClassParams['category'] = $this->GetPropString($oProperties, 'category', '');
  796. $aClassParams['key_type'] = "'autoincrement'";
  797. if ((bool) $this->GetPropNumber($oProperties, 'is_link', 0))
  798. {
  799. $aClassParams['is_link'] = 'true';
  800. }
  801. if ($oNaming = $oProperties->GetOptionalElement('naming'))
  802. {
  803. $oNameAttributes = $oNaming->GetUniqueElement('attributes');
  804. $oAttributes = $oNameAttributes->getElementsByTagName('attribute');
  805. $aNameAttCodes = array();
  806. foreach($oAttributes as $oAttribute)
  807. {
  808. $aNameAttCodes[] = $oAttribute->getAttribute('id');
  809. }
  810. if (count($aNameAttCodes) > 0)
  811. {
  812. // New style...
  813. $sNameAttCode = "array('".implode("', '", $aNameAttCodes)."')";
  814. }
  815. else
  816. {
  817. $sNameAttCode = "''";
  818. }
  819. }
  820. else
  821. {
  822. $sNameAttCode = "''";
  823. }
  824. $aClassParams['name_attcode'] = $sNameAttCode;
  825. $oLifecycle = $oClass->GetOptionalElement('lifecycle');
  826. if ($oLifecycle)
  827. {
  828. $sStateAttCode = $oLifecycle->GetChildText('attribute');
  829. }
  830. else
  831. {
  832. $sStateAttCode = "";
  833. }
  834. $aClassParams['state_attcode'] = "'$sStateAttCode'";
  835. if ($oReconciliation = $oProperties->GetOptionalElement('reconciliation'))
  836. {
  837. $oReconcAttributes = $oReconciliation->getElementsByTagName('attribute');
  838. $aReconcAttCodes = array();
  839. foreach($oReconcAttributes as $oAttribute)
  840. {
  841. $aReconcAttCodes[] = $oAttribute->getAttribute('id');
  842. }
  843. $sReconcKeys = "array('".implode("', '", $aReconcAttCodes)."')";
  844. }
  845. else
  846. {
  847. $sReconcKeys = "array()";
  848. }
  849. $aClassParams['reconc_keys'] = $sReconcKeys;
  850. $aClassParams['db_table'] = $this->GetPropString($oProperties, 'db_table', '');
  851. $aClassParams['db_key_field'] = $this->GetPropString($oProperties, 'db_key_field', 'id');
  852. if (array_key_exists($sClass, $this->aRootClasses))
  853. {
  854. $sDefaultFinalClass = 'finalclass';
  855. }
  856. else
  857. {
  858. $sDefaultFinalClass = '';
  859. }
  860. $aClassParams['db_finalclass_field'] = $this->GetPropString($oProperties, 'db_final_class_field', $sDefaultFinalClass);
  861. if (($sDisplayTemplate = $oProperties->GetChildText('display_template')) && (strlen($sDisplayTemplate) > 0))
  862. {
  863. $sDisplayTemplate = $sModuleRelativeDir.'/'.$sDisplayTemplate;
  864. $aClassParams['display_template'] = "utils::GetAbsoluteUrlModulesRoot().'$sDisplayTemplate'";
  865. }
  866. $this->CompileFiles($oProperties, $sTempTargetDir.'/'.$sModuleRelativeDir, $sFinalTargetDir.'/'.$sModuleRelativeDir, '');
  867. if (($sIcon = $oProperties->GetChildText('icon')) && (strlen($sIcon) > 0))
  868. {
  869. $sIcon = $sModuleRelativeDir.'/'.$sIcon;
  870. $aClassParams['icon'] = "utils::GetAbsoluteUrlModulesRoot().'$sIcon'";
  871. }
  872. $oOrder = $oProperties->GetOptionalElement('order');
  873. if ($oOrder)
  874. {
  875. $oColumnsNode = $oOrder->GetUniqueElement('columns');
  876. $oColumns = $oColumnsNode->getElementsByTagName('column');
  877. $aSortColumns = array();
  878. foreach($oColumns as $oColumn)
  879. {
  880. $aSortColumns[] = "'".$oColumn->getAttribute('id')."' => ".(($oColumn->getAttribute('ascending') == 'true') ? 'true' : 'false');
  881. }
  882. if (count($aSortColumns) > 0)
  883. {
  884. $aClassParams['order_by_default'] = "array(".implode(", ", $aSortColumns).")";
  885. }
  886. }
  887. if ($oIndexes = $oProperties->GetOptionalElement('indexes'))
  888. {
  889. $aIndexes = array();
  890. foreach($oIndexes->getElementsByTagName('index') as $oIndex)
  891. {
  892. $sIndexId = $oIndex->getAttribute('id');
  893. $oAttributes = $oIndex->GetUniqueElement('attributes');
  894. foreach($oAttributes->getElementsByTagName('attribute') as $oAttribute)
  895. {
  896. $aIndexes[$sIndexId][] = $oAttribute->getAttribute('id');
  897. }
  898. }
  899. $aClassParams['indexes'] = var_export($aIndexes, true);
  900. }
  901. // Finalize class params declaration
  902. //
  903. $aClassParamsPHP = array();
  904. foreach($aClassParams as $sKey => $sPHPValue)
  905. {
  906. $aClassParamsPHP[] = " '$sKey' => $sPHPValue,";
  907. }
  908. $sClassParams = implode("\n", $aClassParamsPHP);
  909. // Comment on top of the class declaration
  910. //
  911. $sCodeComment = $oProperties->GetChildText('comment');
  912. // Fields
  913. //
  914. $oFields = $oClass->GetOptionalElement('fields');
  915. if ($oFields)
  916. {
  917. $this->CompileFiles($oFields, $sTempTargetDir.'/'.$sModuleRelativeDir, $sFinalTargetDir.'/'.$sModuleRelativeDir, '');
  918. }
  919. $sAttributes = '';
  920. foreach($this->oFactory->ListFields($oClass) as $oField)
  921. {
  922. try
  923. {
  924. // $oField
  925. $sAttCode = $oField->getAttribute('id');
  926. $sAttType = $oField->getAttribute('xsi:type');
  927. $aDependencies = array();
  928. $oDependencies = $oField->GetOptionalElement('dependencies');
  929. if (!is_null($oDependencies))
  930. {
  931. $oDepNodes = $oDependencies->getElementsByTagName('attribute');
  932. foreach($oDepNodes as $oDepAttribute)
  933. {
  934. $aDependencies[] = "'".$oDepAttribute->getAttribute('id')."'";
  935. }
  936. }
  937. $sDependencies = 'array('.implode(', ', $aDependencies).')';
  938. $aParameters = array();
  939. if ($sAttType == 'AttributeLinkedSetIndirect')
  940. {
  941. $aParameters['linked_class'] = $this->GetMandatoryPropString($oField, 'linked_class');
  942. $aParameters['ext_key_to_me'] = $this->GetMandatoryPropString($oField, 'ext_key_to_me');
  943. $aParameters['ext_key_to_remote'] = $this->GetMandatoryPropString($oField, 'ext_key_to_remote');
  944. $aParameters['allowed_values'] = 'null';
  945. $aParameters['count_min'] = $this->GetPropNumber($oField, 'count_min', 0);
  946. $aParameters['count_max'] = $this->GetPropNumber($oField, 'count_max', 0);
  947. $aParameters['duplicates'] = $this->GetPropBoolean($oField, 'duplicates', false);
  948. $aParameters['depends_on'] = $sDependencies;
  949. }
  950. elseif ($sAttType == 'AttributeLinkedSet')
  951. {
  952. $aParameters['linked_class'] = $this->GetMandatoryPropString($oField, 'linked_class');
  953. $aParameters['ext_key_to_me'] = $this->GetMandatoryPropString($oField, 'ext_key_to_me');
  954. $aParameters['count_min'] = $this->GetPropNumber($oField, 'count_min', 0);
  955. $aParameters['count_max'] = $this->GetPropNumber($oField, 'count_max', 0);
  956. $sEditMode = $oField->GetChildText('edit_mode');
  957. if (!is_null($sEditMode))
  958. {
  959. $aParameters['edit_mode'] = $this->EditModeToPHP($sEditMode);
  960. }
  961. if ($sOql = $oField->GetChildText('filter'))
  962. {
  963. $sEscapedOql = self::QuoteForPHP($sOql);
  964. $aParameters['allowed_values'] = "new ValueSetObjects($sEscapedOql)";
  965. }
  966. else
  967. {
  968. $aParameters['allowed_values'] = 'null';
  969. }
  970. $aParameters['depends_on'] = $sDependencies;
  971. }
  972. elseif ($sAttType == 'AttributeExternalKey')
  973. {
  974. $aParameters['targetclass'] = $this->GetPropString($oField, 'target_class', '');
  975. // deprecated: $aParameters['jointype'] = 'null';
  976. if ($sOql = $oField->GetChildText('filter'))
  977. {
  978. $sEscapedOql = self::QuoteForPHP($sOql);
  979. $aParameters['allowed_values'] = "new ValueSetObjects($sEscapedOql)"; // or "new ValueSetObjects('SELECT xxxx')"
  980. }
  981. else
  982. {
  983. $aParameters['allowed_values'] = 'null'; // or "new ValueSetObjects('SELECT xxxx')"
  984. }
  985. $aParameters['sql'] = $this->GetMandatoryPropString($oField, 'sql');
  986. $aParameters['is_null_allowed'] = $this->GetPropBoolean($oField, 'is_null_allowed', false);
  987. $aParameters['on_target_delete'] = $oField->GetChildText('on_target_delete');
  988. $aParameters['depends_on'] = $sDependencies;
  989. $aParameters['max_combo_length'] = $this->GetPropNumber($oField, 'max_combo_length');
  990. $aParameters['min_autocomplete_chars'] = $this->GetPropNumber($oField, 'min_autocomplete_chars');
  991. $aParameters['allow_target_creation'] = $this->GetPropBoolean($oField, 'allow_target_creation');
  992. $aParameters['display_style'] = $this->GetPropString($oField, 'display_style', 'select');
  993. }
  994. elseif ($sAttType == 'AttributeObjectKey')
  995. {
  996. $aParameters['class_attcode'] = $this->GetMandatoryPropString($oField, 'class_attcode');
  997. $aParameters['allowed_values'] = 'null';
  998. $aParameters['sql'] = $this->GetMandatoryPropString($oField, 'sql');
  999. $aParameters['is_null_allowed'] = $this->GetPropBoolean($oField, 'is_null_allowed', false);
  1000. $aParameters['depends_on'] = $sDependencies;
  1001. }
  1002. elseif ($sAttType == 'AttributeHierarchicalKey')
  1003. {
  1004. if ($sOql = $oField->GetChildText('filter'))
  1005. {
  1006. $sEscapedOql = self::QuoteForPHP($sOql);
  1007. $aParameters['allowed_values'] = "new ValueSetObjects($sEscapedOql)"; // or "new ValueSetObjects('SELECT xxxx')"
  1008. }
  1009. else
  1010. {
  1011. $aParameters['allowed_values'] = 'null'; // or "new ValueSetObjects('SELECT xxxx')"
  1012. }
  1013. $aParameters['sql'] = $this->GetMandatoryPropString($oField, 'sql');
  1014. $aParameters['is_null_allowed'] = $this->GetPropBoolean($oField, 'is_null_allowed', false);
  1015. $aParameters['on_target_delete'] = $oField->GetChildText('on_target_delete');
  1016. $aParameters['depends_on'] = $sDependencies;
  1017. $aParameters['max_combo_length'] = $this->GetPropNumber($oField, 'max_combo_length');
  1018. $aParameters['min_autocomplete_chars'] = $this->GetPropNumber($oField, 'min_autocomplete_chars');
  1019. $aParameters['allow_target_creation'] = $this->GetPropBoolean($oField, 'allow_target_creation');
  1020. }
  1021. elseif ($sAttType == 'AttributeExternalField')
  1022. {
  1023. $aParameters['allowed_values'] = 'null';
  1024. $aParameters['extkey_attcode'] = $this->GetMandatoryPropString($oField, 'extkey_attcode', '');
  1025. $aParameters['target_attcode'] = $this->GetMandatoryPropString($oField, 'target_attcode', '');
  1026. }
  1027. elseif ($sAttType == 'AttributeURL')
  1028. {
  1029. $aParameters['target'] = $this->GetPropString($oField, 'target', '');
  1030. $aParameters['allowed_values'] = 'null';
  1031. $aParameters['sql'] = $this->GetMandatoryPropString($oField, 'sql', '');
  1032. $aParameters['default_value'] = $this->GetPropString($oField, 'default_value', '');
  1033. $aParameters['is_null_allowed'] = $this->GetPropBoolean($oField, 'is_null_allowed', false);
  1034. $aParameters['depends_on'] = $sDependencies;
  1035. }
  1036. elseif ($sAttType == 'AttributeEnum')
  1037. {
  1038. $oValues = $oField->GetUniqueElement('values');
  1039. $oValueNodes = $oValues->getElementsByTagName('value');
  1040. $aValues = array();
  1041. foreach($oValueNodes as $oValue)
  1042. {
  1043. // new style... $aValues[] = self::QuoteForPHP($oValue->textContent);
  1044. $aValues[] = $oValue->textContent;
  1045. }
  1046. // new style... $sValues = 'array('.implode(', ', $aValues).')';
  1047. $sValues = '"'.implode(',', $aValues).'"';
  1048. $aParameters['allowed_values'] = "new ValueSetEnum($sValues)";
  1049. $aParameters['display_style'] = $this->GetPropString($oField, 'display_style', 'list');
  1050. $aParameters['sql'] = $this->GetMandatoryPropString($oField, 'sql', '');
  1051. $aParameters['default_value'] = $this->GetPropString($oField, 'default_value', '');
  1052. $aParameters['is_null_allowed'] = $this->GetPropBoolean($oField, 'is_null_allowed', false);
  1053. $aParameters['depends_on'] = $sDependencies;
  1054. }
  1055. elseif ($sAttType == 'AttributeMetaEnum')
  1056. {
  1057. $oValues = $oField->GetUniqueElement('values');
  1058. $oValueNodes = $oValues->getElementsByTagName('value');
  1059. $aValues = array();
  1060. foreach($oValueNodes as $oValue)
  1061. {
  1062. // new style... $aValues[] = self::QuoteForPHP($oValue->textContent);
  1063. $aValues[] = $oValue->textContent;
  1064. }
  1065. // new style... $sValues = 'array('.implode(', ', $aValues).')';
  1066. $sValues = '"'.implode(',', $aValues).'"';
  1067. $aParameters['allowed_values'] = "new ValueSetEnum($sValues)";
  1068. $aParameters['sql'] = $this->GetMandatoryPropString($oField, 'sql', '');
  1069. $aParameters['default_value'] = $this->GetPropString($oField, 'default_value', '');
  1070. $oMappings = $oField->GetUniqueElement('mappings');
  1071. $oMappingNodes = $oMappings->getElementsByTagName('mapping');
  1072. $aMapping = array();
  1073. foreach ($oMappingNodes as $oMapping)
  1074. {
  1075. $sMappingId = $oMapping->getAttribute('id');
  1076. $sMappingAttCode = $oMapping->GetChildText('attcode');
  1077. $aMapping[$sMappingId]['attcode'] = $sMappingAttCode;
  1078. $aMapping[$sMappingId]['values'] = array();
  1079. $oMetaValues = $oMapping->GetUniqueElement('metavalues');
  1080. foreach ($oMetaValues->getElementsByTagName('metavalue') as $oMetaValue)
  1081. {
  1082. $sMetaValue = $oMetaValue->getAttribute('id');
  1083. $oValues = $oMetaValue->GetUniqueElement('values');
  1084. foreach ($oValues->getElementsByTagName('value') as $oValue)
  1085. {
  1086. $sValue = $oValue->getAttribute('id');
  1087. $aMapping[$sMappingId]['values'][$sValue] = $sMetaValue;
  1088. }
  1089. }
  1090. }
  1091. $aParameters['mapping'] = var_export($aMapping, true);
  1092. }
  1093. elseif ($sAttType == 'AttributeBlob')
  1094. {
  1095. $aParameters['is_null_allowed'] = $this->GetPropBoolean($oField, 'is_null_allowed', false);
  1096. $aParameters['depends_on'] = $sDependencies;
  1097. }
  1098. elseif ($sAttType == 'AttributeImage')
  1099. {
  1100. $aParameters['is_null_allowed'] = $this->GetPropBoolean($oField, 'is_null_allowed', false);
  1101. $aParameters['depends_on'] = $sDependencies;
  1102. $aParameters['display_max_width'] = $this->GetPropNumber($oField, 'display_max_width', 128);
  1103. $aParameters['display_max_height'] = $this->GetPropNumber($oField, 'display_max_height', 128);
  1104. $aParameters['storage_max_width'] = $this->GetPropNumber($oField, 'storage_max_width', 256);
  1105. $aParameters['storage_max_height'] = $this->GetPropNumber($oField, 'storage_max_height', 256);
  1106. if (($sDefault = $oField->GetChildText('default_image')) && (strlen($sDefault) > 0))
  1107. {
  1108. $aParameters['default_image'] = "utils::GetAbsoluteUrlModulesRoot().'$sModuleRelativeDir/$sDefault'";
  1109. }
  1110. }
  1111. elseif ($sAttType == 'AttributeStopWatch')
  1112. {
  1113. $oStates = $oField->GetUniqueElement('states');
  1114. $oStateNodes = $oStates->getElementsByTagName('state');
  1115. $aStates = array();
  1116. foreach($oStateNodes as $oState)
  1117. {
  1118. $aStates[] = '"'.$oState->GetAttribute('id').'"';
  1119. }
  1120. $aParameters['states'] = 'array('.implode(', ', $aStates).')';
  1121. $aParameters['goal_computing'] = $this->GetPropString($oField, 'goal', 'DefaultMetricComputer'); // Optional, no deadline by default
  1122. $aParameters['working_time_computing'] = $this->GetPropString($oField, 'working_time', ''); // Blank (different than DefaultWorkingTimeComputer)
  1123. $oThresholds = $oField->GetUniqueElement('thresholds');
  1124. $oThresholdNodes = $oThresholds->getElementsByTagName('threshold');
  1125. $aThresholds = array();
  1126. foreach($oThresholdNodes as $oThreshold)
  1127. {
  1128. $iPercent = (int)$oThreshold->getAttribute('id');
  1129. $oHighlight = $oThreshold->GetUniqueElement('highlight', false);
  1130. $sHighlight = '';
  1131. if($oHighlight)
  1132. {
  1133. $sCode = $oHighlight->GetChildText('code');
  1134. $sPersistent = $this->GetPropBoolean($oHighlight, 'persistent', false);
  1135. $sHighlight = "'highlight' => array('code' => '$sCode', 'persistent' => $sPersistent), ";
  1136. }
  1137. $oActions = $oThreshold->GetUniqueElement('actions');
  1138. $oActionNodes = $oActions->getElementsByTagName('action');
  1139. $aActions = array();
  1140. foreach($oActionNodes as $oAction)
  1141. {
  1142. $oParams = $oAction->GetOptionalElement('params');
  1143. $aActionParams = array();
  1144. if ($oParams)
  1145. {
  1146. $oParamNodes = $oParams->getElementsByTagName('param');
  1147. foreach($oParamNodes as $oParam)
  1148. {
  1149. $sParamType = $oParam->getAttribute('xsi:type');
  1150. if ($sParamType == '')
  1151. {
  1152. $sParamType = 'string';
  1153. }
  1154. $aActionParams[] = "array('type' => '$sParamType', 'value' => ".self::QuoteForPHP($oParam->textContent).")";
  1155. }
  1156. }
  1157. $sActionParams = 'array('.implode(', ', $aActionParams).')';
  1158. $sVerb = $this->GetPropString($oAction, 'verb');
  1159. $aActions[] = "array('verb' => $sVerb, 'params' => $sActionParams)";
  1160. }
  1161. $sActions = 'array('.implode(', ', $aActions).')';
  1162. $aThresholds[] = $iPercent." => array('percent' => $iPercent, $sHighlight 'actions' => $sActions)";
  1163. }
  1164. $aParameters['thresholds'] = 'array('.implode(', ', $aThresholds).')';
  1165. }
  1166. elseif ($sAttType == 'AttributeSubItem')
  1167. {
  1168. $aParameters['target_attcode'] = $this->GetMandatoryPropString($oField, 'target_attcode');
  1169. $aParameters['item_code'] = $this->GetMandatoryPropString($oField, 'item_code');
  1170. }
  1171. elseif ($sAttType == 'AttributeRedundancySettings')
  1172. {
  1173. $aParameters['sql'] = $this->GetMandatoryPropString($oField, 'sql');
  1174. $aParameters['relation_code'] = $this->GetMandatoryPropString($oField, 'relation_code');
  1175. $aParameters['from_class'] = $this->GetMandatoryPropString($oField, 'from_class');
  1176. $aParameters['neighbour_id'] = $this->GetMandatoryPropString($oField, 'neighbour_id');
  1177. $aParameters['enabled'] = $this->GetMandatoryPropBoolean($oField, 'enabled');
  1178. $aParameters['enabled_mode'] = $this->GetMandatoryPropString($oField, 'enabled_mode');
  1179. $aParameters['min_up'] = $this->GetMandatoryPropNumber($oField, 'min_up');
  1180. $aParameters['min_up_mode'] = $this->GetMandatoryPropString($oField, 'min_up_mode');
  1181. $aParameters['min_up_type'] = $this->GetMandatoryPropString($oField, 'min_up_type');
  1182. }
  1183. elseif ($sAttType == 'AttributeCustomFields')
  1184. {
  1185. $aParameters['handler_class'] = $this->GetMandatoryPropString($oField, 'handler_class');
  1186. }
  1187. else
  1188. {
  1189. $aParameters['allowed_values'] = 'null'; // or "new ValueSetEnum('SELECT xxxx')"
  1190. $aParameters['sql'] = $this->GetMandatoryPropString($oField, 'sql');
  1191. $aParameters['default_value'] = $this->GetPropString($oField, 'default_value', '');
  1192. $aParameters['is_null_allowed'] = $this->GetPropBoolean($oField, 'is_null_allowed', false);
  1193. $aParameters['depends_on'] = $sDependencies;
  1194. }
  1195. // Optional parameters (more for historical reasons)
  1196. // Added if present...
  1197. //
  1198. $aParameters['validation_pattern'] = $this->GetPropString($oField, 'validation_pattern');
  1199. $aParameters['format'] = $this->GetPropString($oField, 'format');
  1200. $aParameters['width'] = $this->GetPropString($oField, 'width');
  1201. $aParameters['height'] = $this->GetPropString($oField, 'height');
  1202. $aParameters['digits'] = $this->GetPropNumber($oField, 'digits');
  1203. $aParameters['decimals'] = $this->GetPropNumber($oField, 'decimals');
  1204. $aParameters['always_load_in_tables'] = $this->GetPropBoolean($oField, 'always_load_in_tables', false);
  1205. $sTrackingLevel = $oField->GetChildText('tracking_level');
  1206. if (!is_null($sTrackingLevel))
  1207. {
  1208. $aParameters['tracking_level'] = $this->TrackingLevelToPHP($sAttType, $sTrackingLevel);
  1209. }
  1210. $aParams = array();
  1211. foreach($aParameters as $sKey => $sValue)
  1212. {
  1213. if (!is_null($sValue))
  1214. {
  1215. $aParams[] = '"'.$sKey.'"=>'.$sValue;
  1216. }
  1217. }
  1218. $sParams = implode(', ', $aParams);
  1219. $sAttributes .= " MetaModel::Init_AddAttribute(new $sAttType(\"$sAttCode\", array($sParams)));\n";
  1220. }
  1221. catch(Exception $e)
  1222. {
  1223. throw new DOMFormatException("Field: '$sAttCode', (type: $sAttType), ".$e->getMessage());
  1224. }
  1225. }
  1226. // Lifecycle
  1227. //
  1228. $sLifecycle = '';
  1229. $sHighlightScale = '';
  1230. if ($oLifecycle)
  1231. {
  1232. $sLifecycle .= "\t\t// Lifecycle (status attribute: $sStateAttCode)\n";
  1233. $sLifecycle .= "\t\t//\n";
  1234. $oStimuli = $oLifecycle->GetUniqueElement('stimuli');
  1235. foreach ($oStimuli->getElementsByTagName('stimulus') as $oStimulus)
  1236. {
  1237. $sStimulus = $oStimulus->getAttribute('id');
  1238. $sStimulusClass = $oStimulus->getAttribute('xsi:type');
  1239. $sLifecycle .= " MetaModel::Init_DefineStimulus(new ".$sStimulusClass."(\"".$sStimulus."\", array()));\n";
  1240. }
  1241. $oHighlightScale = $oLifecycle->GetUniqueElement('highlight_scale', false);
  1242. if ($oHighlightScale)
  1243. {
  1244. $sHighlightScale = "\t\t// Higlight Scale\n";
  1245. $sHighlightScale .= " MetaModel::Init_DefineHighlightScale( array(\n";
  1246. $this->CompileFiles($oHighlightScale, $sTempTargetDir.'/'.$sModuleRelativeDir, $sFinalTargetDir.'/'.$sModuleRelativeDir, '');
  1247. foreach ($oHighlightScale->getElementsByTagName('item') as $oItem)
  1248. {
  1249. $sItemCode = $oItem->getAttribute('id');
  1250. $fRank = (float)$oItem->GetChildText('rank');
  1251. $sColor = $oItem->GetChildText('color');
  1252. if (($sIcon = $oItem->GetChildText('icon')) && (strlen($sIcon) > 0))
  1253. {
  1254. $sIcon = $sModuleRelativeDir.'/'.$sIcon;
  1255. $sIcon = "utils::GetAbsoluteUrlModulesRoot().'$sIcon'";
  1256. }
  1257. else
  1258. {
  1259. $sIcon = "''";
  1260. }
  1261. switch($sColor)
  1262. {
  1263. // Known PHP constants: keep the literal value as-is
  1264. case 'HILIGHT_CLASS_CRITICAL':
  1265. case 'HIGHLIGHT_CLASS_CRITICAL':
  1266. $sColor = 'HILIGHT_CLASS_CRITICAL';
  1267. break;
  1268. case 'HILIGHT_CLASS_OK':
  1269. case 'HIGHLIGHT_CLASS_OK':
  1270. $sColor = 'HILIGHT_CLASS_OK';
  1271. break;
  1272. case 'HIGHLIGHT_CLASS_WARNING':
  1273. case 'HILIGHT_CLASS_WARNING':
  1274. $sColor = 'HILIGHT_CLASS_WARNING';
  1275. break;
  1276. case 'HIGHLIGHT_CLASS_NONE':
  1277. case 'HILIGHT_CLASS_NONE':
  1278. $sColor = 'HILIGHT_CLASS_NONE';
  1279. break;
  1280. default:
  1281. // Future extension, specify your own color??
  1282. $sColor = "'".addslashes($sColor)."'";
  1283. }
  1284. $sHighlightScale .= " '$sItemCode' => array('rank' => $fRank, 'color' => $sColor, 'icon' => $sIcon),\n";
  1285. }
  1286. $sHighlightScale .= " ));\n";
  1287. }
  1288. $oStates = $oLifecycle->GetUniqueElement('states');
  1289. $aStatesDependencies = array();
  1290. $aStates = array();
  1291. foreach ($oStates->getElementsByTagName('state') as $oState)
  1292. {
  1293. $aStatesDependencies[$oState->getAttribute('id')] = $oState->GetChildText('inherit_flags_from', '');
  1294. $aStates[$oState->getAttribute('id')] = $oState;
  1295. }
  1296. $aStatesOrder = array();
  1297. while (count($aStatesOrder) < count($aStatesDependencies))
  1298. {
  1299. $iResolved = 0;
  1300. foreach($aStatesDependencies as $sState => $sInheritFrom)
  1301. {
  1302. if (is_null($sInheritFrom))
  1303. {
  1304. // Already recorded as resolved
  1305. continue;
  1306. }
  1307. elseif ($sInheritFrom == '')
  1308. {
  1309. // Resolved
  1310. $aStatesOrder[$sState] = $sInheritFrom;
  1311. $aStatesDependencies[$sState] = null;
  1312. $iResolved++;
  1313. }
  1314. elseif (isset($aStatesOrder[$sInheritFrom]))
  1315. {
  1316. // Resolved
  1317. $aStatesOrder[$sState] = $sInheritFrom;
  1318. $aStatesDependencies[$sState] = null;
  1319. $iResolved++;
  1320. }
  1321. }
  1322. if ($iResolved == 0)
  1323. {
  1324. // No change on this loop -> there are unmet dependencies
  1325. $aRemainingDeps = array();
  1326. foreach($aStatesDependencies as $sState => $sParentState)
  1327. {
  1328. if (strlen($sParentState) > 0)
  1329. {
  1330. $aRemainingDeps[] = $sState.' ('.$sParentState.')';
  1331. }
  1332. }
  1333. throw new DOMFormatException("Could not solve inheritance for states: ".implode(', ', $aRemainingDeps));
  1334. }
  1335. }
  1336. foreach ($aStatesOrder as $sState => $foo)
  1337. {
  1338. $oState = $aStates[$sState];
  1339. $oInitialStatePath = $oState->GetOptionalElement('initial_state_path');
  1340. if ($oInitialStatePath)
  1341. {
  1342. $aInitialStatePath = array();
  1343. foreach ($oInitialStatePath->getElementsByTagName('state_ref') as $oIntermediateState)
  1344. {
  1345. $aInitialStatePath[] = "'".$oIntermediateState->GetText()."'";
  1346. }
  1347. $sInitialStatePath = 'Array('.implode(', ', $aInitialStatePath).')';
  1348. }
  1349. $sLifecycle .= " MetaModel::Init_DefineState(\n";
  1350. $sLifecycle .= " \"".$sState."\",\n";
  1351. $sLifecycle .= " array(\n";
  1352. $sAttributeInherit = $oState->GetChildText('inherit_flags_from', '');
  1353. $sLifecycle .= " \"attribute_inherit\" => '$sAttributeInherit',\n";
  1354. $oHighlight = $oState->GetUniqueElement('highlight', false);
  1355. if ($oHighlight)
  1356. {
  1357. $sCode = $oHighlight->GetChildText('code', '');
  1358. if ($sCode != '')
  1359. {
  1360. $sLifecycle .= " 'highlight' => array('code' => '$sCode'),\n";
  1361. }
  1362. }
  1363. $sLifecycle .= " \"attribute_list\" => array(\n";
  1364. $oFlags = $oState->GetUniqueElement('flags');
  1365. foreach ($oFlags->getElementsByTagName('attribute') as $oAttributeNode)
  1366. {
  1367. $sFlags = $this->FlagsToPHP($oAttributeNode);
  1368. if (strlen($sFlags) > 0)
  1369. {
  1370. $sAttCode = $oAttributeNode->GetAttribute('id');
  1371. $sLifecycle .= " '$sAttCode' => $sFlags,\n";
  1372. }
  1373. }
  1374. $sLifecycle .= " ),\n";
  1375. if (!is_null($oInitialStatePath))
  1376. {
  1377. $sLifecycle .= " \"initial_state_path\" => $sInitialStatePath,\n";
  1378. }
  1379. $sLifecycle .= " )\n";
  1380. $sLifecycle .= " );\n";
  1381. $oTransitions = $oState->GetUniqueElement('transitions');
  1382. foreach ($oTransitions->getElementsByTagName('transition') as $oTransition)
  1383. {
  1384. $sStimulus = $oTransition->getAttribute('id');
  1385. $sTargetState = $oTransition->GetChildText('target');
  1386. $oActions = $oTransition->GetUniqueElement('actions');
  1387. $aVerbs = array();
  1388. foreach ($oActions->getElementsByTagName('action') as $oAction)
  1389. {
  1390. $sVerb = $oAction->GetChildText('verb');
  1391. $oParams = $oAction->GetOptionalElement('params');
  1392. $aActionParams = array();
  1393. if ($oParams)
  1394. {
  1395. $oParamNodes = $oParams->getElementsByTagName('param');
  1396. foreach($oParamNodes as $oParam)
  1397. {
  1398. $sParamType = $oParam->getAttribute('xsi:type');
  1399. if ($sParamType == '')
  1400. {
  1401. $sParamType = 'string';
  1402. }
  1403. $aActionParams[] = "array('type' => '$sParamType', 'value' => ".self::QuoteForPHP($oParam->textContent).")";
  1404. }
  1405. }
  1406. else
  1407. {
  1408. // Old (pre 2.1.0) format, when no parameter is specified, assume 1 parameter: reference sStimulusCode
  1409. $aActionParams[] = "array('type' => 'reference', 'value' => 'sStimulusCode')";
  1410. }
  1411. $sActionParams = 'array('.implode(', ', $aActionParams).')';
  1412. $aVerbs[] = "array('verb' => '$sVerb', 'params' => $sActionParams)";
  1413. }
  1414. $sActions = implode(', ', $aVerbs);
  1415. $sLifecycle .= " MetaModel::Init_DefineTransition(\"$sState\", \"$sStimulus\", array(\n";
  1416. $sLifecycle .= " \"target_state\"=>\"$sTargetState\",\n";
  1417. $sLifecycle .= " \"actions\"=>array($sActions),\n";
  1418. $sLifecycle .= " \"user_restriction\"=>null,\n";
  1419. $sLifecycle .= " \"attribute_list\"=>array(\n";
  1420. $oFlags = $oTransition->GetOptionalElement('flags');
  1421. if($oFlags !== null)
  1422. {
  1423. foreach ($oFlags->getElementsByTagName('attribute') as $oAttributeNode)
  1424. {
  1425. $sFlags = $this->FlagsToPHP($oAttributeNode);
  1426. if (strlen($sFlags) > 0)
  1427. {
  1428. $sAttCode = $oAttributeNode->GetAttribute('id');
  1429. $sLifecycle .= " '$sAttCode' => $sFlags,\n";
  1430. }
  1431. }
  1432. }
  1433. $sLifecycle .= " )\n";
  1434. $sLifecycle .= " ));\n";
  1435. }
  1436. }
  1437. }
  1438. // ZLists
  1439. //
  1440. $aListRef = array(
  1441. 'details' => 'details',
  1442. 'standard_search' => 'search',
  1443. 'list' => 'list'
  1444. );
  1445. $oPresentation = $oClass->GetUniqueElement('presentation');
  1446. $sZlists = '';
  1447. foreach ($aListRef as $sListCode => $sListTag)
  1448. {
  1449. $oListNode = $oPresentation->GetOptionalElement($sListTag);
  1450. if ($oListNode)
  1451. {
  1452. $aAttributes = $oListNode->GetNodeAsArrayOfItems();
  1453. $this->ArrayOfItemsToZList($aAttributes);
  1454. $sZAttributes = var_export($aAttributes, true);
  1455. $sZlists .= " MetaModel::Init_SetZListItems('$sListCode', $sZAttributes);\n";
  1456. }
  1457. }
  1458. // Methods
  1459. $sMethods = "";
  1460. $oMethods = $oClass->GetUniqueElement('methods');
  1461. foreach($oMethods->getElementsByTagName('method') as $oMethod)
  1462. {
  1463. $sMethodCode = $oMethod->GetChildText('code');
  1464. if ($sMethodComment = $oMethod->GetChildText('comment', null))
  1465. {
  1466. $sMethods .= "\n\t$sMethodComment\n".$sMethodCode."\n";
  1467. }
  1468. else
  1469. {
  1470. $sMethods .= "\n\n".$sMethodCode."\n";
  1471. }
  1472. }
  1473. // Relations
  1474. //
  1475. $oRelations = $oClass->GetOptionalElement('relations');
  1476. if ($oRelations)
  1477. {
  1478. $aRelations = array();
  1479. foreach($oRelations->getElementsByTagName('relation') as $oRelation)
  1480. {
  1481. $sRelationId = $oRelation->getAttribute('id');
  1482. $this->aRelations[$sRelationId] = array('id' => $sRelationId);
  1483. $oNeighbours = $oRelation->GetUniqueElement('neighbours');
  1484. foreach($oNeighbours->getElementsByTagName('neighbour') as $oNeighbour)
  1485. {
  1486. $sNeighbourId = $oNeighbour->getAttribute('id');
  1487. $sDirection = $oNeighbour->GetChildText('direction', 'both');
  1488. $sAttribute = $oNeighbour->GetChildText('attribute');
  1489. $sQueryDown = $oNeighbour->GetChildText('query_down');
  1490. $sQueryUp = $oNeighbour->GetChildText('query_up');
  1491. if (($sQueryDown == '') && ($sAttribute == ''))
  1492. {
  1493. throw new DOMFormatException("Relation '$sRelationId/$sNeighbourId': either a query or an attribute must be specified");
  1494. }
  1495. if (($sQueryDown != '') && ($sAttribute != ''))
  1496. {
  1497. throw new DOMFormatException("Relation '$sRelationId/$sNeighbourId': both a query and and attribute have been specified... which one should be used?");
  1498. }
  1499. if ($sDirection == 'both')
  1500. {
  1501. if (($sAttribute == '') && ($sQueryUp == ''))
  1502. {
  1503. throw new DOMFormatException("Relation '$sRelationId/$sNeighbourId': missing the query_up specification");
  1504. }
  1505. }
  1506. elseif ($sDirection == 'down')
  1507. {
  1508. // Ok
  1509. }
  1510. else
  1511. {
  1512. throw new DOMFormatException("Relation '$sRelationId/$sNeighbourId': unknown direction ($sDirection), expecting 'both' or 'down'");
  1513. }
  1514. $aRelations[$sRelationId][$sNeighbourId] = array(
  1515. '_legacy_' => false,
  1516. 'sDirection' => $sDirection,
  1517. 'sDefinedInClass' => $sClass,
  1518. 'sNeighbour' => $sNeighbourId,
  1519. 'sQueryDown' => $sQueryDown,
  1520. 'sQueryUp' => $sQueryUp,
  1521. 'sAttribute' => $sAttribute,
  1522. );
  1523. }
  1524. }
  1525. $sMethods .= "\tpublic static function GetRelationQueriesEx(\$sRelCode)\n";
  1526. $sMethods .= "\t{\n";
  1527. $sMethods .= "\t\tswitch (\$sRelCode)\n";
  1528. $sMethods .= "\t\t{\n";
  1529. foreach ($aRelations as $sRelationId => $aRelationData)
  1530. {
  1531. $sMethods .= "\t\tcase '$sRelationId':\n";
  1532. $sMethods .= "\t\t\t\$aRels = array(\n";
  1533. foreach ($aRelationData as $sNeighbourId => $aData)
  1534. {
  1535. //$sData = str_replace("\n", "\n\t\t\t\t", var_export($aData, true));
  1536. $sData = var_export($aData, true);
  1537. $sMethods .= "\t\t\t\t'$sNeighbourId' => $sData,\n";
  1538. }
  1539. $sMethods .= "\t\t\t);\n";
  1540. $sMethods .= "\t\t\treturn array_merge(\$aRels, parent::GetRelationQueriesEx(\$sRelCode));\n\n";
  1541. }
  1542. $sMethods .= "\t\tdefault:\n";
  1543. $sMethods .= "\t\t\treturn parent::GetRelationQueriesEx(\$sRelCode);\n";
  1544. $sMethods .= "\t\t}\n";
  1545. $sMethods .= "\t}\n";
  1546. }
  1547. // Let's make the whole class declaration
  1548. //
  1549. $sPHP = "\n\n$sCodeComment\n";
  1550. $sParentClass = $oClass->GetChildText('php_parent');
  1551. $oPhpParent = $oClass->GetUniqueElement('php_parent', false);
  1552. if ($oPhpParent)
  1553. {
  1554. $sParentClass = $oPhpParent->GetChildText('name', '');
  1555. if ($sParentClass == '')
  1556. {
  1557. throw new Exception("Failed to process class '".$oClass->getAttribute('id')."', missing required tag 'name' under 'php_parent'.");
  1558. }
  1559. $sIncludeFile = $oPhpParent->GetChildText('file', '');
  1560. if ($sIncludeFile != '')
  1561. {
  1562. $sPHP .= "\nrequire_once('$sIncludeFile'); // Implementation of the class $sParentClass\n";
  1563. }
  1564. //TODO fix this !!!
  1565. // $sFullPath = $this->sSourceDir.'/'.$sModuleRelativeDir.'/'.$sIncludeFile;
  1566. // if (!file_exists($sFullPath))
  1567. // {
  1568. // throw new Exception("Failed to process class '".$oClass->getAttribute('id')."', from '$sModuleRelativeDir'. The required include file: '$sFullPath' does not exist.");
  1569. // }
  1570. }
  1571. else
  1572. {
  1573. $sParentClass = $oClass->GetChildText('parent', 'DBObject');
  1574. }
  1575. if ($oProperties->GetChildText('abstract') == 'true')
  1576. {
  1577. $sPHP .= 'abstract class '.$oClass->getAttribute('id');
  1578. }
  1579. else
  1580. {
  1581. $sPHP .= 'class '.$oClass->getAttribute('id');
  1582. }
  1583. $sPHP .= " extends $sParentClass\n";
  1584. $sPHP .=
  1585. <<<EOF
  1586. {
  1587. public static function Init()
  1588. {
  1589. \$aParams = array
  1590. (
  1591. $sClassParams
  1592. );
  1593. MetaModel::Init_Params(\$aParams);
  1594. MetaModel::Init_InheritAttributes();
  1595. $sAttributes
  1596. $sLifecycle
  1597. $sHighlightScale
  1598. $sZlists
  1599. }
  1600. $sMethods
  1601. }
  1602. EOF;
  1603. return $sPHP;
  1604. }// function CompileClass()
  1605. protected function CompileMenu($oMenu, $sTempTargetDir, $sFinalTargetDir, $sModuleRelativeDir, $oP)
  1606. {
  1607. $this->CompileFiles($oMenu, $sTempTargetDir.'/'.$sModuleRelativeDir, $sFinalTargetDir.'/'.$sModuleRelativeDir, $sModuleRelativeDir);
  1608. $sMenuId = $oMenu->getAttribute("id");
  1609. $sMenuClass = $oMenu->getAttribute("xsi:type");
  1610. $sParent = $oMenu->GetChildText('parent', null);
  1611. if ($sParent)
  1612. {
  1613. $sParentSpec = "\$__comp_menus__['$sParent']->GetIndex()";
  1614. }
  1615. else
  1616. {
  1617. $sParentSpec = '-1';
  1618. }
  1619. $fRank = (float) $oMenu->GetChildText('rank');
  1620. switch($sMenuClass)
  1621. {
  1622. case 'WebPageMenuNode':
  1623. $sUrl = $oMenu->GetChildText('url');
  1624. $sUrlSpec = $this->PathToPHP($sUrl, $sModuleRelativeDir, true /* Url */);
  1625. $sNewMenu = "new WebPageMenuNode('$sMenuId', $sUrlSpec, $sParentSpec, $fRank);";
  1626. break;
  1627. case 'DashboardMenuNode':
  1628. $sTemplateFile = $oMenu->GetChildText('definition_file', '');
  1629. if ($sTemplateFile != '')
  1630. {
  1631. $sTemplateSpec = $this->PathToPHP($sTemplateFile, $sModuleRelativeDir);
  1632. }
  1633. else
  1634. {
  1635. $oDashboardDefinition = $oMenu->GetOptionalElement('definition');
  1636. if ($oDashboardDefinition == null)
  1637. {
  1638. throw(new DOMFormatException('Missing definition for Dashboard menu "'.$sMenuId.'" expecting either a tag "definition_file" or "definition".'));
  1639. }
  1640. $sFileName = strtolower(str_replace(array(':', '/', '\\', '*'), '_', $sMenuId)).'_dashboard_menu.xml';
  1641. $sTemplateSpec = $this->PathToPHP($sFileName, $sModuleRelativeDir);
  1642. $oXMLDoc = new DOMDocument('1.0', 'UTF-8');
  1643. $oXMLDoc->formatOutput = true; // indent (must be loaded with option LIBXML_NOBLANKS)
  1644. $oXMLDoc->preserveWhiteSpace = true; // otherwise the formatOutput option would have no effect
  1645. $oRootNode = $oXMLDoc->createElement('dashboard'); // make sure that the document is not empty
  1646. $oRootNode->setAttribute('xmlns:xsi', "http://www.w3.org/2001/XMLSchema-instance");
  1647. $oXMLDoc->appendChild($oRootNode);
  1648. foreach($oDashboardDefinition->childNodes as $oNode)
  1649. {
  1650. $oDefNode = $oXMLDoc->importNode($oNode, true); // layout, cells, etc Nodes and below
  1651. $oRootNode->appendChild($oDefNode);
  1652. }
  1653. $oXMLDoc->save($sTempTargetDir.'/'.$sModuleRelativeDir.'/'.$sFileName);
  1654. }
  1655. $sNewMenu = "new DashboardMenuNode('$sMenuId', $sTemplateSpec, $sParentSpec, $fRank);";
  1656. break;
  1657. case 'ShortcutContainerMenuNode':
  1658. $sNewMenu = "new ShortcutContainerMenuNode('$sMenuId', $sParentSpec, $fRank);";
  1659. break;
  1660. case 'OQLMenuNode':
  1661. $sOQL = self::QuoteForPHP($oMenu->GetChildText('oql'));
  1662. $bSearch = ($oMenu->GetChildText('do_search') == '1') ? 'true' : 'false';
  1663. $sSearchFormOpenXML = $oMenu->GetChildText('search_form_open');
  1664. switch($sSearchFormOpenXML)
  1665. {
  1666. case '1':
  1667. $sSearchFormOpen = 'true';
  1668. break;
  1669. case '0':
  1670. $sSearchFormOpen = 'false';
  1671. break;
  1672. default:
  1673. $sSearchFormOpen = 'null'; // Actual open/close status depend on the config
  1674. }
  1675. $sSearchFormOpen = ($oMenu->GetChildText('search_form_open') == '') ? 'null' : 'false';
  1676. $sNewMenu = "new OQLMenuNode('$sMenuId', $sOQL, $sParentSpec, $fRank, $bSearch, $sSearchFormOpen);";
  1677. break;
  1678. case 'NewObjectMenuNode':
  1679. $sClass = $oMenu->GetChildText('class');
  1680. $sNewMenu = "new NewObjectMenuNode('$sMenuId', '$sClass', $sParentSpec, $fRank);";
  1681. break;
  1682. case 'SearchMenuNode':
  1683. $sClass = $oMenu->GetChildText('class');
  1684. $sNewMenu = "new SearchMenuNode('$sMenuId', '$sClass', $sParentSpec, $fRank);";
  1685. break;
  1686. case 'TemplateMenuNode':
  1687. $sTemplateFile = $oMenu->GetChildText('template_file');
  1688. $sTemplateSpec = $this->PathToPHP($sTemplateFile, $sModuleRelativeDir);
  1689. if ($sEnableClass = $oMenu->GetChildText('enable_class'))
  1690. {
  1691. $sEnableAction = $oMenu->GetChildText('enable_action', 'null');
  1692. $sEnablePermission = $oMenu->GetChildText('enable_permission', 'UR_ALLOWED_YES');
  1693. $sEnableStimulus = $oMenu->GetChildText('enable_stimulus');
  1694. if ($sEnableStimulus != null)
  1695. {
  1696. $sNewMenu = "new TemplateMenuNode('$sMenuId', $sTemplateSpec, $sParentSpec, $fRank, '$sEnableClass', $sEnableAction, $sEnablePermission, '$sEnableStimulus');";
  1697. }
  1698. else
  1699. {
  1700. $sNewMenu = "new TemplateMenuNode('$sMenuId', $sTemplateSpec, $sParentSpec, $fRank, '$sEnableClass', $sEnableAction, $sEnablePermission);";
  1701. }
  1702. }
  1703. else
  1704. {
  1705. $sNewMenu = "new TemplateMenuNode('$sMenuId', $sTemplateSpec, $sParentSpec, $fRank);";
  1706. }
  1707. break;
  1708. case 'MenuGroup':
  1709. default:
  1710. if ($sEnableClass = $oMenu->GetChildText('enable_class'))
  1711. {
  1712. $sEnableAction = $oMenu->GetChildText('enable_action', 'null');
  1713. $sEnablePermission = $oMenu->GetChildText('enable_permission', 'UR_ALLOWED_YES');
  1714. $sEnableStimulus = $oMenu->GetChildText('enable_stimulus');
  1715. if ($sEnableStimulus != null)
  1716. {
  1717. $sNewMenu = "new $sMenuClass('$sMenuId', $fRank, '$sEnableClass', $sEnableAction, $sEnablePermission, '$sEnableStimulus');";
  1718. }
  1719. else
  1720. {
  1721. $sNewMenu = "new $sMenuClass('$sMenuId', $fRank, '$sEnableClass', $sEnableAction, $sEnablePermission);";
  1722. }
  1723. }
  1724. else
  1725. {
  1726. $sNewMenu = "new $sMenuClass('$sMenuId', $fRank);";
  1727. }
  1728. }
  1729. $aPHPMenu = array("\$__comp_menus__['$sMenuId'] = $sNewMenu");
  1730. if ($sAutoReload = $oMenu->GetChildText('auto_reload'))
  1731. {
  1732. $sAutoReload = self::QuoteForPHP($sAutoReload);
  1733. $aPHPMenu[] = "\$__comp_menus__['$sMenuId']->SetParameters(array('auto_reload' => $sAutoReload));";
  1734. }
  1735. return $aPHPMenu;
  1736. } // function CompileMenu
  1737. /**
  1738. * Helper to compute the grant, taking any existing grant into account
  1739. */
  1740. protected function CumulateGrant(&$aGrants, $sKey, $bGrant)
  1741. {
  1742. if (isset($aGrants[$sKey]))
  1743. {
  1744. if (!$bGrant)
  1745. {
  1746. $aGrants[$sKey] = false;
  1747. }
  1748. }
  1749. else
  1750. {
  1751. $aGrants[$sKey] = $bGrant;
  1752. }
  1753. }
  1754. protected function CompileUserRights($oUserRightsNode)
  1755. {
  1756. static $aActionsInShort = array(
  1757. 'read' => 'r',
  1758. 'bulk read' => 'br',
  1759. 'write' => 'w',
  1760. 'bulk write' => 'bw',
  1761. 'delete' => 'd',
  1762. 'bulk delete' => 'bd',
  1763. );
  1764. // Preliminary : create an index so that links will be taken into account implicitely
  1765. $aLinkToClasses = array();
  1766. $oClasses = $this->oFactory->ListAllClasses();
  1767. foreach($oClasses as $oClass)
  1768. {
  1769. $bIsLink = false;
  1770. $oProperties = $oClass->GetOptionalElement('properties');
  1771. if ($oProperties)
  1772. {
  1773. $bIsLink = (bool) $this->GetPropNumber($oProperties, 'is_link', 0);
  1774. }
  1775. if ($bIsLink)
  1776. {
  1777. foreach($this->oFactory->ListFields($oClass) as $oField)
  1778. {
  1779. $sAttType = $oField->getAttribute('xsi:type');
  1780. if (($sAttType == 'AttributeExternalKey') || ($sAttType == 'AttributeHierarchicalKey'))
  1781. {
  1782. $sOnTargetDel = $oField->GetChildText('on_target_delete');
  1783. if (($sOnTargetDel == 'DEL_AUTO') || ($sOnTargetDel == 'DEL_SILENT'))
  1784. {
  1785. $sTargetClass = $oField->GetChildText('target_class');
  1786. $aLinkToClasses[$oClass->getAttribute('id')][] = $sTargetClass;
  1787. }
  1788. }
  1789. }
  1790. }
  1791. }
  1792. // Groups
  1793. //
  1794. $aGroupClasses = array();
  1795. $oGroups = $oUserRightsNode->GetUniqueElement('groups');
  1796. foreach($oGroups->getElementsByTagName('group') as $oGroup)
  1797. {
  1798. $sGroupId = $oGroup->getAttribute("id");
  1799. $aClasses = array();
  1800. $oClasses = $oGroup->GetUniqueElement('classes');
  1801. foreach($oClasses->getElementsByTagName('class') as $oClass)
  1802. {
  1803. $sClass = $oClass->getAttribute("id");
  1804. $aClasses[] = $sClass;
  1805. //$bSubclasses = $this->GetPropBoolean($oClass, 'subclasses', true);
  1806. //if ($bSubclasses)...
  1807. }
  1808. $aGroupClasses[$sGroupId] = $aClasses;
  1809. }
  1810. // Profiles and grants
  1811. //
  1812. $aProfiles = array();
  1813. // Hardcode the administrator profile
  1814. $aProfiles[1] = array(
  1815. 'name' => 'Administrator',
  1816. 'description' => 'Has the rights on everything (bypassing any control)'
  1817. );
  1818. $aGrants = array();
  1819. $oProfiles = $oUserRightsNode->GetUniqueElement('profiles');
  1820. foreach($oProfiles->getElementsByTagName('profile') as $oProfile)
  1821. {
  1822. $iProfile = $oProfile->getAttribute("id");
  1823. $sName = $oProfile->GetChildText('name');
  1824. $sDescription = $oProfile->GetChildText('description');
  1825. $oGroups = $oProfile->GetUniqueElement('groups');
  1826. foreach($oGroups->getElementsByTagName('group') as $oGroup)
  1827. {
  1828. $sGroupId = $oGroup->getAttribute("id");
  1829. $aActions = array();
  1830. $oActions = $oGroup->GetUniqueElement('actions');
  1831. foreach($oActions->getElementsByTagName('action') as $oAction)
  1832. {
  1833. $sAction = $oAction->getAttribute("id");
  1834. if (strpos($sAction, 'action:') === 0)
  1835. {
  1836. $sType = 'action';
  1837. $sActionCode = substr($sAction, strlen('action:'));
  1838. $sActionCode = $aActionsInShort[$sActionCode];
  1839. }
  1840. else
  1841. {
  1842. $sType = 'stimulus';
  1843. $sActionCode = substr($sAction, strlen('stimulus:'));
  1844. }
  1845. $sGrant = $oAction->GetText();
  1846. $bGrant = ($sGrant == 'allow');
  1847. if ($sGroupId == '*')
  1848. {
  1849. $aGrantClasses = array('*');
  1850. }
  1851. else
  1852. {
  1853. $aGrantClasses = $aGroupClasses[$sGroupId];
  1854. }
  1855. foreach ($aGrantClasses as $sClass)
  1856. {
  1857. if ($sType == 'stimulus')
  1858. {
  1859. $this->CumulateGrant($aGrants, $iProfile.'_'.$sClass.'_s_'.$sActionCode, $bGrant);
  1860. $this->CumulateGrant($aGrants, $iProfile.'_'.$sClass.'+_s_'.$sActionCode, $bGrant); // subclasses inherit this grant
  1861. }
  1862. else
  1863. {
  1864. $this->CumulateGrant($aGrants, $iProfile.'_'.$sClass.'_'.$sActionCode, $bGrant);
  1865. $this->CumulateGrant($aGrants, $iProfile.'_'.$sClass.'+_'.$sActionCode, $bGrant); // subclasses inherit this grant
  1866. }
  1867. }
  1868. }
  1869. }
  1870. $aProfiles[$iProfile] = array(
  1871. 'name' => $sName,
  1872. 'description' => $sDescription
  1873. );
  1874. }
  1875. $sProfiles = var_export($aProfiles, true);
  1876. $sGrants = var_export($aGrants, true);
  1877. $sLinkToClasses = var_export($aLinkToClasses, true);
  1878. $sPHP =
  1879. <<<EOF
  1880. //
  1881. // List of constant profiles
  1882. // - used by the class URP_Profiles at setup (create/update/delete records)
  1883. // - used by the addon UserRightsProfile to determine user rights
  1884. //
  1885. class ProfilesConfig
  1886. {
  1887. protected static \$aPROFILES = $sProfiles;
  1888. protected static \$aGRANTS = $sGrants;
  1889. protected static \$aLINKTOCLASSES = $sLinkToClasses;
  1890. // Now replaced by MetaModel::GetLinkClasses (working with 1.x)
  1891. // This function could be deprecated
  1892. public static function GetLinkClasses()
  1893. {
  1894. return self::\$aLINKTOCLASSES;
  1895. }
  1896. public static function GetProfileActionGrant(\$iProfileId, \$sClass, \$sAction)
  1897. {
  1898. \$bLegacyBehavior = MetaModel::GetConfig()->Get('user_rights_legacy');
  1899. // Search for a grant, stoping if any deny is encountered (allowance implies the verification of all paths)
  1900. \$bAllow = null;
  1901. // 1 - The class itself
  1902. //
  1903. \$sGrantKey = \$iProfileId.'_'.\$sClass.'_'.\$sAction;
  1904. if (isset(self::\$aGRANTS[\$sGrantKey]))
  1905. {
  1906. \$bAllow = self::\$aGRANTS[\$sGrantKey];
  1907. if (\$bLegacyBehavior) return \$bAllow;
  1908. if (!\$bAllow) return false;
  1909. }
  1910. // 2 - The parent classes, up to the root class
  1911. //
  1912. foreach (MetaModel::EnumParentClasses(\$sClass, ENUM_PARENT_CLASSES_EXCLUDELEAF, false /*bRootFirst*/) as \$sParent)
  1913. {
  1914. \$sGrantKey = \$iProfileId.'_'.\$sParent.'+_'.\$sAction;
  1915. if (isset(self::\$aGRANTS[\$sGrantKey]))
  1916. {
  1917. \$bAllow = self::\$aGRANTS[\$sGrantKey];
  1918. if (\$bLegacyBehavior) return \$bAllow;
  1919. if (!\$bAllow) return false;
  1920. }
  1921. }
  1922. // 3 - The related classes (if the current is an N-N link with DEL_AUTO/DEL_SILENT)
  1923. //
  1924. \$bGrant = self::GetLinkActionGrant(\$iProfileId, \$sClass, \$sAction);
  1925. if (!is_null(\$bGrant))
  1926. {
  1927. \$bAllow = \$bGrant;
  1928. if (\$bLegacyBehavior) return \$bAllow;
  1929. if (!\$bAllow) return false;
  1930. }
  1931. // 4 - All
  1932. //
  1933. \$sGrantKey = \$iProfileId.'_*_'.\$sAction;
  1934. if (isset(self::\$aGRANTS[\$sGrantKey]))
  1935. {
  1936. \$bAllow = self::\$aGRANTS[\$sGrantKey];
  1937. if (\$bLegacyBehavior) return \$bAllow;
  1938. if (!\$bAllow) return false;
  1939. }
  1940. // null or true
  1941. return \$bAllow;
  1942. }
  1943. public static function GetProfileStimulusGrant(\$iProfileId, \$sClass, \$sStimulus)
  1944. {
  1945. \$sGrantKey = \$iProfileId.'_'.\$sClass.'_s_'.\$sStimulus;
  1946. if (isset(self::\$aGRANTS[\$sGrantKey]))
  1947. {
  1948. return self::\$aGRANTS[\$sGrantKey];
  1949. }
  1950. \$sGrantKey = \$iProfileId.'_*_s_'.\$sStimulus;
  1951. if (isset(self::\$aGRANTS[\$sGrantKey]))
  1952. {
  1953. return self::\$aGRANTS[\$sGrantKey];
  1954. }
  1955. return null;
  1956. }
  1957. // returns an array of id => array of column => php value(so-called "real value")
  1958. public static function GetProfilesValues()
  1959. {
  1960. return self::\$aPROFILES;
  1961. }
  1962. // Propagate the rights on classes onto the links themselves (the external keys must have DEL_AUTO or DEL_SILENT
  1963. //
  1964. protected static function GetLinkActionGrant(\$iProfileId, \$sClass, \$sAction)
  1965. {
  1966. if (array_key_exists(\$sClass, self::\$aLINKTOCLASSES))
  1967. {
  1968. // Get the grant for the remote classes. The resulting grant is:
  1969. // - One YES => YES
  1970. // - 100% undefined => undefined
  1971. // - otherwise => NO
  1972. //
  1973. // Having write allowed on the remote class implies write + delete on the N-N link class
  1974. if (\$sAction == 'd')
  1975. {
  1976. \$sRemoteAction = 'w';
  1977. }
  1978. elseif (\$sAction == 'bd')
  1979. {
  1980. \$sRemoteAction = 'bw';
  1981. }
  1982. else
  1983. {
  1984. \$sRemoteAction = \$sAction;
  1985. }
  1986. foreach (self::\$aLINKTOCLASSES[\$sClass] as \$sRemoteClass)
  1987. {
  1988. \$bUndefined = true;
  1989. \$bGrant = self::GetProfileActionGrant(\$iProfileId, \$sRemoteClass, \$sAction);
  1990. if (\$bGrant === true)
  1991. {
  1992. return true;
  1993. }
  1994. if (\$bGrant === false)
  1995. {
  1996. \$bUndefined = false;
  1997. }
  1998. }
  1999. if (!\$bUndefined)
  2000. {
  2001. return false;
  2002. }
  2003. }
  2004. return null;
  2005. }
  2006. }
  2007. EOF;
  2008. return $sPHP;
  2009. } // function CompileUserRights
  2010. protected function CompileDictionaries($oDictionaries, $sTempTargetDir, $sFinalTargetDir)
  2011. {
  2012. $aLanguages = array();
  2013. foreach($oDictionaries as $oDictionaryNode)
  2014. {
  2015. $sLang = $oDictionaryNode->getAttribute('id');
  2016. $sEnglishLanguageDesc = $oDictionaryNode->GetChildText('english_description');
  2017. $sLocalizedLanguageDesc = $oDictionaryNode->GetChildText('localized_description');
  2018. $aLanguages[$sLang] = array('description' => $sEnglishLanguageDesc, 'localized_description' => $sLocalizedLanguageDesc);
  2019. $aEntriesPHP = array();
  2020. $oEntries = $oDictionaryNode->GetUniqueElement('entries');
  2021. foreach ($oEntries->getElementsByTagName('entry') as $oEntry)
  2022. {
  2023. $sStringCode = $oEntry->getAttribute('id');
  2024. $sValue = $oEntry->GetText();
  2025. $aEntriesPHP[] = "\t'$sStringCode' => ".self::QuoteForPHP(self::FilterDictString($sValue), true).",";
  2026. }
  2027. $sEntriesPHP = implode("\n", $aEntriesPHP);
  2028. $sPHPDict =
  2029. <<<EOF
  2030. <?php
  2031. //
  2032. // Dictionary built by the compiler for the language "$sLang"
  2033. //
  2034. Dict::SetEntries('$sLang', array(
  2035. $sEntriesPHP
  2036. ));
  2037. EOF;
  2038. $sSafeLang = str_replace(' ', '-', strtolower(trim($sLang)));
  2039. $sDictFile = $sTempTargetDir.'/dictionaries/'.$sSafeLang.'.dict.php';
  2040. file_put_contents($sDictFile, $sPHPDict);
  2041. }
  2042. $sLanguagesFile = $sTempTargetDir.'/dictionaries/languages.php';
  2043. $sLanguagesDump = var_export($aLanguages, true);
  2044. $sLanguagesFileContent =
  2045. <<<EOF
  2046. <?php
  2047. //
  2048. // Dictionary index built by the compiler
  2049. //
  2050. Dict::SetLanguagesList(
  2051. $sLanguagesDump
  2052. );
  2053. EOF;
  2054. file_put_contents($sLanguagesFile, $sLanguagesFileContent);
  2055. }
  2056. protected static function FilterDictString($s)
  2057. {
  2058. if (strpos($s, '~') !== false)
  2059. {
  2060. return str_replace(array('~~', '~*'), '', $s);
  2061. }
  2062. return $s;
  2063. }
  2064. // Transform the file references into the corresponding filename (and create the file in the relevant directory)
  2065. //
  2066. protected function CompileFiles($oNode, $sTempTargetDir, $sFinalTargetDir, $sRelativePath)
  2067. {
  2068. $oFileRefs = $oNode->GetNodes(".//fileref");
  2069. foreach ($oFileRefs as $oFileRef)
  2070. {
  2071. $sFileId = $oFileRef->getAttribute('ref');
  2072. if ($sFileId !== '')
  2073. {
  2074. $oNodes = $this->oFactory->GetNodes("/itop_design/files/file[@id='$sFileId']");
  2075. if ($oNodes->length == 0)
  2076. {
  2077. throw new DOMFormatException('Could not find the file with ref '.$sFileId);
  2078. }
  2079. $sName = $oNodes->item(0)->GetChildText('name');
  2080. $sData = base64_decode($oNodes->item(0)->GetChildText('data'));
  2081. $aPathInfo = pathinfo($sName);
  2082. $sFile = $sFileId.'.'.$aPathInfo['extension'];
  2083. $sFilePath = $sTempTargetDir.'/images/'.$sFile;
  2084. @mkdir($sTempTargetDir.'/images');
  2085. file_put_contents($sFilePath, $sData);
  2086. if (!file_exists($sFilePath))
  2087. {
  2088. throw new Exception('Could not write icon file '.$sFilePath);
  2089. }
  2090. $oParentNode = $oFileRef->parentNode;
  2091. $oParentNode->removeChild($oFileRef);
  2092. $oTextNode = $oParentNode->ownerDocument->createTextNode($sRelativePath.'/images/'.$sFile);
  2093. $oParentNode->appendChild($oTextNode);
  2094. }
  2095. }
  2096. }
  2097. protected function CompileLogo($oBrandingNode, $sTempTargetDir, $sFinalTargetDir, $sNodeName, $sTargetFile)
  2098. {
  2099. if (($sIcon = $oBrandingNode->GetChildText($sNodeName)) && (strlen($sIcon) > 0))
  2100. {
  2101. $sSourceFile = $sTempTargetDir.'/'.$sIcon;
  2102. $sTargetFile = $sTempTargetDir.'/branding/'.$sTargetFile.'.png';
  2103. if (!file_exists($sSourceFile))
  2104. {
  2105. throw new Exception("Branding $sNodeName: could not find the file $sIcon ($sSourceFile)");
  2106. }
  2107. copy($sSourceFile, $sTargetFile);
  2108. }
  2109. }
  2110. protected function CompileBranding($oBrandingNode, $sTempTargetDir, $sFinalTargetDir)
  2111. {
  2112. // Enable relative paths
  2113. SetupUtils::builddir($sTempTargetDir.'/branding');
  2114. if ($oBrandingNode)
  2115. {
  2116. // Transform file refs into files in the images folder
  2117. $this->CompileFiles($oBrandingNode, $sTempTargetDir.'/branding', $sFinalTargetDir.'/branding', 'branding');
  2118. $this->CompileLogo($oBrandingNode, $sTempTargetDir, $sFinalTargetDir, 'main_logo', 'main-logo');
  2119. $this->CompileLogo($oBrandingNode, $sTempTargetDir, $sFinalTargetDir, 'login_logo', 'login-logo');
  2120. $this->CompileLogo($oBrandingNode, $sTempTargetDir, $sFinalTargetDir, 'portal_logo', 'portal-logo');
  2121. // Cleanup the images directory (eventually made by CompileFiles)
  2122. if (file_exists($sTempTargetDir.'/branding/images'))
  2123. {
  2124. SetupUtils::rrmdir($sTempTargetDir.'/branding/images');
  2125. }
  2126. }
  2127. }
  2128. protected function CompilePortals($oPortalsNode, $sTempTargetDir, $sFinalTargetDir)
  2129. {
  2130. if ($oPortalsNode)
  2131. {
  2132. // Create some static PHP data in <env-xxx>/core/main.php
  2133. $oPortals = $oPortalsNode->GetNodes('portal');
  2134. $aPortalsConfig = array();
  2135. foreach($oPortals as $oPortal)
  2136. {
  2137. $sPortalId = $oPortal->getAttribute('id');
  2138. $aPortalsConfig[$sPortalId] = array();
  2139. $aPortalsConfig[$sPortalId]['rank'] = (float)$oPortal->GetChildText('rank', 0);
  2140. $aPortalsConfig[$sPortalId]['handler'] = $oPortal->GetChildText('handler', 'PortalDispatcher');
  2141. $aPortalsConfig[$sPortalId]['url'] = $oPortal->GetChildText('url', 'portal/index.php');
  2142. $oAllow = $oPortal->GetOptionalElement('allow');
  2143. $aPortalsConfig[$sPortalId]['allow'] = array();
  2144. if ($oAllow)
  2145. {
  2146. foreach($oAllow->GetNodes('profile') as $oProfile)
  2147. {
  2148. $aPortalsConfig[$sPortalId]['allow'][] = $oProfile->getAttribute('id');
  2149. }
  2150. }
  2151. $oDeny = $oPortal->GetOptionalElement('deny');
  2152. $aPortalsConfig[$sPortalId]['deny'] = array();
  2153. if ($oDeny)
  2154. {
  2155. foreach($oDeny->GetNodes('profile') as $oProfile)
  2156. {
  2157. $aPortalsConfig[$sPortalId]['deny'][] = $oProfile->getAttribute('id');
  2158. }
  2159. }
  2160. }
  2161. uasort($aPortalsConfig, array(get_class($this), 'SortOnRank'));
  2162. $this->sMainPHPCode .= "\n";
  2163. $this->sMainPHPCode .= "/**\n";
  2164. $this->sMainPHPCode .= " * Portal(s) definition(s) extracted from the XML definition at compile time\n";
  2165. $this->sMainPHPCode .= " */\n";
  2166. $this->sMainPHPCode .= "class PortalDispatcherData\n";
  2167. $this->sMainPHPCode .= "{\n";
  2168. $this->sMainPHPCode .= "\tprotected static \$aData = ".var_export($aPortalsConfig, true).";\n\n";
  2169. $this->sMainPHPCode .= "\tpublic static function GetData(\$sPortalId = null)\n";
  2170. $this->sMainPHPCode .= "\t{\n";
  2171. $this->sMainPHPCode .= "\t\tif (\$sPortalId === null) return self::\$aData;\n";
  2172. $this->sMainPHPCode .= "\t\tif (!array_key_exists(\$sPortalId, self::\$aData)) return array();\n";
  2173. $this->sMainPHPCode .= "\t\treturn self::\$aData[\$sPortalId];\n";
  2174. $this->sMainPHPCode .= "\t}\n";
  2175. $this->sMainPHPCode .= "}\n";
  2176. }
  2177. }
  2178. public static function SortOnRank($aConf1, $aConf2)
  2179. {
  2180. return ($aConf1['rank'] < $aConf2['rank']) ? -1 : 1;
  2181. }
  2182. protected function CompileParameters($oParametersNode, $sTempTargetDir, $sFinalTargetDir)
  2183. {
  2184. if ($oParametersNode)
  2185. {
  2186. // Create some static PHP data in <env-xxx>/core/main.php
  2187. $oParameters = $oParametersNode->GetNodes('parameters');
  2188. $aParametersConfig = array();
  2189. foreach($oParameters as $oParams)
  2190. {
  2191. $sModuleId = $oParams->getAttribute('id');
  2192. $oParamsReader = new MFParameters($oParams);
  2193. $aParametersConfig[$sModuleId] = $oParamsReader->GetAll();
  2194. }
  2195. $this->sMainPHPCode .= "\n";
  2196. $this->sMainPHPCode .= "/**\n";
  2197. $this->sMainPHPCode .= " * Modules parameters extracted from the XML definition at compile time\n";
  2198. $this->sMainPHPCode .= " */\n";
  2199. $this->sMainPHPCode .= "class ModulesXMLParameters\n";
  2200. $this->sMainPHPCode .= "{\n";
  2201. $this->sMainPHPCode .= "\tprotected static \$aData = ".var_export($aParametersConfig, true).";\n\n";
  2202. $this->sMainPHPCode .= "\tpublic static function GetData(\$sModuleId = null)\n";
  2203. $this->sMainPHPCode .= "\t{\n";
  2204. $this->sMainPHPCode .= "\t\tif (\$sModuleId === null) return self::\$aData;\n";
  2205. $this->sMainPHPCode .= "\t\tif (!array_key_exists(\$sModuleId, self::\$aData)) return array();\n";
  2206. $this->sMainPHPCode .= "\t\treturn self::\$aData[\$sModuleId];\n";
  2207. $this->sMainPHPCode .= "\t}\n";
  2208. $this->sMainPHPCode .= "}\n";
  2209. }
  2210. }
  2211. protected function CompileModuleDesigns($oDesigns, $sTempTargetDir, $sFinalTargetDir)
  2212. {
  2213. if ($oDesigns)
  2214. {
  2215. SetupUtils::builddir($sTempTargetDir.'/core/module_designs/images');
  2216. $this->CompileFiles($oDesigns, $sTempTargetDir.'/core/module_designs', $sFinalTargetDir.'/core/module_designs', 'core/module_designs');
  2217. foreach ($oDesigns->GetNodes('module_design') as $oDesign)
  2218. {
  2219. $oDoc = new ModuleDesign();
  2220. $oClone = $oDoc->importNode($oDesign->cloneNode(true), true);
  2221. $oDoc->appendChild($oClone);
  2222. $oDoc->save($sTempTargetDir.'/core/module_designs/'.$oDesign->getAttribute('id').'.xml');
  2223. }
  2224. }
  2225. }
  2226. protected function LoadSnippets()
  2227. {
  2228. $oSnippets = $this->oFactory->GetNodes('/itop_design/snippets/snippet');
  2229. foreach($oSnippets as $oSnippet)
  2230. {
  2231. $sSnippetId = $oSnippet->getAttribute('id');
  2232. $sPlacement = $oSnippet->GetChildText('placement', null);
  2233. if ($sPlacement == 'core')
  2234. {
  2235. $sModuleId = '_core_';
  2236. }
  2237. else if ($sPlacement == 'module')
  2238. {
  2239. $sModuleId = $oSnippet->GetChildText('module', null);
  2240. if ($sModuleId == null)
  2241. {
  2242. throw new DOMFormatException("Invalid definition for snippet id='$sSnippetId' with placement=module. Missing '<module>' tag.");
  2243. }
  2244. }
  2245. else if ($sPlacement === 'null')
  2246. {
  2247. throw new DOMFormatException("Invalid definition for snippet id='$sSnippetId'. Missing <placement> tag.");
  2248. }
  2249. else
  2250. {
  2251. throw new DOMFormatException("Invalid definition for snippet id='$sSnippetId'. Incorrect value '$sPlacement' for <placement> tag. The allowed values are either 'core' or 'module'.");
  2252. }
  2253. if (!array_key_exists($sModuleId, $this->aSnippets))
  2254. {
  2255. $this->aSnippets[$sModuleId] = array('before' => array(), 'after' => array());
  2256. }
  2257. $fOrder = (float) $oSnippet->GetChildText('rank', 0);
  2258. $sContent = $oSnippet->GetChildText('content', '');
  2259. if ($fOrder < 0)
  2260. {
  2261. $this->aSnippets[$sModuleId]['before'][] = array(
  2262. 'rank' => $fOrder,
  2263. 'content' => $sContent,
  2264. 'snippet_id' => $sSnippetId,
  2265. );
  2266. }
  2267. else
  2268. {
  2269. $this->aSnippets[$sModuleId]['after'][] = array(
  2270. 'rank' => $fOrder,
  2271. 'content' => $sContent,
  2272. 'snippet_id' => $sSnippetId,
  2273. );
  2274. }
  2275. }
  2276. foreach($this->aSnippets as $sModuleId => $void)
  2277. {
  2278. uasort($this->aSnippets[$sModuleId]['before'], array(get_class($this), 'SortOnRank'));
  2279. }
  2280. }
  2281. }