]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/DomainStatusNetwork/domainstatusnetworkinstaller.php
Merge branch '1.0.x' into testing
[quix0rs-gnu-social.git] / plugins / DomainStatusNetwork / domainstatusnetworkinstaller.php
1 <?php
2 /**
3  * StatusNet - the distributed open-source microblogging tool
4  * Copyright (C) 2011, StatusNet, Inc.
5  *
6  * Installer class for domain-based multi-homing systems
7  *
8  * PHP version 5
9  *
10  * This program is free software: you can redistribute it and/or modify
11  * it under the terms of the GNU Affero General Public License as published by
12  * the Free Software Foundation, either version 3 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU Affero General Public License for more details.
19  *
20  * You should have received a copy of the GNU Affero General Public License
21  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
22  *
23  * @category  DomainStatusNetwork
24  * @package   StatusNet
25  * @author    Evan Prodromou <evan@status.net>
26  * @copyright 2011 StatusNet, Inc.
27  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
28  * @link      http://status.net/
29  */
30
31 if (!defined('STATUSNET')) {
32     // This check helps protect against security problems;
33     // your code file can't be executed directly from the web.
34     exit(1);
35 }
36
37 /**
38  * Installer class for domain-based multi-homing systems
39  *
40  * @category  DomainStatusNetwork
41  * @package   StatusNet
42  * @author    Evan Prodromou <evan@status.net>
43  * @copyright 2011 StatusNet, Inc.
44  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
45  * @link      http://status.net/
46  */
47 class DomainStatusNetworkInstaller extends Installer
48 {
49     protected $domain   = null;
50     protected $rootname = null;
51     protected $sitedb   = null;
52     protected $rootpass = null;
53     protected $nickname = null;
54     protected $sn       = null;
55
56     public $verbose     = false;
57
58     function __construct($domain)
59     {
60         $this->domain = $domain;
61     }
62
63     /**
64      * Go for it!
65      * @return boolean success
66      */
67     function main()
68     {
69         // We don't check prereqs. Check 'em before setting up a
70         // multi-home system, kthxbi
71         if ($this->prepare()) {
72             return $this->handle();
73         } else {
74             $this->showHelp();
75             return false;
76         }
77     }
78
79     /**
80      * Get our input parameters...
81      * @return boolean success
82      */
83     function prepare()
84     {
85         $config = $this->getConfig();
86
87         $this->nickname = DomainStatusNetworkPlugin::nicknameForDomain($this->domain);
88
89         // XXX make this configurable
90
91         $this->sitename = sprintf('The %s Status Network', $this->domain);
92
93         $this->server   = $this->nickname.'.'.$config['WILDCARD'];
94         $this->path     = null;
95         $this->fancy    = true;
96
97         $datanick = $this->databaseize($this->nickname);
98
99         $this->host     = $config['DBHOSTNAME'];
100         $this->database = $datanick.$config['DBBASE'];
101         $this->dbtype   = 'mysql'; // XXX: support others... someday
102         $this->username = $datanick.$config['USERBASE'];
103
104         // Max size for MySQL
105
106         if (strlen($this->username) > 16) {
107             $this->username = sprintf('%s%08x', substr($this->username, 0, 8), crc32($this->username));
108         }
109
110         $pwgen = $config['PWDGEN'];
111
112         $password = `$pwgen`;
113
114         $this->password = trim($password);
115
116         // For setting up the database
117
118         $this->rootname = $config['ADMIN'];
119         $this->rootpass = $config['ADMINPASS'];
120         $this->sitehost = $config['DBHOST'];
121         $this->sitedb   = $config['SITEDB'];
122
123         $tagstr = $config['TAGS'];
124
125         if (!empty($tagstr)) {
126             $this->tags = preg_split('/[\s,]+/', $tagstr);
127         } else {
128             $this->tags = array();
129         }
130
131         // Explicitly empty
132
133         $this->adminNick    = null;
134         $this->adminPass    = null;
135         $this->adminEmail   = null;
136         $this->adminUpdates = null;
137
138         /** Should we skip writing the configuration file? */
139         $this->skipConfig = true;
140
141         if (!$this->validateDb()) {
142             return false;
143         }
144
145         return true;
146     }
147
148     function handle()
149     {
150         return $this->doInstall();
151     }
152
153     function setupDatabase()
154     {
155         $this->updateStatus('Creating database...');
156         $this->createDatabase();
157         parent::setupDatabase();
158         $this->updateStatus('Creating file directories...');
159         $this->createDirectories();
160         $this->updateStatus('Saving status network...');
161         $this->saveStatusNetwork();
162         $this->updateStatus('Checking schema for plugins...');
163         $this->checkSchema();
164     }
165
166     function saveStatusNetwork()
167     {
168         Status_network::setupDB($this->sitehost,
169                                 $this->rootname,
170                                 $this->rootpass,
171                                 $this->sitedb, array());
172
173         $sn = new Status_network();
174
175         $sn->nickname = $this->nickname;
176         $sn->dbhost   = $this->host;
177         $sn->dbuser   = $this->username;
178         $sn->dbpass   = $this->password;
179         $sn->dbname   = $this->database;
180         $sn->sitename = $this->sitename;
181
182         $result = $sn->insert();
183
184         if (!$result) {
185             throw new ServerException("Could not create status_network: " . print_r($sn, true));
186         }
187
188         // Re-fetch; stupid auto-increment integer isn't working
189
190         $sn = Status_network::staticGet('nickname', $sn->nickname);
191
192         if (empty($sn)) {
193             throw new ServerException("Created {$this->nickname} status_network and could not find it again.");
194         }
195
196         // Set default tags
197
198         $tags = $this->tags;
199
200         // Add domain tag
201
202         $tags[] = 'domain='.$this->domain;
203
204         $sn->setTags($tags);
205
206         $this->sn = $sn;
207     }
208
209     function checkSchema()
210     {
211         $config = $this->getConfig();
212
213         Status_network::$wildcard = $config['WILDCARD'];
214
215         StatusNet::switchSite($this->nickname);
216
217         // We need to initialize the schema_version stuff to make later setup easier
218
219         $schema = array();
220         require INSTALLDIR.'/db/core.php';
221         $tableDefs = $schema;
222
223         $schema = Schema::get();
224         $schemaUpdater = new SchemaUpdater($schema);
225
226         foreach ($tableDefs as $table => $def) {
227             $schemaUpdater->register($table, $def);
228         }
229
230         $schemaUpdater->checkSchema();
231
232         Event::handle('CheckSchema');
233     }
234
235     function getStatusNetwork()
236     {
237         return $this->sn;
238     }
239
240     function createDirectories()
241     {
242         $config = $this->getConfig();
243
244         foreach (array('AVATARBASE', 'BACKGROUNDBASE', 'FILEBASE') as $key) {
245             $base = $config[$key];
246             $dirname = $base.'/'.$this->nickname;
247
248             // Make sure our bits are set
249             $mask = umask(0);
250             mkdir($dirname, 0770, true);
251             umask($mask);
252
253             // If you set the setuid bit on your base dirs this should be
254             // unnecessary, but just in case. You must be root for this
255             // to work.
256
257             if (array_key_exists('WEBUSER', $config)) {
258                 chown($dirname, $config['WEBUSER']);
259             }
260             if (array_key_exists('WEBGROUP', $config)) {
261                 chgrp($dirname, $config['WEBGROUP']);
262             }
263         }
264     }
265
266     function createDatabase()
267     {
268         // Create the New DB
269         $res = mysql_connect($this->host, $this->rootname, $this->rootpass);
270         if (!$res) {
271             throw new ServerException("Cannot connect to {$this->host} as {$this->rootname}.");
272         }
273
274         mysql_query("CREATE DATABASE ". mysql_real_escape_string($this->database), $res);
275
276         $return = mysql_select_db($this->database, $res);
277
278         if (!$return) {
279             throw new ServerException("Unable to connect to {$this->database} on {$this->host}.");
280         }
281
282         foreach (array('localhost', '%') as $src) {
283             mysql_query("GRANT ALL ON " .
284                         mysql_real_escape_string($this->database).".* TO '" .
285                         $this->username . "'@'".$src."' ".
286                         "IDENTIFIED BY '".$this->password."'", $res);
287         }
288
289         mysql_close($res);
290     }
291
292     function getConfig()
293     {
294         static $config;
295
296         $cfg_file = "/etc/statusnet/setup.cfg";
297
298         if (empty($config)) {
299             $result = parse_ini_file($cfg_file);
300
301             $config = array();
302             foreach ($result as $key => $value) {
303                 $key = str_replace('export ', '', $key);
304                 $config[$key] = $value;
305             }
306         }
307
308         return $config;
309     }
310
311     function showHelp()
312     {
313     }
314
315     function warning($message, $submessage='')
316     {
317         print $this->html2text($message) . "\n";
318         if ($submessage != '') {
319             print "  " . $this->html2text($submessage) . "\n";
320         }
321         print "\n";
322     }
323
324     function updateStatus($status, $error=false)
325     {
326         if ($this->verbose || $error) {
327             if ($error) {
328                 print "ERROR: ";
329             }
330             print $this->html2text($status);
331             print "\n";
332         }
333     }
334
335     private function html2text($html)
336     {
337         // break out any links for text legibility
338         $breakout = preg_replace('/<a[^>+]\bhref="(.*)"[^>]*>(.*)<\/a>/',
339                                  '\2 &lt;\1&gt;',
340                                  $html);
341         return html_entity_decode(strip_tags($breakout), ENT_QUOTES, 'UTF-8');
342     }
343
344     function databaseize($nickname)
345     {
346         $nickname = str_replace('-', '_', $nickname);
347         return $nickname;
348     }
349 }