index.php 58 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568
  1. <?php
  2. // Copyright (C) 2010 Combodo SARL
  3. //
  4. // This program is free software; you can redistribute it and/or modify
  5. // it under the terms of the GNU General Public License as published by
  6. // the Free Software Foundation; version 3 of the License.
  7. //
  8. // This program is distributed in the hope that it will be useful,
  9. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. // GNU General Public License for more details.
  12. //
  13. // You should have received a copy of the GNU General Public License
  14. // along with this program; if not, write to the Free Software
  15. // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  16. /**
  17. * Wizard to configure and initialize the iTop application
  18. *
  19. * @author Erwan Taloc <erwan.taloc@combodo.com>
  20. * @author Romain Quetiez <romain.quetiez@combodo.com>
  21. * @author Denis Flaven <denis.flaven@combodo.com>
  22. * @license http://www.opensource.org/licenses/gpl-3.0.html LGPL
  23. */
  24. require_once('../approot.inc.php');
  25. require_once(APPROOT.'/application/utils.inc.php');
  26. require_once(APPROOT.'/core/config.class.inc.php');
  27. require_once(APPROOT.'/core/log.class.inc.php');
  28. require_once(APPROOT.'/core/kpi.class.inc.php');
  29. require_once(APPROOT.'/core/cmdbsource.class.inc.php');
  30. require_once(APPROOT.'/setup/setuppage.class.inc.php');
  31. require_once(APPROOT.'/setup/moduleinstaller.class.inc.php');
  32. define('TMP_CONFIG_FILE', APPROOT.'/tmp-config-itop.php');
  33. define('FINAL_CONFIG_FILE', APPROOT.'/config-itop.php');
  34. define('PHP_MIN_VERSION', '5.2.0');
  35. define('MYSQL_MIN_VERSION', '5.0.0');
  36. define('MIN_MEMORY_LIMIT', 32*1024*1024);
  37. $sOperation = Utils::ReadParam('operation', 'step0');
  38. $oP = new SetupWebPage('iTop configuration wizard');
  39. ///////////////////////////////////////////////////////////////////////////////////////////////////
  40. // Various helper function
  41. ///////////////////////////////////////////////////////////////////////////////////////////////////
  42. /**
  43. * Get a nicely formatted version string
  44. */
  45. function GetITopVersion($bShort = true)
  46. {
  47. $sVersionString = '';
  48. if ($bShort)
  49. {
  50. $sVersionString = "iTop Version ".ITOP_VERSION;
  51. }
  52. else
  53. {
  54. if (ITOP_REVISION == '$WCREV$')
  55. {
  56. // This is NOT a version built using the buil system, just display the main version
  57. $sVersionString = "iTop Version ".ITOP_VERSION;
  58. }
  59. else
  60. {
  61. // This is a build made from SVN, let display the full information
  62. $sVersionString = "iTop Version ".ITOP_VERSION." revision ".ITOP_REVISION.", built on: ".ITOP_BUILD_DATE;
  63. }
  64. }
  65. return $sVersionString;
  66. }
  67. /**
  68. * Helper function to retrieve the system's temporary directory
  69. * Emulates sys_get_temp_dir if neeed (PHP < 5.2.1)
  70. * @return string Path to the system's temp directory
  71. */
  72. function GetTmpDir()
  73. {
  74. // try to figure out what is the temporary directory
  75. // prior to PHP 5.2.1 the function sys_get_temp_dir
  76. // did not exist
  77. if ( !function_exists('sys_get_temp_dir'))
  78. {
  79. if( $temp=getenv('TMP') ) return realpath($temp);
  80. if( $temp=getenv('TEMP') ) return realpath($temp);
  81. if( $temp=getenv('TMPDIR') ) return realpath($temp);
  82. $temp=tempnam(__FILE__,'');
  83. if (file_exists($temp))
  84. {
  85. unlink($temp);
  86. return realpath(dirname($temp));
  87. }
  88. return null;
  89. }
  90. else
  91. {
  92. return realpath(sys_get_temp_dir());
  93. }
  94. }
  95. /**
  96. * Helper function to retrieve the directory where files are to be uploaded
  97. * @return string Path to the temp directory used for uploading files
  98. */
  99. function GetUploadTmpDir()
  100. {
  101. $sPath = ini_get('upload_tmp_dir');
  102. if (empty($sPath))
  103. {
  104. $sPath = GetTmpDir();
  105. }
  106. return $sPath;
  107. }
  108. /**
  109. * Helper function to check if the current version of PHP
  110. * is compatible with the application
  111. * @return boolean true if this is Ok, false otherwise
  112. */
  113. function CheckPHPVersion(SetupWebPage $oP)
  114. {
  115. $bResult = true;
  116. $aErrors = array();
  117. $aWarnings = array();
  118. $aOk = array();
  119. $oP->log('Info - CheckPHPVersion');
  120. if (version_compare(phpversion(), PHP_MIN_VERSION, '>='))
  121. {
  122. $aOk [] = "The current PHP Version (".phpversion().") is greater than the minimum required version (".PHP_MIN_VERSION.")";
  123. }
  124. else
  125. {
  126. $aErrors[] = "Error: The current PHP Version (".phpversion().") is lower than the minimum required version (".PHP_MIN_VERSION.")";
  127. $bResult = false;
  128. }
  129. $aMandatoryExtensions = array('mysql', 'iconv', 'simplexml', 'soap', 'hash', 'json', 'session', 'pcre', 'dom');
  130. $aOptionalExtensions = array('mcrypt' => 'Strong encryption will not be used.',
  131. 'ldap' => 'LDAP authentication will be disabled.');
  132. asort($aMandatoryExtensions); // Sort the list to look clean !
  133. ksort($aOptionalExtensions); // Sort the list to look clean !
  134. $aExtensionsOk = array();
  135. $aMissingExtensions = array();
  136. $aMissingExtensionsLinks = array();
  137. // First check the mandatory extensions
  138. foreach($aMandatoryExtensions as $sExtension)
  139. {
  140. if (extension_loaded($sExtension))
  141. {
  142. $aExtensionsOk[] = $sExtension;
  143. }
  144. else
  145. {
  146. $aMissingExtensions[] = $sExtension;
  147. $aMissingExtensionsLinks[] = "<a href=\"http://www.php.net/manual/en/book.$sExtension.php\" target=\"_blank\">$sExtension</a>";
  148. }
  149. }
  150. if (count($aExtensionsOk) > 0)
  151. {
  152. $aOk[] = "Required PHP extension(s): ".implode(', ', $aExtensionsOk).".";
  153. }
  154. if (count($aMissingExtensions) > 0)
  155. {
  156. $aErrors[] = "Missing PHP extension(s): ".implode(', ', $aMissingExtensionsLinks).".";
  157. $bResult = false;
  158. }
  159. // Next check the optional extensions
  160. $aExtensionsOk = array();
  161. $aMissingExtensions = array();
  162. foreach($aOptionalExtensions as $sExtension => $sMessage)
  163. {
  164. if (extension_loaded($sExtension))
  165. {
  166. $aExtensionsOk[] = $sExtension;
  167. }
  168. else
  169. {
  170. $aMissingExtensions[$sExtension] = $sMessage;
  171. }
  172. }
  173. if (count($aExtensionsOk) > 0)
  174. {
  175. $aOk[] = "Optional PHP extension(s): ".implode(', ', $aExtensionsOk).".";
  176. }
  177. if (count($aMissingExtensions) > 0)
  178. {
  179. foreach($aMissingExtensions as $sExtension => $sMessage)
  180. {
  181. $aWarnings[] = "Missing optional PHP extension: $sExtension. ".$sMessage;
  182. }
  183. }
  184. // Check some ini settings here
  185. if (function_exists('php_ini_loaded_file')) // PHP >= 5.2.4
  186. {
  187. $sPhpIniFile = php_ini_loaded_file();
  188. // Other included/scanned files
  189. if ($sFileList = php_ini_scanned_files())
  190. {
  191. if (strlen($sFileList) > 0)
  192. {
  193. $aFiles = explode(',', $sFileList);
  194. foreach ($aFiles as $sFile)
  195. {
  196. $sPhpIniFile .= ', '.trim($sFile);
  197. }
  198. }
  199. }
  200. $oP->log("Info - php.ini file(s): '$sPhpIniFile'");
  201. }
  202. else
  203. {
  204. $sPhpIniFile = 'php.ini';
  205. }
  206. if (!ini_get('file_uploads'))
  207. {
  208. $aErrors[] = "Files upload is not allowed on this server (file_uploads = ".ini_get('file_uploads').").";
  209. $bResult = false;
  210. }
  211. $sUploadTmpDir = GetUploadTmpDir();
  212. if (empty($sUploadTmpDir))
  213. {
  214. $sUploadTmpDir = '/tmp';
  215. $aErrors[] = "Temporary directory for files upload is not defined (upload_tmp_dir), assuming that $sUploadTmpDir is used.";
  216. }
  217. // check that the upload directory is indeed writable from PHP
  218. if (!empty($sUploadTmpDir))
  219. {
  220. if (!file_exists($sUploadTmpDir))
  221. {
  222. $aErrors[] = "Temporary directory for files upload ($sUploadTmpDir) does not exist or cannot be read by PHP.";
  223. $bResult = false;
  224. }
  225. else if (!is_writable($sUploadTmpDir))
  226. {
  227. $aErrors[] = "Temporary directory for files upload ($sUploadTmpDir) is not writable.";
  228. $bResult = false;
  229. }
  230. else
  231. {
  232. $oP->log("Info - Temporary directory for files upload ($sUploadTmpDir) is writable.");
  233. }
  234. }
  235. if (!ini_get('upload_max_filesize'))
  236. {
  237. $aErrors[] = "File upload is not allowed on this server (file_uploads = ".ini_get('file_uploads').").";
  238. }
  239. $iMaxFileUploads = ini_get('max_file_uploads');
  240. if (!empty($iMaxFileUploads) && ($iMaxFileUploads < 1))
  241. {
  242. $aErrors[] = "File upload is not allowed on this server (max_file_uploads = ".ini_get('max_file_uploads').").";
  243. $bResult = false;
  244. }
  245. $oP->log("Info - upload_max_filesize: ".ini_get('upload_max_filesize'));
  246. $oP->log("Info - max_file_uploads: ".ini_get('max_file_uploads'));
  247. // Check some more ini settings here, needed for file upload
  248. if (get_magic_quotes_gpc())
  249. {
  250. $aErrors[] = "'magic_quotes_gpc' is set to On. Please turn it Off before continuing. You may want to check the PHP configuration file(s): '$sPhpIniFile'. Be aware that this setting can also be overridden in the apache configuration.";
  251. $bResult = false;
  252. }
  253. $sMemoryLimit = trim(ini_get('memory_limit'));
  254. if (empty($sMemoryLimit))
  255. {
  256. // On some PHP installations, memory_limit does not exist as a PHP setting!
  257. // (encountered on a 5.2.0 under Windows)
  258. // In that case, ini_set will not work, let's keep track of this and proceed anyway
  259. $aWarnings[] = "No memory limit has been defined in this instance of PHP";
  260. }
  261. else
  262. {
  263. // Check that the limit will allow us to load the data
  264. //
  265. $iMemoryLimit = utils::ConvertToBytes($sMemoryLimit);
  266. if ($iMemoryLimit < MIN_MEMORY_LIMIT)
  267. {
  268. $aErrors[] = "memory_limit ($iMemoryLimit) is too small, the minimum value to run iTop is ".MIN_MEMORY_LIMIT.".";
  269. $bResult = false;
  270. }
  271. else
  272. {
  273. $oP->log_info("memory_limit is $iMemoryLimit, ok.");
  274. }
  275. }
  276. // Special case for APC
  277. if (extension_loaded('apc'))
  278. {
  279. $sAPCVersion = phpversion('apc');
  280. $aOk[] = "APC detected (version $sAPCVersion). The APC cache will be used to speed-up iTop.";
  281. }
  282. if (!$bResult)
  283. {
  284. $sTitle = 'Checking prerequisites: Failed !';
  285. }
  286. else
  287. {
  288. if (count($aWarnings) > 0)
  289. {
  290. $sTitle = '<img src="../images/messagebox_warning-mid.png" style="vertical-align:middle"> Checking prerequisites: Warning <a href="#" onClick="$(\'#prereq_details\').toggle();">(show details)</a>';
  291. $oP->add_ready_script("$('#prereq_details').hide();\n");
  292. }
  293. else
  294. {
  295. $sTitle = '<img src="../images/clean-mid.png" style="vertical-align:middle"> Checking prerequisites: Ok <a href="#" onClick="$(\'#prereq_details\').toggle();">(show details)</a>';
  296. $oP->add_ready_script("$('#prereq_details').hide();\n");
  297. }
  298. }
  299. $oP->add("<h2>$sTitle</h2>\n");
  300. $oP->add("<div id=\"prereq_details\">\n");
  301. foreach($aErrors as $sError)
  302. {
  303. $oP->error($sError);
  304. //$oP->add_ready_script("$('#prereq_details').show();");
  305. }
  306. foreach($aWarnings as $sWarning)
  307. {
  308. $oP->warning($sWarning);
  309. }
  310. foreach($aOk as $sOk)
  311. {
  312. $oP->ok($sOk);
  313. }
  314. $oP->add("</div>\n");
  315. return $bResult;
  316. }
  317. /**
  318. * Helper function check the connection to the database and (if connected) to enumerate
  319. * the existing databases
  320. * @return Array The list of databases found in the server
  321. */
  322. function CheckServerConnection(SetupWebPage $oP, $sDBServer, $sDBUser, $sDBPwd)
  323. {
  324. $aResult = array();
  325. $oP->log('Info - CheckServerConnection');
  326. try
  327. {
  328. $oDBSource = new CMDBSource;
  329. $oDBSource->Init($sDBServer, $sDBUser, $sDBPwd);
  330. $oP->ok("Connection to '$sDBServer' as '$sDBUser' successful.");
  331. $oP->log("Info - User privileges: ".($oDBSource->GetRawPrivileges()));
  332. $sDBVersion = $oDBSource->GetDBVersion();
  333. if (version_compare($sDBVersion, MYSQL_MIN_VERSION, '>='))
  334. {
  335. $oP->ok("Current MySQL version ($sDBVersion), greater than minimum required version (".MYSQL_MIN_VERSION.")");
  336. // Check some server variables
  337. $iMaxAllowedPacket = $oDBSource->GetServerVariable('max_allowed_packet');
  338. $iMaxUploadSize = utils::ConvertToBytes(ini_get('upload_max_filesize'));
  339. if ($iMaxAllowedPacket >= (500 + $iMaxUploadSize)) // Allow some space for the query + the file to upload
  340. {
  341. $oP->ok("MySQL server's max_allowed_packet is big enough.");
  342. }
  343. else if($iMaxAllowedPacket < $iMaxUploadSize)
  344. {
  345. $oP->warning("MySQL server's max_allowed_packet ($iMaxAllowedPacket) is not big enough. Please, consider setting it to at least ".(500 + $iMaxUploadSize).".");
  346. }
  347. $oP->log("Info - MySQL max_allowed_packet: $iMaxAllowedPacket");
  348. $iMaxConnections = $oDBSource->GetServerVariable('max_connections');
  349. if ($iMaxConnections < 5)
  350. {
  351. $oP->warning("MySQL server's max_connections ($iMaxConnections) is not enough. Please, consider setting it to at least 5.");
  352. }
  353. $oP->log("Info - MySQL max_connections: ".($oDBSource->GetServerVariable('max_connections')));
  354. }
  355. else
  356. {
  357. $oP->error("Error: Current MySQL version is ($sDBVersion), minimum required version (".MYSQL_MIN_VERSION.")");
  358. return false;
  359. }
  360. try
  361. {
  362. $aResult = $oDBSource->ListDB();
  363. }
  364. catch(Exception $e)
  365. {
  366. $oP->warning("Warning: unable to enumerate the current databases.");
  367. $aResult = true; // Not an array to differentiate with an empty array
  368. }
  369. }
  370. catch(Exception $e)
  371. {
  372. $oP->error("Error: Connection to '$sDBServer' as '$sDBUser' failed.");
  373. $oP->p($e->GetHtmlDesc());
  374. $aResult = false;
  375. }
  376. return $aResult;
  377. }
  378. /**
  379. * Scans the ./data directory for XML files and output them as a Javascript array
  380. */
  381. function PopulateDataFilesList(SetupWebPage $oP, $aParamValues, $oConfig)
  382. {
  383. $oP->add("<script type=\"text/javascript\">\n");
  384. $oP->add("function PopulateDataFilesList()\n");
  385. $oP->add("{\n");
  386. $oP->add("if (aFilesToLoad.length > 0) return;"); // Populate the list only once...
  387. $aAvailableModules = AnalyzeInstallation($oConfig);
  388. $sMode = $aParamValues['mode'];
  389. $aStructureDataFiles = array();
  390. $aSampleDataFiles = array();
  391. foreach($aAvailableModules as $sModuleId => $aModule)
  392. {
  393. if (($sModuleId != ROOT_MODULE) && $aModule['visible'])
  394. {
  395. if (in_array($sModuleId, $aParamValues['module']))
  396. {
  397. if (empty($aModule['version_db']))
  398. {
  399. // New installation load the data
  400. $aModuleStruct = $aAvailableModules[$sModuleId]['data.struct'];
  401. $aModuleSamples = $aAvailableModules[$sModuleId]['data.sample'];
  402. $aStructureDataFiles = array_merge($aStructureDataFiles, $aModuleStruct);
  403. $aSampleDataFiles = array_merge($aSampleDataFiles, $aModuleSamples);
  404. }
  405. }
  406. }
  407. }
  408. // Structure data
  409. //
  410. foreach($aStructureDataFiles as $sFile)
  411. {
  412. // Under Windows, it is a must to escape backslashes (not an issue until a folder name starts with t or n, etc...)
  413. $sFile = APPROOT.$sFile;
  414. $sFile = str_replace('\\', '\\\\', $sFile);
  415. $oP->add("aFilesToLoad[aFilesToLoad.length] = '$sFile';\n");
  416. }
  417. // Sample data - loaded IIF wished by the user
  418. //
  419. if ($aParamValues['sample_data'] != 'no')
  420. {
  421. foreach($aSampleDataFiles as $sFile)
  422. {
  423. // Under Windows, it is a must to escape backslashes (not an issue until a folder name starts with t or n, etc...)
  424. $sFile = APPROOT.$sFile;
  425. $sFile = str_replace('\\', '\\\\', $sFile);
  426. $oP->add("aFilesToLoad[aFilesToLoad.length] = '$sFile';\n");
  427. }
  428. }
  429. $oP->add("}\n");
  430. $oP->add("</script>\n");
  431. }
  432. /**
  433. * Add some parameters as hidden inputs into a form
  434. * @param SetupWebpage $oP The page to insert the form elements into
  435. * @param Hash $aParamValues The pairs name/value to be stored in the form
  436. * @param Array $aExcludeParams A list of parameters to exclude from the previous hash
  437. */
  438. function AddParamsToForm(SetupWebpage $oP, $aParamValues, $aExcludeParams = array())
  439. {
  440. foreach($aParamValues as $sName => $value)
  441. {
  442. if(!in_array($sName, $aExcludeParams))
  443. {
  444. AddHiddenParam($oP, $sName, $value);
  445. }
  446. }
  447. }
  448. /**
  449. * Add a hidden <INPUT> field to store the specified parameter
  450. * @param $sName string Name of the parameter
  451. * @param $value mixed Value of the parameter
  452. */
  453. function AddHiddenParam($oP, $sName, $value)
  454. {
  455. if (is_array($value))
  456. {
  457. foreach($value as $sKey => $sItem)
  458. {
  459. $oP->add('<input type="hidden" name="'.$sName.'['.$sKey.']'.'" value="'.$sItem.'">');
  460. }
  461. }
  462. else
  463. {
  464. $oP->add('<input type="hidden" name="'.$sName.'" value="'.$value.'">');
  465. }
  466. }
  467. /**
  468. * Build the config file from the parameters (especially the selected modules)
  469. */
  470. function BuildConfig(SetupWebpage $oP, Config &$oConfig, $aParamValues, $aAvailableModules)
  471. {
  472. // Initialize the arrays below with default values for the application...
  473. $aAddOns = $oConfig->GetAddOns();
  474. $aAppModules = $oConfig->GetAppModules();
  475. $aDataModels = $oConfig->GetDataModels();
  476. $aWebServiceCategories = $oConfig->GetWebServiceCategories();
  477. $aDictionaries = $oConfig->GetDictionaries();
  478. // Merge the values with the ones provided by the modules
  479. // Make sure when don't load the same file twice...
  480. foreach($aParamValues['module'] as $sModuleId)
  481. {
  482. $oP->log('Installed iTop module: '. $sModuleId);
  483. if (isset($aAvailableModules[$sModuleId]['datamodel']))
  484. {
  485. $aDataModels = array_unique(array_merge($aDataModels, $aAvailableModules[$sModuleId]['datamodel']));
  486. }
  487. if (isset($aAvailableModules[$sModuleId]['webservice']))
  488. {
  489. $aWebServiceCategories = array_unique(array_merge($aWebServiceCategories, $aAvailableModules[$sModuleId]['webservice']));
  490. }
  491. if (isset($aAvailableModules[$sModuleId]['dictionary']))
  492. {
  493. $aDictionaries = array_unique(array_merge($aDictionaries, $aAvailableModules[$sModuleId]['dictionary']));
  494. }
  495. if (isset($aAvailableModules[$sModuleId]['settings']))
  496. {
  497. foreach($aAvailableModules[$sModuleId]['settings'] as $sProperty => $value)
  498. {
  499. list($sName, $sVersion) = GetModuleName($sModuleId);
  500. $oConfig->SetModuleSetting($sName, $sProperty, $value);
  501. }
  502. }
  503. if (isset($aAvailableModules[$sModuleId]['installer']))
  504. {
  505. $sModuleInstallerClass = $aAvailableModules[$sModuleId]['installer'];
  506. if (!class_exists($sModuleInstallerClass))
  507. {
  508. throw new Exception("Wrong installer class: '$sModuleInstallerClass' is not a PHP class - Module: ".$aAvailableModules[$sModuleId]['label']);
  509. }
  510. if (!is_subclass_of($sModuleInstallerClass, 'ModuleInstallerAPI'))
  511. {
  512. throw new Exception("Wrong installer class: '$sModuleInstallerClass' is not derived from 'ModuleInstallerAPI' - Module: ".$aAvailableModules[$sModuleId]['label']);
  513. }
  514. $aCallSpec = array($sModuleInstallerClass, 'BeforeWritingConfig');
  515. $oConfig = call_user_func_array($aCallSpec, array($oConfig));
  516. }
  517. }
  518. $oConfig->SetAddOns($aAddOns);
  519. $oConfig->SetAppModules($aAppModules);
  520. $oConfig->SetDataModels($aDataModels);
  521. $oConfig->SetWebServiceCategories($aWebServiceCategories);
  522. $oConfig->SetDictionaries($aDictionaries);
  523. }
  524. /////////////////////////////////////////////////////////////////////////////////////////////////////////////
  525. // Handling of the different steps of the setup wizard
  526. /////////////////////////////////////////////////////////////////////////////////////////////////////////////
  527. /**
  528. * Displays the welcome screen and check some basic prerequisites
  529. */
  530. function WelcomeAndCheckPrerequisites(SetupWebPage $oP, $aParamValues, $iCurrentStep)
  531. {
  532. $sNextOperation = 'step'.($iCurrentStep+1);
  533. $aParamValues['previous_step'] = 0;
  534. $oP->add("<h1>iTop configuration wizard</h1>\n");
  535. $sVersionStringShort = GetITopVersion(true);
  536. $sVersionStringLong = GetITopVersion(false);
  537. $oP->set_title('Welcome to '.$sVersionStringShort);
  538. $oP->log($sVersionStringLong);
  539. $aPreviousParams = array();
  540. $oP->add("<form id=\"theForm\" method=\"post\" onSubmit=\"return DoSubmit('', 0)\">\n");
  541. $sMode = 'install'; // Fresh install
  542. // Check for a previous version
  543. if (file_exists(FINAL_CONFIG_FILE))
  544. {
  545. $oConfig = new Config(FINAL_CONFIG_FILE);
  546. $oConfig->WriteToFile(TMP_CONFIG_FILE);
  547. $aVersion = AnalyzeInstallation($oConfig);
  548. if (!empty($aVersion[ROOT_MODULE]['version_db']))
  549. {
  550. $aPreviousParams = array('mode', 'db_server', 'db_user', 'db_pwd','db_name', 'new_db_name', 'db_prefix');
  551. $sMode = 'upgrade';
  552. if ($aVersion[ROOT_MODULE]['version_db'] == $aVersion[ROOT_MODULE]['version_code'])
  553. {
  554. $oP->ok("Version ".$aVersion[ROOT_MODULE]['version_db']." of iTop detected.<br/>The <b>same version</b> of the application will be reinstalled.");
  555. }
  556. else
  557. {
  558. $oP->ok("Version ".$aVersion[ROOT_MODULE]['version_db']." of iTop detected.<br/>The application will be upgraded to version ".$aVersion[ITOP_APPLICATION]['version_code'].".");
  559. }
  560. AddHiddenParam($oP, 'db_server', $oConfig->GetDBHost());
  561. AddHiddenParam($oP, 'db_user', $oConfig->GetDBUser());
  562. AddHiddenParam($oP, 'db_pwd', $oConfig->GetDBPwd());
  563. AddHiddenParam($oP, 'db_name', $oConfig->GetDBName());
  564. AddHiddenParam($oP, 'db_prefix', $oConfig->GetDBSubname());
  565. AddHiddenParam($oP, 'mode', $sMode);
  566. if (CheckPHPVersion($oP))
  567. {
  568. $oP->add("<h2 class=\"next\">Next: Licence agreement</h2>\n");
  569. $oP->add("<input type=\"hidden\" name=\"operation\" value=\"$sNextOperation\">\n");
  570. AddParamsToForm($oP, $aParamValues, $aPreviousParams);
  571. $oP->add("<table style=\"width:100%\"><tr>\n");
  572. $oP->add("<td style=\"text-align:right;\"><button type=\"submit\" type=\"submit\">Next >></button></td>\n");
  573. $oP->add("</tr></table>\n");
  574. }
  575. return;
  576. }
  577. // else, normal install ??
  578. }
  579. if (CheckPHPVersion($oP))
  580. {
  581. $oP->add("<h2>What do you want to do?</h2>\n");
  582. $sChecked = ($aParamValues['mode'] == 'install') ? 'checked' : '';
  583. $oP->p("<input id=\"choice_install\" type=\"radio\" value=\"install\" $sChecked name=\"mode\"><label for=\"choice_install\">&nbsp;Install a new iTop</label>");
  584. $sChecked = ($aParamValues['mode'] == 'upgrade') ? 'checked' : '';
  585. $oP->p("<input id=\"choice_upgrade\" type=\"radio\" value=\"upgrade\" $sChecked name=\"mode\"><label for=\"choice_upgrade\">&nbsp;Upgrade an existing iTop instance</label>");
  586. $oP->add("<h2 class=\"next\">Next: Licence agreement</h2>\n");
  587. $oP->add("<input type=\"hidden\" name=\"operation\" value=\"$sNextOperation\">\n");
  588. $aPreviousParams = array('mode');
  589. AddParamsToForm($oP, $aParamValues, $aPreviousParams);
  590. $oP->add("<table style=\"width:100%\"><tr>\n");
  591. $oP->add("<td style=\"text-align:right;\"><button type=\"submit\">Next >></button></td>\n");
  592. $oP->add("</tr></table>\n");
  593. $oP->add("</form>\n");
  594. }
  595. }
  596. function LicenceAcknowledgement($oP, $aParamValues, $iCurrentStep)
  597. {
  598. $sNextOperation = 'step'.($iCurrentStep+1);
  599. $iPrevStep = 0;
  600. $aParamValues['previous_step'] = $iCurrentStep; // Come back here
  601. $oP->set_title('License agreement');
  602. $oP->add('<h2>iTop is released by <a href="http://www.combodo.com" target="_blank">Combodo SARL</a> under the terms of the GPL V3 license. In order to use iTop you must accept the terms of this license.</h2>');
  603. $oP->add("<iframe style=\"width: 100%; height: 350px; overflow-y:auto; font-size:0.8em;\" src=\"./licence.html\">Next: Database server selection</iframe>\n");
  604. $oP->add("<form id=\"theForm\" method=\"post\">\n");
  605. AddParamsToForm($oP, $aParamValues, array('licence_ok'));
  606. $sChecked = $aParamValues['licence_ok'] == 1 ? 'checked' : '';
  607. $oP->add("<h2><input id=\"licence_ok\" type=\"checkbox\" name=\"licence_ok\" value=\"1\" $sChecked><label for=\"licence_ok\">I accept the terms of this licence agreement</label></h2>\n");
  608. if (file_exists(FINAL_CONFIG_FILE))
  609. {
  610. $oP->add("<h2 class=\"next\">Next: Modules selection</h2>\n");
  611. $sNextOperation = 'step4';
  612. }
  613. else
  614. {
  615. $oP->add("<h2 class=\"next\">Next: Database server selection</h2>\n");
  616. }
  617. $oP->add("<input type=\"hidden\" name=\"operation\" value=\"$sNextOperation\">\n");
  618. $oP->add("<table style=\"width:100%\"><tr>\n");
  619. $oP->add("<td style=\"text-align:left;\"><button type=\"button\" onClick=\"return DoGoBack($iPrevStep)\"><< Back</button></td>\n");
  620. $oP->add("<td style=\"text-align:right;\"><button type=\"submit\" onClick=\"return DoSubmit('', $iCurrentStep)\">Next >></button></td>\n");
  621. $oP->add("</tr></table>\n");
  622. $oP->add("</form>\n");
  623. }
  624. /**
  625. * Display the form for the first step of the configuration wizard
  626. * which consists in the database server selection
  627. */
  628. function DatabaseServerSelection(SetupWebPage $oP, $aParamValues, $iCurrentStep)
  629. {
  630. $sNextOperation = 'step'.($iCurrentStep+1);
  631. $iPrevStep = 1;
  632. $aParamValues['previous_step'] = $iCurrentStep; // Come back here
  633. $oP->add("<form id=\"theForm\" method=\"post\">\n");
  634. $oP->add("<input type=\"hidden\" name=\"operation\" value=\"$sNextOperation\">\n");
  635. AddParamsToForm($oP, $aParamValues, array('db_server', 'db_user', 'db_pwd'));
  636. if ($aParamValues['licence_ok'] == 1)
  637. {
  638. $sRedStar = '<span class="hilite">*</span>';
  639. $oP->set_title("Database server selection\n");
  640. $oP->add("<h2>Please enter the name of the MySQL database server you want to use for iTop and supply valid credentials to connect to it</h2>\n");
  641. // Form goes here
  642. $oP->add("<fieldset><legend>Database connection</legend>\n");
  643. $aForm = array();
  644. $aForm[] = array('label' => "Server name$sRedStar:", 'input' => "<input id=\"db_server\" type=\"text\" name=\"db_server\" value=\"{$aParamValues['db_server']}\">",
  645. 'help' => 'E.g. "localhost", "dbserver.mycompany.com" or "192.142.10.23"');
  646. $aForm[] = array('label' => "User name$sRedStar:", 'input' => "<input id=\"db_user\" type=\"text\" name=\"db_user\" autocomplete=\"off\" value=\"{$aParamValues['db_user']}\">",
  647. 'help' => 'The account must have the following privileges on the database: SELECT, INSERT, UPDATE, DELETE, CREATE, ALTER, CREATE VIEW, TRIGGER');
  648. $aForm[] = array('label' => 'Password:', 'input' => "<input id=\"db_pwd\" type=\"password\" name=\"db_pwd\" autocomplete=\"off\" value=\"{$aParamValues['db_pwd']}\">");
  649. $oP->form($aForm);
  650. $oP->add("</fieldset>\n");
  651. $oP->add("<h2 class=\"next\">Next: Database instance Selection</h2>\n");
  652. $oP->add("<table style=\"width:100%\"><tr>\n");
  653. $oP->add("<td style=\"text-align:left;\"><button type=\"button\" onClick=\"return DoGoBack($iPrevStep)\"><< Back</button></td>\n");
  654. $oP->add("<td style=\"text-align:right;\"><button type=\"submit\" onClick=\"return DoSubmit('Connecting to the database...', $iCurrentStep);\">Next >></button></td>\n");
  655. $oP->add("</tr></table>\n");
  656. }
  657. else
  658. {
  659. $oP->add("<button type=\"button\" onClick=\"return DoGoBack($iPrevStep);\"><< Back</button>\n");
  660. }
  661. $oP->add("</form>\n");
  662. }
  663. /**
  664. * Display the form for the second step of the configuration wizard
  665. * which consists in
  666. * 1) Validating the parameters by connecting to the database server
  667. * 2) Prompting to select an existing database or to create a new one
  668. */
  669. function DatabaseInstanceSelection(SetupWebPage $oP, $aParamValues, $iCurrentStep, $oConfig)
  670. {
  671. $sNextOperation = 'step'.($iCurrentStep+1);
  672. $iPrevStep = 2;
  673. $aParamValues['previous_step'] = $iCurrentStep; // Come back here
  674. $oP->set_title("Database instance selection\n");
  675. $oP->add("<form id=\"theForm\" method=\"post\">\n");
  676. $oP->add("<input type=\"hidden\" name=\"operation\" value=\"$sNextOperation\">\n");
  677. AddParamsToForm($oP, $aParamValues, array('db_name', 'db_prefix', 'new_db_name'));
  678. $sDBServer = $aParamValues['db_server'];
  679. $sDBUser = $aParamValues['db_user'];
  680. $sDBPwd = $aParamValues['db_pwd'];
  681. $aDatabases = CheckServerConnection($oP, $sDBServer, $sDBUser, $sDBPwd);
  682. if ($aDatabases === false)
  683. {
  684. // Connection failed, invalid credentials ? Go back
  685. $oP->add("<button type=\"button\" onClick=\"return DoGoBack($iPrevStep);\"><< Back</button>\n");
  686. }
  687. else
  688. {
  689. // Connection is Ok, save it and continue the setup wizard
  690. $oConfig->SetDBHost($sDBServer);
  691. $oConfig->SetDBUser($sDBUser);
  692. $oConfig->SetDBPwd($sDBPwd);
  693. $oConfig->WriteToFile();
  694. $oP->add("<fieldset><legend>Select the database instance to use for iTop<span class=\"hilite\">*</span></legend>\n");
  695. $aForm = array();
  696. $bExistingChecked = false;
  697. $sChecked = '';
  698. $sDBName = '';
  699. // If the 'Create Database' option was checked... and the database still does not exist
  700. if (!$bExistingChecked && !empty($aParamValues['new_db_name']))
  701. {
  702. $sChecked = 'checked';
  703. $sDBName = $aParamValues['new_db_name'];
  704. }
  705. if ($aParamValues['mode'] == 'install')
  706. {
  707. $aForm[] = array('label' => "<input id=\"new_db\" type=\"radio\" name=\"db_name\" value=\"\" $sChecked/><label for=\"new_db\"> Create a new database:</label> <input type=\"text\" id=\"new_db_name\" name=\"new_db_name\" value=\"$sDBName\" maxlength=\"32\"/>");
  708. }
  709. if (is_array($aDatabases))
  710. {
  711. foreach($aDatabases as $sDBName)
  712. {
  713. $sChecked = '';
  714. if ($aParamValues['db_name'] == $sDBName)
  715. {
  716. $sChecked = 'checked';
  717. $bExistingChecked = true;
  718. }
  719. $aForm[] = array('label' => "<input id=\"db_$sDBName\" type=\"radio\" name=\"db_name\" value=\"$sDBName\" $sChecked/><label for=\"db_$sDBName\"> $sDBName</label>");
  720. }
  721. }
  722. else
  723. {
  724. $aForm[] = array('label' => "<input id=\"current_db\" type=\"radio\" name=\"db_name\" value=\"-1\" /><label for=\"current_db\"> Use the existing database:</label> <input type=\"text\" id=\"current_db_name\" name=\"current_db_name\" value=\"\" maxlength=\"32\"/>");
  725. $oP->add_ready_script("$('#current_db_name').click( function() { $('#current_db').attr('checked', true); });");
  726. }
  727. $oP->add('<div style="height:250px;overflow-y:auto;padding-left:1em;">');
  728. $oP->form($aForm);
  729. $oP->add('</div>');
  730. $oP->add_ready_script("$('#new_db_name').click( function() { $('#new_db').attr('checked', true); })");
  731. $oP->add("</fieldset>\n");
  732. $aForm = array();
  733. if ($aParamValues['mode'] == 'install')
  734. {
  735. $aForm[] = array('label' => "Add a prefix to all the tables: <input id=\"db_prefix\" type=\"text\" name=\"db_prefix\" value=\"{$aParamValues['db_prefix']}\" maxlength=\"32\"/>");
  736. }
  737. else
  738. {
  739. $aForm[] = array('label' => "The following prefix is used for the iTop tables: <input id=\"db_prefix\" type=\"text\" name=\"db_prefix\" value=\"{$aParamValues['db_prefix']}\" maxlength=\"32\"/>");
  740. }
  741. $oP->form($aForm);
  742. $oP->add("<h2 class=\"next\">Next: iTop modules selection</h2>\n");
  743. $oP->add("<table style=\"width:100%\"><tr>\n");
  744. $oP->add("<td style=\"text-align:left;\"><button type=\"button\" onClick=\"return DoGoBack($iPrevStep)\"><< Back</button></td>\n");
  745. $oP->add("<td style=\"text-align:right;\"><button type=\"submit\" onClick=\"return DoSubmit('', $iCurrentStep);\">Next >></button></td>\n");
  746. $oP->add("</tr></table>\n");
  747. }
  748. $oP->add("</form>\n");
  749. }
  750. /**
  751. * Display the form to select the iTop modules to be installed
  752. */
  753. function ModulesSelection(SetupWebPage $oP, $aParamValues, $iCurrentStep, $oConfig)
  754. {
  755. $sNextOperation = 'step'.($iCurrentStep+1);
  756. $aParamValues['previous_step'] = $iCurrentStep; // Come back here
  757. $sDBName = $aParamValues['db_name'];
  758. if ($sDBName == '')
  759. {
  760. $sDBName = $aParamValues['new_db_name'];
  761. }
  762. $sDBPrefix = $aParamValues['db_prefix'];
  763. $oConfig->SetDBName($sDBName);
  764. $oConfig->SetDBSubname($sDBPrefix);
  765. $oConfig->WriteToFile(TMP_CONFIG_FILE);
  766. $oP->add("<form id=\"theForm\" method=\"post\">\n");
  767. AddParamsToForm($oP, $aParamValues, array('module'));
  768. $sRedStar = '<span class="hilite">*</span>';
  769. $oP->set_title("iTop modules selection");
  770. $aAvailableModules = AnalyzeInstallation($oConfig);
  771. // Form goes here
  772. if ($aParamValues['mode'] == 'upgrade')
  773. {
  774. if (file_exists(FINAL_CONFIG_FILE))
  775. {
  776. $iPrevStep = 1; // depends on where we came from
  777. }
  778. else
  779. {
  780. $iPrevStep = 3;
  781. }
  782. if (empty($aAvailableModules[ROOT_MODULE]['version_db']))
  783. {
  784. $oP->error("Unable to detect the previous installation of iTop. The upgrade cannot continue.\n");
  785. $oP->add("<table style=\"width:100%\"><tr>\n");
  786. $oP->add("<td style=\"text-align:left;\"><button type=\"button\" onClick=\"return DoGoBack($iPrevStep)\"><< Back</button></td>\n");
  787. $oP->add("<td style=\"text-align:right;\">&nbsp;</td>\n");
  788. $oP->add("</tr></table>\n");
  789. $oP->add("</form>\n");
  790. return;
  791. }
  792. $oP->ok("iTop version ".$aAvailableModules[ROOT_MODULE]['version_db']." detected.\n");
  793. $oP->add("<h2>Customize your iTop installation to fit your needs</h2>\n");
  794. $oP->add("<fieldset><legend>Select the iTop modules you want to install or upgrade:</legend>\n");
  795. }
  796. else
  797. {
  798. $iPrevStep = 3; // depends on where we came from
  799. if (!empty($aAvailableModules[ROOT_MODULE]['version_db']))
  800. {
  801. $oP->error("A instance of iTop already exists. Please select the \"Upgrade\" mode to upgrade it.\n");
  802. $oP->add("<table style=\"width:100%\"><tr>\n");
  803. $oP->add("<td style=\"text-align:left;\"><button type=\"button\" onClick=\"return DoGoBack($iPrevStep)\"><< Back</button></td>\n");
  804. $oP->add("<td style=\"text-align:right;\">&nbsp;</td>\n");
  805. $oP->add("</tr></table>\n");
  806. $oP->add("</form>\n");
  807. return;
  808. }
  809. $oP->add("<h2>Customize your iTop installation to fit your needs</h2>\n");
  810. $oP->add("<fieldset><legend>Select the iTop modules you want to install:</legend>\n");
  811. }
  812. $oP->add("<div style=\"border: 0;width:100%; height: 250px; overflow-y:auto;\">");
  813. $sRedStar = '<span class="hilite">*</span>';
  814. $index = 0;
  815. $aSelectedModules = $aParamValues['module'];
  816. if ($aSelectedModules == '')
  817. {
  818. // Make sure it gets initialized as an array, default value: all modules selected !
  819. $aSelectedModules = array();
  820. foreach($aAvailableModules as $sModuleId => $aModule)
  821. {
  822. $aSelectedModules[] = $sModuleId;
  823. }
  824. }
  825. foreach($aAvailableModules as $sModuleId => $aModule)
  826. {
  827. if ($sModuleId == ROOT_MODULE) continue; // Convention: the version number of the application is stored as a module named ROOT_MODULE
  828. $sModuleLabel = $aModule['label'];
  829. $sModuleHelp = $aModule['doc.more_information'];
  830. //$sClass = ($aModule['mandatory']) ? 'class="read-only"' : '';
  831. $sMoreInfo = (!empty($aModule['doc.more_information'])) ? "<a href=\"..{$aModule['doc.more_information']}\" target=\"_blank\">more info</a>": '';
  832. if ($aModule['category'] == 'authentication')
  833. {
  834. // For now authentication modules are always on and hidden
  835. $oP->add("<input type=\"hidden\" id=\"module[$index]\" name=\"module[$index]\" value=\"$sModuleId\">\n");
  836. $index++;
  837. }
  838. elseif ($aModule['visible'])
  839. {
  840. switch($aModule['install']['flag'])
  841. {
  842. case MODULE_ACTION_OPTIONAL:
  843. $sClass = '';
  844. if ($aParamValues['mode'] == 'upgrade')
  845. {
  846. if (!empty($aParamValues['module']))
  847. {
  848. $sChecked = in_array($sModuleId, $aParamValues['module']) ? 'checked' : '';
  849. }
  850. else
  851. {
  852. $sChecked = '';
  853. // Default value: modules previously installed are checked
  854. if (!empty($aModule['version_db']))
  855. {
  856. $sChecked = 'checked'; // Checked if previously installed
  857. // Previously installed, are we allowed to uninstall this module ?
  858. if ($aModule['install']['flag'] == MODULE_ACTION_IMPOSSIBLE)
  859. {
  860. $sClass = 'class="read-only"';
  861. }
  862. }
  863. }
  864. }
  865. else
  866. {
  867. if (!empty($aParamValues['module']))
  868. {
  869. $sChecked = in_array($sModuleId, $aParamValues['module']) ? 'checked' : '';
  870. }
  871. else
  872. {
  873. $sChecked = 'checked';
  874. }
  875. }
  876. $oP->add("<p><input type=\"checkbox\" $sChecked $sClass id=\"module[$index]\" name=\"module[$index]\" value=\"$sModuleId\"><label $sClass for=\"module[$index]\"> {$aModule['label']}</label> $sMoreInfo</p>\n");
  877. break;
  878. case MODULE_ACTION_MANDATORY:
  879. $oP->add("<p><input type=\"checkbox\" class=\"read-only\" checked id=\"module[$index]\" name=\"module[$index]\" value=\"$sModuleId\"><label class=\"read-only\" for=\"module[$index]\"> {$aModule['label']}</label> $sMoreInfo</p>\n");
  880. break;
  881. case MODULE_ACTION_IMPOSSIBLE:
  882. if ($aParamValues['mode'] == 'upgrade')
  883. {
  884. if (!empty($aModule['version_db']))
  885. {
  886. // Previously installed, are we allowed to uninstall this module ?
  887. if ($aModule['uninstall']['flag'] == MODULE_ACTION_IMPOSSIBLE)
  888. {
  889. $oP->error('Error: impossible to uninstall the module: '.$aModule['label']."({$aModule['uninstall']['message']})");
  890. }
  891. }
  892. }
  893. else
  894. {
  895. $oP->add("<p><input type=\"checkbox\" class=\"read-only\" id=\"module[$index]\" name=\"module[$index]\" value=\"$sModuleId\"><label class=\"read-only\" for=\"module[$index]\"> {$aModule['label']}</label> $sMoreInfo</p>\n");
  896. }
  897. break;
  898. }
  899. $index++;
  900. }
  901. else
  902. {
  903. // For now hidden modules are always on !
  904. $oP->add("<input type=\"hidden\" id=\"module[$index]\" name=\"module[$index]\" value=\"$sModuleId\">\n");
  905. $index++;
  906. }
  907. }
  908. $oP->add("</div>");
  909. $oP->add("</fieldset>\n");
  910. if ($aParamValues['mode'] == 'upgrade')
  911. {
  912. $oP->add("<h2 class=\"next\">Next: Sample data selection</h2>\n");
  913. AddHiddenParam($oP, 'operation', 'step6');
  914. }
  915. else
  916. {
  917. $oP->add("<h2 class=\"next\">Next: Administrator account definition</h2>\n");
  918. AddHiddenParam($oP, 'operation', 'step5');
  919. }
  920. $oP->add("<table style=\"width:100%\"><tr>\n");
  921. $oP->add("<td style=\"text-align:left;\"><button type=\"button\" onClick=\"return DoGoBack($iPrevStep)\"><< Back</button></td>\n");
  922. $oP->add("<td style=\"text-align:right;\"><button type=\"submit\" onClick=\"return DoSubmit('', 4)\">Next >></button></td>\n");
  923. $oP->add("</tr></table>\n");
  924. $oP->add("</form>\n");
  925. $oP->add_ready_script("$('.read-only').click( function() { $(this).attr('checked','checked'); } );");
  926. }
  927. /**
  928. * Display the form for the third step of the configuration wizard
  929. * which consists in
  930. * 1) Validating the parameters by connecting to the database server & selecting the database
  931. * 2) Creating the database structure
  932. * 3) Prompting for the admin account to be created
  933. */
  934. function AdminAccountDefinition(SetupWebPage $oP, $aParamValues, $iCurrentStep, Config $oConfig)
  935. {
  936. $sNextOperation = 'step'.($iCurrentStep+1);
  937. $aParamValues['previous_step'] = $iCurrentStep; // Come back here
  938. $oP->set_title("Administrator account definition");
  939. $oP->add("<form id=\"theForm\" method=\"post\">\n");
  940. $oP->add("<input type=\"hidden\" name=\"operation\" value=\"$sNextOperation\">\n");
  941. AddParamsToForm($oP, $aParamValues, array('auth_user', 'auth_pwd', 'language'));
  942. $aAvailableModules = AnalyzeInstallation($oConfig);
  943. BuildConfig($oP, $oConfig, $aParamValues, $aAvailableModules); // Load all the includes based on the modules selected
  944. $oConfig->WriteToFile(TMP_CONFIG_FILE);
  945. InitDataModel(TMP_CONFIG_FILE, true); // Needed to know the available languages
  946. $sRedStar = "<span class=\"hilite\">*</span>";
  947. $oP->add("<h2>Default language for the application:</h2>\n");
  948. // Possible languages (depends on the dictionaries loaded in the config)
  949. $aForm = array();
  950. $aAvailableLanguages = Dict::GetLanguages();
  951. $sLanguages = '';
  952. $sDefaultCode = $oConfig->GetDefaultLanguage();
  953. foreach($aAvailableLanguages as $sLangCode => $aInfo)
  954. {
  955. $sSelected = ($sLangCode == $sDefaultCode ) ? 'selected ' : '';
  956. $sLanguages.="<option value=\"{$sLangCode}\">{$aInfo['description']} ({$aInfo['localized_description']})</option>";
  957. }
  958. $aForm[] = array('label' => "Default Language$sRedStar:", 'input' => "<select id=\"language\" name=\"language\">$sLanguages</option>");
  959. $oP->form($aForm);
  960. $oP->add("<h2>Definition of the administrator account</h2>\n");
  961. // Database created, continue with admin creation
  962. $oP->add("<fieldset><legend>Administrator account</legend>\n");
  963. $aForm = array();
  964. $aForm[] = array('label' => "Login$sRedStar:", 'input' => "<input id=\"auth_user\" type=\"text\" name=\"auth_user\" value=\"{$aParamValues['auth_user']}\">");
  965. $aForm[] = array('label' => "Password$sRedStar:", 'input' => "<input id=\"auth_pwd\" type=\"password\" name=\"auth_pwd\" value=\"{$aParamValues['auth_pwd']}\">");
  966. $aForm[] = array('label' => "Retype password$sRedStar:", 'input' => "<input id=\"auth_pwd2\" type=\"password\" name=\"auth_pwd2\" value=\"{$aParamValues['auth_pwd']}\">");
  967. $oP->form($aForm);
  968. $oP->add("</fieldset>\n");
  969. $oP->add("<h2 class=\"next\">Next: Sample data selection</h2>\n");
  970. $oP->add("<table style=\"width:100%\"><tr>\n");
  971. $oP->add("<td style=\"text-align:left;\"><button type=\"button\" onClick=\"return DoGoBack(4)\"><< Back</button></td>\n");
  972. $oP->add("<td style=\"text-align:right;\"><button type=\"submit\" onClick=\"return DoSubmit('', 5);\">Next >></button></td>\n");
  973. $oP->add("</tr></table>\n");
  974. // Form goes here
  975. $oP->add("</form>\n");
  976. }
  977. /**
  978. * Display the form for the fourth step of the configuration wizard
  979. * which consists in
  980. * 1) Creating the admin user account
  981. * 2) Prompting to load some sample data
  982. */
  983. function SampleDataSelection(SetupWebPage $oP, $aParamValues, $iCurrentStep, Config $oConfig)
  984. {
  985. $sNextOperation = 'step7';
  986. if ($aParamValues['mode'] == 'upgrade')
  987. {
  988. $iPrevStep = 4;
  989. }
  990. else
  991. {
  992. $iPrevStep = 5;
  993. }
  994. $oP->set_title("Application initialization");
  995. $sAdminUser = $aParamValues['auth_user'];
  996. $sAdminPwd = $aParamValues['auth_pwd'];
  997. $sLanguage = $aParamValues['language'];
  998. if (($aParamValues['mode'] == 'install') || $oConfig->GetDefaultLanguage() == '')
  999. {
  1000. $oConfig->SetDefaultLanguage($aParamValues['language']);
  1001. }
  1002. $aAvailableModules = AnalyzeInstallation($oConfig);
  1003. BuildConfig($oP, $oConfig, $aParamValues, $aAvailableModules); // Load all the includes based on the modules selected
  1004. // in case of upgrade, the value is already present in the config file
  1005. $oConfig->WriteToFile(TMP_CONFIG_FILE);
  1006. $oP->add("<form id=\"theForm\" method=\"post\"\">\n");
  1007. $oP->add("<input type=\"hidden\" name=\"operation\" value=\"$sNextOperation\">\n");
  1008. AddParamsToForm($oP, $aParamValues, array('sample_data'));
  1009. InitDataModel(TMP_CONFIG_FILE, true); // load data model and connect to the database
  1010. $aAvailableModules = GetAvailableModules($oP);
  1011. foreach($aParamValues['module'] as $sModuleId)
  1012. {
  1013. if (isset($aAvailableModules[$sModuleId]['installer']))
  1014. {
  1015. $sModuleInstallerClass = $aAvailableModules[$sModuleId]['installer'];
  1016. // The validity of the sModuleInstallerClass has been established in BuildConfig()
  1017. $aCallSpec = array($sModuleInstallerClass, 'AfterDatabaseCreation');
  1018. call_user_func_array($aCallSpec, array($oConfig));
  1019. }
  1020. }
  1021. $oP->add("<h2>Loading of sample data</h2>\n");
  1022. $oP->p("<fieldset><legend> Do you want to load sample data into the database ? </legend>\n");
  1023. $sChecked = ($aParamValues['sample_data'] == 'no') ? '' : 'checked';
  1024. $oP->p("<input type=\"radio\" id=\"sample_data\" name=\"sample_data\" id=\"sample_data_no\" $sChecked value=\"yes\"><label for=\"sample_data_yes\"> Yes, for testing purposes, populate the database with sample data.</label>\n");
  1025. $sChecked = ($aParamValues['sample_data'] == 'no') ? 'checked' : '';
  1026. $oP->p("<input type=\"radio\" name=\"sample_data\" unchecked id=\"sample_data_no\" $sChecked value=\"no\"><label for=\"sample_data_no\"> No, this is a production system, load only the data required by the application.</label>\n");
  1027. $oP->p("</fieldset>\n");
  1028. $oP->add("<h2 class=\"next\">Next: Installation summary</h2>\n");
  1029. $oP->add("<table style=\"width:100%\"><tr>\n");
  1030. $oP->add("<td style=\"text-align:left;\"><button type=\"button\" onClick=\"return DoGoBack($iPrevStep)\"><< Back</button></td>\n");
  1031. $oP->add("<td style=\"text-align:right;\"><button type=\"submit\" onClick=\"DoSubmit('', 6)\"> Next >></button></td>\n");
  1032. $oP->add("</tr></table>\n");
  1033. $oP->add("</form>\n");
  1034. }
  1035. /**
  1036. * Displays the summary of the actions to be taken
  1037. */
  1038. function DisplaySummary(SetupWebPage $oP, $aParamValues, $iCurrentStep, Config $oConfig)
  1039. {
  1040. $sMode = $aParamValues['mode'];
  1041. $aAvailableModules = AnalyzeInstallation($oConfig);
  1042. BuildConfig($oP, $oConfig, $aParamValues, $aAvailableModules); // Load all the includes based on the modules selected
  1043. $oConfig->WriteToFile(TMP_CONFIG_FILE);
  1044. InitDataModel(TMP_CONFIG_FILE, true); // Needed to know the available languages
  1045. $aInstall = array();
  1046. $aUpgrade = array();
  1047. $aUninstall = array();
  1048. $aUnchanged = array();
  1049. switch($sMode)
  1050. {
  1051. case 'install':
  1052. foreach($aAvailableModules as $sModuleId => $aModule)
  1053. {
  1054. if (($sModuleId != ROOT_MODULE) && $aModule['visible'] && ($aModule['category'] != 'authentication'))
  1055. {
  1056. if (in_array($sModuleId, $aParamValues['module']))
  1057. {
  1058. $aInstall[$sModuleId] = $aModule;
  1059. }
  1060. }
  1061. }
  1062. $oP->set_title('Installation Summary');
  1063. $oP->add("<h3>iTop version ".$aAvailableModules[ROOT_MODULE]['version_code']." will be installed.</h3>");
  1064. $oP->add('<div id="summary_content" style="height:350px;overflow-y:auto;border:1px solid #999;padding-left:1em;">');
  1065. // Database information
  1066. $sPrefix = '';
  1067. if ($oConfig->GetDBSubname() != '')
  1068. {
  1069. $sPrefix = " (prefix: ".$oConfig->GetDBSubname().")";
  1070. }
  1071. $oP->collapsible('db', "Database", array($oConfig->GetDBName()." on server: ".$oConfig->GetDBHost().$sPrefix));
  1072. if (count($aInstall) > 0)
  1073. {
  1074. $iCount = count($aInstall);
  1075. $aItems = array();
  1076. foreach($aInstall as $sModuleId => $aModule)
  1077. {
  1078. $aItems[] = $aModule['label'].' version '.$aModule['version_code'];
  1079. }
  1080. $oP->collapsible('install', "$iCount module(s) will be installed", $aItems, ($iCount < 5));
  1081. }
  1082. // Sample data
  1083. if ($aParamValues['sample_data'] != 'no')
  1084. {
  1085. $sSampleData = 'Sample data will be loaded for the newly installed modules.';
  1086. }
  1087. else
  1088. {
  1089. $sSampleData = 'No sample data will be loaded.';
  1090. }
  1091. $oP->collapsible('sample_data', "Sample Data", array($sSampleData));
  1092. // Admin account
  1093. $oP->collapsible('admin_account', "Administrator account", array('Login:'.htmlentities($aParamValues['auth_user'], ENT_QUOTES, 'UTF-8')));
  1094. // Default language
  1095. $aAvailableLanguages = Dict::GetLanguages();
  1096. $oP->collapsible('language', "Default application language", array( $aAvailableLanguages[$aParamValues['language']]['description']." (".$aAvailableLanguages[$aParamValues['language']]['localized_description'].")"));
  1097. $oP->add('</div>');
  1098. $oP->add("<form id=\"theForm\" method=\"post\">\n");
  1099. $oP->add("<input type=\"hidden\" name=\"operation\" value=\"step8\">\n");
  1100. AddParamsToForm($oP, $aParamValues);
  1101. $oP->add("<table style=\"width:100%\"><tr>\n");
  1102. $oP->add("<td style=\"text-align:left;\"><button type=\"button\" onClick=\"return DoGoBack(6)\"><< Back</button></td>\n");
  1103. // Note: the Next >> button is NOT a submit, since moving to the next page is triggered asynchronously
  1104. $oP->add("<td style=\"text-align:right;\"><button type=\"button\" onClick=\"DoSubmit('Installing...', 7)\"> Install ! >></button></td>\n");
  1105. $oP->add("</tr></table>\n");
  1106. $oP->add("</form>\n");
  1107. break;
  1108. case 'upgrade':
  1109. foreach($aAvailableModules as $sModuleId => $aModule)
  1110. {
  1111. if (($sModuleId != ROOT_MODULE) && $aModule['visible'] && ($aModule['category'] != 'authentication'))
  1112. {
  1113. if (in_array($sModuleId, $aParamValues['module']))
  1114. {
  1115. if (empty($aModule['version_db']))
  1116. {
  1117. $aInstall[$sModuleId] = $aModule;
  1118. }
  1119. else if ($aModule['version_db'] == $aModule['version_code'])
  1120. {
  1121. $aUnchanged[$sModuleId] = $aModule;
  1122. }
  1123. else
  1124. {
  1125. // Consider it's an upgrade... TO DO: handle downgrades ??
  1126. $aUpgrade[$sModuleId] = $aModule;
  1127. }
  1128. }
  1129. else if (!empty($aModule['version_db']))
  1130. {
  1131. $aUninstall[$sModuleId] = $aModule;
  1132. }
  1133. // Else do nothing: the module was not installed and is not selected
  1134. }
  1135. }
  1136. $oP->set_title('Upgrade Summary');
  1137. $oP->add("<h3>The application will be upgraded from version ".$aAvailableModules[ROOT_MODULE]['version_db'].' to version '.$aAvailableModules[ROOT_MODULE]['version_code'].'</h3>');
  1138. $oP->add('<div id="summary_content" style="height:350px;overflow-y:auto;border:1px solid #999;padding-left:1em;">');
  1139. // Database information
  1140. $sPrefix = '';
  1141. if ($oConfig->GetDBSubname() != '')
  1142. {
  1143. $sPrefix = " (prefix: ".$oConfig->GetDBSubname().")";
  1144. }
  1145. $oP->collapsible('db', "Database", array($oConfig->GetDBName()." on server: ".$oConfig->GetDBHost().$sPrefix));
  1146. // Modules summary, per "type" (install, uninstall...)
  1147. if (count($aUpgrade) > 0)
  1148. {
  1149. $iCount = count($aUpgrade);
  1150. $aItems = array();
  1151. foreach($aUpgrade as $sModuleId => $aModule)
  1152. {
  1153. $aItems[] = $aModule['label'].' version '.$aModule['version_db'].' to version '.$aModule['version_code'];
  1154. }
  1155. $oP->collapsible('upgrade', "$iCount module(s) will be upgraded", $aItems, ($iCount < 5));
  1156. }
  1157. if (count($aInstall) > 0)
  1158. {
  1159. $iCount = count($aInstall);
  1160. $aItems = array();
  1161. foreach($aInstall as $sModuleId => $aModule)
  1162. {
  1163. $aItems[] = $aModule['label'].' version '.$aModule['version_code'];
  1164. }
  1165. $oP->collapsible('install', "$iCount module(s) will be installed", $aItems, ($iCount < 5));
  1166. }
  1167. if (count($aUninstall) > 0)
  1168. {
  1169. $iCount = count($aUninstall);
  1170. $aItems = array();
  1171. foreach($aUninstall as $sModuleId => $aModule)
  1172. {
  1173. $aItems[] = $aModule['label'].' version '.$aModule['version_db'];
  1174. }
  1175. $oP->collapsible('uninstall', "$iCount module(s) will be removed", $aItems, true /* always open */);
  1176. }
  1177. if (count($aUnchanged) > 0)
  1178. {
  1179. $iCount = count($aUnchanged);
  1180. $aItems = array();
  1181. foreach($aUnchanged as $sModuleId => $aModule)
  1182. {
  1183. $aItems[] = $aModule['label'].' version '.$aModule['version_db'];
  1184. }
  1185. $oP->collapsible('unchanged', "$iCount module(s) will remain unchanged", $aItems, ($iCount < 5));
  1186. }
  1187. // Sample data
  1188. if ($aParamValues['sample_data'] != 'no')
  1189. {
  1190. $sSampleData = 'Sample data will be loaded for the newly installed modules.';
  1191. }
  1192. else
  1193. {
  1194. $sSampleData = 'No sample data will be loaded.';
  1195. }
  1196. $oP->collapsible('sample_data', "Sample Data", array($sSampleData));
  1197. $oP->add('</div>');
  1198. $oP->add("<form id=\"theForm\" method=\"post\">\n");
  1199. $oP->add("<input type=\"hidden\" name=\"operation\" value=\"step8\">\n");
  1200. AddParamsToForm($oP, $aParamValues);
  1201. $oP->add("<table style=\"width:100%\"><tr>\n");
  1202. $oP->add("<td style=\"text-align:left;\"><button type=\"button\" onClick=\"DoGoBack(6)\"><< Back</button></td>\n");
  1203. // Note: the Next >> button is NOT a submit, since moving to the next page is triggered asynchronously
  1204. $oP->add("<td style=\"text-align:right;\"><button type=\"button\" onClick=\"DoSubmit('', 7)\"> Upgrade ! >></button></td>\n");
  1205. $oP->add("</tr></table>\n");
  1206. $oP->add("</form>\n");
  1207. break;
  1208. default:
  1209. $oP->error("Unsupported mode $sMode");
  1210. }
  1211. // Hidden form submitted when moving on to the next page, once all the data files
  1212. // have been processed
  1213. $oP->add("<form id=\"GoToNextStep\" method=\"post\">\n");
  1214. AddParamsToForm($oP, $aParamValues);
  1215. $oP->add("<input type=\"hidden\" name=\"operation\" value=\"step8\">\n");
  1216. $oP->add("</form>\n");
  1217. $oP->add("<div id=\"log\" style=\"color:#F00;\"></div>\n");
  1218. $oP->add_linked_script('./jquery.progression.js');
  1219. PopulateDataFilesList($oP, $aParamValues, $oConfig);
  1220. $oP->add_ready_script(
  1221. <<<EOF
  1222. $('#log').ajaxError(
  1223. function(e, xhr, settings, exception)
  1224. {
  1225. bStopAysncProcess = true;
  1226. alert('Fatal error detected: '+ xhr.responseText);
  1227. $('#log').append(xhr.responseText);
  1228. $('#setup').unblock();
  1229. } );
  1230. EOF
  1231. );
  1232. }
  1233. /** Display the form for the fifth (and final) step of the configuration wizard
  1234. * which consists in
  1235. * 1) Creating the final configuration file
  1236. * 2) Prompting the user to make the file read-only
  1237. */
  1238. function SetupFinished(SetupWebPage $oP, $aParamValues, $iCurrentStep, Config $oConfig)
  1239. {
  1240. $sAuthUser = $aParamValues['auth_user'];
  1241. $sAuthPwd = $aParamValues['auth_pwd'];
  1242. $iPrevStep = $aParamValues['previous_step'];
  1243. $aParamValues['previous_step'] = $iCurrentStep; // Come back here
  1244. try
  1245. {
  1246. $sSessionName = $oConfig->Get('session_name');
  1247. if ($sSessionName != '')
  1248. {
  1249. $sSessionName = sprintf('iTop-%x', rand());
  1250. $oConfig->Set('session_name', $sSessionName);
  1251. }
  1252. session_name($sSessionName);
  1253. session_start();
  1254. // Migration: force utf8_unicode_ci as the collation to make the global search
  1255. // NON case sensitive
  1256. $oConfig->SetDBCollation('utf8_unicode_ci');
  1257. // Write the final configuration file
  1258. $oConfig->WriteToFile(FINAL_CONFIG_FILE);
  1259. // Start the application
  1260. InitDataModel(FINAL_CONFIG_FILE, false, true); // Load model, startup DB and load the cache
  1261. if ($aParamValues['mode'] == 'install')
  1262. {
  1263. if (UserRights::CheckCredentials($sAuthUser, $sAuthPwd))
  1264. {
  1265. UserRights::Login($sAuthUser);
  1266. $_SESSION['auth_user'] = $sAuthUser;
  1267. $_SESSION['login_mode'] = 'form'; // Will enable the "log-off button"
  1268. }
  1269. else
  1270. {
  1271. $oP->add("<h1>iTop configuration wizard</h1>\n");
  1272. $oP->add("<h2>Step 5: Configuration completed</h2>\n");
  1273. @unlink(FINAL_CONFIG_FILE); // remove the aborted config
  1274. $oP->error("Error: Failed to login for user: '$sAuthUser'\n");
  1275. $oP->add("<form id=\"theForm\" method=\"post\">\n");
  1276. $oP->add("<button type=\"button\" onClick=\"return DoGoBack($iPrevStep);\"><< Back</button>\n");
  1277. AddParamsToForm($oP, $aParamValues);
  1278. $oP->add("<input type=\"hidden\" name=\"operation\" value=\"step0\">\n");
  1279. $oP->add("</form>\n");
  1280. return;
  1281. }
  1282. }
  1283. // remove the tmp config file
  1284. @unlink(TMP_CONFIG_FILE);
  1285. // try to make the final config file read-only
  1286. @chmod(FINAL_CONFIG_FILE, 0440); // Read-only for owner and group, nothing for others
  1287. $oP->set_title("Setup complete");
  1288. $oP->add("<form id=\"theForm\" method=\"get\" action=\"../index.php\">\n");
  1289. // Check if there are some manual steps required:
  1290. $aAvailableModules = AnalyzeInstallation($oConfig);
  1291. $aManualSteps = array();
  1292. foreach($aParamValues['module'] as $sModuleId)
  1293. {
  1294. if (!empty($aAvailableModules[$sModuleId]['doc.manual_setup']))
  1295. {
  1296. $aManualSteps[$aAvailableModules[$sModuleId]['label']] = $aAvailableModules[$sModuleId]['doc.manual_setup'];
  1297. }
  1298. }
  1299. if (count($aManualSteps) > 0)
  1300. {
  1301. $oP->add("<h2>Manual operations required</h2>");
  1302. $oP->p("In order to complete the installation, the following manual operations are required:");
  1303. foreach($aManualSteps as $sModuleLabel => $sUrl)
  1304. {
  1305. $oP->p("<a href=\"$sUrl\" target=\"_blank\">Manual instructions for $sModuleLabel</a>");
  1306. }
  1307. $oP->add("<h2>Congratulations for installing iTop</h2>");
  1308. }
  1309. else
  1310. {
  1311. $oP->add("<h2>Congratulations for installing iTop</h2>");
  1312. $oP->ok("The initialization completed successfully.");
  1313. }
  1314. // Form goes here.. No back button since the job is done !
  1315. $oP->add('<table style="width:600px;border:0;padding:0;"><tr>');
  1316. $oP->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>");
  1317. $oP->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>");
  1318. $oP->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>");
  1319. $oP->add('</tr></table>');
  1320. $oP->add("<p style=\"text-align:center;width:100%\"><button type=\"submit\">Enter iTop</button></p>\n");
  1321. $oP->add("</form>\n");
  1322. }
  1323. catch(Exception $e)
  1324. {
  1325. $oP->error("Error: unable to create the configuration file.");
  1326. $oP->p($e->getHtmlDesc());
  1327. $oP->p("Did you forget to remove the previous (read-only) configuration file ?");
  1328. $oP->add("<form id=\"theForm\" method=\"post\">\n");
  1329. $oP->add("<input type=\"hidden\" name=\"operation\" value=\"step7\">\n");
  1330. AddParamsToForm($oP, $aParamValues, array('previous_step'));
  1331. $oP->add("<button type=\"button\" onClick=\"return DoGoBack(7);\"><< Back</button>\n");
  1332. $oP->add("</form>\n");
  1333. }
  1334. }
  1335. ///////////////////////////////////////////////////////////////////////////////////////////////////
  1336. // Main program
  1337. ///////////////////////////////////////////////////////////////////////////////////////////////////
  1338. clearstatcache(); // Make sure we know what we are doing !
  1339. // Set a long (at least 4 minutes) execution time for the setup to avoid timeouts during this phase
  1340. ini_set('max_execution_time', max(240, ini_get('max_execution_time')));
  1341. // While running the setup it is desirable to see any error that may happen
  1342. ini_set('display_errors', true);
  1343. ini_set('display_startup_errors', true);
  1344. $aParams = array('mode', 'previous_step', 'licence_ok', 'db_server', 'db_user', 'db_pwd','db_name', 'new_db_name', 'db_prefix', 'module', 'sample_data', 'auth_user', 'auth_pwd', 'language');
  1345. foreach($aParams as $sName)
  1346. {
  1347. $aParamValues[$sName] = utils::ReadParam($sName, '');
  1348. }
  1349. if (file_exists(FINAL_CONFIG_FILE))
  1350. {
  1351. // The configuration file already exists
  1352. if (!is_writable(FINAL_CONFIG_FILE))
  1353. {
  1354. $oP->add("<h1>iTop configuration wizard</h1>\n");
  1355. $oP->add("<h2>Fatal error</h2>\n");
  1356. $oP->error("<b>Error:</b> the configuration file '".FINAL_CONFIG_FILE."' already exists and cannot be overwritten.");
  1357. $oP->p("The wizard cannot modify the configuration file for you. If you want to upgrade iTop, please make sure that the file '<b>".realpath(FINAL_CONFIG_FILE)."</b>' can be modified by the web server.");
  1358. $oP->output();
  1359. exit;
  1360. }
  1361. }
  1362. else
  1363. {
  1364. // No configuration file yet
  1365. // Check that the wizard can write into the root dir to create the configuration file
  1366. if (!is_writable(dirname(TMP_CONFIG_FILE)))
  1367. {
  1368. $oP->add("<h1>iTop configuration wizard</h1>\n");
  1369. $oP->add("<h2>Fatal error</h2>\n");
  1370. $oP->error("<b>Error:</b> the directory where to store the configuration file is not writable.");
  1371. $oP->p("The wizard cannot create the configuration file for you. Please make sure that the directory '<b>".realpath(dirname(TMP_CONFIG_FILE))."</b>' is writable for the web server.");
  1372. $oP->output();
  1373. exit;
  1374. }
  1375. if (!is_writable(dirname(TMP_CONFIG_FILE).'/setup'))
  1376. {
  1377. $oP->add("<h1>iTop configuration wizard</h1>\n");
  1378. $oP->add("<h2>Fatal error</h2>\n");
  1379. $oP->error("<b>Error:</b> the directory where to store temporary setup files is not writable.");
  1380. $oP->p("The wizard cannot create operate. Please make sure that the directory '<b>".realpath(dirname(TMP_CONFIG_FILE))."/setup</b>' is writable for the web server.");
  1381. $oP->output();
  1382. exit;
  1383. }
  1384. }
  1385. try
  1386. {
  1387. $oConfig = new Config(TMP_CONFIG_FILE);
  1388. }
  1389. catch(Exception $e)
  1390. {
  1391. // We'll end here when the tmp config file does not exist. It's normal
  1392. $oConfig = new Config(TMP_CONFIG_FILE, false /* Don't try to load it */);
  1393. }
  1394. try
  1395. {
  1396. switch($sOperation)
  1397. {
  1398. case 'step0':
  1399. $oP->no_cache();
  1400. $oP->log("Info - ========= Wizard step 0 ========");
  1401. WelcomeAndCheckPrerequisites($oP, $aParamValues, 0);
  1402. break;
  1403. case 'step1':
  1404. $oP->no_cache();
  1405. $oP->log("Info - ========= Wizard step 1 ========");
  1406. LicenceAcknowledgement($oP, $aParamValues, 1);
  1407. break;
  1408. case 'step2':
  1409. $oP->log("Info - ========= Wizard step 2 ========");
  1410. DatabaseServerSelection($oP, $aParamValues, 2);
  1411. break;
  1412. case 'step3':
  1413. $oP->no_cache();
  1414. $oP->log("Info - ========= Wizard step 3 ========");
  1415. DatabaseInstanceSelection($oP, $aParamValues, 3, $oConfig);
  1416. break;
  1417. case 'step4':
  1418. $oP->no_cache();
  1419. $oP->log("Info - ========= Wizard step 4 ========");
  1420. ModulesSelection($oP, $aParamValues, 4, $oConfig);
  1421. break;
  1422. case 'step5':
  1423. $oP->no_cache();
  1424. $oP->log("Info - ========= Wizard step 5 ========");
  1425. AdminAccountDefinition($oP, $aParamValues, 5, $oConfig);
  1426. break;
  1427. case 'step6':
  1428. $oP->no_cache();
  1429. $oP->log("Info - ========= Wizard step 6 ========");
  1430. SampleDataSelection($oP, $aParamValues, 6, $oConfig);
  1431. break;
  1432. case 'step7':
  1433. $oP->no_cache();
  1434. $oP->log("Info - ========= Wizard step 7 ========");
  1435. DisplaySummary($oP, $aParamValues, 7, $oConfig);
  1436. break;
  1437. case 'step8':
  1438. $oP->no_cache();
  1439. $oP->log("Info - ========= Wizard step 8 ========");
  1440. SetupFinished($oP, $aParamValues, 8, $oConfig);
  1441. break;
  1442. default:
  1443. $oP->error("Error: unsupported operation '$sOperation'");
  1444. }
  1445. }
  1446. catch(Exception $e)
  1447. {
  1448. $oP->error("Error: '".$e->getMessage()."'");
  1449. $oP->add("<button type=\"button\" onClick=\"window.history.back();\"><< Back</button>\n");
  1450. }
  1451. catch(CoreException $e)
  1452. {
  1453. $oP->error("Error: '".$e->getHtmlDesc()."'");
  1454. $oP->add("<button type=\"button\" onClick=\"window.history.back();\"><< Back</button>\n");
  1455. }
  1456. $oP->output();
  1457. ?>