wizardsteps.class.inc.php 74 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157
  1. <?php
  2. // Copyright (C) 2010-2012 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. /**
  19. * All the steps of the iTop installation wizard
  20. * @copyright Copyright (C) 2010-2012 Combodo SARL
  21. * @license http://opensource.org/licenses/AGPL-3.0
  22. */
  23. require_once(APPROOT.'setup/setuputils.class.inc.php');
  24. require_once(APPROOT.'setup/parameters.class.inc.php');
  25. require_once(APPROOT.'setup/applicationinstaller.class.inc.php');
  26. require_once(APPROOT.'setup/parameters.class.inc.php');
  27. /**
  28. * First step of the iTop Installation Wizard: Welcome screen
  29. */
  30. class WizStepWelcome extends WizardStep
  31. {
  32. protected $bCanMoveForward;
  33. public function GetTitle()
  34. {
  35. return 'Welcome to '.ITOP_APPLICATION.' version '.ITOP_VERSION;
  36. }
  37. /**
  38. * Returns the label for the " Next >> " button
  39. * @return string The label for the button
  40. */
  41. public function GetNextButtonLabel()
  42. {
  43. return ' Continue >> ';
  44. }
  45. public function GetPossibleSteps()
  46. {
  47. return array('WizStepInstallOrUpgrade');
  48. }
  49. public function ProcessParams($bMoveForward = true)
  50. {
  51. return array('class' => 'WizStepInstallOrUpgrade', 'state' => '');
  52. }
  53. public function Display(WebPage $oPage)
  54. {
  55. // Store the misc_options for the future...
  56. $aMiscOptions = utils::ReadParam('option', array(), false, 'raw_data');
  57. $sMiscOptions = $this->oWizard->GetParameter('misc_options', json_encode($aMiscOptions));
  58. $this->oWizard->SetParameter('misc_options', $sMiscOptions);
  59. $oPage->add('<h1>'.ITOP_APPLICATION.' Installation Wizard</h1>');
  60. $aResults = SetupUtils::CheckPHPVersion($oPage);
  61. $this->bCanMoveForward = true;
  62. $aInfo = array();
  63. $aWarnings = array();
  64. $aErrors = array();
  65. foreach($aResults as $oCheckResult)
  66. {
  67. switch($oCheckResult->iSeverity)
  68. {
  69. case CheckResult::ERROR:
  70. $aErrors[] = $oCheckResult->sLabel;
  71. $this->bCanMoveForward = false;
  72. break;
  73. case CheckResult::WARNING:
  74. $aWarnings[] = $oCheckResult->sLabel;
  75. break;
  76. case CheckResult::INFO:
  77. $aInfo[] = $oCheckResult->sLabel;
  78. break;
  79. }
  80. }
  81. $sStyle = 'style="display:none;max-height:196px;overflow:auto;"';
  82. $sToggleButtons = '<button type="button" id="show_details" onclick="$(\'#details\').toggle(); $(this).toggle(); $(\'#hide_details\').toggle();">Show details</button><button type="button" id="hide_details" style="display:none;" onclick="$(\'#details\').toggle(); $(this).toggle(); $(\'#show_details\').toggle();">Hide details</button>';
  83. if (count($aErrors)> 0)
  84. {
  85. $sStyle = 'style="max-height:196px;overflow:auto;"';
  86. $sImage = "stop-mid.png";
  87. $sTitle = count($aErrors).' Error(s), '.count($aWarnings).' Warning(s).';
  88. }
  89. else if (count($aWarnings)> 0)
  90. {
  91. $sTitle = count($aWarnings).' Warning(s) '.$sToggleButtons;
  92. $sImage = "messagebox_warning-mid.png";
  93. }
  94. else
  95. {
  96. $sTitle = 'Ok. '.$sToggleButtons;
  97. $sImage = "clean-mid.png";
  98. }
  99. $oPage->add('<h2>Prerequisites validation: ');
  100. $oPage->add("<img style=\"vertical-align:middle;\" src=\"../images/$sImage\"> ");
  101. $oPage->add($sTitle);
  102. $oPage->add('</h2>');
  103. $oPage->add('<div id="details" '.$sStyle.'>');
  104. foreach($aErrors as $sText)
  105. {
  106. $oPage->error($sText);
  107. }
  108. foreach($aWarnings as $sText)
  109. {
  110. $oPage->warning($sText);
  111. }
  112. foreach($aInfo as $sText)
  113. {
  114. $oPage->ok($sText);
  115. }
  116. $oPage->add('</div>');
  117. if (!$this->bCanMoveForward)
  118. {
  119. $oPage->p('Sorry, the installation cannot continue. Please fix the errors and reload this page to launch the installation again.');
  120. }
  121. }
  122. public function CanMoveForward()
  123. {
  124. return $this->bCanMoveForward;
  125. }
  126. }
  127. /**
  128. * Second step of the iTop Installation Wizard: Install or Upgrade
  129. */
  130. class WizStepInstallOrUpgrade extends WizardStep
  131. {
  132. public function GetTitle()
  133. {
  134. return 'Install or Upgrade choice';
  135. }
  136. public function GetPossibleSteps()
  137. {
  138. return array('WizStepDetectedInfo', 'WizStepLicense');
  139. }
  140. public function ProcessParams($bMoveForward = true)
  141. {
  142. $sNextStep = '';
  143. $sInstallMode = utils::ReadParam('install_mode');
  144. $this->oWizard->SaveParameter('previous_version_dir', '');
  145. $this->oWizard->SaveParameter('db_server', '');
  146. $this->oWizard->SaveParameter('db_user', '');
  147. $this->oWizard->SaveParameter('db_pwd', '');
  148. $this->oWizard->SaveParameter('db_name', '');
  149. $this->oWizard->SaveParameter('db_prefix', '');
  150. $this->oWizard->SaveParameter('db_backup', false);
  151. $this->oWizard->SaveParameter('db_backup_path', '');
  152. if ($sInstallMode == 'install')
  153. {
  154. $this->oWizard->SetParameter('install_mode', 'install');
  155. $sFullSourceDir = SetupUtils::GetLatestDataModelDir();
  156. $this->oWizard->SetParameter('source_dir', $sFullSourceDir);
  157. $this->oWizard->SetParameter('datamodel_version', SetupUtils::GetDataModelVersion($sFullSourceDir));
  158. $sNextStep = 'WizStepLicense';
  159. }
  160. else
  161. {
  162. $this->oWizard->SetParameter('install_mode', 'upgrade');
  163. $sNextStep = 'WizStepDetectedInfo';
  164. }
  165. return array('class' => $sNextStep, 'state' => '');
  166. }
  167. public function Display(WebPage $oPage)
  168. {
  169. $sInstallMode = $this->oWizard->GetParameter('install_mode', '');
  170. $sDBServer = $this->oWizard->GetParameter('db_server', '');
  171. $sDBUser = $this->oWizard->GetParameter('db_user', '');
  172. $sDBPwd = $this->oWizard->GetParameter('db_pwd', '');
  173. $sDBName = $this->oWizard->GetParameter('db_name', '');
  174. $sDBPrefix = $this->oWizard->GetParameter('db_prefix', '');
  175. $bDBBackup = $this->oWizard->GetParameter('db_backup', false);
  176. $sDBBackupPath = $this->oWizard->GetParameter('db_backup_path', '');
  177. $sPreviousVersionDir = '';
  178. if ($sInstallMode == '')
  179. {
  180. $sDBBackupPath = APPROOT.'data/'.ITOP_APPLICATION.strftime('-backup-%Y-%m-%d.zip');
  181. $bDBBackup = true;
  182. $aPreviousInstance = SetupUtils::GetPreviousInstance(APPROOT);
  183. if ($aPreviousInstance['found'])
  184. {
  185. $sInstallMode = 'upgrade';
  186. $sSourceDir = APPROOT;
  187. $sDBServer = $aPreviousInstance['db_server'];
  188. $sDBUser = $aPreviousInstance['db_user'];
  189. $sDBPwd = $aPreviousInstance['db_pwd'];
  190. $sDBName = $aPreviousInstance['db_name'];
  191. $sDBPrefix = $aPreviousInstance['db_prefix'];
  192. $sStyle = '';
  193. $sPreviousVersionDir = APPROOT;
  194. }
  195. else
  196. {
  197. $sInstallMode = 'install';
  198. }
  199. }
  200. $sPreviousVersionDir = $this->oWizard->GetParameter('previous_version_dir', $sPreviousVersionDir);
  201. $sUpgradeInfoStyle = '';
  202. if ($sInstallMode == 'install')
  203. {
  204. $sUpgradeInfoStyle = ' style="display: none;" ';
  205. }
  206. $oPage->add('<h2>What do you want to do?</h2>');
  207. $sChecked = ($sInstallMode == 'install') ? ' checked ' : '';
  208. $oPage->p('<input id="radio_install" type="radio" name="install_mode" value="install"'.$sChecked.'/><label for="radio_install">&nbsp;Install a new '.ITOP_APPLICATION.'</label>');
  209. $sChecked = ($sInstallMode == 'upgrade') ? ' checked ' : '';
  210. $oPage->p('<input id="radio_update" type="radio" name="install_mode" value="upgrade"'.$sChecked.'/><label for="radio_update">&nbsp;Upgrade an existing '.ITOP_APPLICATION.' instance</label>');
  211. //$oPage->add('<fieldset id="upgrade_info"'.$sUpgradeInfoStyle.'>');
  212. //$oPage->add('<legend>Information about the previous instance:</legend>');
  213. $oPage->add('<table id="upgrade_info"'.$sUpgradeInfoStyle.'>');
  214. $oPage->add('<tr><td>Location on the disk:</td><td><input id="previous_version_dir" type="text" name="previous_version_dir" value="'.htmlentities($sPreviousVersionDir, ENT_QUOTES, 'UTF-8').'" size="25"/></td></tr>');
  215. SetupUtils::DisplayDBParameters($oPage, false, $sDBServer, $sDBUser, $sDBPwd, $sDBName, $sDBPrefix);
  216. $aBackupChecks = SetupUtils::CheckBackupPrerequisites($sDBBackupPath);
  217. $bCanBackup = true;
  218. $sMySQLDumpMessage = '';
  219. foreach($aBackupChecks as $oCheck)
  220. {
  221. if ($oCheck->iSeverity == CheckResult::ERROR)
  222. {
  223. $bCanBackup = false;
  224. $sMySQLDumpMessage .= '<img src="../images/error.png"/>&nbsp;<b> Warning:</b> '.$oCheck->sLabel;
  225. }
  226. else
  227. {
  228. $sMySQLDumpMessage .= '<img src="../images/validation_ok.png"/> '.$oCheck->sLabel.' ';
  229. }
  230. }
  231. $sChecked = ($bCanBackup && $bDBBackup) ? ' checked ' : '';
  232. $sDisabled = $bCanBackup ? '' : ' disabled ';
  233. $oPage->add('<tr><td colspan="2"><input id="db_backup" type="checkbox" name="db_backup"'.$sChecked.$sDisabled.' value="1"/><label for="db_backup">&nbsp;Backup the '.ITOP_APPLICATION.' database before upgrading</label></td></tr>');
  234. $oPage->add('<tr><td colspan="2">Save the backup to: <input id="db_backup_path" type="text" name="db_backup_path" '.$sDisabled.'value="'.htmlentities($sDBBackupPath, ENT_QUOTES, 'UTF-8').'" size="25"/></td></tr>');
  235. $fFreeSpace = SetupUtils::CheckDiskSpace($sDBBackupPath);
  236. $sMessage = '';
  237. if ($fFreeSpace !== false)
  238. {
  239. $sMessage .= SetupUtils::HumanReadableSize($fFreeSpace).' free in '.dirname($sDBBackupPath);
  240. }
  241. $oPage->add('<tr><td colspan="2">');
  242. $oPage->add($sMySQLDumpMessage.'<br/><span id="backup_info" style="font-size:small;color:#696969;">'.$sMessage.'</span></td></tr>');
  243. $oPage->add('</table>');
  244. //$oPage->add('</fieldset>');
  245. $oPage->add_ready_script(
  246. <<<EOF
  247. $("#radio_update").bind('change', function() { if (this.checked ) { $('#upgrade_info').show(); WizardUpdateButtons(); } else { $('#upgrade_info').hide(); } });
  248. $("#radio_install").bind('change', function() { if (this.checked ) { $('#upgrade_info').hide(); WizardUpdateButtons(); } else { $('#upgrade_info').show(); } });
  249. $("#previous_version_dir").bind('change keyup', function() { WizardAsyncAction('check_path', { previous_version_dir: $('#previous_version_dir').val() }); });
  250. $("#db_backup_path").bind('change keyup', function() { WizardAsyncAction('check_backup', { db_backup_path: $('#db_backup_path').val() }); });
  251. EOF
  252. );
  253. }
  254. public function AsyncAction(WebPage $oPage, $sCode, $aParameters)
  255. {
  256. switch($sCode)
  257. {
  258. case 'check_path':
  259. $sPreviousVersionDir = $aParameters['previous_version_dir'];
  260. $aPreviousInstance = SetupUtils::GetPreviousInstance($sPreviousVersionDir);
  261. if ($aPreviousInstance['found'])
  262. {
  263. $sDBServer = htmlentities($aPreviousInstance['db_server'], ENT_QUOTES, 'UTF-8');
  264. $sDBUser = htmlentities($aPreviousInstance['db_user'], ENT_QUOTES, 'UTF-8');
  265. $sDBPwd = htmlentities($aPreviousInstance['db_pwd'], ENT_QUOTES, 'UTF-8');
  266. $sDBName = htmlentities($aPreviousInstance['db_name'], ENT_QUOTES, 'UTF-8');
  267. $sDBPrefix = htmlentities($aPreviousInstance['db_prefix'], ENT_QUOTES, 'UTF-8');
  268. $oPage->add_ready_script(
  269. <<<EOF
  270. $("#db_server").val('$sDBServer');
  271. $("#db_user").val('$sDBUser');
  272. $("#db_pwd").val('$sDBPwd');
  273. $("#db_name").val('$sDBName');
  274. $("#db_prefix").val('$sDBPrefix');
  275. $("#db_pwd").trigger('change'); // Forces check of the DB connection
  276. EOF
  277. );
  278. }
  279. break;
  280. case 'check_db':
  281. SetupUtils:: AsyncCheckDB($oPage, $aParameters);
  282. break;
  283. case 'check_backup':
  284. $sDBBackupPath = $aParameters['db_backup_path'];
  285. $fFreeSpace = SetupUtils::CheckDiskSpace($sDBBackupPath);
  286. if ($fFreeSpace !== false)
  287. {
  288. $sMessage = htmlentities(SetupUtils::HumanReadableSize($fFreeSpace).' free in '.dirname($sDBBackupPath), ENT_QUOTES, 'UTF-8');
  289. $oPage->add_ready_script(
  290. <<<EOF
  291. $("#backup_info").html('$sMessage');
  292. EOF
  293. );
  294. }
  295. else
  296. {
  297. $oPage->add_ready_script(
  298. <<<EOF
  299. $("#backup_info").html('');
  300. EOF
  301. );
  302. }
  303. break;
  304. }
  305. }
  306. /**
  307. * Tells whether the "Next" button should be enabled interactively
  308. * @return string A piece of javascript code returning either true or false
  309. */
  310. public function JSCanMoveForward()
  311. {
  312. return
  313. <<<EOF
  314. if ($("#radio_install").attr("checked") == "checked")
  315. {
  316. ValidateField("db_name", false);
  317. ValidateField("db_new_name", false);
  318. ValidateField("db_prefix", false);
  319. return true;
  320. }
  321. else
  322. {
  323. var bRet = ($("#wiz_form").data("db_connection") !== "error");
  324. bRet = ValidateField("db_name", true) && bRet;
  325. bRet = ValidateField("db_new_name", true) && bRet;
  326. bRet = ValidateField("db_prefix", true) && bRet;
  327. return bRet;
  328. }
  329. EOF
  330. ;
  331. }
  332. }
  333. /**
  334. * Upgrade information
  335. */
  336. class WizStepDetectedInfo extends WizardStep
  337. {
  338. protected $bCanMoveForward;
  339. public function GetTitle()
  340. {
  341. return 'Upgrade Information';
  342. }
  343. public function GetPossibleSteps()
  344. {
  345. return array('WizStepUpgradeMiscParams', 'WizStepLicense2');
  346. }
  347. public function ProcessParams($bMoveForward = true)
  348. {
  349. $sUpgradeType = utils::ReadParam('upgrade_type');
  350. $this->oWizard->SetParameter('mode', 'upgrade');
  351. $this->oWizard->SetParameter('upgrade_type', $sUpgradeType);
  352. $this->oWizard->SaveParameter('copy_extensions_from', '');
  353. $bDisplayLicense = $this->oWizard->GetParameter('display_license');
  354. switch ($sUpgradeType)
  355. {
  356. case 'keep-previous':
  357. $sSourceDir = utils::ReadParam('relative_source_dir', '', false, 'raw_data');
  358. $this->oWizard->SetParameter('source_dir', $this->oWizard->GetParameter('previous_version_dir').'/'.$sSourceDir);
  359. $this->oWizard->SetParameter('datamodel_version', utils::ReadParam('datamodel_previous_version', '', false, 'raw_data'));
  360. break;
  361. case 'use-compatible':
  362. $sDataModelPath = utils::ReadParam('datamodel_path', '', false, 'raw_data');
  363. $this->oWizard->SetParameter('source_dir', $sDataModelPath);
  364. $this->oWizard->SaveParameter('datamodel_version', '');
  365. break;
  366. default:
  367. // Do nothing, maybe the user pressed the Back button
  368. }
  369. if ($bDisplayLicense)
  370. {
  371. $aRet = array('class' => 'WizStepLicense2', 'state' => '');
  372. }
  373. else
  374. {
  375. $aRet = array('class' => 'WizStepUpgradeMiscParams', 'state' => '');
  376. }
  377. return $aRet;
  378. }
  379. public function Display(WebPage $oPage)
  380. {
  381. $oPage->add_style(
  382. <<<EOF
  383. #changes_summary {
  384. max-height: 200px;
  385. overflow: auto;
  386. }
  387. #changes_summary div {
  388. width:100;
  389. margin-top:0;
  390. padding-top: 0.5em;
  391. padding-left: 0;
  392. }
  393. #changes_summary div ul {
  394. margin-left:0;
  395. padding-left: 20px;
  396. }
  397. #changes_summary div.closed ul {
  398. display:none;
  399. }
  400. #changes_summary div li {
  401. list-style: none;
  402. width: 100;
  403. margin-left:0;
  404. padding-left: 0em;
  405. }
  406. .title {
  407. padding-left: 20px;
  408. font-weight: bold;
  409. cursor: pointer;
  410. background: url(../images/minus.gif) 2px 2px no-repeat;
  411. }
  412. #changes_summary div.closed .title {
  413. background: url(../images/plus.gif) 2px 2px no-repeat;
  414. }
  415. EOF
  416. );
  417. $this->bCanMoveForward = true;
  418. $bDisplayLicense = true;
  419. $sPreviousVersionDir = $this->oWizard->GetParameter('previous_version_dir', '');
  420. $aInstalledInfo = SetupUtils::GetApplicationVersion($this->oWizard);
  421. if ($aInstalledInfo === false)
  422. {
  423. throw(new Exception('No previous version of '.ITOP_APPLICATION.' found in the supplied database. The upgrade cannot continue.'));
  424. }
  425. else if (strcasecmp($aInstalledInfo['product_name'], ITOP_APPLICATION) != 0)
  426. {
  427. $oPage->p("<b>Warning: The installed products seem different. Are you sure the you want to upgrade {$aInstalledInfo['product_name']} with ".ITOP_APPLICATION."?</b>");
  428. }
  429. $sInstalledVersion = $aInstalledInfo['product_version'];
  430. $sInstalledDataModelVersion = $aInstalledInfo['datamodel_version'];
  431. $oPage->add("<h2>Information about the upgrade from version $sInstalledVersion to ".ITOP_VERSION.'.'.ITOP_REVISION."</h2>");
  432. if ($sInstalledVersion == (ITOP_VERSION.'.'.ITOP_REVISION))
  433. {
  434. // Reinstalling the same version let's skip the license agreement...
  435. $bDisplayLicense = false;
  436. }
  437. $this->oWizard->SetParameter('license', $bDisplayLicense); // Remember for later
  438. if ($sInstalledDataModelVersion == '$ITOP_VERSION$.$WCREV$')
  439. {
  440. // Special case for upgrading some development versions (temporary)
  441. $sCompatibleDMDir = SetupUtils::GetLatestDataModelDir();
  442. $sInstalledDataModelVersion = SetupUtils::GetDataModelVersion($sLatestDMDir);
  443. }
  444. else
  445. {
  446. $sCompatibleDMDir = SetupUtils::GetCompatibleDataModelDir($sInstalledDataModelVersion);
  447. }
  448. if ($sCompatibleDMDir === false)
  449. {
  450. // No compatible version exists... cannot upgrade. Either it is too old, or too new (downgrade !)
  451. $this->bCanMoveForward = false;
  452. $oPage->p("The current version of ".ITOP_APPLICATION." (".ITOP_VERSION.'.'.ITOP_REVISION.") does not seem to be compatible with the installed version ($sInstalledVersion).");
  453. $oPage->p("The upgrade cannot continue, sorry.");
  454. }
  455. else
  456. {
  457. $sUpgradeDMVersion = SetupUtils::GetDataModelVersion($sCompatibleDMDir);
  458. $sPreviousSourceDir = isset($aInstalledInfo['source_dir']) ? $aInstalledInfo['source_dir'] : 'modules';
  459. $aChanges = false;
  460. if (is_dir($sPreviousVersionDir))
  461. {
  462. // Check if the previous version is a "genuine" one or not...
  463. $aChanges = SetupUtils::CheckVersion($sInstalledDataModelVersion, $sPreviousVersionDir.'/'.$sPreviousSourceDir);
  464. }
  465. if (($aChanges !== false) && ( (count($aChanges['added']) > 0) || (count($aChanges['removed']) > 0) || (count($aChanges['modified']) > 0)) )
  466. {
  467. // Some changes were detected, prompt the user to keep or discard them
  468. $oPage->p("<img src=\"../images/error.png\"/>&nbsp;Some modifications were detected between the ".ITOP_APPLICATION." version in '$sPreviousVersionDir' and a genuine $sInstalledVersion version.");
  469. $oPage->p("What do you want to do?");
  470. $aWritableDirs = array('modules', 'portal');
  471. $aErrors = SetupUtils::CheckWritableDirs($aWritableDirs);
  472. $sChecked = ($this->oWizard->GetParameter('upgrade_type') == 'keep-previous') ? ' checked ' : '';
  473. $sDisabled = (count($aErrors) > 0) ? ' disabled ' : '';
  474. $oPage->p('<input id="radio_upgrade_keep" type="radio" name="upgrade_type" value="keep-previous"'.$sChecked.$sDisabled.'/><label for="radio_upgrade_keep">&nbsp;Preserve the modifications of the installed version (the dasboards inside '.ITOP_APPLICATION.' may not be editable).</label>');
  475. $oPage->add('<input type="hidden" name="datamodel_previous_version" value="'.htmlentities($sInstalledDataModelVersion, ENT_QUOTES, 'UTF-8').'">');
  476. $oPage->add('<input type="hidden" name="relative_source_dir" value="'.htmlentities($sPreviousSourceDir, ENT_QUOTES, 'UTF-8').'">');
  477. if (count($aErrors) > 0)
  478. {
  479. $oPage->p("Cannot copy the installed version due to the following access rights issue(s):");
  480. foreach($aErrors as $sDir => $oCheckResult)
  481. {
  482. $oPage->p('<img src="../images/error.png"/>&nbsp;'.$oCheckResult->sLabel);
  483. }
  484. }
  485. $sChecked = ($this->oWizard->GetParameter('upgrade_type') == 'use-compatible') ? ' checked ' : '';
  486. $oPage->p('<input id="radio_upgrade_convert" type="radio" name="upgrade_type" value="use-compatible"'.$sChecked.'/><label for="radio_upgrade_convert">&nbsp;Discard the modifications, use a standard '.$sUpgradeDMVersion.' data model.</label>');
  487. $oPage->add('<input type="hidden" name="datamodel_path" value="'.htmlentities($sCompatibleDMDir, ENT_QUOTES, 'UTF-8').'">');
  488. $oPage->add('<input type="hidden" name="datamodel_version" value="'.htmlentities($sUpgradeDMVersion, ENT_QUOTES, 'UTF-8').'">');
  489. $oPage->add('<div id="changes_summary"><div class="closed"><span class="title">Details of the modifications</span><div>');
  490. if (count($aChanges['added']) > 0)
  491. {
  492. $oPage->add('<ul>New files added:');
  493. foreach($aChanges['added'] as $sFilePath => $void)
  494. {
  495. $oPage->add('<li>'.$sFilePath.'</li>');
  496. }
  497. $oPage->add('</ul>');
  498. }
  499. if (count($aChanges['removed']) > 0)
  500. {
  501. $oPage->add('<ul>Deleted files:');
  502. foreach($aChanges['removed'] as $sFilePath => $void)
  503. {
  504. $oPage->add('<li>'.$sFilePath.'</li>');
  505. }
  506. $oPage->add('</ul>');
  507. }
  508. if (count($aChanges['modified']) > 0)
  509. {
  510. $oPage->add('<ul>Modified files:');
  511. foreach($aChanges['modified'] as $sFilePath => $void)
  512. {
  513. $oPage->add('<li>'.$sFilePath.'</li>');
  514. }
  515. $oPage->add('</ul>');
  516. }
  517. $oPage->add('</div></div></div>');
  518. }
  519. else
  520. {
  521. // No changes detected... or no way to tell because of the lack of a manifest or previous source dir
  522. // Use the "compatible" datamodel as-is.
  523. $oPage->p("<img src=\"../images/validation_ok.png\"/>&nbsp;The datamodel will be upgraded from version $sInstalledDataModelVersion to version $sUpgradeDMVersion.");
  524. $oPage->add('<input type="hidden" name="upgrade_type" value="use-compatible">');
  525. $oPage->add('<input type="hidden" name="datamodel_path" value="'.htmlentities($sCompatibleDMDir, ENT_QUOTES, 'UTF-8').'">');
  526. $oPage->add('<input type="hidden" name="datamodel_version" value="'.htmlentities($sUpgradeDMVersion, ENT_QUOTES, 'UTF-8').'">');
  527. }
  528. // Check if there are "extensions" to preserve and if it's possible
  529. if (is_dir($sPreviousVersionDir.'/extensions'))
  530. {
  531. $aExtensions = glob($sPreviousVersionDir.'/extensions/*', GLOB_ONLYDIR);
  532. if (($aExtensions !== false) && (count($aExtensions)>0) && (realpath($sPreviousVersionDir.'/extensions') != realpath(APPROOT.'extensions')) )
  533. {
  534. $aWritableDirs = array('extensions');
  535. $aErrors = SetupUtils::CheckWritableDirs($aWritableDirs);
  536. if (count($aErrors) > 0)
  537. {
  538. $oPage->p("Cannot copy the extensions from '$sPreviousVersionDir/extensions' to '".APPROOT."extensions' due to the following access rights issue(s):");
  539. foreach($aErrors as $sDir => $oCheckResult)
  540. {
  541. $oPage->p('<img src="../images/error.png"/>&nbsp;'.$oCheckResult->sLabel);
  542. }
  543. }
  544. else
  545. {
  546. $oPage->p("<b>Note:</b> The extensions present in '$sPreviousVersionDir/extensions' will be copied to '".APPROOT."extensions'.");
  547. $oPage->add('<input type="hidden" name="copy_extensions_from" value="'.htmlentities($sPreviousVersionDir.'/extensions', ENT_QUOTES, 'UTF-8').'">');
  548. }
  549. }
  550. }
  551. $oPage->add_ready_script(
  552. <<<EOF
  553. $("#changes_summary .title").click(function() { $(this).parent().toggleClass('closed'); } );
  554. $('input[name=upgrade_type]').bind('click change', function() { WizardUpdateButtons(); });
  555. EOF
  556. );
  557. }
  558. }
  559. public function CanMoveForward()
  560. {
  561. return $this->bCanMoveForward;
  562. }
  563. /**
  564. * Tells whether the "Next" button should be enabled interactively
  565. * @return string A piece of javascript code returning either true or false
  566. */
  567. public function JSCanMoveForward()
  568. {
  569. return
  570. <<<EOF
  571. if ($("#radio_upgrade_keep").length == 0) return true;
  572. bRet = ($('input[name=upgrade_type]:checked').length > 0);
  573. return bRet;
  574. EOF
  575. ;
  576. }
  577. }
  578. /**
  579. * License acceptation screen
  580. */
  581. class WizStepLicense extends WizardStep
  582. {
  583. public function GetTitle()
  584. {
  585. return 'License Agreement';
  586. }
  587. public function GetPossibleSteps()
  588. {
  589. return array('WizStepDBParams');
  590. }
  591. public function ProcessParams($bMoveForward = true)
  592. {
  593. $this->oWizard->SaveParameter('accept_license', 'no');
  594. return array('class' => 'WizStepDBParams', 'state' => '');
  595. }
  596. public function Display(WebPage $oPage)
  597. {
  598. $aLicenses = array();
  599. foreach (glob(APPROOT.'setup/licenses/*.xml') as $sFile)
  600. {
  601. $oXml = simplexml_load_file($sFile);
  602. foreach($oXml->license as $oLicense)
  603. {
  604. $aLicenses[] = $oLicense;
  605. }
  606. }
  607. $oPage->add('<h2>Licenses agreements for the components of '.ITOP_APPLICATION.'</h2>');
  608. $oPage->add_style('div a.no-arrow { background:transparent; padding-left:0;}');
  609. $oPage->add_style('.toggle { cursor:pointer; text-decoration:underline; color:#1C94C4; }');
  610. $oPage->add('<fieldset>');
  611. $oPage->add('<legend>Components of '.ITOP_APPLICATION.'</legend>');
  612. $oPage->add('<ul>');
  613. foreach($aLicenses as $index => $oLicense)
  614. {
  615. $oPage->add('<li><b>'.$oLicense->product.'</b>, &copy; '.$oLicense->author.' is licensed under the <b>'.$oLicense->license_type.' license</b>. (<span class="toggle" id="toggle_'.$index.'">Details</span>)');
  616. $oPage->add('<div id="license_'.$index.'" class="license_text" style="display:none;overflow:auto;max-height:10em;font-size:small;border:1px #696969 solid;margin-bottom:1em; margin-top:0.5em;padding:0.5em;">'.$oLicense->text.'</div>');
  617. $oPage->add_ready_script('$(".license_text a").attr("target", "_blank").addClass("no-arrow");');
  618. $oPage->add_ready_script('$("#toggle_'.$index.'").click( function() { $("#license_'.$index.'").toggle(); } );');
  619. }
  620. $oPage->add('</ul>');
  621. $oPage->add('</fieldset>');
  622. $sChecked = ($this->oWizard->GetParameter('accept_license', 'no') == 'yes') ? ' checked ' : '';
  623. $oPage->p('<input type="checkbox" name="accept_license" id="accept" value="yes"'.$sChecked.'><label for="accept">&nbsp;I accept the terms of the licenses of the '.count($aLicenses).' components mentioned above.</label>');
  624. $oPage->add_ready_script('$("#accept").bind("click change", function() { WizardUpdateButtons(); });');
  625. }
  626. /**
  627. * Tells whether the "Next" button should be enabled interactively
  628. * @return string A piece of javascript code returning either true or false
  629. */
  630. public function JSCanMoveForward()
  631. {
  632. return 'return ($("#accept").attr("checked") === "checked");';
  633. }
  634. }
  635. /**
  636. * License acceptation screen (when upgrading)
  637. */
  638. class WizStepLicense2 extends WizStepLicense
  639. {
  640. public function GetPossibleSteps()
  641. {
  642. return array('WizStepUpgradeMiscParams');
  643. }
  644. public function ProcessParams($bMoveForward = true)
  645. {
  646. return array('class' => 'WizStepUpgradeMiscParams', 'state' => '');
  647. }
  648. }
  649. /**
  650. * Database Connection parameters screen
  651. */
  652. class WizStepDBParams extends WizardStep
  653. {
  654. public function GetTitle()
  655. {
  656. return 'Database Configuration';
  657. }
  658. public function GetPossibleSteps()
  659. {
  660. return array('WizStepAdminAccount');
  661. }
  662. public function ProcessParams($bMoveForward = true)
  663. {
  664. $this->oWizard->SaveParameter('db_server', '');
  665. $this->oWizard->SaveParameter('db_user', '');
  666. $this->oWizard->SaveParameter('db_pwd', '');
  667. $this->oWizard->SaveParameter('db_name', '');
  668. $this->oWizard->SaveParameter('db_prefix', '');
  669. $this->oWizard->SaveParameter('new_db_name', '');
  670. $this->oWizard->SaveParameter('create_db', '');
  671. $this->oWizard->SaveParameter('db_new_name', '');
  672. return array('class' => 'WizStepAdminAccount', 'state' => '');
  673. }
  674. public function Display(WebPage $oPage)
  675. {
  676. $oPage->add('<h2>Configuration of the database connection:</h2>');
  677. $sDBServer = $this->oWizard->GetParameter('db_server', '');
  678. $sDBUser = $this->oWizard->GetParameter('db_user', '');
  679. $sDBPwd = $this->oWizard->GetParameter('db_pwd', '');
  680. $sDBName = $this->oWizard->GetParameter('db_name', '');
  681. $sDBPrefix = $this->oWizard->GetParameter('db_prefix', '');
  682. $sNewDBName = $this->oWizard->GetParameter('db_new_name', false);
  683. $oPage->add('<table>');
  684. SetupUtils::DisplayDBParameters($oPage, true, $sDBServer, $sDBUser, $sDBPwd, $sDBName, $sDBPrefix, $sNewDBName);
  685. $oPage->add('</table>');
  686. $sCreateDB = $this->oWizard->GetParameter('create_db', 'yes');
  687. if ($sCreateDB == 'no')
  688. {
  689. $oPage->add_ready_script('$("#existing_db").attr("checked", "checked");');
  690. }
  691. else
  692. {
  693. $oPage->add_ready_script('$("#create_db").attr("checked", "checked");');
  694. }
  695. }
  696. public function AsyncAction(WebPage $oPage, $sCode, $aParameters)
  697. {
  698. switch($sCode)
  699. {
  700. case 'check_db':
  701. SetupUtils:: AsyncCheckDB($oPage, $aParameters);
  702. break;
  703. }
  704. }
  705. /**
  706. * Tells whether the "Next" button should be enabled interactively
  707. * @return string A piece of javascript code returning either true or false
  708. */
  709. public function JSCanMoveForward()
  710. {
  711. return
  712. <<<EOF
  713. if ($("#wiz_form").data("db_connection") === "error") return false;
  714. var bRet = true;
  715. bRet = ValidateField("db_name", true) && bRet;
  716. bRet = ValidateField("db_new_name", true) && bRet;
  717. bRet = ValidateField("db_prefix", true) && bRet;
  718. return bRet;
  719. EOF
  720. ;
  721. }
  722. }
  723. /**
  724. * Administrator Account definition screen
  725. */
  726. class WizStepAdminAccount extends WizardStep
  727. {
  728. public function GetTitle()
  729. {
  730. return 'Administrator Account';
  731. }
  732. public function GetPossibleSteps()
  733. {
  734. return array('WizStepMiscParams');
  735. }
  736. public function ProcessParams($bMoveForward = true)
  737. {
  738. $this->oWizard->SaveParameter('admin_user', '');
  739. $this->oWizard->SaveParameter('admin_pwd', '');
  740. $this->oWizard->SaveParameter('confirm_pwd', '');
  741. $this->oWizard->SaveParameter('admin_language', 'EN US');
  742. return array('class' => 'WizStepMiscParams', 'state' => '');
  743. }
  744. public function Display(WebPage $oPage)
  745. {
  746. $sAdminUser = $this->oWizard->GetParameter('admin_user', 'admin');
  747. $sAdminPwd = $this->oWizard->GetParameter('admin_pwd', '');
  748. $sConfirmPwd = $this->oWizard->GetParameter('confirm_pwd', '');
  749. $sAdminLanguage = $this->oWizard->GetParameter('admin_language', 'EN US');
  750. $oPage->add('<h2>Definition of the Administrator Account</h2>');
  751. $oPage->add('<fieldset>');
  752. $oPage->add('<legend>Administrator Account</legend>');
  753. $oPage->add('<table>');
  754. $oPage->add('<tr><td>Login: </td><td><input id="admin_user" name="admin_user" type="text" size="25" maxlength="64" value="'.htmlentities($sAdminUser, ENT_QUOTES, 'UTF-8').'"><span id="v_admin_user"/></td><tr>');
  755. $oPage->add('<tr><td>Password: </td><td><input id="admin_pwd" autocomplete="off" name="admin_pwd" type="password" size="25" maxlength="64" value="'.htmlentities($sAdminPwd, ENT_QUOTES, 'UTF-8').'"><span id="v_admin_pwd"/></td><tr>');
  756. $oPage->add('<tr><td>Confirm password: </td><td><input id="confirm_pwd" autocomplete="off" name="confirm_pwd" type="password" size="25" maxlength="64" value="'.htmlentities($sConfirmPwd, ENT_QUOTES, 'UTF-8').'"></td><tr>');
  757. $sSourceDir = APPROOT.'dictionaries/';
  758. $aLanguages = SetupUtils::GetAvailableLanguages($sSourceDir);
  759. $oPage->add('<tr><td>Language: </td><td>');
  760. $oPage->add(SetupUtils::GetLanguageSelect($sSourceDir, 'admin_language', $sAdminLanguage));
  761. $oPage->add('</td></tr>');
  762. $oPage->add('</table>');
  763. $oPage->add('</fieldset>');
  764. $oPage->add_ready_script(
  765. <<<EOF
  766. $('#admin_user').bind('change keyup', function() { WizardUpdateButtons(); } );
  767. $('#admin_pwd').bind('change keyup', function() { WizardUpdateButtons(); } );
  768. $('#confirm_pwd').bind('change keyup', function() { WizardUpdateButtons(); } );
  769. EOF
  770. );
  771. }
  772. /**
  773. * Tells whether the "Next" button should be enabled interactively
  774. * @return string A piece of javascript code returning either true or false
  775. */
  776. public function JSCanMoveForward()
  777. {
  778. return
  779. <<<EOF
  780. bRet = ($('#admin_user').val() != '');
  781. if (!bRet)
  782. {
  783. $("#v_admin_user").html('<img src="../images/validation_error.png" title="This field cannot be empty"/>');
  784. }
  785. else
  786. {
  787. $("#v_admin_user").html('');
  788. }
  789. bPasswordsMatch = ($('#admin_pwd').val() == $('#confirm_pwd').val());
  790. if (!bPasswordsMatch)
  791. {
  792. $('#v_admin_pwd').html('<img src="../images/validation_error.png" title="Retyped password do not match"/>');
  793. }
  794. else
  795. {
  796. $('#v_admin_pwd').html('');
  797. }
  798. bRet = bPasswordsMatch && bRet;
  799. return bRet;
  800. EOF
  801. ;
  802. }}
  803. /**
  804. * Miscellaneous Parameters (URL, Sample Data)
  805. */
  806. class WizStepMiscParams extends WizardStep
  807. {
  808. public function GetTitle()
  809. {
  810. return 'Miscellaneous Parameters';
  811. }
  812. public function GetPossibleSteps()
  813. {
  814. return array('WizStepModulesChoice');
  815. }
  816. public function ProcessParams($bMoveForward = true)
  817. {
  818. $this->oWizard->SaveParameter('default_language', '');
  819. $this->oWizard->SaveParameter('application_url', '');
  820. $this->oWizard->SaveParameter('sample_data', 'yes');
  821. return array('class' => 'WizStepModulesChoice', 'state' => 'start_install');
  822. }
  823. public function Display(WebPage $oPage)
  824. {
  825. $sDefaultLanguage = $this->oWizard->GetParameter('default_language', $this->oWizard->GetParameter('admin_language'));
  826. $sApplicationURL = $this->oWizard->GetParameter('application_url', utils::GetDefaultUrlAppRoot());
  827. $sSampleData = $this->oWizard->GetParameter('sample_data', 'yes');
  828. $oPage->add('<h2>Additional parameters</h2>');
  829. $oPage->add('<fieldset>');
  830. $oPage->add('<legend>Default Language</legend>');
  831. $oPage->add('<table>');
  832. $sSourceDir = APPROOT.'dictionaries/';
  833. $aLanguages = SetupUtils::GetAvailableLanguages($sSourceDir);
  834. $oPage->add('<tr><td>Default Language: </td><td>');
  835. $oPage->add(SetupUtils::GetLanguageSelect($sSourceDir, 'default_language', $sDefaultLanguage));
  836. $oPage->add('</td></tr>');
  837. $oPage->add('</table>');
  838. $oPage->add('</fieldset>');
  839. $oPage->add('<fieldset>');
  840. $oPage->add('<legend>Application URL</legend>');
  841. $oPage->add('<table>');
  842. $oPage->add('<tr><td>URL: </td><td><input id="application_url" name="application_url" type="text" size="35" maxlength="1024" value="'.htmlentities($sApplicationURL, ENT_QUOTES, 'UTF-8').'"><span id="v_application_url"/></td><tr>');
  843. $oPage->add('<tr><td colspan="2">Change the value above if the end-users will be accessing the application by another path due to a specific configuration of the web server.</td><tr>');
  844. $oPage->add('</table>');
  845. $oPage->add('</fieldset>');
  846. $oPage->add('<fieldset>');
  847. $oPage->add('<legend>Sample Data</legend>');
  848. $sChecked = ($sSampleData == 'yes') ? ' checked ' : '';
  849. $oPage->p('<input id="sample_data_yes" name="sample_data" type="radio" value="yes"'.$sChecked.'><label for="sample_data_yes">&nbsp;I am installing a <b>demo or test</b> instance, populate the database with some demo data.');
  850. $sChecked = ($sSampleData == 'no') ? ' checked ' : '';
  851. $oPage->p('<input id="sample_data_no" name="sample_data" type="radio" value="no"'.$sChecked.'><label for="sample_data_no">&nbsp;I am installing a <b>production</b> instance, create an empty database to start from.');
  852. $oPage->add('</fieldset>');
  853. $oPage->add_ready_script(
  854. <<<EOF
  855. $('#application_url').bind('change keyup', function() { WizardUpdateButtons(); } );
  856. EOF
  857. );
  858. }
  859. /**
  860. * Tells whether the "Next" button should be enabled interactively
  861. * @return string A piece of javascript code returning either true or false
  862. */
  863. public function JSCanMoveForward()
  864. {
  865. return
  866. <<<EOF
  867. bRet = ($('#application_url').val() != '');
  868. if (!bRet)
  869. {
  870. $("#v_application_url").html('<img src="../images/validation_error.png" title="This field cannot be empty"/>');
  871. }
  872. else
  873. {
  874. $("#v_application_url").html('');
  875. }
  876. return bRet;
  877. EOF
  878. ;
  879. }
  880. }
  881. /**
  882. * Miscellaneous Parameters (URL...) in case of upgrade
  883. */
  884. class WizStepUpgradeMiscParams extends WizardStep
  885. {
  886. public function GetTitle()
  887. {
  888. return 'Miscellaneous Parameters';
  889. }
  890. public function GetPossibleSteps()
  891. {
  892. return array('WizStepModulesChoice');
  893. }
  894. public function ProcessParams($bMoveForward = true)
  895. {
  896. $this->oWizard->SaveParameter('application_url', '');
  897. return array('class' => 'WizStepModulesChoice', 'state' => 'start_upgrade');
  898. }
  899. public function Display(WebPage $oPage)
  900. {
  901. $sApplicationURL = $this->oWizard->GetParameter('application_url', utils::GetDefaultUrlAppRoot());
  902. $oPage->add('<h2>Additional parameters</h2>');
  903. $oPage->add('<fieldset>');
  904. $oPage->add('<legend>Application URL</legend>');
  905. $oPage->add('<table>');
  906. $oPage->add('<tr><td>URL: </td><td><input id="application_url" name="application_url" type="text" size="35" maxlength="1024" value="'.htmlentities($sApplicationURL, ENT_QUOTES, 'UTF-8').'"><span id="v_application_url"/></td><tr>');
  907. $oPage->add('<tr><td colspan="2">Change the value above if the end-users will be accessing the application by another path due to a specific configuration of the web server.</td><tr>');
  908. $oPage->add('</table>');
  909. $oPage->add('</fieldset>');
  910. $oPage->add_ready_script(
  911. <<<EOF
  912. $('#application_url').bind('change keyup', function() { WizardUpdateButtons(); } );
  913. EOF
  914. );
  915. }
  916. /**
  917. * Tells whether the "Next" button should be enabled interactively
  918. * @return string A piece of javascript code returning either true or false
  919. */
  920. public function JSCanMoveForward()
  921. {
  922. return
  923. <<<EOF
  924. bRet = ($('#application_url').val() != '');
  925. if (!bRet)
  926. {
  927. $("#v_application_url").html('<img src="../images/validation_error.png" title="This field cannot be empty"/>');
  928. }
  929. else
  930. {
  931. $("#v_application_url").html('');
  932. }
  933. return bRet;
  934. EOF
  935. ;
  936. }
  937. }
  938. /**
  939. * Choice of the modules to be installed
  940. */
  941. class WizStepModulesChoice extends WizardStep
  942. {
  943. static protected $SEP = '_';
  944. protected $bUpgrade = false;
  945. public function GetTitle()
  946. {
  947. $aStepInfo = $this->GetStepInfo();
  948. $sTitle = isset($aStepInfo['title']) ? $aStepInfo['title'] : 'Modules selection';
  949. return $sTitle;
  950. }
  951. public function GetPossibleSteps()
  952. {
  953. return array('WizStepModulesChoice', 'WizStepSummary');
  954. }
  955. public function ProcessParams($bMoveForward = true)
  956. {
  957. // Accumulates the selected modules:
  958. $index = $this->GetStepIndex();
  959. // use json_encode:decode to store a hash array: step_id => array(input_name => selected_input_id)
  960. $aSelectedChoices = json_decode($this->oWizard->GetParameter('selected_components', '{}'), true);
  961. $aSelected = utils::ReadParam('choice', array());
  962. $aSelectedChoices[$index] = $aSelected;
  963. $this->oWizard->SetParameter('selected_components', json_encode($aSelectedChoices));
  964. if ($this->GetStepInfo($index) == null)
  965. {
  966. throw new Exception('Internal error: invalid step "'.$index.'" for the choice of modules.');
  967. }
  968. else if ($bMoveForward)
  969. {
  970. if ($this->GetStepInfo(1 + $index) != null)
  971. {
  972. return array('class' => 'WizStepModulesChoice', 'state' => (1+$index));
  973. }
  974. else
  975. {
  976. // Exiting this step of the wizard, let's convert the selection into a list of modules
  977. $aModules = array();
  978. $sDisplayChoices = '<ul>';
  979. for($i = 0; $i <= $index; $i++)
  980. {
  981. $aStepInfo = $this->GetStepInfo($i);
  982. $sDisplayChoices .= $this->GetSelectedModules($aStepInfo, $aSelectedChoices[$i], $aModules);
  983. }
  984. $sDisplayChoices .= '</ul>';
  985. if (class_exists('CreateITILProfilesInstaller'))
  986. {
  987. $this->oWizard->SetParameter('old_addon', true);
  988. }
  989. $this->oWizard->SetParameter('selected_modules', json_encode(array_keys($aModules)));
  990. $this->oWizard->SetParameter('display_choices', $sDisplayChoices);
  991. return array('class' => 'WizStepSummary', 'state' => '');
  992. }
  993. }
  994. }
  995. public function Display(WebPage $oPage)
  996. {
  997. $this->DisplayStep($oPage);
  998. }
  999. protected function DisplayStep($oPage)
  1000. {
  1001. $this->bUpgrade = ($this->oWizard->GetParameter('install_mode') != 'install');
  1002. $aStepInfo = $this->GetStepInfo();
  1003. $oPage->add_style("div.choice { margin: 0.5em;}");
  1004. $oPage->add_style("div.choice a { text-decoration:none; font-weight: bold; color: #1C94C4 }");
  1005. $oPage->add_style("div.description { margin-left: 2em; }");
  1006. $oPage->add_style(".choice-disabled { color: #999; }");
  1007. $oPage->add('<table><tr>');
  1008. $sBannerPath = isset($aStepInfo['banner']) ? $aStepInfo['banner'] : '';
  1009. if (!empty($sBannerPath))
  1010. {
  1011. if (substr($sBannerPath, 0, 1) == '/')
  1012. {
  1013. // absolute path, means relative to APPROOT
  1014. $sBannerUrl = utils::GetDefaultUrlAppRoot().$sBannerPath;
  1015. }
  1016. else
  1017. {
  1018. // relative path: i.e. relative to the directory containing the XML file
  1019. $sFullPath = dirname($this->GetSourceFilePath()).'/'.$sBannerPath;
  1020. $sRealPath = realpath($sFullPath);
  1021. $sBannerUrl = utils::GetDefaultUrlAppRoot().str_replace(realpath(APPROOT), '', $sRealPath);
  1022. }
  1023. $oPage->add('<td><img src="'.$sBannerUrl.'"/><td>');
  1024. }
  1025. $sDescription = isset($aStepInfo['description']) ? $aStepInfo['description'] : '';
  1026. $oPage->add('<td>'.$sDescription.'<td>');
  1027. $oPage->add('</tr></table>');
  1028. // Build the default choices
  1029. $aDefaults = array();
  1030. $aModules = SetupUtils::AnalyzeInstallation($this->oWizard);
  1031. $this->GetDefaults($aStepInfo, $aDefaults, $aModules);
  1032. //echo "<pre>aStepInfo:\n ".print_r($aStepInfo, true)."</pre>";
  1033. //echo "<pre>aDefaults:\n ".print_r($aDefaults, true)."</pre>";
  1034. $index = $this->GetStepIndex();
  1035. // retrieve the saved selection
  1036. // use json_encode:decode to store a hash array: step_id => array(input_name => selected_input_id)
  1037. $aParameters = json_decode($this->oWizard->GetParameter('selected_components', '{}'), true);
  1038. if (!isset($aParameters[$index]))
  1039. {
  1040. $aParameters[$index] = $aDefaults;
  1041. }
  1042. $aSelectedComponents = $aParameters[$index];
  1043. $oPage->add('<div style="height:250px;overflow:auto;border:#ccc 1px solid;">');
  1044. $this->DisplayOptions($oPage, $aStepInfo, $aSelectedComponents, $aDefaults);
  1045. $oPage->add('</div>');
  1046. $oPage->add_script(
  1047. <<<EOF
  1048. function CheckChoice(sChoiceId)
  1049. {
  1050. var oElement = $('#'+sChoiceId);
  1051. var bChecked = (oElement.attr('checked') == 'checked');
  1052. var sId = sChoiceId.replace('choice', '');
  1053. if ((oElement.attr('type') == 'radio') && bChecked)
  1054. {
  1055. // Only the radio that is clicked is notified, let's warn the other radio buttons
  1056. sName = oElement.attr('name');
  1057. $('input[name="'+sName+'"]').each(function() {
  1058. var sRadioId = $(this).attr('id');
  1059. if ((sRadioId != sChoiceId) && (sRadioId != undefined))
  1060. {
  1061. CheckChoice(sRadioId);
  1062. }
  1063. });
  1064. }
  1065. $('#sub_choices'+sId).each(function() {
  1066. if (!bChecked)
  1067. {
  1068. $(this).addClass('choice-disabled');
  1069. }
  1070. else
  1071. {
  1072. $(this).removeClass('choice-disabled');
  1073. }
  1074. $('input', this).each(function() {
  1075. if (bChecked)
  1076. {
  1077. if ($(this).attr('data-disabled') != 'disabled')
  1078. {
  1079. // Only non-mandatory fields can be enabled
  1080. $(this).removeAttr('disabled');
  1081. }
  1082. }
  1083. else
  1084. {
  1085. $(this).attr('disabled', 'disabled');
  1086. }
  1087. });
  1088. });
  1089. }
  1090. EOF
  1091. );
  1092. $oPage->add_ready_script(
  1093. <<<EOF
  1094. $('.wiz-choice').bind('change', function() { CheckChoice($(this).attr('id')); } );
  1095. $('.wiz-choice').trigger('change');
  1096. EOF
  1097. );
  1098. }
  1099. protected function GetDefaults($aInfo, &$aDefaults, $aModules, $sParentId = '')
  1100. {
  1101. $iScore = 0;
  1102. $aOptions = isset($aInfo['options']) ? $aInfo['options'] : array();
  1103. foreach($aOptions as $index => $aChoice)
  1104. {
  1105. $sChoiceId = $sParentId.self::$SEP.$index;
  1106. if (!$this->bUpgrade && isset($aChoice['default']) && $aChoice['default'])
  1107. {
  1108. $aDefaults[$sChoiceId] = $sChoiceId;
  1109. }
  1110. if ($this->bUpgrade)
  1111. {
  1112. // In upgrade mode, the defaults are the installed modules
  1113. foreach($aChoice['modules'] as $sModuleId)
  1114. {
  1115. if ($aModules[$sModuleId]['version_db'] != '')
  1116. {
  1117. // A module corresponding to this choice is installed, the whole choice is selected
  1118. $aDefaults[$sChoiceId] = $sChoiceId;
  1119. $iScore = 99; // The whole parent choice is selected
  1120. break;
  1121. }
  1122. }
  1123. }
  1124. if (isset($aChoice['sub_options']))
  1125. {
  1126. $aScores[$sChoiceId] = $this->GetDefaults($aChoice['sub_options'], $aDefaults, $sChoiceId);
  1127. }
  1128. $index++;
  1129. }
  1130. $aAlternatives = isset($aInfo['alternatives']) ? $aInfo['alternatives'] : array();
  1131. $sChoiceName = null;
  1132. $aScores = array();
  1133. $sChoiceIdNone = null;
  1134. foreach($aAlternatives as $index => $aChoice)
  1135. {
  1136. $sChoiceId = $sParentId.self::$SEP.$index;
  1137. if ($sChoiceName == null)
  1138. {
  1139. $sChoiceName = $sChoiceId;
  1140. }
  1141. if (!$this->bUpgrade && isset($aChoice['default']) && $aChoice['default'])
  1142. {
  1143. $aDefaults[$sChoiceName] = $sChoiceId;
  1144. }
  1145. if (isset($aChoice['sub_options']))
  1146. {
  1147. $aScores[$sChoiceId] = $this->GetDefaults($aChoice['sub_options'], $aDefaults, $aModules, $sChoiceId);
  1148. }
  1149. $index++;
  1150. }
  1151. $iMaxScore = 0;
  1152. if ($this->bUpgrade && (count($aAlternatives) > 0))
  1153. {
  1154. // The installed choices have precedence over the 'default' choices
  1155. // In case several choices share the same base modules, let's weight the alternative choices
  1156. // based on their number of installed modules
  1157. $sChoiceName = null;
  1158. foreach($aAlternatives as $index => $aChoice)
  1159. {
  1160. $sChoiceId = $sParentId.self::$SEP.$index;
  1161. if ($sChoiceName == null)
  1162. {
  1163. $sChoiceName = $sChoiceId;
  1164. }
  1165. $aScores[$sChoiceId] = 0;
  1166. if (array_key_exists('modules', $aChoice))
  1167. {
  1168. foreach($aChoice['modules'] as $sModuleId)
  1169. {
  1170. if ($aModules[$sModuleId]['version_db'] != '')
  1171. {
  1172. // A module corresponding to this choice is installed, increase the score of this choice
  1173. if (!isset($aScores[$sChoiceId])) $aScores[$sChoiceId] = 0;
  1174. $aScores[$sChoiceId]++;
  1175. $iMaxScore = max($iMaxScore, $aScores[$sChoiceId]);
  1176. $iScore = 99; // The whole parent choice is selected
  1177. }
  1178. }
  1179. }
  1180. }
  1181. }
  1182. if ($iMaxScore > 0)
  1183. {
  1184. //echo "Scores: <pre>".print_r($aScores, true)."</pre><br/>";
  1185. // The choice with the bigger score wins !
  1186. asort($aScores, SORT_NUMERIC);
  1187. $aKeys = array_keys($aScores);
  1188. $sBetterChoiceId = array_pop($aKeys);
  1189. $aDefaults[$sChoiceName] = $sBetterChoiceId;
  1190. }
  1191. return $iScore;
  1192. }
  1193. /**
  1194. * Converts the list of selected "choices" into a list of "modules": take into account the selected and the mandatory modules
  1195. * @param hash $aInfo Info about the "choice" array('options' => array(...), 'alternatives' => array(...))
  1196. * @param hash $aSelectedChoices List of selected choices array('name' => 'selected_value_id')
  1197. * @param hash $aModules Return parameter: List of selected modules array('module_id' => true)
  1198. * @param string $sParentId Used for recursion
  1199. * @return void
  1200. */
  1201. protected function GetSelectedModules($aInfo, $aSelectedChoices, &$aModules, $sParentId = '', $sDisplayChoices = '')
  1202. {
  1203. if ($sParentId == '')
  1204. {
  1205. // Check once (before recursing) that the hidden modules are selected
  1206. foreach(SetupUtils::AnalyzeInstallation($this->oWizard) as $sModuleId => $aModule)
  1207. {
  1208. if ($sModuleId != ROOT_MODULE)
  1209. {
  1210. if (($aModule['category'] == 'authentication') || (!$aModule['visible']))
  1211. {
  1212. $aModules[$sModuleId] = true;
  1213. }
  1214. }
  1215. }
  1216. }
  1217. $aOptions = isset($aInfo['options']) ? $aInfo['options'] : array();
  1218. foreach($aOptions as $index => $aChoice)
  1219. {
  1220. $sChoiceId = $sParentId.self::$SEP.$index;
  1221. if ( (isset($aChoice['mandatory']) && $aChoice['mandatory']) ||
  1222. (isset($aSelectedChoices[$sChoiceId]) && ($aSelectedChoices[$sChoiceId] == $sChoiceId)) )
  1223. {
  1224. $sDisplayChoices .= '<li>'.$aChoice['title'].'</li>';
  1225. if (isset($aChoice['modules']))
  1226. {
  1227. foreach($aChoice['modules'] as $sModuleId)
  1228. {
  1229. $aModules[$sModuleId] = true; // store the Id of the selected module
  1230. }
  1231. }
  1232. // Recurse only for selected choices
  1233. if (isset($aChoice['sub_options']))
  1234. {
  1235. $sDisplayChoices .= '<ul>';
  1236. $sDisplayChoices = $this->GetSelectedModules($aChoice['sub_options'], $aSelectedChoices, $aModules, $sChoiceId, $sDisplayChoices);
  1237. $sDisplayChoices .= '</ul>';
  1238. }
  1239. $sDisplayChoices .= '</li>';
  1240. }
  1241. $index++;
  1242. }
  1243. $aAlternatives = isset($aInfo['alternatives']) ? $aInfo['alternatives'] : array();
  1244. $sChoiceName = null;
  1245. foreach($aAlternatives as $index => $aChoice)
  1246. {
  1247. $sChoiceId = $sParentId.self::$SEP.$index;
  1248. if ($sChoiceName == null)
  1249. {
  1250. $sChoiceName = $sChoiceId;
  1251. }
  1252. if ( (isset($aChoice['mandatory']) && $aChoice['mandatory']) ||
  1253. (isset($aSelectedChoices[$sChoiceName]) && ($aSelectedChoices[$sChoiceName] == $sChoiceId)) )
  1254. {
  1255. $sDisplayChoices .= '<li>'.$aChoice['title'].'</li>';
  1256. if (isset($aChoice['modules']))
  1257. {
  1258. foreach($aChoice['modules'] as $sModuleId)
  1259. {
  1260. $aModules[$sModuleId] = true; // store the Id of the selected module
  1261. }
  1262. }
  1263. // Recurse only for selected choices
  1264. if (isset($aChoice['sub_options']))
  1265. {
  1266. $sDisplayChoices .= '<ul>';
  1267. $sDisplayChoices = $this->GetSelectedModules($aChoice['sub_options'], $aSelectedChoices, $aModules, $sChoiceId, $sDisplayChoices);
  1268. $sDisplayChoices .= '</ul>';
  1269. }
  1270. $sDisplayChoices .= '</li>';
  1271. }
  1272. $index++;
  1273. }
  1274. if ($sParentId == '')
  1275. {
  1276. // Last pass (after all the user's choices are turned into "selected" modules):
  1277. // Process 'auto_select' modules for modules that are not already selected
  1278. $aAvailableModules = SetupUtils::AnalyzeInstallation($this->oWizard);
  1279. do
  1280. {
  1281. // Loop while new modules are added...
  1282. $bModuleAdded = false;
  1283. foreach($aAvailableModules as $sModuleId => $aModule)
  1284. {
  1285. if (($sModuleId != ROOT_MODULE) && !array_key_exists($sModuleId, $aModules) && isset($aModule['auto_select']))
  1286. {
  1287. try
  1288. {
  1289. $bSelected = false;
  1290. SetupInfo::SetSelectedModules($aModules);
  1291. eval('$bSelected = ('.$aModule['auto_select'].');');
  1292. }
  1293. catch(Exception $e)
  1294. {
  1295. $sDisplayChoices .= '<li><b>Warning: auto_select failed with exception ('.$e->getMessage().') for module "'.$sModuleId.'"</b></li>';
  1296. $bSelected = false;
  1297. }
  1298. if ($bSelected)
  1299. {
  1300. $aModules[$sModuleId] = true; // store the Id of the selected module
  1301. $bModuleAdded = true;
  1302. }
  1303. }
  1304. }
  1305. }
  1306. while($bModuleAdded);
  1307. }
  1308. return $sDisplayChoices;
  1309. }
  1310. protected function GetStepIndex()
  1311. {
  1312. switch($this->sCurrentState)
  1313. {
  1314. case 'start_install':
  1315. case 'start_upgrade':
  1316. $index = 0;
  1317. break;
  1318. default:
  1319. $index = (integer)$this->sCurrentState;
  1320. }
  1321. return $index;
  1322. }
  1323. protected function GetStepInfo($idx = null)
  1324. {
  1325. $aStepInfo = null;
  1326. if ($idx === null)
  1327. {
  1328. $index = $this->GetStepIndex();
  1329. }
  1330. else
  1331. {
  1332. $index = $idx;
  1333. }
  1334. $aSteps = array();
  1335. if (@file_exists($this->GetSourceFilePath()))
  1336. {
  1337. $aParams = new XMLParameters($this->GetSourceFilePath());
  1338. $aSteps = $aParams->Get('steps', array());
  1339. $bAddExtensionsOnly = true;
  1340. }
  1341. else
  1342. {
  1343. // No wizard configuration provided, build a standard one:
  1344. $bAddExtensionsOnly = false;
  1345. $aSteps[] = array(
  1346. 'title' => 'Modules Selection',
  1347. 'description' => '<h2>Select the modules to install. You can launch the installation again to install new modules, but you cannot remove already installed modules.</h2>',
  1348. 'banner' => '/images/modules.png',
  1349. 'options' => array()
  1350. );
  1351. }
  1352. // Additional step for the extensions
  1353. $aSteps[] = array(
  1354. 'title' => 'Extensions',
  1355. 'description' => '<h2>Select additional extensions to install. You can launch the installation again to install new extensions, but you cannot remove already installed extensions.</h2>',
  1356. 'banner' => '/images/extension.png',
  1357. 'options' => array()
  1358. );
  1359. try
  1360. {
  1361. $sDefaultAppPath = utils::GetDefaultUrlAppRoot();
  1362. }
  1363. catch(Exception $e)
  1364. {
  1365. $sDefaultAppPath = '..';
  1366. }
  1367. $aAvailableModules = SetupUtils::AnalyzeInstallation($this->oWizard);
  1368. foreach($aAvailableModules as $sModuleId => $aModule)
  1369. {
  1370. if ($sModuleId == ROOT_MODULE) continue; // Convention: the version number of the application (and datamodel) are stored as a module named ROOT_MODULE
  1371. $sModuleLabel = $aModule['label'];
  1372. $sModuleHelp = $aModule['doc.more_information'];
  1373. $sMoreInfo = (!empty($aModule['doc.more_information'])) ? "<a href=\"$sDefaultAppPath{$aModule['doc.more_information']}\" target=\"_blank\">more info</a>": '';
  1374. if (($aModule['category'] != 'authentication') && ($aModule['visible']))
  1375. {
  1376. if (($bAddExtensionsOnly) && (!$this->IsExtension($aModule))) continue;
  1377. if ($this->IsExtension($aModule))
  1378. {
  1379. $iStepIndex = count($aSteps) - 1;
  1380. }
  1381. else
  1382. {
  1383. $iStepIndex = 0;
  1384. }
  1385. $aSteps[$iStepIndex]['options'][] = array(
  1386. 'title' => $sModuleLabel,
  1387. 'description' => '',
  1388. 'more_info' => $sMoreInfo,
  1389. 'default' => true, // by default offer to install all modules
  1390. 'modules' => array($sModuleId),
  1391. 'mandatory' => ($aModule['install']['flag'] & MODULE_ACTION_MANDATORY) ? true : false,
  1392. );
  1393. }
  1394. }
  1395. if (count($aSteps[count($aSteps) - 1]['options']) == 0)
  1396. {
  1397. // No extensions at all, remove the last step
  1398. array_pop($aSteps);
  1399. }
  1400. if (array_key_exists($index, $aSteps))
  1401. {
  1402. $aStepInfo = $aSteps[$index];
  1403. }
  1404. return $aStepInfo;
  1405. }
  1406. protected function GetExtensionsStepInfo()
  1407. {
  1408. // let the user select from the list of modules located in the "extensions" folder
  1409. }
  1410. protected function IsExtension($aModule)
  1411. {
  1412. // root_dir is the directory containing the module, check if its parent is "extensions"
  1413. if (basename(dirname($aModule['root_dir'])) == 'extensions')
  1414. {
  1415. return true;
  1416. }
  1417. return false;
  1418. }
  1419. protected function DisplayOptions($oPage, $aStepInfo, $aSelectedComponents, $aDefaults, $sParentId = '')
  1420. {
  1421. $aOptions = isset($aStepInfo['options']) ? $aStepInfo['options'] : array();
  1422. $aAlternatives = isset($aStepInfo['alternatives']) ? $aStepInfo['alternatives'] : array();
  1423. $index = 0;
  1424. foreach($aOptions as $index => $aChoice)
  1425. {
  1426. $sAttributes = '';
  1427. $sChoiceId = $sParentId.self::$SEP.$index;
  1428. $bIsDefault = array_key_exists($sChoiceId, $aDefaults);
  1429. $bSelected = isset($aSelectedComponents[$sChoiceId]) && ($aSelectedComponents[$sChoiceId] == $sChoiceId);
  1430. $bMandatory = (isset($aChoice['mandatory']) && $aChoice['mandatory']) || ($this->bUpgrade && $bIsDefault);
  1431. if ($bMandatory)
  1432. {
  1433. $oPage->add('<div class="choice"><input id="choice'.$sChoiceId.'" checked disabled data-disabled="disabled" type="checkbox"'.$sAttributes.'/><input type="hidden" name="choice['.$sChoiceId.']" value="'.$sChoiceId.'">&nbsp;');
  1434. }
  1435. else if ($bSelected)
  1436. {
  1437. $oPage->add('<div class="choice"><input class="wiz-choice" id="choice'.$sChoiceId.'" name="choice['.$sChoiceId.']" type="checkbox" checked value="'.$sChoiceId.'"/>&nbsp;');
  1438. }
  1439. else
  1440. {
  1441. $oPage->add('<div class="choice"><input class="wiz-choice" id="choice'.$sChoiceId.'" name="choice['.$sChoiceId.']" type="checkbox" value="'.$sChoiceId.'"/>&nbsp;');
  1442. }
  1443. $this->DisplayChoice($oPage, $aChoice, $aSelectedComponents, $aDefaults, $sChoiceId);
  1444. $oPage->add('</div>');
  1445. $index++;
  1446. }
  1447. $sChoiceName = null;
  1448. $sDisabled = '';
  1449. $sChoiceIdNone = null;
  1450. foreach($aAlternatives as $index => $aChoice)
  1451. {
  1452. $sChoiceId = $sParentId.self::$SEP.$index;
  1453. if ($sChoiceName == null)
  1454. {
  1455. $sChoiceName = $sChoiceId; // All radios share the same name
  1456. }
  1457. $bIsDefault = array_key_exists($sChoiceName, $aDefaults) && ($aDefaults[$sChoiceName] == $sChoiceId);
  1458. $bMandatory = (isset($aChoice['mandatory']) && $aChoice['mandatory']) || ($this->bUpgrade && $bIsDefault);
  1459. if ($bMandatory)
  1460. {
  1461. // One choice is mandatory, all alternatives are disabled
  1462. $sDisabled = ' disabled data-disabled="disabled"';
  1463. }
  1464. if ( (!isset($aChoice['sub_options']) || (count($aChoice['sub_options']) == 0)) && (!isset($aChoice['modules']) || (count($aChoice['modules']) == 0)) )
  1465. {
  1466. $sChoiceIdNone = $sChoiceId; // the "None" / empty choice
  1467. }
  1468. }
  1469. foreach($aAlternatives as $index => $aChoice)
  1470. {
  1471. $sAttributes = '';
  1472. $sChoiceId = $sParentId.self::$SEP.$index;
  1473. if ($sChoiceName == null)
  1474. {
  1475. $sChoiceName = $sChoiceId; // All radios share the same name
  1476. }
  1477. $bIsDefault = array_key_exists($sChoiceName, $aDefaults) && ($aDefaults[$sChoiceName] == $sChoiceId);
  1478. $bSelected = isset($aSelectedComponents[$sChoiceName]) && ($aSelectedComponents[$sChoiceName] == $sChoiceId);
  1479. if ( !isset($aSelectedComponents[$sChoiceName]) && ($sChoiceIdNone != null))
  1480. {
  1481. // No choice selected, select the "None" option
  1482. $bSelected = ($sChoiceId == $sChoiceIdNone);
  1483. }
  1484. $bMandatory = (isset($aChoice['mandatory']) && $aChoice['mandatory']) || ($this->bUpgrade && $bIsDefault);
  1485. if ($bSelected)
  1486. {
  1487. $sAttributes = ' checked ';
  1488. }
  1489. $sHidden = '';
  1490. if ($bMandatory)
  1491. {
  1492. $sAttributes = ' checked ';
  1493. $sHidden = '<input type="hidden" name="choice['.$sChoiceName.']" value="'.$sChoiceId.'"/>';
  1494. }
  1495. $oPage->add('<div class="choice"><input class="wiz-choice" id="choice'.$sChoiceId.'" name="choice['.$sChoiceName.']" type="radio"'.$sAttributes.' value="'.$sChoiceId.'"'.$sDisabled.'/>'.$sHidden.'&nbsp;');
  1496. $this->DisplayChoice($oPage, $aChoice, $aSelectedComponents, $aDefaults, $sChoiceId);
  1497. $oPage->add('</div>');
  1498. $index++;
  1499. }
  1500. }
  1501. protected function DisplayChoice($oPage, $aChoice, $aSelectedComponents, $aDefaults, $sChoiceId)
  1502. {
  1503. $sMoreInfo = isset($aChoice['more_info']) ? $aChoice['more_info'] : '';
  1504. $oPage->add('<label for="choice'.$sChoiceId.'"><b>'.htmlentities($aChoice['title'], ENT_QUOTES, 'UTF-8').'</b></label> '.$sMoreInfo);
  1505. $sDescription = isset($aChoice['description']) ? htmlentities($aChoice['description'], ENT_QUOTES, 'UTF-8') : '';
  1506. $oPage->add('<div class="description">'.$sDescription.'<span id="sub_choices'.$sChoiceId.'">');
  1507. if (isset($aChoice['sub_options']))
  1508. {
  1509. $this->DisplayOptions($oPage, $aChoice['sub_options'], $aSelectedComponents, $aDefaults, $sChoiceId);
  1510. }
  1511. $oPage->add('</span></div>');
  1512. }
  1513. protected function GetSourceFilePath()
  1514. {
  1515. $sSourceDir = $this->oWizard->GetParameter('source_dir');
  1516. return $sSourceDir.'/installation.xml';
  1517. }
  1518. }
  1519. /**
  1520. * Summary of the installation tasks
  1521. */
  1522. class WizStepSummary extends WizardStep
  1523. {
  1524. public function GetTitle()
  1525. {
  1526. $sMode = $this->oWizard->GetParameter('mode', 'install');
  1527. if ($sMode == 'install')
  1528. {
  1529. return 'Ready to install';
  1530. }
  1531. else
  1532. {
  1533. return 'Ready to upgrade';
  1534. }
  1535. }
  1536. public function GetPossibleSteps()
  1537. {
  1538. return array('WizStepDone');
  1539. }
  1540. /**
  1541. * Returns the label for the " Next >> " button
  1542. * @return string The label for the button
  1543. */
  1544. public function GetNextButtonLabel()
  1545. {
  1546. return ' Install ! ';
  1547. }
  1548. public function ProcessParams($bMoveForward = true)
  1549. {
  1550. return array('class' => 'WizStepDone', 'state' => '');
  1551. }
  1552. public function Display(WebPage $oPage)
  1553. {
  1554. $oPage->add_style(
  1555. <<<EOF
  1556. #params_summary {
  1557. height: 200px;
  1558. overflow: auto;
  1559. }
  1560. #params_summary div {
  1561. width:100%;
  1562. margin-top:0;
  1563. padding-top: 0.5em;
  1564. padding-left: 0;
  1565. }
  1566. #params_summary div ul {
  1567. margin-left:0;
  1568. padding-left: 20px;
  1569. }
  1570. #params_summary div.closed ul {
  1571. display:none;
  1572. }
  1573. #params_summary div li {
  1574. list-style: none;
  1575. width: 100%;
  1576. margin-left:0;
  1577. padding-left: 0em;
  1578. }
  1579. .title {
  1580. padding-left: 20px;
  1581. font-weight: bold;
  1582. cursor: pointer;
  1583. background: url(../images/minus.gif) 2px 2px no-repeat;
  1584. }
  1585. #params_summary div.closed .title {
  1586. background: url(../images/plus.gif) 2px 2px no-repeat;
  1587. }
  1588. #progress_content {
  1589. height: 200px;
  1590. overflow: auto;
  1591. text-align: center;
  1592. }
  1593. #installation_progress {
  1594. display: none;
  1595. }
  1596. EOF
  1597. );
  1598. $aInstallParams = $this->BuildConfig();
  1599. $sMode = $aInstallParams['mode'];
  1600. $sPreinstallationPhase = '';
  1601. $sDestination = ITOP_APPLICATION.(($sMode == 'install') ? ' version '.ITOP_VERSION.' is about to be installed ' : ' is about to be upgraded ');
  1602. $sDBDescription = ' <b>existing</b> database <b>'.$aInstallParams['database']['name'].'</b>';
  1603. if (($sMode == 'install') && ($this->oWizard->GetParameter('create_db') == 'yes'))
  1604. {
  1605. $sDBDescription = ' <b>new</b> database <b>'.$aInstallParams['database']['name'].'</b>';
  1606. }
  1607. $sDestination .= 'into the '.$sDBDescription.' on the server <b>'.$aInstallParams['database']['server'].'</b>.';
  1608. $oPage->add('<h2>'.$sDestination.'</h2>');
  1609. $oPage->add('<fieldset id="summary"><legend>Installation Parameters</legend>');
  1610. $oPage->add('<div id="params_summary">');
  1611. $oPage->add('<div class="closed"><span class="title">Database Parameters</span><ul>');
  1612. $oPage->add('<li>Server Name: '.$aInstallParams['database']['server'].'</li>');
  1613. $oPage->add('<li>DB User Name: '.$aInstallParams['database']['user'].'</li>');
  1614. $oPage->add('<li>DB user password: '.$aInstallParams['database']['pwd'].'</li>');
  1615. if (($sMode == 'install') && ($this->oWizard->GetParameter('create_db') == 'yes'))
  1616. {
  1617. $oPage->add('<li>Database Name: '.$aInstallParams['database']['name'].' (will be created)</li>');
  1618. }
  1619. else
  1620. {
  1621. $oPage->add('<li>Database Name: '.$aInstallParams['database']['name'].'</li>');
  1622. }
  1623. if ($aInstallParams['database']['prefix'] != '')
  1624. {
  1625. $oPage->add('<li>Prefix for the '.ITOP_APPLICATION.' tables: '.$aInstallParams['database']['prefix'].'</li>');
  1626. }
  1627. else
  1628. {
  1629. $oPage->add('<li>Prefix for the '.ITOP_APPLICATION.' tables: none</li>');
  1630. }
  1631. $oPage->add('</ul></div>');
  1632. $oPage->add('<div><span class="title">Data Model Configuration</span>');
  1633. $oPage->add($this->oWizard->GetParameter('display_choices'));
  1634. $oPage->add('</div>');
  1635. $oPage->add('<div class="closed"><span class="title">Other Parameters</span><ul>');
  1636. if ($sMode == 'install')
  1637. {
  1638. $oPage->add('<li>Default language: '.$aInstallParams['language'].'</li>');
  1639. }
  1640. $oPage->add('<li>URL to access the application: '.$aInstallParams['url'].'</li>');
  1641. if ($aInstallParams['sample_data'] == 'yes')
  1642. {
  1643. $oPage->add('<li>Sample data will be loaded into the database.</li>');
  1644. }
  1645. if ($aInstallParams['old_addon'])
  1646. {
  1647. $oPage->add('<li>Compatibility mode: Using the version 1.2 of the UserRightsProfiles add-on.</li>');
  1648. }
  1649. $oPage->add('</ul></div>');
  1650. if ($sMode == 'install')
  1651. {
  1652. $oPage->add('<div class="closed"><span class="title">Admininistrator Account</span><ul>');
  1653. $oPage->add('<li>Login: '.$aInstallParams['admin_account']['user'].'</li>');
  1654. $oPage->add('<li>Password: '.$aInstallParams['admin_account']['pwd'].'</li>');
  1655. $oPage->add('<li>Language: '.$aInstallParams['admin_account']['language'].'</li>');
  1656. $oPage->add('</ul></div>');
  1657. }
  1658. $aMiscOptions = $aInstallParams['options'];
  1659. if (count($aMiscOptions) > 0)
  1660. {
  1661. $oPage->add('<div class="closed"><span class="title">Miscellaneous Options</span><ul>');
  1662. foreach($aMiscOptions as $sKey => $sValue)
  1663. {
  1664. $oPage->add('<li>'.$sKey.': '.$sValue.'</li>');
  1665. }
  1666. $oPage->add('</ul></div>');
  1667. }
  1668. $aSelectedModules = $aInstallParams['selected_modules'];
  1669. if (isset($aMiscOptions['generate_config']))
  1670. {
  1671. $oDoc = new DOMDocument('1.0', 'UTF-8');
  1672. $oDoc->preserveWhiteSpace = false;
  1673. $oDoc->formatOutput = true;
  1674. $oParams = new PHPParameters();
  1675. $oParams->LoadFromHash($aInstallParams);
  1676. $oParams->ToXML($oDoc, null, 'installation');
  1677. $sXML = $oDoc->saveXML();
  1678. $oPage->add('<div class="closed"><span class="title">XML Config file</span><ul><pre>');
  1679. $oPage->add(htmlentities($sXML, ENT_QUOTES, 'UTF-8'));
  1680. $oPage->add('</pre></ul></div>');
  1681. }
  1682. $oPage->add('</div>'); // params_summary
  1683. $oPage->add('</fieldset>');
  1684. $oPage->add('<fieldset id="installation_progress"><legend>Progress of the installation</legend>');
  1685. $oPage->add('<div id="progress_content">');
  1686. $oPage->add_linked_script('../setup/jquery.progression.js');
  1687. $oPage->add('<p class="center"><span id="setup_msg">Ready to start...</span></p><div style="display:block;margin-left: auto; margin-right:auto;" id="progress">0%</div>');
  1688. $oPage->add('</div>'); // progress_content
  1689. $oPage->add('</fieldset>');
  1690. $sJSONData = json_encode($aInstallParams);
  1691. $oPage->add('<input type="hidden" id="installer_parameters" value="'.htmlentities($sJSONData, ENT_QUOTES, 'UTF-8').'"/>');
  1692. $oPage->add_ready_script(
  1693. <<<EOF
  1694. $("#params_summary div").addClass('closed');
  1695. $("#params_summary .title").click(function() { $(this).parent().toggleClass('closed'); } );
  1696. $("#btn_next").bind("click.install", function(event) {
  1697. $('#summary').hide();
  1698. $('#installation_progress').show();
  1699. $(this).attr("disabled", "disabled"); event.preventDefault(); ExecuteStep("");
  1700. });
  1701. $("#wiz_form").data("installation_status", "not started")
  1702. EOF
  1703. );
  1704. }
  1705. /**
  1706. * Prepare the parameters to execute the installation asynchronously
  1707. * @return Hash A big hash array that can be converted to XML or JSON with all the needed parameters
  1708. */
  1709. protected function BuildConfig()
  1710. {
  1711. $sMode = $this->oWizard->GetParameter('install_mode', 'install');
  1712. $aSelectedModules = json_decode($this->oWizard->GetParameter('selected_modules'), true);
  1713. $sBackupDestination = '';
  1714. $sPreviousConfigurationFile = '';
  1715. $sDBName = $this->oWizard->GetParameter('db_name');
  1716. if ($sMode == 'upgrade')
  1717. {
  1718. $sPreviousVersionDir = $this->oWizard->GetParameter('previous_version_dir', '');
  1719. if (!empty($sPreviousVersionDir))
  1720. {
  1721. $aPreviousInstance = SetupUtils::GetPreviousInstance($sPreviousVersionDir);
  1722. if ($aPreviousInstance['found'])
  1723. {
  1724. $sPreviousConfigurationFile = $aPreviousInstance['configuration_file'];
  1725. }
  1726. }
  1727. if ($this->oWizard->GetParameter('db_backup', false))
  1728. {
  1729. $sBackupDestination = $this->oWizard->GetParameter('db_backup_path', '');
  1730. }
  1731. }
  1732. else
  1733. {
  1734. $sDBNewName = $this->oWizard->GetParameter('db_new_name', '');
  1735. if ($sDBNewName != '')
  1736. {
  1737. $sDBName = $sDBNewName; // Database will be created
  1738. }
  1739. }
  1740. $sSourceDir = $this->oWizard->GetParameter('source_dir');
  1741. $aCopies = array();
  1742. if (($sMode == 'upgrade') && ($this->oWizard->GetParameter('upgrade_type') == 'keep-previous'))
  1743. {
  1744. $sPreviousVersionDir = $this->oWizard->GetParameter('previous_version_dir');
  1745. $aCopies[] = array('source' => $sSourceDir, 'destination' => 'modules'); // Source is an absolute path, destination is relative to APPROOT
  1746. $aCopies[] = array('source' => $sPreviousVersionDir.'/portal', 'destination' => 'portal'); // Source is an absolute path, destination is relative to APPROOT
  1747. $sSourceDir = APPROOT.'modules';
  1748. }
  1749. if (($sMode == 'upgrade'))
  1750. {
  1751. // Copy the previous extensions, if any
  1752. $sPreviousExtensionsDir = $this->oWizard->GetParameter('copy_extensions_from');
  1753. if (is_dir($sPreviousExtensionsDir))
  1754. {
  1755. // Copy the extensions one by one to merge them with the existing extensions in /extensions
  1756. $aExtensions = glob($sPreviousExtensionsDir.'/*', GLOB_ONLYDIR);
  1757. foreach($aExtensions as $sDirPath)
  1758. {
  1759. $sExtName = basename($sDirPath);
  1760. $aCopies[] = array('source' => $sDirPath, 'destination' => 'extensions/'.$sExtName); // Source is an absolute path, destination is relative to APPROOT
  1761. }
  1762. }
  1763. }
  1764. $aInstallParams = array (
  1765. 'mode' => $sMode,
  1766. 'preinstall' => array (
  1767. 'copies' => $aCopies,
  1768. // 'backup' => see below
  1769. ),
  1770. 'source_dir' => str_replace(APPROOT, '', $sSourceDir),
  1771. 'datamodel_version' => $this->oWizard->GetParameter('datamodel_version'), //TODO: let the installer compute this automatically...
  1772. 'previous_configuration_file' => $sPreviousConfigurationFile,
  1773. 'extensions_dir' => 'extensions',
  1774. 'target_env' => 'production',
  1775. 'workspace_dir' => '',
  1776. 'database' => array (
  1777. 'server' => $this->oWizard->GetParameter('db_server'),
  1778. 'user' => $this->oWizard->GetParameter('db_user'),
  1779. 'pwd' => $this->oWizard->GetParameter('db_pwd'),
  1780. 'name' => $sDBName,
  1781. 'prefix' => $this->oWizard->GetParameter('db_prefix'),
  1782. ),
  1783. 'url' => $this->oWizard->GetParameter('application_url'),
  1784. 'admin_account' => array (
  1785. 'user' => $this->oWizard->GetParameter('admin_user'),
  1786. 'pwd' => $this->oWizard->GetParameter('admin_pwd'),
  1787. 'language' => $this->oWizard->GetParameter('admin_language'),
  1788. ),
  1789. 'language' => $this->oWizard->GetParameter('default_language'),
  1790. 'selected_modules' => $aSelectedModules,
  1791. 'sample_data' => ($this->oWizard->GetParameter('sample_data', '') == 'yes') ? true : false ,
  1792. 'old_addon' => $this->oWizard->GetParameter('old_addon', false), // whether or not to use the "old" userrights profile addon
  1793. 'options' => json_decode($this->oWizard->GetParameter('misc_options', '[]'), true),
  1794. );
  1795. if ($sBackupDestination != '')
  1796. {
  1797. $aInstallParams['preinstall']['backup'] = array (
  1798. 'destination' => $sBackupDestination,
  1799. 'configuration_file' => $sPreviousConfigurationFile,
  1800. );
  1801. }
  1802. return $aInstallParams;
  1803. }
  1804. public function AsyncAction(WebPage $oPage, $sCode, $aParameters)
  1805. {
  1806. $oParameters = new PHPParameters();
  1807. $sStep = $aParameters['installer_step'];
  1808. $sJSONParameters = $aParameters['installer_config'];
  1809. $oParameters->LoadFromHash(json_decode($sJSONParameters, true /* bAssoc */));
  1810. $oInstaller = new ApplicationInstaller($oParameters);
  1811. $aRes = $oInstaller->ExecuteStep($sStep);
  1812. if (($aRes['status'] != ApplicationInstaller::ERROR) && ($aRes['next-step'] != ''))
  1813. {
  1814. // Tell the web page to move the progress bar and to launch the next step
  1815. $sMessage = addslashes(htmlentities($aRes['next-step-label'], ENT_QUOTES, 'UTF-8'));
  1816. $oPage->add_ready_script(
  1817. <<<EOF
  1818. $("#wiz_form").data("installation_status", "running");
  1819. WizardUpdateButtons();
  1820. $('#setup_msg').html('$sMessage');
  1821. $('#progress').progression( {Current:{$aRes['percentage-completed']}, Maximum: 100, aBackgroundImg: GetAbsoluteUrlAppRoot()+'setup/orange-progress.gif', aTextColor: '#000000'} );
  1822. //$("#percentage").html('{$aRes['percentage-completed']} % completed<br/>{$aRes['next-step-label']}');
  1823. ExecuteStep('{$aRes['next-step']}');
  1824. EOF
  1825. );
  1826. }
  1827. else if ($aRes['status'] != ApplicationInstaller::ERROR)
  1828. {
  1829. // Installation complete, move to the next step of the wizard
  1830. $oPage->add_ready_script(
  1831. <<<EOF
  1832. $("#wiz_form").data("installation_status", "completed");
  1833. $('#progress').progression( {Current:100, Maximum: 100, aBackgroundImg: GetAbsoluteUrlAppRoot()+'setup/orange-progress.gif', aTextColor: '#000000'} );
  1834. WizardUpdateButtons();
  1835. $("#btn_next").unbind("click.install");
  1836. $("#btn_next").click();
  1837. EOF
  1838. );
  1839. }
  1840. else
  1841. {
  1842. $sMessage = addslashes(htmlentities($aRes['message'], ENT_QUOTES, 'UTF-8'));
  1843. $oPage->add_ready_script(
  1844. <<<EOF
  1845. $("#wiz_form").data("installation_status", "error");
  1846. WizardUpdateButtons();
  1847. $('#setup_msg').html('$sMessage');
  1848. EOF
  1849. );
  1850. }
  1851. }
  1852. /**
  1853. * Tells whether the "Next" button should be enabled interactively
  1854. * @return string A piece of javascript code returning either true or false
  1855. */
  1856. public function JSCanMoveForward()
  1857. {
  1858. return 'return (($("#wiz_form").data("installation_status") === "not started") || ($("#wiz_form").data("installation_status") === "completed"));';
  1859. }
  1860. /**
  1861. * Tells whether the "Next" button should be enabled interactively
  1862. * @return string A piece of javascript code returning either true or false
  1863. */
  1864. public function JSCanMoveBackward()
  1865. {
  1866. return 'var sStatus = $("#wiz_form").data("installation_status"); return ((sStatus === "not started") || (sStatus === "error"));';
  1867. }
  1868. }
  1869. /**
  1870. * Summary of the installation tasks
  1871. */
  1872. class WizStepDone extends WizardStep
  1873. {
  1874. public function GetTitle()
  1875. {
  1876. return 'Done';
  1877. }
  1878. public function GetPossibleSteps()
  1879. {
  1880. return array();
  1881. }
  1882. public function ProcessParams($bMoveForward = true)
  1883. {
  1884. return array('class' => '', 'state' => '');
  1885. }
  1886. public function Display(WebPage $oPage)
  1887. {
  1888. // Check if there are some manual steps required:
  1889. $aManualSteps = array();
  1890. $aAvailableModules = SetupUtils::AnalyzeInstallation($this->oWizard);
  1891. $sRootUrl = utils::GetAbsoluteUrlAppRoot();
  1892. $aSelectedModules = json_decode($this->oWizard->GetParameter('selected_modules'), true);
  1893. foreach($aSelectedModules as $sModuleId)
  1894. {
  1895. if (!empty($aAvailableModules[$sModuleId]['doc.manual_setup']))
  1896. {
  1897. $aManualSteps[$aAvailableModules[$sModuleId]['label']] = $sRootUrl.$aAvailableModules[$sModuleId]['doc.manual_setup'];
  1898. }
  1899. }
  1900. if (count($aManualSteps) > 0)
  1901. {
  1902. $oPage->add("<h2>Manual operations required</h2>");
  1903. $oPage->p("In order to complete the installation, the following manual operations are required:");
  1904. foreach($aManualSteps as $sModuleLabel => $sUrl)
  1905. {
  1906. $oPage->p("<a href=\"$sUrl\" target=\"_blank\">Manual instructions for $sModuleLabel</a>");
  1907. }
  1908. $oPage->add("<h2>Congratulations for installing ".ITOP_APPLICATION."</h2>");
  1909. }
  1910. else
  1911. {
  1912. $oPage->add("<h2>Congratulations for installing ".ITOP_APPLICATION."</h2>");
  1913. $oPage->ok("The installation completed successfully.");
  1914. }
  1915. if (($this->oWizard->GetParameter('mode', '') == 'upgrade') && $this->oWizard->GetParameter('db_backup', false))
  1916. {
  1917. $sBackupDestination = $this->oWizard->GetParameter('db_backup_path', '');
  1918. if (file_exists($sBackupDestination))
  1919. {
  1920. // To mitigate security risks: pass only the filename without the extension, the download will add the extension itself
  1921. $sTruncatedFilePath = preg_replace('/\.zip$/', '', $sBackupDestination);
  1922. $oPage->p('Your backup is ready');
  1923. $oPage->p('<a style="background:transparent;" href="'.utils::GetAbsoluteUrlAppRoot().'setup/ajax.dataloader.php?operation=async_action&step_class=WizStepDone&params[backup]='.urlencode($sTruncatedFilePath).'" target="_blank"><img src="../images/tar.png" style="border:0;vertical-align:middle;">&nbsp;Download '.basename($sBackupDestination).'</a>');
  1924. }
  1925. else
  1926. {
  1927. $oPage->p('<img src="../images/error.png"/>&nbsp;Warning: Backup creation failed !');
  1928. }
  1929. }
  1930. // Form goes here.. No back button since the job is done !
  1931. $oPage->add('<table style="width:600px;border:0;padding:0;"><tr>');
  1932. $oPage->add("<td><a style=\"background:transparent;padding:0;\" title=\"Free: Register your iTop version.\" href=\"http://www.combodo.com/register?product=iTop&version=".urlencode(ITOP_VERSION." revision ".ITOP_REVISION)."\" target=\"_blank\"><img style=\"border:0\" src=\"../images/setup-register.gif\"/></td></a>");
  1933. $oPage->add("<td><a style=\"background:transparent;padding:0;\" title=\"Get Professional Support from Combodo\" href=\"http://www.combodo.com/itopsupport\" target=\"_blank\"><img style=\"border:0\" src=\"../images/setup-support.gif\"/></td></a>");
  1934. $oPage->add("<td><a style=\"background:transparent;padding:0;\" title=\"Get Professional Training from Combodo\" href=\"http://www.combodo.com/itoptraining\" target=\"_blank\"><img style=\"border:0\" src=\"../images/setup-training.gif\"/></td></a>");
  1935. $oPage->add('</tr></table>');
  1936. $sForm = '<form method="post" action="'.$this->oWizard->GetParameter('application_url').'pages/UI.php">';
  1937. $sForm .= '<input type="hidden" name="auth_user" value="'.htmlentities($this->oWizard->GetParameter('admin_user'), ENT_QUOTES, 'UTF-8').'">';
  1938. $sForm .= '<input type="hidden" name="auth_pwd" value="'.htmlentities($this->oWizard->GetParameter('admin_pwd'), ENT_QUOTES, 'UTF-8').'">';
  1939. $sForm .= "<p style=\"text-align:center;width:100%\"><button id=\"enter_itop\" type=\"submit\">Enter ".ITOP_APPLICATION."</button></p>";
  1940. $sForm .= '</form>';
  1941. $sPHPVersion = phpversion();
  1942. $sMySQLVersion = SetupUtils::GetMySQLVersion($this->oWizard->GetParameter('db_server'), $this->oWizard->GetParameter('db_user'), $this->oWizard->GetParameter('db_pwd'));
  1943. $oPage->add('<img style="border:0" src="http://www.combodo.com/stats/?p='.urlencode(ITOP_APPLICATION).'&v='.urlencode(ITOP_VERSION).'&php='.urlencode($sPHPVersion).'&mysql='.urlencode($sMySQLVersion).'&os='.urlencode(PHP_OS).'"/>');
  1944. $sForm = addslashes($sForm);
  1945. $oPage->add_ready_script("$('#wiz_form').after('$sForm');");
  1946. }
  1947. public function CanMoveForward()
  1948. {
  1949. return false;
  1950. }
  1951. public function CanMoveBackward()
  1952. {
  1953. return false;
  1954. }
  1955. /**
  1956. * Tells whether this step of the wizard requires that the configuration file be writable
  1957. * @return bool True if the wizard will possibly need to modify the configuration at some point
  1958. */
  1959. public function RequiresWritableConfig()
  1960. {
  1961. return false; //This step executes once the config was written and secured
  1962. }
  1963. public function AsyncAction(WebPage $oPage, $sCode, $aParameters)
  1964. {
  1965. $oParameters = new PHPParameters();
  1966. // For security reasons: add the extension now so that this action can be used to read *only* .zip files from the disk...
  1967. $sBackupFile = $aParameters['backup'].'.zip';
  1968. if (file_exists($sBackupFile))
  1969. {
  1970. // Make sure there is NO output at all before our content, otherwise the document will be corrupted
  1971. $sPreviousContent = ob_get_clean();
  1972. $oPage->SetContentType('application/zip');
  1973. $oPage->SetContentDisposition('attachment', basename($sBackupFile));
  1974. $oPage->add(file_get_contents($sBackupFile));
  1975. }
  1976. }
  1977. }