]> git.mxchange.org Git - friendica.git/blob - mod/install.php
moving boot::check_addons to Friendica\Core\Addon::check
[friendica.git] / mod / install.php
1 <?php
2 /**
3  * @file mod/install.php
4  */
5
6 use Friendica\App;
7 use Friendica\Core\Install;
8 use Friendica\Core\L10n;
9 use Friendica\Core\System;
10 use Friendica\Database\DBA;
11 use Friendica\Util\Temporal;
12
13 $install_wizard_pass = 1;
14
15 function install_init(App $a) {
16
17         // $baseurl/install/testrwrite to test if rewite in .htaccess is working
18         if ($a->argc == 2 && $a->argv[1] == "testrewrite") {
19                 echo "ok";
20                 killme();
21         }
22
23         // We overwrite current theme css, because during install we could not have a working mod_rewrite
24         // so we could not have a css at all. Here we set a static css file for the install procedure pages
25
26         $a->setConfigValue('system', 'value', '../install');
27         $a->theme['stylesheet'] = System::baseUrl()."/view/install/style.css";
28
29         global $install_wizard_pass;
30         if (x($_POST, 'pass')) {
31                 $install_wizard_pass = intval($_POST['pass']);
32         }
33
34 }
35
36 function install_post(App $a) {
37         global $install_wizard_pass;
38
39         switch($install_wizard_pass) {
40                 case 1:
41                 case 2:
42                         return;
43                         break; // just in case return don't return :)
44                 case 3:
45                         $urlpath = $a->get_path();
46                         $dbhost = notags(trim($_POST['dbhost']));
47                         $dbuser = notags(trim($_POST['dbuser']));
48                         $dbpass = notags(trim($_POST['dbpass']));
49                         $dbdata = notags(trim($_POST['dbdata']));
50                         $phpath = notags(trim($_POST['phpath']));
51
52                         require_once("include/dba.php");
53                         if (!DBA::connect($dbhost, $dbuser, $dbpass, $dbdata)) {
54                                 $a->data['db_conn_failed'] = true;
55                         }
56
57                         return;
58                         break;
59                 case 4:
60                         $urlpath = $a->get_path();
61                         $dbhost = notags(trim($_POST['dbhost']));
62                         $dbuser = notags(trim($_POST['dbuser']));
63                         $dbpass = notags(trim($_POST['dbpass']));
64                         $dbdata = notags(trim($_POST['dbdata']));
65                         $phpath = notags(trim($_POST['phpath']));
66                         $timezone = notags(trim($_POST['timezone']));
67                         $language = notags(trim($_POST['language']));
68                         $adminmail = notags(trim($_POST['adminmail']));
69
70                         // connect to db
71                         DBA::connect($dbhost, $dbuser, $dbpass, $dbdata);
72
73                         $errors = Install::createConfig($urlpath, $dbhost, $dbuser, $dbpass, $dbdata, $phpath, $timezone, $language, $adminmail);
74
75                         if ($errors) {
76                                 $a->data['db_failed'] = $errors;
77                                 return;
78                         }
79
80                         $errors = Install::installDatabaseStructure();
81
82                         if ($errors) {
83                                 $a->data['db_failed'] = $errors;
84                         } else {
85                                 $a->data['db_installed'] = true;
86                         }
87
88                         return;
89                 break;
90         }
91 }
92
93 function install_content(App $a) {
94
95         global $install_wizard_pass;
96         $o = '';
97         $wizard_status = "";
98         $install_title = L10n::t('Friendica Communications Server - Setup');
99
100
101
102         if (x($a->data, 'db_conn_failed')) {
103                 $install_wizard_pass = 2;
104                 $wizard_status = L10n::t('Could not connect to database.');
105         }
106         if (x($a->data, 'db_create_failed')) {
107                 $install_wizard_pass = 2;
108                 $wizard_status = L10n::t('Could not create table.');
109         }
110
111         $db_return_text = "";
112         if (x($a->data, 'db_installed')) {
113                 $txt = '<p style="font-size: 130%;">';
114                 $txt .= L10n::t('Your Friendica site database has been installed.') . EOL;
115                 $db_return_text .= $txt;
116         }
117
118         if (x($a->data, 'db_failed')) {
119                 $txt = L10n::t('You may need to import the file "database.sql" manually using phpmyadmin or mysql.') . EOL;
120                 $txt .= L10n::t('Please see the file "INSTALL.txt".') . EOL ."<hr>";
121                 $txt .= "<pre>".$a->data['db_failed'] . "</pre>". EOL;
122                 $db_return_text .= $txt;
123         }
124
125         if (DBA::$connected) {
126                 $r = q("SELECT COUNT(*) as `total` FROM `user`");
127                 if (DBA::isResult($r) && $r[0]['total']) {
128                         $install_wizard_pass = 2;
129                         $wizard_status = L10n::t('Database already in use.');
130                 }
131         }
132
133         if (x($a->data, 'txt') && strlen($a->data['txt'])) {
134                 $db_return_text .= manual_config($a);
135         }
136
137         if ($db_return_text != "") {
138                 $tpl = get_markup_template('install.tpl');
139                 return replace_macros($tpl, [
140                         '$title' => $install_title,
141                         '$pass' => "",
142                         '$text' => $db_return_text . what_next(),
143                 ]);
144         }
145
146         switch ($install_wizard_pass) {
147                 case 1: { // System check
148
149                         $phpath = defaults($_POST, 'phpath', 'php');
150
151                         list($checks, $checkspassed) = Install::check($phpath);
152
153                         $tpl = get_markup_template('install_checks.tpl');
154                         $o .= replace_macros($tpl, [
155                                 '$title' => $install_title,
156                                 '$pass' => L10n::t('System check'),
157                                 '$checks' => $checks,
158                                 '$passed' => $checkspassed,
159                                 '$see_install' => L10n::t('Please see the file "INSTALL.txt".'),
160                                 '$next' => L10n::t('Next'),
161                                 '$reload' => L10n::t('Check again'),
162                                 '$phpath' => $phpath,
163                                 '$baseurl' => System::baseUrl(),
164                         ]);
165                         return $o;
166                 }; break;
167
168                 case 2: { // Database config
169
170                         $dbhost    = notags(trim(defaults($_POST, 'dbhost'   , 'localhost')));
171                         $dbuser    = notags(trim(defaults($_POST, 'dbuser'   , ''         )));
172                         $dbpass    = notags(trim(defaults($_POST, 'dbpass'   , ''         )));
173                         $dbdata    = notags(trim(defaults($_POST, 'dbdata'   , ''         )));
174                         $phpath    = notags(trim(defaults($_POST, 'phpath'   , ''         )));
175                         $adminmail = notags(trim(defaults($_POST, 'adminmail', ''         )));
176
177                         $tpl = get_markup_template('install_db.tpl');
178                         $o .= replace_macros($tpl, [
179                                 '$title' => $install_title,
180                                 '$pass' => L10n::t('Database connection'),
181                                 '$info_01' => L10n::t('In order to install Friendica we need to know how to connect to your database.'),
182                                 '$info_02' => L10n::t('Please contact your hosting provider or site administrator if you have questions about these settings.'),
183                                 '$info_03' => L10n::t('The database you specify below should already exist. If it does not, please create it before continuing.'),
184
185                                 '$status' => $wizard_status,
186
187                                 '$dbhost' => ['dbhost', L10n::t('Database Server Name'), $dbhost, '', 'required'],
188                                 '$dbuser' => ['dbuser', L10n::t('Database Login Name'), $dbuser, '', 'required', 'autofocus'],
189                                 '$dbpass' => ['dbpass', L10n::t('Database Login Password'), $dbpass, L10n::t("For security reasons the password must not be empty"), 'required'],
190                                 '$dbdata' => ['dbdata', L10n::t('Database Name'), $dbdata, '', 'required'],
191                                 '$adminmail' => ['adminmail', L10n::t('Site administrator email address'), $adminmail, L10n::t('Your account email address must match this in order to use the web admin panel.'), 'required', 'autofocus', 'email'],
192
193                                 '$lbl_10' => L10n::t('Please select a default timezone for your website'),
194
195                                 '$baseurl' => System::baseUrl(),
196
197                                 '$phpath' => $phpath,
198
199                                 '$submit' => L10n::t('Submit'),
200                         ]);
201                         return $o;
202                 }; break;
203                 case 3: { // Site settings
204                         $dbhost = ((x($_POST, 'dbhost')) ? notags(trim($_POST['dbhost'])) : 'localhost');
205                         $dbuser = notags(trim($_POST['dbuser']));
206                         $dbpass = notags(trim($_POST['dbpass']));
207                         $dbdata = notags(trim($_POST['dbdata']));
208                         $phpath = notags(trim($_POST['phpath']));
209
210                         $adminmail = notags(trim($_POST['adminmail']));
211                         $timezone = ((x($_POST, 'timezone')) ? ($_POST['timezone']) : 'America/Los_Angeles');
212                         /* Installed langs */
213                         $lang_choices = L10n::getAvailableLanguages();
214
215                         $tpl = get_markup_template('install_settings.tpl');
216                         $o .= replace_macros($tpl, [
217                                 '$title' => $install_title,
218                                 '$pass' => L10n::t('Site settings'),
219
220                                 '$status' => $wizard_status,
221
222                                 '$dbhost' => $dbhost,
223                                 '$dbuser' => $dbuser,
224                                 '$dbpass' => $dbpass,
225                                 '$dbdata' => $dbdata,
226                                 '$phpath' => $phpath,
227
228                                 '$adminmail' => ['adminmail', L10n::t('Site administrator email address'), $adminmail, L10n::t('Your account email address must match this in order to use the web admin panel.'), 'required', 'autofocus', 'email'],
229
230
231                                 '$timezone' => Temporal::getTimezoneField('timezone', L10n::t('Please select a default timezone for your website'), $timezone, ''),
232                                 '$language' => ['language', L10n::t('System Language:'), 'en', L10n::t('Set the default language for your Friendica installation interface and to send emails.'), $lang_choices],
233                                 '$baseurl' => System::baseUrl(),
234
235
236
237                                 '$submit' => L10n::t('Submit'),
238
239                         ]);
240                         return $o;
241                 }; break;
242
243         }
244 }
245
246 function manual_config(App $a) {
247         $data = htmlentities($a->data['txt'],ENT_COMPAT, 'UTF-8');
248         $o = L10n::t('The database configuration file "config/local.ini.php" could not be written. Please use the enclosed text to create a configuration file in your web server root.');
249         $o .= "<textarea rows=\"24\" cols=\"80\" >$data</textarea>";
250         return $o;
251 }
252
253 function load_database_rem($v, $i) {
254         $l = trim($i);
255         if (strlen($l)>1 && ($l[0] == "-" || ($l[0] == "/" && $l[1] == "*"))) {
256                 return $v;
257         } else  {
258                 return $v."\n".$i;
259         }
260 }
261
262 function what_next() {
263         $baseurl = System::baseUrl();
264         return
265                 L10n::t('<h1>What next</h1>')
266                 ."<p>".L10n::t('IMPORTANT: You will need to [manually] setup a scheduled task for the worker.')
267                 .L10n::t('Please see the file "INSTALL.txt".')
268                 ."</p><p>"
269                 .L10n::t('Go to your new Friendica node <a href="%s/register">registration page</a> and register as new user. Remember to use the same email you have entered as administrator email. This will allow you to enter the site admin panel.', $baseurl)
270                 ."</p>";
271 }