install.core.inc 75 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854
  1. <?php
  2. /**
  3. * @file
  4. * API functions for installing Drupal.
  5. */
  6. /**
  7. * Do not run the task during the current installation request.
  8. *
  9. * This can be used to skip running an installation task when certain
  10. * conditions are met, even though the task may still show on the list of
  11. * installation tasks presented to the user. For example, the Drupal installer
  12. * uses this flag to skip over the database configuration form when valid
  13. * database connection information is already available from settings.php. It
  14. * also uses this flag to skip language import tasks when the installation is
  15. * being performed in English.
  16. */
  17. define('INSTALL_TASK_SKIP', 1);
  18. /**
  19. * Run the task on each installation request until the database is set up.
  20. *
  21. * This is primarily used by the Drupal installer for bootstrap-related tasks.
  22. */
  23. define('INSTALL_TASK_RUN_IF_REACHED', 2);
  24. /**
  25. * Global flag to indicate that a task should be run on each installation
  26. * request that reaches it, until the database is set up and we are able to
  27. * record the fact that it already ran.
  28. *
  29. * This is the default method for running tasks and should be used for most
  30. * tasks that occur after the database is set up; these tasks will then run
  31. * once and be marked complete once they are successfully finished. For
  32. * example, the Drupal installer uses this flag for the batch installation of
  33. * modules on the new site, and also for the configuration form that collects
  34. * basic site information and sets up the site maintenance account.
  35. */
  36. define('INSTALL_TASK_RUN_IF_NOT_COMPLETED', 3);
  37. /**
  38. * Installs Drupal either interactively or via an array of passed-in settings.
  39. *
  40. * The Drupal installation happens in a series of steps, which may be spread
  41. * out over multiple page requests. Each request begins by trying to determine
  42. * the last completed installation step (also known as a "task"), if one is
  43. * available from a previous request. Control is then passed to the task
  44. * handler, which processes the remaining tasks that need to be run until (a)
  45. * an error is thrown, (b) a new page needs to be displayed, or (c) the
  46. * installation finishes (whichever happens first).
  47. *
  48. * @param $settings
  49. * An optional array of installation settings. Leave this empty for a normal,
  50. * interactive, browser-based installation intended to occur over multiple
  51. * page requests. Alternatively, if an array of settings is passed in, the
  52. * installer will attempt to use it to perform the installation in a single
  53. * page request (optimized for the command line) and not send any output
  54. * intended for the web browser. See install_state_defaults() for a list of
  55. * elements that are allowed to appear in this array.
  56. *
  57. * @see install_state_defaults()
  58. */
  59. function install_drupal($settings = array()) {
  60. global $install_state;
  61. // Initialize the installation state with the settings that were passed in,
  62. // as well as a boolean indicating whether or not this is an interactive
  63. // installation.
  64. $interactive = empty($settings);
  65. $install_state = $settings + array('interactive' => $interactive) + install_state_defaults();
  66. try {
  67. // Begin the page request. This adds information about the current state of
  68. // the Drupal installation to the passed-in array.
  69. install_begin_request($install_state);
  70. // Based on the installation state, run the remaining tasks for this page
  71. // request, and collect any output.
  72. $output = install_run_tasks($install_state);
  73. }
  74. catch (Exception $e) {
  75. // When an installation error occurs, either send the error to the web
  76. // browser or pass on the exception so the calling script can use it.
  77. if ($install_state['interactive']) {
  78. install_display_output($e->getMessage(), $install_state);
  79. }
  80. else {
  81. throw $e;
  82. }
  83. }
  84. // All available tasks for this page request are now complete. Interactive
  85. // installations can send output to the browser or redirect the user to the
  86. // next page.
  87. if ($install_state['interactive']) {
  88. if ($install_state['parameters_changed']) {
  89. // Redirect to the correct page if the URL parameters have changed.
  90. install_goto(install_redirect_url($install_state));
  91. }
  92. elseif (isset($output)) {
  93. // Display a page only if some output is available. Otherwise it is
  94. // possible that we are printing a JSON page and theme output should
  95. // not be shown.
  96. install_display_output($output, $install_state);
  97. }
  98. }
  99. }
  100. /**
  101. * Returns an array of default settings for the global installation state.
  102. *
  103. * The installation state is initialized with these settings at the beginning
  104. * of each page request. They may evolve during the page request, but they are
  105. * initialized again once the next request begins.
  106. *
  107. * Non-interactive Drupal installations can override some of these default
  108. * settings by passing in an array to the installation script, most notably
  109. * 'parameters' (which contains one-time parameters such as 'profile' and
  110. * 'locale' that are normally passed in via the URL) and 'forms' (which can
  111. * be used to programmatically submit forms during the installation; the keys
  112. * of each element indicate the name of the installation task that the form
  113. * submission is for, and the values are used as the $form_state['values']
  114. * array that is passed on to the form submission via drupal_form_submit()).
  115. *
  116. * @see drupal_form_submit()
  117. */
  118. function install_state_defaults() {
  119. $defaults = array(
  120. // The current task being processed.
  121. 'active_task' => NULL,
  122. // The last task that was completed during the previous installation
  123. // request.
  124. 'completed_task' => NULL,
  125. // This becomes TRUE only when Drupal's system module is installed.
  126. 'database_tables_exist' => FALSE,
  127. // An array of forms to be programmatically submitted during the
  128. // installation. The keys of each element indicate the name of the
  129. // installation task that the form submission is for, and the values are
  130. // used as the $form_state['values'] array that is passed on to the form
  131. // submission via drupal_form_submit().
  132. 'forms' => array(),
  133. // This becomes TRUE only at the end of the installation process, after
  134. // all available tasks have been completed and Drupal is fully installed.
  135. // It is used by the installer to store correct information in the database
  136. // about the completed installation, as well as to inform theme functions
  137. // that all tasks are finished (so that the task list can be displayed
  138. // correctly).
  139. 'installation_finished' => FALSE,
  140. // Whether or not this installation is interactive. By default this will
  141. // be set to FALSE if settings are passed in to install_drupal().
  142. 'interactive' => TRUE,
  143. // An array of available languages for the installation.
  144. 'locales' => array(),
  145. // An array of parameters for the installation, pre-populated by the URL
  146. // or by the settings passed in to install_drupal(). This is primarily
  147. // used to store 'profile' (the name of the chosen installation profile)
  148. // and 'locale' (the name of the chosen installation language), since
  149. // these settings need to persist from page request to page request before
  150. // the database is available for storage.
  151. 'parameters' => array(),
  152. // Whether or not the parameters have changed during the current page
  153. // request. For interactive installations, this will trigger a page
  154. // redirect.
  155. 'parameters_changed' => FALSE,
  156. // An array of information about the chosen installation profile. This will
  157. // be filled in based on the profile's .info file.
  158. 'profile_info' => array(),
  159. // An array of available installation profiles.
  160. 'profiles' => array(),
  161. // An array of server variables that will be substituted into the global
  162. // $_SERVER array via drupal_override_server_variables(). Used by
  163. // non-interactive installations only.
  164. 'server' => array(),
  165. // This becomes TRUE only when a valid database connection can be
  166. // established.
  167. 'settings_verified' => FALSE,
  168. // Installation tasks can set this to TRUE to force the page request to
  169. // end (even if there is no themable output), in the case of an interactive
  170. // installation. This is needed only rarely; for example, it would be used
  171. // by an installation task that prints JSON output rather than returning a
  172. // themed page. The most common example of this is during batch processing,
  173. // but the Drupal installer automatically takes care of setting this
  174. // parameter properly in that case, so that individual installation tasks
  175. // which implement the batch API do not need to set it themselves.
  176. 'stop_page_request' => FALSE,
  177. // Installation tasks can set this to TRUE to indicate that the task should
  178. // be run again, even if it normally wouldn't be. This can be used, for
  179. // example, if a single task needs to be spread out over multiple page
  180. // requests, or if it needs to perform some validation before allowing
  181. // itself to be marked complete. The most common examples of this are batch
  182. // processing and form submissions, but the Drupal installer automatically
  183. // takes care of setting this parameter properly in those cases, so that
  184. // individual installation tasks which implement the batch API or form API
  185. // do not need to set it themselves.
  186. 'task_not_complete' => FALSE,
  187. // A list of installation tasks which have already been performed during
  188. // the current page request.
  189. 'tasks_performed' => array(),
  190. );
  191. return $defaults;
  192. }
  193. /**
  194. * Begins an installation request, modifying the installation state as needed.
  195. *
  196. * This function performs commands that must run at the beginning of every page
  197. * request. It throws an exception if the installation should not proceed.
  198. *
  199. * @param $install_state
  200. * An array of information about the current installation state. This is
  201. * modified with information gleaned from the beginning of the page request.
  202. */
  203. function install_begin_request(&$install_state) {
  204. // Add any installation parameters passed in via the URL.
  205. $install_state['parameters'] += $_GET;
  206. // Validate certain core settings that are used throughout the installation.
  207. if (!empty($install_state['parameters']['profile'])) {
  208. $install_state['parameters']['profile'] = preg_replace('/[^a-zA-Z_0-9]/', '', $install_state['parameters']['profile']);
  209. }
  210. if (!empty($install_state['parameters']['locale'])) {
  211. $install_state['parameters']['locale'] = preg_replace('/[^a-zA-Z_0-9\-]/', '', $install_state['parameters']['locale']);
  212. }
  213. // Allow command line scripts to override server variables used by Drupal.
  214. require_once DRUPAL_ROOT . '/includes/bootstrap.inc';
  215. if (!$install_state['interactive']) {
  216. drupal_override_server_variables($install_state['server']);
  217. }
  218. // The user agent header is used to pass a database prefix in the request when
  219. // running tests. However, for security reasons, it is imperative that no
  220. // installation be permitted using such a prefix.
  221. if (isset($_SERVER['HTTP_USER_AGENT']) && strpos($_SERVER['HTTP_USER_AGENT'], "simpletest") !== FALSE) {
  222. header($_SERVER['SERVER_PROTOCOL'] . ' 403 Forbidden');
  223. exit;
  224. }
  225. drupal_bootstrap(DRUPAL_BOOTSTRAP_CONFIGURATION);
  226. // This must go after drupal_bootstrap(), which unsets globals!
  227. global $conf;
  228. require_once DRUPAL_ROOT . '/modules/system/system.install';
  229. require_once DRUPAL_ROOT . '/includes/common.inc';
  230. require_once DRUPAL_ROOT . '/includes/file.inc';
  231. require_once DRUPAL_ROOT . '/includes/install.inc';
  232. require_once DRUPAL_ROOT . '/' . variable_get('path_inc', 'includes/path.inc');
  233. // Load module basics (needed for hook invokes).
  234. include_once DRUPAL_ROOT . '/includes/module.inc';
  235. include_once DRUPAL_ROOT . '/includes/session.inc';
  236. // Set up $language, so t() caller functions will still work.
  237. drupal_language_initialize();
  238. include_once DRUPAL_ROOT . '/includes/entity.inc';
  239. require_once DRUPAL_ROOT . '/includes/ajax.inc';
  240. $module_list['system']['filename'] = 'modules/system/system.module';
  241. $module_list['user']['filename'] = 'modules/user/user.module';
  242. module_list(TRUE, FALSE, FALSE, $module_list);
  243. drupal_load('module', 'system');
  244. drupal_load('module', 'user');
  245. // Load the cache infrastructure using a "fake" cache implementation that
  246. // does not attempt to write to the database. We need this during the initial
  247. // part of the installer because the database is not available yet. We
  248. // continue to use it even when the database does become available, in order
  249. // to preserve consistency between interactive and command-line installations
  250. // (the latter complete in one page request and therefore are forced to
  251. // continue using the cache implementation they started with) and also
  252. // because any data put in the cache during the installer is inherently
  253. // suspect, due to the fact that Drupal is not fully set up yet.
  254. require_once DRUPAL_ROOT . '/includes/cache.inc';
  255. require_once DRUPAL_ROOT . '/includes/cache-install.inc';
  256. $conf['cache_default_class'] = 'DrupalFakeCache';
  257. // Prepare for themed output. We need to run this at the beginning of the
  258. // page request to avoid a different theme accidentally getting set. (We also
  259. // need to run it even in the case of command-line installations, to prevent
  260. // any code in the installer that happens to initialize the theme system from
  261. // accessing the database before it is set up yet.)
  262. drupal_maintenance_theme();
  263. // Check existing settings.php.
  264. $install_state['settings_verified'] = install_verify_settings();
  265. if ($install_state['settings_verified']) {
  266. // Initialize the database system. Note that the connection
  267. // won't be initialized until it is actually requested.
  268. require_once DRUPAL_ROOT . '/includes/database/database.inc';
  269. // Verify the last completed task in the database, if there is one.
  270. $task = install_verify_completed_task();
  271. }
  272. else {
  273. $task = NULL;
  274. // Do not install over a configured settings.php. Check the 'db_url'
  275. // variable in addition to 'databases', since previous versions of Drupal
  276. // used that (and we do not want to allow installations on an existing site
  277. // whose settings file has not yet been updated).
  278. if (!empty($GLOBALS['databases']) || !empty($GLOBALS['db_url'])) {
  279. throw new Exception(install_already_done_error());
  280. }
  281. }
  282. // Modify the installation state as appropriate.
  283. $install_state['completed_task'] = $task;
  284. $install_state['database_tables_exist'] = !empty($task);
  285. }
  286. /**
  287. * Runs all tasks for the current installation request.
  288. *
  289. * In the case of an interactive installation, all tasks will be attempted
  290. * until one is reached that has output which needs to be displayed to the
  291. * user, or until a page redirect is required. Otherwise, tasks will be
  292. * attempted until the installation is finished.
  293. *
  294. * @param $install_state
  295. * An array of information about the current installation state. This is
  296. * passed along to each task, so it can be modified if necessary.
  297. *
  298. * @return
  299. * HTML output from the last completed task.
  300. */
  301. function install_run_tasks(&$install_state) {
  302. do {
  303. // Obtain a list of tasks to perform. The list of tasks itself can be
  304. // dynamic (e.g., some might be defined by the installation profile,
  305. // which is not necessarily known until the earlier tasks have run),
  306. // so we regenerate the remaining tasks based on the installation state,
  307. // each time through the loop.
  308. $tasks_to_perform = install_tasks_to_perform($install_state);
  309. // Run the first task on the list.
  310. reset($tasks_to_perform);
  311. $task_name = key($tasks_to_perform);
  312. $task = array_shift($tasks_to_perform);
  313. $install_state['active_task'] = $task_name;
  314. $original_parameters = $install_state['parameters'];
  315. $output = install_run_task($task, $install_state);
  316. $install_state['parameters_changed'] = ($install_state['parameters'] != $original_parameters);
  317. // Store this task as having been performed during the current request,
  318. // and save it to the database as completed, if we need to and if the
  319. // database is in a state that allows us to do so. Also mark the
  320. // installation as 'done' when we have run out of tasks.
  321. if (!$install_state['task_not_complete']) {
  322. $install_state['tasks_performed'][] = $task_name;
  323. $install_state['installation_finished'] = empty($tasks_to_perform);
  324. if ($install_state['database_tables_exist'] && ($task['run'] == INSTALL_TASK_RUN_IF_NOT_COMPLETED || $install_state['installation_finished'])) {
  325. variable_set('install_task', $install_state['installation_finished'] ? 'done' : $task_name);
  326. }
  327. }
  328. // Stop when there are no tasks left. In the case of an interactive
  329. // installation, also stop if we have some output to send to the browser,
  330. // the URL parameters have changed, or an end to the page request was
  331. // specifically called for.
  332. $finished = empty($tasks_to_perform) || ($install_state['interactive'] && (isset($output) || $install_state['parameters_changed'] || $install_state['stop_page_request']));
  333. } while (!$finished);
  334. return $output;
  335. }
  336. /**
  337. * Runs an individual installation task.
  338. *
  339. * @param $task
  340. * An array of information about the task to be run.
  341. * @param $install_state
  342. * An array of information about the current installation state. This is
  343. * passed in by reference so that it can be modified by the task.
  344. *
  345. * @return
  346. * The output of the task function, if there is any.
  347. */
  348. function install_run_task($task, &$install_state) {
  349. $function = $task['function'];
  350. if ($task['type'] == 'form') {
  351. require_once DRUPAL_ROOT . '/includes/form.inc';
  352. if ($install_state['interactive']) {
  353. // For interactive forms, build the form and ensure that it will not
  354. // redirect, since the installer handles its own redirection only after
  355. // marking the form submission task complete.
  356. $form_state = array(
  357. // We need to pass $install_state by reference in order for forms to
  358. // modify it, since the form API will use it in call_user_func_array(),
  359. // which requires that referenced variables be passed explicitly.
  360. 'build_info' => array('args' => array(&$install_state)),
  361. 'no_redirect' => TRUE,
  362. );
  363. $form = drupal_build_form($function, $form_state);
  364. // If a successful form submission did not occur, the form needs to be
  365. // rendered, which means the task is not complete yet.
  366. if (empty($form_state['executed'])) {
  367. $install_state['task_not_complete'] = TRUE;
  368. return drupal_render($form);
  369. }
  370. // Otherwise, return nothing so the next task will run in the same
  371. // request.
  372. return;
  373. }
  374. else {
  375. // For non-interactive forms, submit the form programmatically with the
  376. // values taken from the installation state. Throw an exception if any
  377. // errors were encountered.
  378. $form_state = array(
  379. 'values' => !empty($install_state['forms'][$function]) ? $install_state['forms'][$function] : array(),
  380. // We need to pass $install_state by reference in order for forms to
  381. // modify it, since the form API will use it in call_user_func_array(),
  382. // which requires that referenced variables be passed explicitly.
  383. 'build_info' => array('args' => array(&$install_state)),
  384. );
  385. drupal_form_submit($function, $form_state);
  386. $errors = form_get_errors();
  387. if (!empty($errors)) {
  388. throw new Exception(implode("\n", $errors));
  389. }
  390. }
  391. }
  392. elseif ($task['type'] == 'batch') {
  393. // Start a new batch based on the task function, if one is not running
  394. // already.
  395. $current_batch = variable_get('install_current_batch');
  396. if (!$install_state['interactive'] || !$current_batch) {
  397. $batch = $function($install_state);
  398. if (empty($batch)) {
  399. // If the task did some processing and decided no batch was necessary,
  400. // there is nothing more to do here.
  401. return;
  402. }
  403. batch_set($batch);
  404. // For interactive batches, we need to store the fact that this batch
  405. // task is currently running. Otherwise, we need to make sure the batch
  406. // will complete in one page request.
  407. if ($install_state['interactive']) {
  408. variable_set('install_current_batch', $function);
  409. }
  410. else {
  411. $batch =& batch_get();
  412. $batch['progressive'] = FALSE;
  413. }
  414. // Process the batch. For progressive batches, this will redirect.
  415. // Otherwise, the batch will complete.
  416. batch_process(install_redirect_url($install_state), install_full_redirect_url($install_state));
  417. }
  418. // If we are in the middle of processing this batch, keep sending back
  419. // any output from the batch process, until the task is complete.
  420. elseif ($current_batch == $function) {
  421. include_once DRUPAL_ROOT . '/includes/batch.inc';
  422. $output = _batch_page();
  423. // The task is complete when we try to access the batch page and receive
  424. // FALSE in return, since this means we are at a URL where we are no
  425. // longer requesting a batch ID.
  426. if ($output === FALSE) {
  427. // Return nothing so the next task will run in the same request.
  428. variable_del('install_current_batch');
  429. return;
  430. }
  431. else {
  432. // We need to force the page request to end if the task is not
  433. // complete, since the batch API sometimes prints JSON output
  434. // rather than returning a themed page.
  435. $install_state['task_not_complete'] = $install_state['stop_page_request'] = TRUE;
  436. return $output;
  437. }
  438. }
  439. }
  440. else {
  441. // For normal tasks, just return the function result, whatever it is.
  442. return $function($install_state);
  443. }
  444. }
  445. /**
  446. * Returns a list of tasks to perform during the current installation request.
  447. *
  448. * Note that the list of tasks can change based on the installation state as
  449. * the page request evolves (for example, if an installation profile hasn't
  450. * been selected yet, we don't yet know which profile tasks need to be run).
  451. *
  452. * @param $install_state
  453. * An array of information about the current installation state.
  454. *
  455. * @return
  456. * A list of tasks to be performed, with associated metadata.
  457. */
  458. function install_tasks_to_perform($install_state) {
  459. // Start with a list of all currently available tasks.
  460. $tasks = install_tasks($install_state);
  461. foreach ($tasks as $name => $task) {
  462. // Remove any tasks that were already performed or that never should run.
  463. // Also, if we started this page request with an indication of the last
  464. // task that was completed, skip that task and all those that come before
  465. // it, unless they are marked as always needing to run.
  466. if ($task['run'] == INSTALL_TASK_SKIP || in_array($name, $install_state['tasks_performed']) || (!empty($install_state['completed_task']) && empty($completed_task_found) && $task['run'] != INSTALL_TASK_RUN_IF_REACHED)) {
  467. unset($tasks[$name]);
  468. }
  469. if (!empty($install_state['completed_task']) && $name == $install_state['completed_task']) {
  470. $completed_task_found = TRUE;
  471. }
  472. }
  473. return $tasks;
  474. }
  475. /**
  476. * Returns a list of all tasks the installer currently knows about.
  477. *
  478. * This function will return tasks regardless of whether or not they are
  479. * intended to run on the current page request. However, the list can change
  480. * based on the installation state (for example, if an installation profile
  481. * hasn't been selected yet, we don't yet know which profile tasks will be
  482. * available).
  483. *
  484. * @param $install_state
  485. * An array of information about the current installation state.
  486. *
  487. * @return
  488. * A list of tasks, with associated metadata.
  489. */
  490. function install_tasks($install_state) {
  491. // Determine whether translation import tasks will need to be performed.
  492. $needs_translations = count($install_state['locales']) > 1 && !empty($install_state['parameters']['locale']) && $install_state['parameters']['locale'] != 'en';
  493. // Start with the core installation tasks that run before handing control
  494. // to the installation profile.
  495. $tasks = array(
  496. 'install_select_profile' => array(
  497. 'display_name' => st('Choose profile'),
  498. 'display' => count($install_state['profiles']) != 1,
  499. 'run' => INSTALL_TASK_RUN_IF_REACHED,
  500. ),
  501. 'install_select_locale' => array(
  502. 'display_name' => st('Choose language'),
  503. 'run' => INSTALL_TASK_RUN_IF_REACHED,
  504. ),
  505. 'install_load_profile' => array(
  506. 'run' => INSTALL_TASK_RUN_IF_REACHED,
  507. ),
  508. 'install_verify_requirements' => array(
  509. 'display_name' => st('Verify requirements'),
  510. ),
  511. 'install_settings_form' => array(
  512. 'display_name' => st('Set up database'),
  513. 'type' => 'form',
  514. 'run' => $install_state['settings_verified'] ? INSTALL_TASK_SKIP : INSTALL_TASK_RUN_IF_NOT_COMPLETED,
  515. ),
  516. 'install_system_module' => array(
  517. ),
  518. 'install_bootstrap_full' => array(
  519. 'run' => INSTALL_TASK_RUN_IF_REACHED,
  520. ),
  521. 'install_profile_modules' => array(
  522. 'display_name' => count($install_state['profiles']) == 1 ? st('Install site') : st('Install profile'),
  523. 'type' => 'batch',
  524. ),
  525. 'install_import_locales' => array(
  526. 'display_name' => st('Set up translations'),
  527. 'display' => $needs_translations,
  528. 'type' => 'batch',
  529. 'run' => $needs_translations ? INSTALL_TASK_RUN_IF_NOT_COMPLETED : INSTALL_TASK_SKIP,
  530. ),
  531. 'install_configure_form' => array(
  532. 'display_name' => st('Configure site'),
  533. 'type' => 'form',
  534. ),
  535. );
  536. // Now add any tasks defined by the installation profile.
  537. if (!empty($install_state['parameters']['profile'])) {
  538. // Load the profile install file, because it is not always loaded when
  539. // hook_install_tasks() is invoked (e.g. batch processing).
  540. $profile_install_file = DRUPAL_ROOT . '/profiles/' . $install_state['parameters']['profile'] . '/' . $install_state['parameters']['profile'] . '.install';
  541. if (file_exists($profile_install_file)) {
  542. include_once $profile_install_file;
  543. }
  544. $function = $install_state['parameters']['profile'] . '_install_tasks';
  545. if (function_exists($function)) {
  546. $result = $function($install_state);
  547. if (is_array($result)) {
  548. $tasks += $result;
  549. }
  550. }
  551. }
  552. // Finish by adding the remaining core tasks.
  553. $tasks += array(
  554. 'install_import_locales_remaining' => array(
  555. 'display_name' => st('Finish translations'),
  556. 'display' => $needs_translations,
  557. 'type' => 'batch',
  558. 'run' => $needs_translations ? INSTALL_TASK_RUN_IF_NOT_COMPLETED : INSTALL_TASK_SKIP,
  559. ),
  560. 'install_finished' => array(
  561. 'display_name' => st('Finished'),
  562. ),
  563. );
  564. // Allow the installation profile to modify the full list of tasks.
  565. if (!empty($install_state['parameters']['profile'])) {
  566. $profile_file = DRUPAL_ROOT . '/profiles/' . $install_state['parameters']['profile'] . '/' . $install_state['parameters']['profile'] . '.profile';
  567. if (file_exists($profile_file)) {
  568. include_once $profile_file;
  569. $function = $install_state['parameters']['profile'] . '_install_tasks_alter';
  570. if (function_exists($function)) {
  571. $function($tasks, $install_state);
  572. }
  573. }
  574. }
  575. // Fill in default parameters for each task before returning the list.
  576. foreach ($tasks as $task_name => &$task) {
  577. $task += array(
  578. 'display_name' => NULL,
  579. 'display' => !empty($task['display_name']),
  580. 'type' => 'normal',
  581. 'run' => INSTALL_TASK_RUN_IF_NOT_COMPLETED,
  582. 'function' => $task_name,
  583. );
  584. }
  585. return $tasks;
  586. }
  587. /**
  588. * Returns a list of tasks that should be displayed to the end user.
  589. *
  590. * The output of this function is a list suitable for sending to
  591. * theme_task_list().
  592. *
  593. * @param $install_state
  594. * An array of information about the current installation state.
  595. *
  596. * @return
  597. * A list of tasks, with keys equal to the machine-readable task name and
  598. * values equal to the name that should be displayed.
  599. *
  600. * @see theme_task_list()
  601. */
  602. function install_tasks_to_display($install_state) {
  603. $displayed_tasks = array();
  604. foreach (install_tasks($install_state) as $name => $task) {
  605. if ($task['display']) {
  606. $displayed_tasks[$name] = $task['display_name'];
  607. }
  608. }
  609. return $displayed_tasks;
  610. }
  611. /**
  612. * Returns the URL that should be redirected to during an installation request.
  613. *
  614. * The output of this function is suitable for sending to install_goto().
  615. *
  616. * @param $install_state
  617. * An array of information about the current installation state.
  618. *
  619. * @return
  620. * The URL to redirect to.
  621. *
  622. * @see install_full_redirect_url()
  623. */
  624. function install_redirect_url($install_state) {
  625. return 'install.php?' . drupal_http_build_query($install_state['parameters']);
  626. }
  627. /**
  628. * Returns the complete URL redirected to during an installation request.
  629. *
  630. * @param $install_state
  631. * An array of information about the current installation state.
  632. *
  633. * @return
  634. * The complete URL to redirect to.
  635. *
  636. * @see install_redirect_url()
  637. */
  638. function install_full_redirect_url($install_state) {
  639. global $base_url;
  640. return $base_url . '/' . install_redirect_url($install_state);
  641. }
  642. /**
  643. * Displays themed installer output and ends the page request.
  644. *
  645. * Installation tasks should use drupal_set_title() to set the desired page
  646. * title, but otherwise this function takes care of theming the overall page
  647. * output during every step of the installation.
  648. *
  649. * @param $output
  650. * The content to display on the main part of the page.
  651. * @param $install_state
  652. * An array of information about the current installation state.
  653. */
  654. function install_display_output($output, $install_state) {
  655. drupal_page_header();
  656. // Only show the task list if there is an active task; otherwise, the page
  657. // request has ended before tasks have even been started, so there is nothing
  658. // meaningful to show.
  659. if (isset($install_state['active_task'])) {
  660. // Let the theming function know when every step of the installation has
  661. // been completed.
  662. $active_task = $install_state['installation_finished'] ? NULL : $install_state['active_task'];
  663. drupal_add_region_content('sidebar_first', theme('task_list', array('items' => install_tasks_to_display($install_state), 'active' => $active_task)));
  664. }
  665. print theme('install_page', array('content' => $output));
  666. exit;
  667. }
  668. /**
  669. * Verifies the requirements for installing Drupal.
  670. *
  671. * @param $install_state
  672. * An array of information about the current installation state.
  673. *
  674. * @return
  675. * A themed status report, or an exception if there are requirement errors.
  676. * If there are only requirement warnings, a themed status report is shown
  677. * initially, but the user is allowed to bypass it by providing 'continue=1'
  678. * in the URL. Otherwise, no output is returned, so that the next task can be
  679. * run in the same page request.
  680. */
  681. function install_verify_requirements(&$install_state) {
  682. // Check the installation requirements for Drupal and this profile.
  683. $requirements = install_check_requirements($install_state);
  684. // Verify existence of all required modules.
  685. $requirements += drupal_verify_profile($install_state);
  686. // Check the severity of the requirements reported.
  687. $severity = drupal_requirements_severity($requirements);
  688. // If there are errors, always display them. If there are only warnings, skip
  689. // them if the user has provided a URL parameter acknowledging the warnings
  690. // and indicating a desire to continue anyway. See drupal_requirements_url().
  691. if ($severity == REQUIREMENT_ERROR || ($severity == REQUIREMENT_WARNING && empty($install_state['parameters']['continue']))) {
  692. if ($install_state['interactive']) {
  693. drupal_set_title(st('Requirements problem'));
  694. $status_report = theme('status_report', array('requirements' => $requirements));
  695. $status_report .= st('Check the error messages and <a href="!url">proceed with the installation</a>.', array('!url' => check_url(drupal_requirements_url($severity))));
  696. return $status_report;
  697. }
  698. else {
  699. // Throw an exception showing any unmet requirements.
  700. $failures = array();
  701. foreach ($requirements as $requirement) {
  702. // Skip warnings altogether for non-interactive installations; these
  703. // proceed in a single request so there is no good opportunity (and no
  704. // good method) to warn the user anyway.
  705. if (isset($requirement['severity']) && $requirement['severity'] == REQUIREMENT_ERROR) {
  706. $failures[] = $requirement['title'] . ': ' . $requirement['value'] . "\n\n" . $requirement['description'];
  707. }
  708. }
  709. if (!empty($failures)) {
  710. throw new Exception(implode("\n\n", $failures));
  711. }
  712. }
  713. }
  714. }
  715. /**
  716. * Installation task; install the Drupal system module.
  717. *
  718. * @param $install_state
  719. * An array of information about the current installation state.
  720. */
  721. function install_system_module(&$install_state) {
  722. // Install system.module.
  723. drupal_install_system();
  724. // Enable the user module so that sessions can be recorded during the
  725. // upcoming bootstrap step.
  726. module_enable(array('user'), FALSE);
  727. // Save the list of other modules to install for the upcoming tasks.
  728. // variable_set() can be used now that system.module is installed.
  729. $modules = $install_state['profile_info']['dependencies'];
  730. // The installation profile is also a module, which needs to be installed
  731. // after all the dependencies have been installed.
  732. $modules[] = drupal_get_profile();
  733. variable_set('install_profile_modules', array_diff($modules, array('system')));
  734. $install_state['database_tables_exist'] = TRUE;
  735. }
  736. /**
  737. * Verifies and returns the last installation task that was completed.
  738. *
  739. * @return
  740. * The last completed task, if there is one. An exception is thrown if Drupal
  741. * is already installed.
  742. */
  743. function install_verify_completed_task() {
  744. try {
  745. if ($result = db_query("SELECT value FROM {variable} WHERE name = :name", array('name' => 'install_task'))) {
  746. $task = unserialize($result->fetchField());
  747. }
  748. }
  749. // Do not trigger an error if the database query fails, since the database
  750. // might not be set up yet.
  751. catch (Exception $e) {
  752. }
  753. if (isset($task)) {
  754. if ($task == 'done') {
  755. throw new Exception(install_already_done_error());
  756. }
  757. return $task;
  758. }
  759. }
  760. /**
  761. * Verifies the existing settings in settings.php.
  762. */
  763. function install_verify_settings() {
  764. global $databases;
  765. // Verify existing settings (if any).
  766. if (!empty($databases) && install_verify_pdo()) {
  767. $database = $databases['default']['default'];
  768. drupal_static_reset('conf_path');
  769. $settings_file = './' . conf_path(FALSE) . '/settings.php';
  770. $errors = install_database_errors($database, $settings_file);
  771. if (empty($errors)) {
  772. return TRUE;
  773. }
  774. }
  775. return FALSE;
  776. }
  777. /**
  778. * Verifies the PDO library.
  779. */
  780. function install_verify_pdo() {
  781. // PDO was moved to PHP core in 5.2.0, but the old extension (targeting 5.0
  782. // and 5.1) is still available from PECL, and can still be built without
  783. // errors. To verify that the correct version is in use, we check the
  784. // PDO::ATTR_DEFAULT_FETCH_MODE constant, which is not available in the
  785. // PECL extension.
  786. return extension_loaded('pdo') && defined('PDO::ATTR_DEFAULT_FETCH_MODE');
  787. }
  788. /**
  789. * Form constructor for a form to configure and rewrite settings.php.
  790. *
  791. * @param $install_state
  792. * An array of information about the current installation state.
  793. *
  794. * @see install_settings_form_validate()
  795. * @see install_settings_form_submit()
  796. * @ingroup forms
  797. */
  798. function install_settings_form($form, &$form_state, &$install_state) {
  799. global $databases;
  800. $profile = $install_state['parameters']['profile'];
  801. $install_locale = $install_state['parameters']['locale'];
  802. drupal_static_reset('conf_path');
  803. $conf_path = './' . conf_path(FALSE);
  804. $settings_file = $conf_path . '/settings.php';
  805. $database = isset($databases['default']['default']) ? $databases['default']['default'] : array();
  806. drupal_set_title(st('Database configuration'));
  807. $drivers = drupal_get_database_types();
  808. $drivers_keys = array_keys($drivers);
  809. $form['driver'] = array(
  810. '#type' => 'radios',
  811. '#title' => st('Database type'),
  812. '#required' => TRUE,
  813. '#default_value' => !empty($database['driver']) ? $database['driver'] : current($drivers_keys),
  814. '#description' => st('The type of database your @drupal data will be stored in.', array('@drupal' => drupal_install_profile_distribution_name())),
  815. );
  816. if (count($drivers) == 1) {
  817. $form['driver']['#disabled'] = TRUE;
  818. $form['driver']['#description'] .= ' ' . st('Your PHP configuration only supports a single database type, so it has been automatically selected.');
  819. }
  820. // Add driver specific configuration options.
  821. foreach ($drivers as $key => $driver) {
  822. $form['driver']['#options'][$key] = $driver->name();
  823. $form['settings'][$key] = $driver->getFormOptions($database);
  824. $form['settings'][$key]['#prefix'] = '<h2 class="js-hide">' . st('@driver_name settings', array('@driver_name' => $driver->name())) . '</h2>';
  825. $form['settings'][$key]['#type'] = 'container';
  826. $form['settings'][$key]['#tree'] = TRUE;
  827. $form['settings'][$key]['advanced_options']['#parents'] = array($key);
  828. $form['settings'][$key]['#states'] = array(
  829. 'visible' => array(
  830. ':input[name=driver]' => array('value' => $key),
  831. )
  832. );
  833. }
  834. $form['actions'] = array('#type' => 'actions');
  835. $form['actions']['save'] = array(
  836. '#type' => 'submit',
  837. '#value' => st('Save and continue'),
  838. '#limit_validation_errors' => array(
  839. array('driver'),
  840. array(isset($form_state['input']['driver']) ? $form_state['input']['driver'] : current($drivers_keys)),
  841. ),
  842. '#submit' => array('install_settings_form_submit'),
  843. );
  844. $form['errors'] = array();
  845. $form['settings_file'] = array('#type' => 'value', '#value' => $settings_file);
  846. return $form;
  847. }
  848. /**
  849. * Form validation handler for install_settings_form().
  850. *
  851. * @see install_settings_form_submit()
  852. */
  853. function install_settings_form_validate($form, &$form_state) {
  854. $driver = $form_state['values']['driver'];
  855. $database = $form_state['values'][$driver];
  856. $database['driver'] = $driver;
  857. // TODO: remove when PIFR will be updated to use 'db_prefix' instead of
  858. // 'prefix' in the database settings form.
  859. $database['prefix'] = $database['db_prefix'];
  860. unset($database['db_prefix']);
  861. $form_state['storage']['database'] = $database;
  862. $errors = install_database_errors($database, $form_state['values']['settings_file']);
  863. foreach ($errors as $name => $message) {
  864. form_set_error($name, $message);
  865. }
  866. }
  867. /**
  868. * Checks a database connection and returns any errors.
  869. */
  870. function install_database_errors($database, $settings_file) {
  871. global $databases;
  872. $errors = array();
  873. // Check database type.
  874. $database_types = drupal_get_database_types();
  875. $driver = $database['driver'];
  876. if (!isset($database_types[$driver])) {
  877. $errors['driver'] = st("In your %settings_file file you have configured @drupal to use a %driver server, however your PHP installation currently does not support this database type.", array('%settings_file' => $settings_file, '@drupal' => drupal_install_profile_distribution_name(), '%driver' => $driver));
  878. }
  879. else {
  880. // Run driver specific validation
  881. $errors += $database_types[$driver]->validateDatabaseSettings($database);
  882. // Run tasks associated with the database type. Any errors are caught in the
  883. // calling function.
  884. $databases['default']['default'] = $database;
  885. // Just changing the global doesn't get the new information processed.
  886. // We tell tell the Database class to re-parse $databases.
  887. Database::parseConnectionInfo();
  888. try {
  889. db_run_tasks($driver);
  890. }
  891. catch (DatabaseTaskException $e) {
  892. // These are generic errors, so we do not have any specific key of the
  893. // database connection array to attach them to; therefore, we just put
  894. // them in the error array with standard numeric keys.
  895. $errors[$driver . '][0'] = $e->getMessage();
  896. }
  897. }
  898. return $errors;
  899. }
  900. /**
  901. * Form submission handler for install_settings_form().
  902. *
  903. * @see install_settings_form_validate()
  904. */
  905. function install_settings_form_submit($form, &$form_state) {
  906. global $install_state;
  907. // Update global settings array and save.
  908. $settings['databases'] = array(
  909. 'value' => array('default' => array('default' => $form_state['storage']['database'])),
  910. 'required' => TRUE,
  911. );
  912. $settings['drupal_hash_salt'] = array(
  913. 'value' => drupal_hash_base64(drupal_random_bytes(55)),
  914. 'required' => TRUE,
  915. );
  916. drupal_rewrite_settings($settings);
  917. // Indicate that the settings file has been verified, and check the database
  918. // for the last completed task, now that we have a valid connection. This
  919. // last step is important since we want to trigger an error if the new
  920. // database already has Drupal installed.
  921. $install_state['settings_verified'] = TRUE;
  922. $install_state['completed_task'] = install_verify_completed_task();
  923. }
  924. /**
  925. * Finds all .profile files.
  926. */
  927. function install_find_profiles() {
  928. return file_scan_directory('./profiles', '/\.profile$/', array('key' => 'name'));
  929. }
  930. /**
  931. * Selects which profile to install.
  932. *
  933. * @param $install_state
  934. * An array of information about the current installation state. The chosen
  935. * profile will be added here, if it was not already selected previously, as
  936. * will a list of all available profiles.
  937. *
  938. * @return
  939. * For interactive installations, a form allowing the profile to be selected,
  940. * if the user has a choice that needs to be made. Otherwise, an exception is
  941. * thrown if a profile cannot be chosen automatically.
  942. */
  943. function install_select_profile(&$install_state) {
  944. $install_state['profiles'] += install_find_profiles();
  945. if (empty($install_state['parameters']['profile'])) {
  946. // Try to find a profile.
  947. $profile = _install_select_profile($install_state['profiles']);
  948. if (empty($profile)) {
  949. // We still don't have a profile, so display a form for selecting one.
  950. // Only do this in the case of interactive installations, since this is
  951. // not a real form with submit handlers (the database isn't even set up
  952. // yet), rather just a convenience method for setting parameters in the
  953. // URL.
  954. if ($install_state['interactive']) {
  955. include_once DRUPAL_ROOT . '/includes/form.inc';
  956. drupal_set_title(st('Select an installation profile'));
  957. $form = drupal_get_form('install_select_profile_form', $install_state['profiles']);
  958. return drupal_render($form);
  959. }
  960. else {
  961. throw new Exception(install_no_profile_error());
  962. }
  963. }
  964. else {
  965. $install_state['parameters']['profile'] = $profile;
  966. }
  967. }
  968. }
  969. /**
  970. * Selects an installation profile from a list or from a $_POST submission.
  971. */
  972. function _install_select_profile($profiles) {
  973. if (sizeof($profiles) == 0) {
  974. throw new Exception(install_no_profile_error());
  975. }
  976. // Don't need to choose profile if only one available.
  977. if (sizeof($profiles) == 1) {
  978. $profile = array_pop($profiles);
  979. // TODO: is this right?
  980. require_once DRUPAL_ROOT . '/' . $profile->uri;
  981. return $profile->name;
  982. }
  983. else {
  984. foreach ($profiles as $profile) {
  985. if (!empty($_POST['profile']) && ($_POST['profile'] == $profile->name)) {
  986. return $profile->name;
  987. }
  988. }
  989. }
  990. }
  991. /**
  992. * Form constructor for the profile selection form.
  993. *
  994. * @param $form_state
  995. * Array of metadata about state of form processing.
  996. * @param $profile_files
  997. * Array of .profile files, as returned from file_scan_directory().
  998. *
  999. * @ingroup forms
  1000. */
  1001. function install_select_profile_form($form, &$form_state, $profile_files) {
  1002. $profiles = array();
  1003. $names = array();
  1004. foreach ($profile_files as $profile) {
  1005. // TODO: is this right?
  1006. include_once DRUPAL_ROOT . '/' . $profile->uri;
  1007. $details = install_profile_info($profile->name);
  1008. // Don't show hidden profiles. This is used by to hide the testing profile,
  1009. // which only exists to speed up test runs.
  1010. if ($details['hidden'] === TRUE) {
  1011. continue;
  1012. }
  1013. $profiles[$profile->name] = $details;
  1014. // Determine the name of the profile; default to file name if defined name
  1015. // is unspecified.
  1016. $name = isset($details['name']) ? $details['name'] : $profile->name;
  1017. $names[$profile->name] = $name;
  1018. }
  1019. // Display radio buttons alphabetically by human-readable name, but always
  1020. // put the core profiles first (if they are present in the filesystem).
  1021. natcasesort($names);
  1022. if (isset($names['minimal'])) {
  1023. // If the expert ("Minimal") core profile is present, put it in front of
  1024. // any non-core profiles rather than including it with them alphabetically,
  1025. // since the other profiles might be intended to group together in a
  1026. // particular way.
  1027. $names = array('minimal' => $names['minimal']) + $names;
  1028. }
  1029. if (isset($names['standard'])) {
  1030. // If the default ("Standard") core profile is present, put it at the very
  1031. // top of the list. This profile will have its radio button pre-selected,
  1032. // so we want it to always appear at the top.
  1033. $names = array('standard' => $names['standard']) + $names;
  1034. }
  1035. foreach ($names as $profile => $name) {
  1036. $form['profile'][$name] = array(
  1037. '#type' => 'radio',
  1038. '#value' => 'standard',
  1039. '#return_value' => $profile,
  1040. '#title' => $name,
  1041. '#description' => isset($profiles[$profile]['description']) ? $profiles[$profile]['description'] : '',
  1042. '#parents' => array('profile'),
  1043. );
  1044. }
  1045. $form['actions'] = array('#type' => 'actions');
  1046. $form['actions']['submit'] = array(
  1047. '#type' => 'submit',
  1048. '#value' => st('Save and continue'),
  1049. );
  1050. return $form;
  1051. }
  1052. /**
  1053. * Find all .po files for the current profile.
  1054. */
  1055. function install_find_locales($profilename) {
  1056. $locales = file_scan_directory('./profiles/' . $profilename . '/translations', '/\.po$/', array('recurse' => FALSE));
  1057. array_unshift($locales, (object) array('name' => 'en'));
  1058. foreach ($locales as $key => $locale) {
  1059. // The locale (file name) might be drupal-7.2.cs.po instead of cs.po.
  1060. $locales[$key]->langcode = preg_replace('!^(.+\.)?([^\.]+)$!', '\2', $locale->name);
  1061. // Language codes cannot exceed 12 characters to fit into the {languages}
  1062. // table.
  1063. if (strlen($locales[$key]->langcode) > 12) {
  1064. unset($locales[$key]);
  1065. }
  1066. }
  1067. return $locales;
  1068. }
  1069. /**
  1070. * Installation task; select which locale to use for the current profile.
  1071. *
  1072. * @param $install_state
  1073. * An array of information about the current installation state. The chosen
  1074. * locale will be added here, if it was not already selected previously, as
  1075. * will a list of all available locales.
  1076. *
  1077. * @return
  1078. * For interactive installations, a form or other page output allowing the
  1079. * locale to be selected or providing information about locale selection, if
  1080. * a locale has not been chosen. Otherwise, an exception is thrown if a
  1081. * locale cannot be chosen automatically.
  1082. */
  1083. function install_select_locale(&$install_state) {
  1084. // Find all available locales.
  1085. $profilename = $install_state['parameters']['profile'];
  1086. $locales = install_find_locales($profilename);
  1087. $install_state['locales'] += $locales;
  1088. if (!empty($_POST['locale'])) {
  1089. foreach ($locales as $locale) {
  1090. if ($_POST['locale'] == $locale->langcode) {
  1091. $install_state['parameters']['locale'] = $locale->langcode;
  1092. return;
  1093. }
  1094. }
  1095. }
  1096. if (empty($install_state['parameters']['locale'])) {
  1097. // If only the built-in (English) language is available, and we are
  1098. // performing an interactive installation, inform the user that the
  1099. // installer can be localized. Otherwise we assume the user knows what he
  1100. // is doing.
  1101. if (count($locales) == 1) {
  1102. if ($install_state['interactive']) {
  1103. drupal_set_title(st('Choose language'));
  1104. if (!empty($install_state['parameters']['localize'])) {
  1105. $output = '<p>Follow these steps to translate Drupal into your language:</p>';
  1106. $output .= '<ol>';
  1107. $output .= '<li>Download a translation from the <a href="http://localize.drupal.org/download" target="_blank">translation server</a>.</li>';
  1108. $output .= '<li>Place it into the following directory:
  1109. <pre>
  1110. /profiles/' . $profilename . '/translations/
  1111. </pre></li>';
  1112. $output .= '</ol>';
  1113. $output .= '<p>For more information on installing Drupal in different languages, visit the <a href="http://drupal.org/localize" target="_blank">drupal.org handbook page</a>.</p>';
  1114. $output .= '<p>How should the installation continue?</p>';
  1115. $output .= '<ul>';
  1116. $output .= '<li><a href="install.php?profile=' . $profilename . '">Reload the language selection page after adding translations</a></li>';
  1117. $output .= '<li><a href="install.php?profile=' . $profilename . '&amp;locale=en">Continue installation in English</a></li>';
  1118. $output .= '</ul>';
  1119. }
  1120. else {
  1121. include_once DRUPAL_ROOT . '/includes/form.inc';
  1122. $elements = drupal_get_form('install_select_locale_form', $locales, $profilename);
  1123. $output = drupal_render($elements);
  1124. }
  1125. return $output;
  1126. }
  1127. // One language, but not an interactive installation. Assume the user
  1128. // knows what he is doing.
  1129. $locale = current($locales);
  1130. $install_state['parameters']['locale'] = $locale->name;
  1131. return;
  1132. }
  1133. else {
  1134. // Allow profile to pre-select the language, skipping the selection.
  1135. $function = $profilename . '_profile_details';
  1136. if (function_exists($function)) {
  1137. $details = $function();
  1138. if (isset($details['language'])) {
  1139. foreach ($locales as $locale) {
  1140. if ($details['language'] == $locale->name) {
  1141. $install_state['parameters']['locale'] = $locale->name;
  1142. return;
  1143. }
  1144. }
  1145. }
  1146. }
  1147. // We still don't have a locale, so display a form for selecting one.
  1148. // Only do this in the case of interactive installations, since this is
  1149. // not a real form with submit handlers (the database isn't even set up
  1150. // yet), rather just a convenience method for setting parameters in the
  1151. // URL.
  1152. if ($install_state['interactive']) {
  1153. drupal_set_title(st('Choose language'));
  1154. include_once DRUPAL_ROOT . '/includes/form.inc';
  1155. $elements = drupal_get_form('install_select_locale_form', $locales, $profilename);
  1156. return drupal_render($elements);
  1157. }
  1158. else {
  1159. throw new Exception(st('Sorry, you must select a language to continue the installation.'));
  1160. }
  1161. }
  1162. }
  1163. }
  1164. /**
  1165. * Form constructor for the language selection form.
  1166. *
  1167. * @ingroup forms
  1168. */
  1169. function install_select_locale_form($form, &$form_state, $locales, $profilename) {
  1170. include_once DRUPAL_ROOT . '/includes/iso.inc';
  1171. $languages = _locale_get_predefined_list();
  1172. foreach ($locales as $locale) {
  1173. $name = $locale->langcode;
  1174. if (isset($languages[$name])) {
  1175. $name = $languages[$name][0] . (isset($languages[$name][1]) ? ' ' . st('(@language)', array('@language' => $languages[$name][1])) : '');
  1176. }
  1177. $form['locale'][$locale->langcode] = array(
  1178. '#type' => 'radio',
  1179. '#return_value' => $locale->langcode,
  1180. '#default_value' => $locale->langcode == 'en' ? 'en' : '',
  1181. '#title' => $name . ($locale->langcode == 'en' ? ' ' . st('(built-in)') : ''),
  1182. '#parents' => array('locale')
  1183. );
  1184. }
  1185. if (count($locales) == 1) {
  1186. $form['help'] = array(
  1187. '#markup' => '<p><a href="install.php?profile=' . $profilename . '&amp;localize=true">' . st('Learn how to install Drupal in other languages') . '</a></p>',
  1188. );
  1189. }
  1190. $form['actions'] = array('#type' => 'actions');
  1191. $form['actions']['submit'] = array(
  1192. '#type' => 'submit',
  1193. '#value' => st('Save and continue'),
  1194. );
  1195. return $form;
  1196. }
  1197. /**
  1198. * Indicates that there are no profiles available.
  1199. */
  1200. function install_no_profile_error() {
  1201. drupal_set_title(st('No profiles available'));
  1202. return st('We were unable to find any installation profiles. Installation profiles tell us what modules to enable and what schema to install in the database. A profile is necessary to continue with the installation process.');
  1203. }
  1204. /**
  1205. * Indicates that Drupal has already been installed.
  1206. */
  1207. function install_already_done_error() {
  1208. global $base_url;
  1209. drupal_set_title(st('Drupal already installed'));
  1210. return st('<ul><li>To start over, you must empty your existing database.</li><li>To install to a different database, edit the appropriate <em>settings.php</em> file in the <em>sites</em> folder.</li><li>To upgrade an existing installation, proceed to the <a href="@base-url/update.php">update script</a>.</li><li>View your <a href="@base-url">existing site</a>.</li></ul>', array('@base-url' => $base_url));
  1211. }
  1212. /**
  1213. * Loads information about the chosen profile during installation.
  1214. *
  1215. * @param $install_state
  1216. * An array of information about the current installation state. The loaded
  1217. * profile information will be added here, or an exception will be thrown if
  1218. * the profile cannot be loaded.
  1219. */
  1220. function install_load_profile(&$install_state) {
  1221. $profile_file = DRUPAL_ROOT . '/profiles/' . $install_state['parameters']['profile'] . '/' . $install_state['parameters']['profile'] . '.profile';
  1222. if (file_exists($profile_file)) {
  1223. include_once $profile_file;
  1224. $install_state['profile_info'] = install_profile_info($install_state['parameters']['profile'], $install_state['parameters']['locale']);
  1225. }
  1226. else {
  1227. throw new Exception(st('Sorry, the profile you have chosen cannot be loaded.'));
  1228. }
  1229. }
  1230. /**
  1231. * Performs a full bootstrap of Drupal during installation.
  1232. *
  1233. * @param $install_state
  1234. * An array of information about the current installation state.
  1235. */
  1236. function install_bootstrap_full(&$install_state) {
  1237. drupal_bootstrap(DRUPAL_BOOTSTRAP_FULL);
  1238. }
  1239. /**
  1240. * Installs required modules via a batch process.
  1241. *
  1242. * @param $install_state
  1243. * An array of information about the current installation state.
  1244. *
  1245. * @return
  1246. * The batch definition.
  1247. */
  1248. function install_profile_modules(&$install_state) {
  1249. $modules = variable_get('install_profile_modules', array());
  1250. $files = system_rebuild_module_data();
  1251. variable_del('install_profile_modules');
  1252. // Always install required modules first. Respect the dependencies between
  1253. // the modules.
  1254. $required = array();
  1255. $non_required = array();
  1256. // Although the profile module is marked as required, it needs to go after
  1257. // every dependency, including non-required ones. So clear its required
  1258. // flag for now to allow it to install late.
  1259. $files[$install_state['parameters']['profile']]->info['required'] = FALSE;
  1260. // Add modules that other modules depend on.
  1261. foreach ($modules as $module) {
  1262. if ($files[$module]->requires) {
  1263. $modules = array_merge($modules, array_keys($files[$module]->requires));
  1264. }
  1265. }
  1266. $modules = array_unique($modules);
  1267. foreach ($modules as $module) {
  1268. if (!empty($files[$module]->info['required'])) {
  1269. $required[$module] = $files[$module]->sort;
  1270. }
  1271. else {
  1272. $non_required[$module] = $files[$module]->sort;
  1273. }
  1274. }
  1275. arsort($required);
  1276. arsort($non_required);
  1277. $operations = array();
  1278. foreach ($required + $non_required as $module => $weight) {
  1279. $operations[] = array('_install_module_batch', array($module, $files[$module]->info['name']));
  1280. }
  1281. $batch = array(
  1282. 'operations' => $operations,
  1283. 'title' => st('Installing @drupal', array('@drupal' => drupal_install_profile_distribution_name())),
  1284. 'error_message' => st('The installation has encountered an error.'),
  1285. 'finished' => '_install_profile_modules_finished',
  1286. );
  1287. return $batch;
  1288. }
  1289. /**
  1290. * Imports languages via a batch process during installation.
  1291. *
  1292. * @param $install_state
  1293. * An array of information about the current installation state.
  1294. *
  1295. * @return
  1296. * The batch definition, if there are language files to import.
  1297. */
  1298. function install_import_locales(&$install_state) {
  1299. include_once DRUPAL_ROOT . '/includes/locale.inc';
  1300. $install_locale = $install_state['parameters']['locale'];
  1301. include_once DRUPAL_ROOT . '/includes/iso.inc';
  1302. $predefined = _locale_get_predefined_list();
  1303. if (!isset($predefined[$install_locale])) {
  1304. // Drupal does not know about this language, so we prefill its values with
  1305. // our best guess. The user will be able to edit afterwards.
  1306. locale_add_language($install_locale, $install_locale, $install_locale, LANGUAGE_LTR, '', '', TRUE, TRUE);
  1307. }
  1308. else {
  1309. // A known predefined language, details will be filled in properly.
  1310. locale_add_language($install_locale, NULL, NULL, NULL, '', '', TRUE, TRUE);
  1311. }
  1312. // Collect files to import for this language.
  1313. $batch = locale_batch_by_language($install_locale, NULL);
  1314. if (!empty($batch)) {
  1315. // Remember components we cover in this batch set.
  1316. variable_set('install_locale_batch_components', $batch['#components']);
  1317. return $batch;
  1318. }
  1319. }
  1320. /**
  1321. * Form constructor for a form to configure the new site.
  1322. *
  1323. * @param $install_state
  1324. * An array of information about the current installation state.
  1325. *
  1326. * @see install_configure_form_validate()
  1327. * @see install_configure_form_submit()
  1328. * @ingroup forms
  1329. */
  1330. function install_configure_form($form, &$form_state, &$install_state) {
  1331. drupal_set_title(st('Configure site'));
  1332. // Warn about settings.php permissions risk
  1333. $settings_dir = conf_path();
  1334. $settings_file = $settings_dir . '/settings.php';
  1335. // Check that $_POST is empty so we only show this message when the form is
  1336. // first displayed, not on the next page after it is submitted. (We do not
  1337. // want to repeat it multiple times because it is a general warning that is
  1338. // not related to the rest of the installation process; it would also be
  1339. // especially out of place on the last page of the installer, where it would
  1340. // distract from the message that the Drupal installation has completed
  1341. // successfully.)
  1342. if (empty($_POST) && (!drupal_verify_install_file(DRUPAL_ROOT . '/' . $settings_file, FILE_EXIST|FILE_READABLE|FILE_NOT_WRITABLE) || !drupal_verify_install_file(DRUPAL_ROOT . '/' . $settings_dir, FILE_NOT_WRITABLE, 'dir'))) {
  1343. drupal_set_message(st('All necessary changes to %dir and %file have been made, so you should remove write permissions to them now in order to avoid security risks. If you are unsure how to do so, consult the <a href="@handbook_url">online handbook</a>.', array('%dir' => $settings_dir, '%file' => $settings_file, '@handbook_url' => 'http://drupal.org/server-permissions')), 'warning');
  1344. }
  1345. drupal_add_js(drupal_get_path('module', 'system') . '/system.js');
  1346. // Add JavaScript time zone detection.
  1347. drupal_add_js('misc/timezone.js');
  1348. // We add these strings as settings because JavaScript translation does not
  1349. // work during installation.
  1350. drupal_add_js(array('copyFieldValue' => array('edit-site-mail' => array('edit-account-mail'))), 'setting');
  1351. drupal_add_js('jQuery(function () { Drupal.cleanURLsInstallCheck(); });', 'inline');
  1352. // Add JS to show / hide the 'Email administrator about site updates' elements
  1353. drupal_add_js('jQuery(function () { Drupal.hideEmailAdministratorCheckbox() });', 'inline');
  1354. // Build menu to allow clean URL check.
  1355. menu_rebuild();
  1356. // Cache a fully-built schema. This is necessary for any invocation of
  1357. // index.php because: (1) setting cache table entries requires schema
  1358. // information, (2) that occurs during bootstrap before any module are
  1359. // loaded, so (3) if there is no cached schema, drupal_get_schema() will
  1360. // try to generate one but with no loaded modules will return nothing.
  1361. //
  1362. // This logically could be done during the 'install_finished' task, but the
  1363. // clean URL check requires it now.
  1364. drupal_get_schema(NULL, TRUE);
  1365. // Return the form.
  1366. return _install_configure_form($form, $form_state, $install_state);
  1367. }
  1368. /**
  1369. * Installation task; import remaining languages via a batch process.
  1370. *
  1371. * @param $install_state
  1372. * An array of information about the current installation state.
  1373. *
  1374. * @return
  1375. * The batch definition, if there are language files to import.
  1376. */
  1377. function install_import_locales_remaining(&$install_state) {
  1378. include_once DRUPAL_ROOT . '/includes/locale.inc';
  1379. // Collect files to import for this language. Skip components already covered
  1380. // in the initial batch set.
  1381. $install_locale = $install_state['parameters']['locale'];
  1382. $batch = locale_batch_by_language($install_locale, NULL, variable_get('install_locale_batch_components', array()));
  1383. // Remove temporary variable.
  1384. variable_del('install_locale_batch_components');
  1385. return $batch;
  1386. }
  1387. /**
  1388. * Finishes importing files at end of installation.
  1389. *
  1390. * @param $install_state
  1391. * An array of information about the current installation state.
  1392. *
  1393. * @return
  1394. * A message informing the user that the installation is complete.
  1395. */
  1396. function install_finished(&$install_state) {
  1397. drupal_set_title(st('@drupal installation complete', array('@drupal' => drupal_install_profile_distribution_name())), PASS_THROUGH);
  1398. $messages = drupal_set_message();
  1399. $output = '<p>' . st('Congratulations, you installed @drupal!', array('@drupal' => drupal_install_profile_distribution_name())) . '</p>';
  1400. $output .= '<p>' . (isset($messages['error']) ? st('Review the messages above before visiting <a href="@url">your new site</a>.', array('@url' => url(''))) : st('<a href="@url">Visit your new site</a>.', array('@url' => url('')))) . '</p>';
  1401. // Flush all caches to ensure that any full bootstraps during the installer
  1402. // do not leave stale cached data, and that any content types or other items
  1403. // registered by the installation profile are registered correctly.
  1404. drupal_flush_all_caches();
  1405. // Remember the profile which was used.
  1406. variable_set('install_profile', drupal_get_profile());
  1407. // Installation profiles are always loaded last
  1408. db_update('system')
  1409. ->fields(array('weight' => 1000))
  1410. ->condition('type', 'module')
  1411. ->condition('name', drupal_get_profile())
  1412. ->execute();
  1413. // Cache a fully-built schema.
  1414. drupal_get_schema(NULL, TRUE);
  1415. // Run cron to populate update status tables (if available) so that users
  1416. // will be warned if they've installed an out of date Drupal version.
  1417. // Will also trigger indexing of profile-supplied content or feeds.
  1418. drupal_cron_run();
  1419. return $output;
  1420. }
  1421. /**
  1422. * Batch callback for batch installation of modules.
  1423. */
  1424. function _install_module_batch($module, $module_name, &$context) {
  1425. // Install and enable the module right away, so that the module will be
  1426. // loaded by drupal_bootstrap in subsequent batch requests, and other
  1427. // modules possibly depending on it can safely perform their installation
  1428. // steps.
  1429. module_enable(array($module), FALSE);
  1430. $context['results'][] = $module;
  1431. $context['message'] = st('Installed %module module.', array('%module' => $module_name));
  1432. }
  1433. /**
  1434. * 'Finished' callback for module installation batch.
  1435. */
  1436. function _install_profile_modules_finished($success, $results, $operations) {
  1437. // Flush all caches to complete the module installation process. Subsequent
  1438. // installation tasks will now have full access to the profile's modules.
  1439. drupal_flush_all_caches();
  1440. }
  1441. /**
  1442. * Checks installation requirements and reports any errors.
  1443. */
  1444. function install_check_requirements($install_state) {
  1445. $profile = $install_state['parameters']['profile'];
  1446. // Check the profile requirements.
  1447. $requirements = drupal_check_profile($profile);
  1448. // If Drupal is not set up already, we need to create a settings file.
  1449. if (!$install_state['settings_verified']) {
  1450. $writable = FALSE;
  1451. $conf_path = './' . conf_path(FALSE, TRUE);
  1452. $settings_file = $conf_path . '/settings.php';
  1453. $default_settings_file = './sites/default/default.settings.php';
  1454. $file = $conf_path;
  1455. $exists = FALSE;
  1456. // Verify that the directory exists.
  1457. if (drupal_verify_install_file($conf_path, FILE_EXIST, 'dir')) {
  1458. // Check if a settings.php file already exists.
  1459. $file = $settings_file;
  1460. if (drupal_verify_install_file($settings_file, FILE_EXIST)) {
  1461. // If it does, make sure it is writable.
  1462. $writable = drupal_verify_install_file($settings_file, FILE_READABLE|FILE_WRITABLE);
  1463. $exists = TRUE;
  1464. }
  1465. }
  1466. // If default.settings.php does not exist, or is not readable, throw an
  1467. // error.
  1468. if (!drupal_verify_install_file($default_settings_file, FILE_EXIST|FILE_READABLE)) {
  1469. $requirements['default settings file exists'] = array(
  1470. 'title' => st('Default settings file'),
  1471. 'value' => st('The default settings file does not exist.'),
  1472. 'severity' => REQUIREMENT_ERROR,
  1473. 'description' => st('The @drupal installer requires that the %default-file file not be modified in any way from the original download.', array('@drupal' => drupal_install_profile_distribution_name(), '%default-file' => $default_settings_file)),
  1474. );
  1475. }
  1476. // Otherwise, if settings.php does not exist yet, we can try to copy
  1477. // default.settings.php to create it.
  1478. elseif (!$exists) {
  1479. $copied = drupal_verify_install_file($conf_path, FILE_EXIST|FILE_WRITABLE, 'dir') && @copy($default_settings_file, $settings_file);
  1480. if ($copied) {
  1481. // If the new settings file has the same owner as default.settings.php,
  1482. // this means default.settings.php is owned by the webserver user.
  1483. // This is an inherent security weakness because it allows a malicious
  1484. // webserver process to append arbitrary PHP code and then execute it.
  1485. // However, it is also a common configuration on shared hosting, and
  1486. // there is nothing Drupal can do to prevent it. In this situation,
  1487. // having settings.php also owned by the webserver does not introduce
  1488. // any additional security risk, so we keep the file in place.
  1489. if (fileowner($default_settings_file) === fileowner($settings_file)) {
  1490. $writable = drupal_verify_install_file($settings_file, FILE_READABLE|FILE_WRITABLE);
  1491. $exists = TRUE;
  1492. }
  1493. // If settings.php and default.settings.php have different owners, this
  1494. // probably means the server is set up "securely" (with the webserver
  1495. // running as its own user, distinct from the user who owns all the
  1496. // Drupal PHP files), although with either a group or world writable
  1497. // sites directory. Keeping settings.php owned by the webserver would
  1498. // therefore introduce a security risk. It would also cause a usability
  1499. // problem, since site owners who do not have root access to the file
  1500. // system would be unable to edit their settings file later on. We
  1501. // therefore must delete the file we just created and force the
  1502. // administrator to log on to the server and create it manually.
  1503. else {
  1504. $deleted = @drupal_unlink($settings_file);
  1505. // We expect deleting the file to be successful (since we just
  1506. // created it ourselves above), but if it fails somehow, we set a
  1507. // variable so we can display a one-time error message to the
  1508. // administrator at the bottom of the requirements list. We also try
  1509. // to make the file writable, to eliminate any conflicting error
  1510. // messages in the requirements list.
  1511. $exists = !$deleted;
  1512. if ($exists) {
  1513. $settings_file_ownership_error = TRUE;
  1514. $writable = drupal_verify_install_file($settings_file, FILE_READABLE|FILE_WRITABLE);
  1515. }
  1516. }
  1517. }
  1518. }
  1519. // If settings.php does not exist, throw an error.
  1520. if (!$exists) {
  1521. $requirements['settings file exists'] = array(
  1522. 'title' => st('Settings file'),
  1523. 'value' => st('The settings file does not exist.'),
  1524. 'severity' => REQUIREMENT_ERROR,
  1525. 'description' => st('The @drupal installer requires that you create a settings file as part of the installation process. Copy the %default_file file to %file. More details about installing Drupal are available in <a href="@install_txt">INSTALL.txt</a>.', array('@drupal' => drupal_install_profile_distribution_name(), '%file' => $file, '%default_file' => $default_settings_file, '@install_txt' => base_path() . 'INSTALL.txt')),
  1526. );
  1527. }
  1528. else {
  1529. $requirements['settings file exists'] = array(
  1530. 'title' => st('Settings file'),
  1531. 'value' => st('The %file file exists.', array('%file' => $file)),
  1532. );
  1533. // If settings.php is not writable, throw an error.
  1534. if (!$writable) {
  1535. $requirements['settings file writable'] = array(
  1536. 'title' => st('Settings file'),
  1537. 'value' => st('The settings file is not writable.'),
  1538. 'severity' => REQUIREMENT_ERROR,
  1539. 'description' => st('The @drupal installer requires write permissions to %file during the installation process. If you are unsure how to grant file permissions, consult the <a href="@handbook_url">online handbook</a>.', array('@drupal' => drupal_install_profile_distribution_name(), '%file' => $file, '@handbook_url' => 'http://drupal.org/server-permissions')),
  1540. );
  1541. }
  1542. else {
  1543. $requirements['settings file'] = array(
  1544. 'title' => st('Settings file'),
  1545. 'value' => st('The settings file is writable.'),
  1546. );
  1547. }
  1548. if (!empty($settings_file_ownership_error)) {
  1549. $requirements['settings file ownership'] = array(
  1550. 'title' => st('Settings file'),
  1551. 'value' => st('The settings file is owned by the web server.'),
  1552. 'severity' => REQUIREMENT_ERROR,
  1553. 'description' => st('The @drupal installer failed to create a settings file with proper file ownership. Log on to your web server, remove the existing %file file, and create a new one by copying the %default_file file to %file. More details about installing Drupal are available in <a href="@install_txt">INSTALL.txt</a>. If you have problems with the file permissions on your server, consult the <a href="@handbook_url">online handbook</a>.', array('@drupal' => drupal_install_profile_distribution_name(), '%file' => $file, '%default_file' => $default_settings_file, '@install_txt' => base_path() . 'INSTALL.txt', '@handbook_url' => 'http://drupal.org/server-permissions')),
  1554. );
  1555. }
  1556. }
  1557. }
  1558. return $requirements;
  1559. }
  1560. /**
  1561. * Form constructor for a site configuration form.
  1562. *
  1563. * @param $install_state
  1564. * An array of information about the current installation state.
  1565. *
  1566. * @see install_configure_form()
  1567. * @see install_configure_form_validate()
  1568. * @see install_configure_form_submit()
  1569. * @ingroup forms
  1570. */
  1571. function _install_configure_form($form, &$form_state, &$install_state) {
  1572. include_once DRUPAL_ROOT . '/includes/locale.inc';
  1573. $form['site_information'] = array(
  1574. '#type' => 'fieldset',
  1575. '#title' => st('Site information'),
  1576. '#collapsible' => FALSE,
  1577. );
  1578. $form['site_information']['site_name'] = array(
  1579. '#type' => 'textfield',
  1580. '#title' => st('Site name'),
  1581. '#required' => TRUE,
  1582. '#weight' => -20,
  1583. );
  1584. $form['site_information']['site_mail'] = array(
  1585. '#type' => 'textfield',
  1586. '#title' => st('Site e-mail address'),
  1587. '#default_value' => ini_get('sendmail_from'),
  1588. '#description' => st("Automated e-mails, such as registration information, will be sent from this address. Use an address ending in your site's domain to help prevent these e-mails from being flagged as spam."),
  1589. '#required' => TRUE,
  1590. '#weight' => -15,
  1591. );
  1592. $form['admin_account'] = array(
  1593. '#type' => 'fieldset',
  1594. '#title' => st('Site maintenance account'),
  1595. '#collapsible' => FALSE,
  1596. );
  1597. $form['admin_account']['account']['#tree'] = TRUE;
  1598. $form['admin_account']['account']['name'] = array('#type' => 'textfield',
  1599. '#title' => st('Username'),
  1600. '#maxlength' => USERNAME_MAX_LENGTH,
  1601. '#description' => st('Spaces are allowed; punctuation is not allowed except for periods, hyphens, and underscores.'),
  1602. '#required' => TRUE,
  1603. '#weight' => -10,
  1604. '#attributes' => array('class' => array('username')),
  1605. );
  1606. $form['admin_account']['account']['mail'] = array('#type' => 'textfield',
  1607. '#title' => st('E-mail address'),
  1608. '#maxlength' => EMAIL_MAX_LENGTH,
  1609. '#required' => TRUE,
  1610. '#weight' => -5,
  1611. );
  1612. $form['admin_account']['account']['pass'] = array(
  1613. '#type' => 'password_confirm',
  1614. '#required' => TRUE,
  1615. '#size' => 25,
  1616. '#weight' => 0,
  1617. );
  1618. $form['server_settings'] = array(
  1619. '#type' => 'fieldset',
  1620. '#title' => st('Server settings'),
  1621. '#collapsible' => FALSE,
  1622. );
  1623. $countries = country_get_list();
  1624. $form['server_settings']['site_default_country'] = array(
  1625. '#type' => 'select',
  1626. '#title' => st('Default country'),
  1627. '#empty_value' => '',
  1628. '#default_value' => variable_get('site_default_country', NULL),
  1629. '#options' => $countries,
  1630. '#description' => st('Select the default country for the site.'),
  1631. '#weight' => 0,
  1632. );
  1633. $form['server_settings']['date_default_timezone'] = array(
  1634. '#type' => 'select',
  1635. '#title' => st('Default time zone'),
  1636. '#default_value' => date_default_timezone_get(),
  1637. '#options' => system_time_zones(),
  1638. '#description' => st('By default, dates in this site will be displayed in the chosen time zone.'),
  1639. '#weight' => 5,
  1640. '#attributes' => array('class' => array('timezone-detect')),
  1641. );
  1642. $form['server_settings']['clean_url'] = array(
  1643. '#type' => 'hidden',
  1644. '#default_value' => 0,
  1645. '#attributes' => array('id' => 'edit-clean-url', 'class' => array('install')),
  1646. );
  1647. $form['update_notifications'] = array(
  1648. '#type' => 'fieldset',
  1649. '#title' => st('Update notifications'),
  1650. '#collapsible' => FALSE,
  1651. );
  1652. $form['update_notifications']['update_status_module'] = array(
  1653. '#type' => 'checkboxes',
  1654. '#options' => array(
  1655. 1 => st('Check for updates automatically'),
  1656. 2 => st('Receive e-mail notifications'),
  1657. ),
  1658. '#default_value' => array(1, 2),
  1659. '#description' => st('The system will notify you when updates and important security releases are available for installed components. Anonymous information about your site is sent to <a href="@drupal">Drupal.org</a>.', array('@drupal' => 'http://drupal.org')),
  1660. '#weight' => 15,
  1661. );
  1662. $form['actions'] = array('#type' => 'actions');
  1663. $form['actions']['submit'] = array(
  1664. '#type' => 'submit',
  1665. '#value' => st('Save and continue'),
  1666. '#weight' => 15,
  1667. );
  1668. return $form;
  1669. }
  1670. /**
  1671. * Form validation handler for install_configure_form().
  1672. *
  1673. * @see install_configure_form_submit()
  1674. */
  1675. function install_configure_form_validate($form, &$form_state) {
  1676. if ($error = user_validate_name($form_state['values']['account']['name'])) {
  1677. form_error($form['admin_account']['account']['name'], $error);
  1678. }
  1679. if ($error = user_validate_mail($form_state['values']['account']['mail'])) {
  1680. form_error($form['admin_account']['account']['mail'], $error);
  1681. }
  1682. if ($error = user_validate_mail($form_state['values']['site_mail'])) {
  1683. form_error($form['site_information']['site_mail'], $error);
  1684. }
  1685. }
  1686. /**
  1687. * Form submission handler for install_configure_form().
  1688. *
  1689. * @see install_configure_form_validate()
  1690. */
  1691. function install_configure_form_submit($form, &$form_state) {
  1692. global $user;
  1693. variable_set('site_name', $form_state['values']['site_name']);
  1694. variable_set('site_mail', $form_state['values']['site_mail']);
  1695. variable_set('date_default_timezone', $form_state['values']['date_default_timezone']);
  1696. variable_set('site_default_country', $form_state['values']['site_default_country']);
  1697. // Enable update.module if this option was selected.
  1698. if ($form_state['values']['update_status_module'][1]) {
  1699. module_enable(array('update'), FALSE);
  1700. // Add the site maintenance account's email address to the list of
  1701. // addresses to be notified when updates are available, if selected.
  1702. if ($form_state['values']['update_status_module'][2]) {
  1703. variable_set('update_notify_emails', array($form_state['values']['account']['mail']));
  1704. }
  1705. }
  1706. // We precreated user 1 with placeholder values. Let's save the real values.
  1707. $account = user_load(1);
  1708. $merge_data = array('init' => $form_state['values']['account']['mail'], 'roles' => !empty($account->roles) ? $account->roles : array(), 'status' => 1, 'timezone' => $form_state['values']['date_default_timezone']);
  1709. user_save($account, array_merge($form_state['values']['account'], $merge_data));
  1710. // Load global $user and perform final login tasks.
  1711. $user = user_load(1);
  1712. user_login_finalize();
  1713. if (isset($form_state['values']['clean_url'])) {
  1714. variable_set('clean_url', $form_state['values']['clean_url']);
  1715. }
  1716. // Record when this install ran.
  1717. variable_set('install_time', $_SERVER['REQUEST_TIME']);
  1718. }