]> git.mxchange.org Git - friendica.git/blob - mod/install.php
Merge branch 'master' of github.com:fabrixxm/friendika
[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
16         require_once("dba.php");
17         unset($db);
18         $db = new dba($dbhost, $dbuser, $dbpass, $dbdata, true);
19
20         if(mysqli_connect_errno()) {
21                 unset($db);
22                 $db = new dba($dbhost, $dbuser, $dbpass, '', true);
23                 if(! mysqli_connect_errno()) {
24                         $r = q("CREATE DATABASE '%s'",
25                                         dbesc($dbdata)
26                         );
27                         if($r) {
28                                 unset($db);
29                                 $db = new dba($dbhost, $dbuser, $dbpass, $dbdata, true);
30                         }
31                 }
32                 if(mysqli_connect_errno()) {
33                         notice( t('Could not create/connect to database.') . EOL);
34                         return;
35                 }
36         }
37
38         notice( t('Connected to database.') . EOL);
39
40         $tpl = load_view_file('view/htconfig.tpl');
41         $txt = replace_macros($tpl,array(
42                 '$dbhost' => $dbhost,
43                 '$dbuser' => $dbuser,
44                 '$dbpass' => $dbpass,
45                 '$dbdata' => $dbdata,
46                 '$timezone' => $timezone,
47                 '$urlpath' => $urlpath,
48                 '$phpath' => $phpath
49         ));
50         $result = file_put_contents('.htconfig.php', $txt);
51         if(! $result) {
52                 $a->data = $txt;
53         }
54
55         $errors = load_database($db);
56
57         if($errors)
58                 $a->data['db_failed'] = true;
59         else
60                 $a->data['db_installed'] = true;
61
62         return;
63 }
64
65
66 function install_content(&$a) {
67
68         global $db;
69         $o = '';
70         
71         if(x($a->data,'db_installed')) {
72                 $o .= '<h2>' . t('Proceed with Installation') . '</h2>';
73                 $o .= '<p style="font-size: 130%;">';
74                 $o .= t('Your Friendika site database has been installed.') . EOL;
75                 $o .= t('IMPORTANT: You will need to [manually] setup a scheduled task for the poller.') . EOL ;
76                 $o .= t('Please see the file "INSTALL.txt".') . EOL ;
77                 $o .= '<br />';
78                 $o .= '<a href="' . $a->get_baseurl() . '/register' . '">' . t('Proceed to registration') . '</a>' ;
79                 $o .= '</p>';
80                 return $o;
81         }
82
83         if(x($a->data,'db_failed')) {
84                 $o .= t('Database import failed.') . EOL;
85                 $o .= t('You may need to import the file "database.sql" manually using phpmyadmin or mysql.') . EOL;
86                 $o .= t('Please see the file "INSTALL.txt".') . EOL ;
87                 return $o;
88         }
89
90         if($db && $db->connected) {
91                 $r = q("SELECT COUNT(*) as `total` FROM `user`");
92                 if($r && count($r) && $r[0]['total']) {
93                         notice( t('Permission denied.') . EOL);
94                         return '';
95                 }
96         }
97
98         notice( t('Welcome to Friendika.') . EOL);
99
100
101         check_funcs();
102
103         $o .= check_htconfig();
104         if(strlen($o))
105                 return $o;
106
107         if(strlen($a->data)) {
108                 $o .= manual_config($a);
109                 return;
110         }
111
112         $o .= check_php($phpath);
113
114         $o .= check_keys();
115
116
117         require_once('datetime.php');
118
119         $tpl = load_view_file('view/install_db.tpl');
120         $o .= replace_macros($tpl, array(
121                 '$baseurl' => $a->get_baseurl(),
122                 '$tzselect' => ((x($_POST,'timezone')) ? select_timezone($_POST['timezone']) : select_timezone()),
123                 '$submit' => t('Submit'),
124                 '$dbhost' => ((x($_POST,'dbhost')) ? notags(trim($_POST['dbhost'])) : 'localhost'),
125                 '$dbuser' => notags(trim($_POST['dbuser'])),
126                 '$dbpass' => notags(trim($_POST['dbpass'])),
127                 '$dbdata' => notags(trim($_POST['dbdata'])),
128                 '$phpath' => $phpath
129         ));
130
131         return $o;
132 }
133
134 function check_php(&$phpath) {
135         $o = '';
136         $phpath = trim(shell_exec('which php'));
137         if(! strlen($phpath)) {
138                 $o .= t('Could not find a command line version of PHP in the web server PATH.') . EOL;
139                 $o .= t('This is required. Please adjust the configuration file .htconfig.php accordingly.') . EOL;
140         }
141         if(strlen($phpath)) {
142                 $str = autoname(8);
143                 $cmd = "$phpath testargs.php $str";
144                 $result = trim(shell_exec($cmd));
145                 if($result != $str) {
146                         $o .= t('The command line version of PHP on your system does not have "register_argc_argv" enabled.') . EOL;
147                         $o .= t('This is required for message delivery to work.') . EOL;
148                 }
149         }
150         return $o;
151
152 }
153
154 function check_keys() {
155
156         $o = '';
157
158         $res = false;
159
160         if(function_exists('openssl_pkey_new')) 
161                 $res=openssl_pkey_new(array(
162                 'digest_alg' => 'sha1',
163                 'private_key_bits' => 4096,
164                 'encrypt_key' => false ));
165
166         // Get private key
167
168         if(! $res) {
169                 $o .= t('Error: the "openssl_pkey_new" function on this system is not able to generate encryption keys') . EOL;
170                 $o .= t('If running under Windows, please see "http://www.php.net/manual/en/openssl.installation.php".') . EOL;
171         }
172         return $o;
173
174 }
175
176
177 function check_funcs() {
178         if((function_exists('apache_get_modules')) && (! in_array('mod_rewrite',apache_get_modules())))
179                 notice( t('Error: Apache webserver mod-rewrite module is required but not installed.') . EOL);
180         if(! function_exists('curl_init')) 
181                 notice( t('Error: libCURL PHP module required but not installed.') . EOL);
182         if(! function_exists('imagecreatefromjpeg')) 
183                 notice( t('Error: GD graphics PHP module with JPEG support required but not installed.') . EOL);
184         if(! function_exists('openssl_public_encrypt')) 
185                 notice( t('Error: openssl PHP module required but not installed.') . EOL);      
186         if(! function_exists('mysqli_connect')) 
187                 notice( t('Error: mysqli PHP module required but not installed.') . EOL);       
188         if((x($_SESSION,'sysmsg')) && strlen($_SESSION['sysmsg']))
189                 notice( t('Please see the file "INSTALL.txt".') . EOL);
190 }
191
192
193 function check_htconfig() {
194
195         if(((file_exists('.htconfig.php')) && (! is_writable('.htconfig.php')))
196                 || (! is_writable('.'))) {
197
198                 $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.');
199                 $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.');
200                 $o .= t('Please check with your site documentation or support people to see if this situation can be corrected.');
201                 $o .= t('If not, you may be required to perform a manual installation. Please see the file "INSTALL.txt" for instructions.'); 
202         }
203
204         return $o;
205 }
206
207         
208 function manual_config(&$a) {
209         $data = htmlentities($a->data);
210         $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.');
211         $o .= "<textarea rows=\"24\" cols=\"80\" >$data</textarea>";
212         return $o;
213 }
214
215
216 function load_database($db) {
217
218         $str = file_get_contents('database.sql');
219         $arr = explode(';',$str);
220         $errors = 0;
221         foreach($arr as $a) {
222                 if(strlen(trim($a))) {  
223                         $r = @$db->q(trim($a));
224                         if(! $r) {
225                                 notice( t('Errors encountered creating database tables.') . $a . EOL);
226                                 $errors ++;
227                         }
228                 }
229         }
230         return $errors;
231 }