]> git.mxchange.org Git - friendica.git/blob - mod/install.php
Merge pull request #139 from fabrixxm/update
[friendica.git] / mod / install.php
1 <?php
2
3
4 function install_post(&$a) {
5
6         global $db;
7
8         $urlpath = $a->get_path();
9         $dbhost = notags(trim($_POST['dbhost']));
10         $dbuser = notags(trim($_POST['dbuser']));
11         $dbpass = notags(trim($_POST['dbpass']));
12         $dbdata = notags(trim($_POST['dbdata']));
13         $timezone = notags(trim($_POST['timezone']));
14         $phpath = notags(trim($_POST['phpath']));
15         $adminmail = notags(trim($_POST['adminmail']));
16
17         require_once("dba.php");
18         unset($db);
19         $db = new dba($dbhost, $dbuser, $dbpass, $dbdata, true);
20
21         if(mysqli_connect_errno()) {
22                 unset($db);
23                 $db = new dba($dbhost, $dbuser, $dbpass, '', true);
24                 if(! mysqli_connect_errno()) {
25                         $r = q("CREATE DATABASE '%s'",
26                                         dbesc($dbdata)
27                         );
28                         if($r) {
29                                 unset($db);
30                                 $db = new dba($dbhost, $dbuser, $dbpass, $dbdata, true);
31                         }
32                 }
33                 if(mysqli_connect_errno()) {
34                         notice( t('Could not create/connect to database.') . EOL);
35                         return;
36                 }
37         }
38
39         info( t('Connected to database.') . EOL);
40
41         $tpl = get_intltext_template('htconfig.tpl');
42         $txt = replace_macros($tpl,array(
43                 '$dbhost' => $dbhost,
44                 '$dbuser' => $dbuser,
45                 '$dbpass' => $dbpass,
46                 '$dbdata' => $dbdata,
47                 '$timezone' => $timezone,
48                 '$urlpath' => $urlpath,
49                 '$phpath' => $phpath,
50                 '$adminmail' => $adminmail
51         ));
52
53         $result = file_put_contents('.htconfig.php', $txt);
54         if(! $result) {
55                 $a->data = $txt;
56         }
57
58         $errors = load_database($db);
59
60         if($errors)
61                 $a->data['db_failed'] = true;
62         else
63                 $a->data['db_installed'] = true;
64
65         return;
66 }
67
68
69 function install_content(&$a) {
70
71         global $db;
72         $o = '';
73         
74         if(x($a->data,'db_installed')) {
75                 $o .= '<h2>' . t('Proceed with Installation') . '</h2>';
76                 $o .= '<p style="font-size: 130%;">';
77                 $o .= t('Your Friendika site database has been installed.') . EOL;
78                 $o .= t('IMPORTANT: You will need to [manually] setup a scheduled task for the poller.') . EOL ;
79                 $o .= t('Please see the file "INSTALL.txt".') . EOL ;
80                 $o .= '<br />';
81                 $o .= '<a href="' . $a->get_baseurl() . '/register' . '">' . t('Proceed to registration') . '</a>' ;
82                 $o .= '</p>';
83                 return $o;
84         }
85
86         if(x($a->data,'db_failed')) {
87                 $o .= t('Database import failed.') . EOL;
88                 $o .= t('You may need to import the file "database.sql" manually using phpmyadmin or mysql.') . EOL;
89                 $o .= t('Please see the file "INSTALL.txt".') . EOL ;
90                 return $o;
91         }
92
93         if($db && $db->connected) {
94                 $r = q("SELECT COUNT(*) as `total` FROM `user`");
95                 if($r && count($r) && $r[0]['total']) {
96                         notice( t('Permission denied.') . EOL);
97                         return '';
98                 }
99         }
100
101         info( t('Welcome to Friendika.') . EOL);
102
103
104         check_funcs();
105
106         $o .= check_htconfig();
107         if(strlen($o))
108                 return $o;
109
110         if(strlen($a->data)) {
111                 $o .= manual_config($a);
112                 return;
113         }
114
115         $o .= check_php($phpath);
116
117         $o .= check_keys();
118
119
120         require_once('datetime.php');
121
122         $tpl = get_markup_template('install_db.tpl');
123         $o .= replace_macros($tpl, array(
124                 '$lbl_01' => t('Friendika Social Network'),
125                 '$lbl_02' => t('Installation'),
126                 '$lbl_03' => t('In order to install Friendika we need to know how to contact your database.'),
127                 '$lbl_04' => t('Please contact your hosting provider or site administrator if you have questions about these settings.'),
128                 '$lbl_05' => t('The database you specify below must already exist. If it does not, please create it before continuing.'),
129                 '$lbl_06' => t('Database Server Name'),
130                 '$lbl_07' => t('Database Login Name'),
131                 '$lbl_08' => t('Database Login Password'),
132                 '$lbl_09' => t('Database Name'),
133                 '$lbl_10' => t('Please select a default timezone for your website'),
134                 '$lbl_11' => t('Site administrator email address. Your account email address will need match this.'), 
135                 '$baseurl' => $a->get_baseurl(),
136                 '$tzselect' => ((x($_POST,'timezone')) ? select_timezone($_POST['timezone']) : select_timezone()),
137                 '$submit' => t('Submit'),
138                 '$dbhost' => ((x($_POST,'dbhost')) ? notags(trim($_POST['dbhost'])) : 'localhost'),
139                 '$dbuser' => notags(trim($_POST['dbuser'])),
140                 '$dbpass' => notags(trim($_POST['dbpass'])),
141                 '$dbdata' => notags(trim($_POST['dbdata'])),
142                 '$phpath' => $phpath,
143                 '$adminmail' => notags(trim($_POST['adminmail']))
144         ));
145
146         return $o;
147 }
148
149 function check_php(&$phpath) {
150         $o = '';
151         $phpath = trim(shell_exec('which php'));
152         if(! strlen($phpath)) {
153                 $o .= t('Could not find a command line version of PHP in the web server PATH.') . EOL;
154                 $o .= t('This is required. Please adjust the configuration file .htconfig.php accordingly.') . EOL;
155         }
156         if(strlen($phpath)) {
157                 $str = autoname(8);
158                 $cmd = "$phpath testargs.php $str";
159                 $result = trim(shell_exec($cmd));
160                 if($result != $str) {
161                         $o .= t('The command line version of PHP on your system does not have "register_argc_argv" enabled.') . EOL;
162                         $o .= t('This is required for message delivery to work.') . EOL;
163                 }
164         }
165         return $o;
166
167 }
168
169 function check_keys() {
170
171         $o = '';
172
173         $res = false;
174
175         if(function_exists('openssl_pkey_new')) 
176                 $res=openssl_pkey_new(array(
177                 'digest_alg' => 'sha1',
178                 'private_key_bits' => 4096,
179                 'encrypt_key' => false ));
180
181         // Get private key
182
183         if(! $res) {
184                 $o .= t('Error: the "openssl_pkey_new" function on this system is not able to generate encryption keys') . EOL;
185                 $o .= t('If running under Windows, please see "http://www.php.net/manual/en/openssl.installation.php".') . EOL;
186         }
187         return $o;
188
189 }
190
191
192 function check_funcs() {
193         if((function_exists('apache_get_modules')) && (! in_array('mod_rewrite',apache_get_modules())))
194                 notice( t('Error: Apache webserver mod-rewrite module is required but not installed.') . EOL);
195         if(! function_exists('curl_init')) 
196                 notice( t('Error: libCURL PHP module required but not installed.') . EOL);
197         if(! function_exists('imagecreatefromjpeg')) 
198                 notice( t('Error: GD graphics PHP module with JPEG support required but not installed.') . EOL);
199         if(! function_exists('openssl_public_encrypt')) 
200                 notice( t('Error: openssl PHP module required but not installed.') . EOL);      
201         if(! function_exists('mysqli_connect')) 
202                 notice( t('Error: mysqli PHP module required but not installed.') . EOL);
203         if(! function_exists('mb_strlen'))
204                 notice( t('Error: mb_string PHP module required but not installed.') . EOL);
205         
206         if((x($_SESSION,'sysmsg')) && strlen($_SESSION['sysmsg']))
207                 notice( t('Please see the file "INSTALL.txt".') . EOL);
208 }
209
210
211 function check_htconfig() {
212
213         if(((file_exists('.htconfig.php')) && (! is_writable('.htconfig.php')))
214                 || (! is_writable('.'))) {
215
216                 $o = t('The web installer needs to be able to create a file called ".htconfig.php" in the top folder of your web server and it is unable to do so.');
217                 $o .= t('This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can.');
218                 $o .= t('Please check with your site documentation or support people to see if this situation can be corrected.');
219                 $o .= t('If not, you may be required to perform a manual installation. Please see the file "INSTALL.txt" for instructions.'); 
220         }
221
222         return $o;
223 }
224
225         
226 function manual_config(&$a) {
227         $data = htmlentities($a->data);
228         $o = t('The database configuration file ".htconfig.php" could not be written. Please use the enclosed text to create a configuration file in your web server root.');
229         $o .= "<textarea rows=\"24\" cols=\"80\" >$data</textarea>";
230         return $o;
231 }
232
233
234 function load_database($db) {
235
236         $str = file_get_contents('database.sql');
237         $arr = explode(';',$str);
238         $errors = 0;
239         foreach($arr as $a) {
240                 if(strlen(trim($a))) {  
241                         $r = @$db->q(trim($a));
242                         if(! $r) {
243                                 notice( t('Errors encountered creating database tables.') . $a . EOL);
244                                 $errors ++;
245                         }
246                 }
247         }
248         return $errors;
249 }