2010-04-08 09:47:08 +09:00
< ? php
2019-07-15 09:40:31 +09:00
// This file is part of GNU social - https://www.gnu.org/software/social
//
// GNU social is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// GNU social is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Affero General Public License for more details.
//
// You should have received a copy of the GNU Affero General Public License
// along with GNU social. If not, see <http://www.gnu.org/licenses/>.
2010-04-08 09:47:08 +09:00
/**
2019-07-15 09:40:31 +09:00
* Installation lib
2010-04-08 09:47:08 +09:00
*
2019-07-15 09:40:31 +09:00
* @ package Installation
* @ author Adrian Lang < mail @ adrianlang . de >
* @ author Brenda Wallace < shiny @ cpan . org >
* @ author Brett Taylor < brett @ webfroot . co . nz >
* @ author Brion Vibber < brion @ pobox . com >
* @ author CiaranG < ciaran @ ciarang . com >
* @ author Craig Andrews < candrews @ integralblue . com >
* @ author Eric Helgeson < helfire @ Erics - MBP . local >
* @ author Evan Prodromou < evan @ status . net >
* @ author Mikael Nordfeldth < mmn @ hethane . se >
* @ author Robin Millette < millette @ controlyourself . ca >
* @ author Sarven Capadisli < csarven @ status . net >
* @ author Tom Adams < tom @ holizz . com >
* @ author Zach Copley < zach @ status . net >
* @ author Diogo Cordeiro < diogo @ fc . up . pt >
* @ copyright 2019 Free Software Foundation , Inc http :// www . fsf . org
* @ license https :// www . gnu . org / licenses / agpl . html GNU AGPL v3 or later
2010-04-08 09:47:08 +09:00
*/
abstract class Installer
{
/** Web site info */
2019-07-15 09:40:31 +09:00
public $sitename ;
public $server ;
public $path ;
public $fancy ;
public $siteProfile ;
public $ssl ;
2010-04-08 09:47:08 +09:00
/** DB info */
2019-07-15 09:40:31 +09:00
public $host ;
public $database ;
public $dbtype ;
public $username ;
public $password ;
public $db ;
2018-08-25 11:32:02 +09:00
/** Storage info */
2019-07-15 09:40:31 +09:00
public $avatarDir ;
public $fileDir ;
2010-04-08 09:47:08 +09:00
/** Administrator info */
2019-07-15 09:40:31 +09:00
public $adminNick ;
public $adminPass ;
public $adminEmail ;
2010-04-08 09:47:08 +09:00
/** Should we skip writing the configuration file? */
public $skipConfig = false ;
2019-07-15 09:40:31 +09:00
public static $dbModules = [
'mysql' => [
2019-07-25 08:43:25 +09:00
'name' => 'MariaDB 10.3+' ,
2010-04-20 03:57:12 +09:00
'check_module' => 'mysqli' ,
2010-10-16 04:20:10 +09:00
'scheme' => 'mysqli' , // DSN prefix for PEAR::DB
2019-07-15 09:40:31 +09:00
],
2019-09-11 20:14:40 +09:00
'pgsql' => [
'name' => 'PostgreSQL 11+' ,
2010-04-08 09:47:08 +09:00
'check_module' => 'pgsql' ,
2010-10-16 04:20:10 +09:00
'scheme' => 'pgsql' , // DSN prefix for PEAR::DB
2019-09-11 20:14:40 +09:00
]
2019-07-15 09:40:31 +09:00
];
2010-04-08 09:47:08 +09:00
/**
* Attempt to include a PHP file and report if it worked , while
* suppressing the annoying warning messages on failure .
2019-07-15 09:40:31 +09:00
* @ param string $filename
* @ return bool
2010-04-08 09:47:08 +09:00
*/
2019-07-15 09:40:31 +09:00
private function haveIncludeFile ( string $filename ) : bool
{
2010-04-08 09:47:08 +09:00
$old = error_reporting ( error_reporting () & ~ E_WARNING );
$ok = include_once ( $filename );
error_reporting ( $old );
return $ok ;
}
2011-08-27 13:10:24 +09:00
2010-04-08 09:47:08 +09:00
/**
* Check if all is ready for installation
*
2019-07-15 09:40:31 +09:00
* @ return bool
2010-04-08 09:47:08 +09:00
*/
2019-07-15 09:40:31 +09:00
public function checkPrereqs () : bool
2010-04-08 09:47:08 +09:00
{
$pass = true ;
2019-07-15 09:40:31 +09:00
$config = INSTALLDIR . '/config.php' ;
2017-11-27 06:14:30 +09:00
if ( ! $this -> skipConfig && file_exists ( $config )) {
2010-06-04 02:13:28 +09:00
if ( ! is_writable ( $config ) || filesize ( $config ) > 0 ) {
2010-10-13 05:00:03 +09:00
if ( filesize ( $config ) == 0 ) {
$this -> warning ( 'Config file "config.php" already exists and is empty, but is not writable.' );
} else {
$this -> warning ( 'Config file "config.php" already exists.' );
}
2010-06-04 02:13:28 +09:00
$pass = false ;
}
2010-04-08 09:47:08 +09:00
}
2019-07-25 09:29:20 +09:00
if ( version_compare ( PHP_VERSION , '7.3.0' , '<' )) {
$this -> warning ( 'Require PHP version 7.3.0 or greater.' );
2010-04-08 09:47:08 +09:00
$pass = false ;
}
2019-07-15 09:40:31 +09:00
$reqs = [ 'bcmath' , 'curl' , 'dom' , 'gd' , 'intl' , 'json' , 'mbstring' , 'openssl' , 'simplexml' , 'xml' , 'xmlwriter' ];
2010-04-08 09:47:08 +09:00
foreach ( $reqs as $req ) {
2019-07-15 09:40:31 +09:00
// Checks if a php extension is both installed and loaded
if ( ! extension_loaded ( $req )) {
2010-04-08 09:47:08 +09:00
$this -> warning ( sprintf ( 'Cannot load required extension: <code>%s</code>' , $req ));
$pass = false ;
}
}
// Make sure we have at least one database module available
2019-07-15 09:40:31 +09:00
$missingExtensions = [];
2010-04-08 09:47:08 +09:00
foreach ( self :: $dbModules as $type => $info ) {
2019-07-15 09:40:31 +09:00
if ( ! extension_loaded ( $info [ 'check_module' ])) {
2010-04-08 09:47:08 +09:00
$missingExtensions [] = $info [ 'check_module' ];
}
}
if ( count ( $missingExtensions ) == count ( self :: $dbModules )) {
$req = implode ( ', ' , $missingExtensions );
$this -> warning ( sprintf ( 'Cannot find a database extension. You need at least one of %s.' , $req ));
$pass = false ;
}
2010-05-12 04:16:13 +09:00
// @fixme this check seems to be insufficient with Windows ACLs
2017-11-27 06:14:30 +09:00
if ( ! $this -> skipConfig && ! is_writable ( INSTALLDIR )) {
2019-07-15 09:40:31 +09:00
$this -> warning (
sprintf ( 'Cannot write config file to: <code>%s</code></p>' , INSTALLDIR ),
sprintf ( 'On your server, try this command: <code>chmod a+w %s</code>' , INSTALLDIR )
);
2010-04-08 09:47:08 +09:00
$pass = false ;
}
// Check the subdirs used for file uploads
2017-11-27 06:14:30 +09:00
// TODO get another flag for this --skipFileSubdirCreation
if ( ! $this -> skipConfig ) {
2018-08-25 11:32:02 +09:00
define ( 'GNUSOCIAL' , true );
define ( 'STATUSNET' , true );
2019-08-23 21:36:02 +09:00
require_once INSTALLDIR . '/lib/util/language.php' ;
2019-07-15 09:40:31 +09:00
$_server = $this -> server ;
$_path = $this -> path ; // We won't be using those so it's safe to do this small hack
2019-08-23 21:36:02 +09:00
require_once INSTALLDIR . '/lib/util/util.php' ;
require_once INSTALLDIR . '/lib/util/default.php' ;
2019-07-15 09:40:31 +09:00
$fileSubdirs = [
empty ( $this -> avatarDir ) ? $default [ 'avatar' ][ 'dir' ] : $this -> avatarDir ,
empty ( $this -> fileDir ) ? $default [ 'attachments' ][ 'dir' ] : $this -> fileDir
];
2018-08-25 11:32:02 +09:00
unset ( $default );
foreach ( $fileSubdirs as $fileFullPath ) {
if ( ! file_exists ( $fileFullPath )) {
2019-07-15 05:02:38 +09:00
$this -> warning (
sprintf ( 'GNU social was unable to create a directory on this path: %s' , $fileFullPath ),
'Either create that directory with the right permissions so that GNU social can use it or ' .
'set the necessary permissions and it will be created.'
);
2018-08-25 11:32:02 +09:00
$pass = $pass && mkdir ( $fileFullPath );
} elseif ( ! is_dir ( $fileFullPath )) {
2019-07-15 09:40:31 +09:00
$this -> warning (
sprintf ( 'GNU social expected a directory but found something else on this path: %s' , $fileFullPath ),
'Either make sure it goes to a directory or remove it and a directory will be created.'
);
2018-08-25 11:32:02 +09:00
$pass = false ;
} elseif ( ! is_writable ( $fileFullPath )) {
2019-07-15 09:40:31 +09:00
$this -> warning (
sprintf ( 'Cannot write to directory: <code>%s</code>' , $fileFullPath ),
sprintf ( 'On your server, try this command: <code>chmod a+w %s</code>' , $fileFullPath )
);
2018-08-25 11:32:02 +09:00
$pass = false ;
}
2010-04-08 09:47:08 +09:00
}
}
return $pass ;
}
/**
2019-07-15 09:40:31 +09:00
* Basic validation on the database parameters
2010-04-08 09:47:08 +09:00
* Side effects : error output if not valid
2011-08-27 13:10:24 +09:00
*
2019-07-15 09:40:31 +09:00
* @ return bool success
2010-04-08 09:47:08 +09:00
*/
2019-07-15 09:40:31 +09:00
public function validateDb () : bool
2010-04-08 09:47:08 +09:00
{
$fail = false ;
if ( empty ( $this -> host )) {
$this -> updateStatus ( " No hostname specified. " , true );
$fail = true ;
}
if ( empty ( $this -> database )) {
$this -> updateStatus ( " No database specified. " , true );
$fail = true ;
}
if ( empty ( $this -> username )) {
$this -> updateStatus ( " No username specified. " , true );
$fail = true ;
}
if ( empty ( $this -> sitename )) {
$this -> updateStatus ( " No sitename specified. " , true );
$fail = true ;
}
return ! $fail ;
}
/**
2019-07-15 09:40:31 +09:00
* Basic validation on the administrator user parameters
2010-04-08 09:47:08 +09:00
* Side effects : error output if not valid
2011-08-27 13:10:24 +09:00
*
2019-07-15 09:40:31 +09:00
* @ return bool success
2010-04-08 09:47:08 +09:00
*/
2019-07-15 09:40:31 +09:00
public function validateAdmin () : bool
2010-04-08 09:47:08 +09:00
{
$fail = false ;
if ( empty ( $this -> adminNick )) {
2014-03-01 22:14:39 +09:00
$this -> updateStatus ( " No initial user nickname specified. " , true );
2010-04-08 09:47:08 +09:00
$fail = true ;
}
if ( $this -> adminNick && ! preg_match ( '/^[0-9a-z]{1,64}$/' , $this -> adminNick )) {
$this -> updateStatus ( 'The user nickname "' . htmlspecialchars ( $this -> adminNick ) .
2019-07-15 09:40:31 +09:00
'" is invalid; should be plain letters and numbers no longer than 64 characters.' , true );
2010-04-08 09:47:08 +09:00
$fail = true ;
}
2019-07-15 09:40:31 +09:00
2013-10-16 21:58:22 +09:00
// @fixme hardcoded list; should use Nickname::isValid()
2010-04-08 09:47:08 +09:00
// if/when it's safe to have loaded the infrastructure here
2019-07-15 09:40:31 +09:00
$blacklist = [ 'main' , 'panel' , 'twitter' , 'settings' , 'rsd.xml' , 'favorited' , 'featured' , 'favoritedrss' , 'featuredrss' , 'rss' , 'getfile' , 'api' , 'groups' , 'group' , 'peopletag' , 'tag' , 'user' , 'message' , 'conversation' , 'notice' , 'attachment' , 'search' , 'index.php' , 'doc' , 'opensearch' , 'robots.txt' , 'xd_receiver.html' , 'facebook' , 'activity' ];
2010-04-08 09:47:08 +09:00
if ( in_array ( $this -> adminNick , $blacklist )) {
$this -> updateStatus ( 'The user nickname "' . htmlspecialchars ( $this -> adminNick ) .
2019-07-15 09:40:31 +09:00
'" is reserved.' , true );
2010-04-08 09:47:08 +09:00
$fail = true ;
}
if ( empty ( $this -> adminPass )) {
2014-03-01 22:14:39 +09:00
$this -> updateStatus ( " No initial user password specified. " , true );
2010-04-08 09:47:08 +09:00
$fail = true ;
}
return ! $fail ;
}
2011-08-27 13:10:24 +09:00
/**
* Make sure a site profile was selected
*
2019-07-15 09:40:31 +09:00
* @ return bool success
2011-08-27 13:10:24 +09:00
*/
2019-07-15 09:40:31 +09:00
public function validateSiteProfile () : bool
2011-08-27 13:10:24 +09:00
{
2019-07-15 09:40:31 +09:00
if ( empty ( $this -> siteProfile )) {
2011-08-27 13:10:24 +09:00
$this -> updateStatus ( " No site profile selected. " , true );
2013-10-29 00:22:09 +09:00
return false ;
2011-08-27 13:10:24 +09:00
}
2013-10-29 00:22:09 +09:00
return true ;
2011-08-27 13:10:24 +09:00
}
2010-04-08 09:47:08 +09:00
/**
* Set up the database with the appropriate function for the selected type ...
* Saves database info into $this -> db .
2011-08-27 13:10:24 +09:00
*
2010-10-16 04:20:10 +09:00
* @ fixme escape things in the connection string in case we have a funny pass etc
2010-04-08 09:47:08 +09:00
* @ return mixed array of database connection params on success , false on failure
2019-07-15 09:40:31 +09:00
* @ throws Exception
2010-04-08 09:47:08 +09:00
*/
2019-07-15 09:40:31 +09:00
public function setupDatabase ()
2010-04-08 09:47:08 +09:00
{
if ( $this -> db ) {
throw new Exception ( " Bad order of operations: DB already set up. " );
}
$this -> updateStatus ( " Starting installation... " );
2010-10-16 05:47:38 +09:00
if ( empty ( $this -> password )) {
2010-10-16 04:20:10 +09:00
$auth = '' ;
} else {
$auth = " : $this->password " ;
2010-04-08 09:47:08 +09:00
}
2010-10-16 04:20:10 +09:00
$scheme = self :: $dbModules [ $this -> dbtype ][ 'scheme' ];
2010-10-16 05:47:38 +09:00
$dsn = " { $scheme } :// { $this -> username } { $auth } @ { $this -> host } / { $this -> database } " ;
2010-04-08 09:47:08 +09:00
2010-10-16 04:20:10 +09:00
$this -> updateStatus ( " Checking database... " );
$conn = $this -> connectDatabase ( $dsn );
2010-04-08 09:47:08 +09:00
2016-05-24 23:49:50 +09:00
if ( ! $conn instanceof DB_common ) {
// Is not the right instance
throw new Exception ( 'Cannot connect to database: ' . $conn -> getMessage ());
}
2019-09-11 20:14:40 +09:00
switch ( $this -> dbtype ) {
case 'pgsql' :
// ensure the database encoding is UTF8
$conn -> query ( " SET NAMES 'UTF8' " );
$server_encoding = $conn -> getRow ( 'SHOW server_encoding' )[ 0 ];
if ( $server_encoding !== 'UTF8' ) {
$this -> updateStatus (
'GNU social requires the UTF8 character encoding. Yours is ' .
htmlentities ( $server_encoding )
);
return false ;
}
break ;
case 'mysql' :
// ensure the database encoding is utf8mb4
$conn -> query ( " SET NAMES 'utf8mb4' " );
$server_encoding = $conn -> getRow ( " SHOW VARIABLES LIKE 'character_set_server' " )[ 1 ];
if ( $server_encoding !== 'utf8mb4' ) {
$this -> updateStatus (
'GNU social requires the utf8mb4 character encoding. Yours is ' .
htmlentities ( $server_encoding )
);
return false ;
}
break ;
default :
$this -> updateStatus ( 'Unknown DB type selected: ' . $this -> dbtype );
2010-10-16 04:20:10 +09:00
return false ;
}
2010-04-08 09:47:08 +09:00
2010-10-16 04:20:10 +09:00
$res = $this -> updateStatus ( " Creating database tables... " );
if ( ! $this -> createCoreTables ( $conn )) {
$this -> updateStatus ( " Error creating tables. " , true );
2010-04-08 09:47:08 +09:00
return false ;
}
2010-10-16 04:20:10 +09:00
2019-07-15 09:40:31 +09:00
foreach ([ 'sms_carrier' => 'SMS carrier' ,
'notice_source' => 'notice source' ,
'foreign_services' => 'foreign service' ]
as $scr => $name ) {
2010-04-08 09:47:08 +09:00
$this -> updateStatus ( sprintf ( " Adding %s data to database... " , $name ));
2019-07-15 09:40:31 +09:00
$res = $this -> runDbScript ( $scr . '.sql' , $conn );
2010-04-08 09:47:08 +09:00
if ( $res === false ) {
2012-04-03 10:41:37 +09:00
$this -> updateStatus ( sprintf ( " Can't run %s script. " , $name ), true );
2010-04-08 09:47:08 +09:00
return false ;
}
}
2019-07-15 09:40:31 +09:00
$db = [ 'type' => $this -> dbtype , 'database' => $dsn ];
2010-04-08 09:47:08 +09:00
return $db ;
}
/**
2010-10-16 04:20:10 +09:00
* Open a connection to the database .
*
2019-07-15 09:40:31 +09:00
* @ param string $dsn
* @ return DB | DB_Error
2010-04-08 09:47:08 +09:00
*/
2019-07-15 09:40:31 +09:00
public function connectDatabase ( string $dsn )
2010-04-08 09:47:08 +09:00
{
2013-10-05 03:49:07 +09:00
global $_DB ;
return $_DB -> connect ( $dsn );
2010-10-16 04:20:10 +09:00
}
2010-04-08 09:47:08 +09:00
2010-10-16 04:20:10 +09:00
/**
* Create core tables on the given database connection .
*
* @ param DB_common $conn
2019-07-15 09:40:31 +09:00
* @ return bool
2010-10-16 04:20:10 +09:00
*/
2019-07-15 09:40:31 +09:00
public function createCoreTables ( DB_common $conn ) : bool
2010-10-16 04:20:10 +09:00
{
2019-09-11 20:14:40 +09:00
$schema = Schema :: get ( $conn , $this -> dbtype );
2010-10-16 04:20:10 +09:00
$tableDefs = $this -> getCoreSchema ();
foreach ( $tableDefs as $name => $def ) {
2010-10-16 05:47:38 +09:00
if ( defined ( 'DEBUG_INSTALLER' )) {
echo " $name " ;
}
2010-10-16 04:20:10 +09:00
$schema -> ensureTable ( $name , $def );
2010-04-08 09:47:08 +09:00
}
2010-10-30 08:26:45 +09:00
return true ;
2010-10-16 04:20:10 +09:00
}
2010-04-08 09:47:08 +09:00
2010-10-16 04:20:10 +09:00
/**
* Fetch the core table schema definitions .
*
* @ return array of table names => table def arrays
*/
2019-07-15 09:40:31 +09:00
public function getCoreSchema () : array
2010-10-16 04:20:10 +09:00
{
2019-07-15 09:40:31 +09:00
$schema = [];
2010-10-16 04:20:10 +09:00
include INSTALLDIR . '/db/core.php' ;
return $schema ;
2010-04-08 09:47:08 +09:00
}
2010-10-15 08:25:43 +09:00
/**
* Return a parseable PHP literal for the given value .
* This will include quotes for strings , etc .
*
* @ param mixed $val
* @ return string
*/
2019-07-15 09:40:31 +09:00
public function phpVal ( $val ) : string
2010-10-15 08:25:43 +09:00
{
return var_export ( $val , true );
}
/**
* Return an array of parseable PHP literal for the given values .
* These will include quotes for strings , etc .
*
2019-07-15 09:40:31 +09:00
* @ param mixed $map
2010-10-15 08:25:43 +09:00
* @ return array
*/
2019-07-15 09:40:31 +09:00
public function phpVals ( $map ) : array
2010-10-15 08:25:43 +09:00
{
2019-07-15 09:40:31 +09:00
return array_map ([ $this , 'phpVal' ], $map );
2010-10-15 08:25:43 +09:00
}
2010-04-08 09:47:08 +09:00
/**
* Write a stock configuration file .
*
2019-07-15 09:40:31 +09:00
* @ return bool success
2011-08-27 13:10:24 +09:00
*
2010-04-08 09:47:08 +09:00
* @ fixme escape variables in output in case we have funny chars , apostrophes etc
*/
2019-07-15 09:40:31 +09:00
public function writeConf () : bool
2010-04-08 09:47:08 +09:00
{
2019-07-15 09:40:31 +09:00
$vals = $this -> phpVals ([
2010-10-15 08:25:43 +09:00
'sitename' => $this -> sitename ,
'server' => $this -> server ,
'path' => $this -> path ,
2019-07-15 09:40:31 +09:00
'ssl' => in_array ( $this -> ssl , [ 'never' , 'always' ])
? $this -> ssl
: 'never' ,
2010-10-15 08:25:43 +09:00
'db_database' => $this -> db [ 'database' ],
2011-08-28 08:02:00 +09:00
'db_type' => $this -> db [ 'type' ]
2019-07-15 09:40:31 +09:00
]);
2010-10-15 08:25:43 +09:00
2010-04-08 09:47:08 +09:00
// assemble configuration file in a string
2019-07-15 09:40:31 +09:00
$cfg = " <?php \n " .
" if (!defined('GNUSOCIAL')) { exit(1); } \n \n " .
2010-04-08 09:47:08 +09:00
2019-07-15 09:40:31 +09:00
// site name
" \$ config['site']['name'] = { $vals [ 'sitename' ] } ; \n \n " .
2010-04-08 09:47:08 +09:00
2019-07-15 09:40:31 +09:00
// site location
" \$ config['site']['server'] = { $vals [ 'server' ] } ; \n " .
" \$ config['site']['path'] = { $vals [ 'path' ] } ; \n \n " .
" \$ config['site']['ssl'] = { $vals [ 'ssl' ] } ; \n \n " .
2020-03-16 06:37:37 +09:00
( $this -> ssl === 'proxy' ? " \$ config['site']['sslproxy'] = true; \n \n " : '' ) .
2010-04-08 09:47:08 +09:00
2019-07-15 09:40:31 +09:00
// checks if fancy URLs are enabled
( $this -> fancy ? " \$ config['site']['fancy'] = true; \n \n " : '' ) .
2010-04-08 09:47:08 +09:00
2019-07-15 09:40:31 +09:00
// database
" \$ config['db']['database'] = { $vals [ 'db_database' ] } ; \n \n " .
" \$ config['db']['type'] = { $vals [ 'db_type' ] } ; \n \n " .
2015-05-04 06:07:31 +09:00
2019-07-15 09:40:31 +09:00
" // Uncomment below for better performance. Just remember you must run \n " .
" // php scripts/checkschema.php whenever your enabled plugins change! \n " .
" // \$ config['db']['schemacheck'] = 'script'; \n \n " ;
2011-08-28 08:02:00 +09:00
// Normalize line endings for Windows servers
$cfg = str_replace ( " \n " , PHP_EOL , $cfg );
2011-08-27 13:10:24 +09:00
2011-08-28 08:02:00 +09:00
// write configuration file out to install directory
2019-09-11 14:15:16 +09:00
$res = file_put_contents ( INSTALLDIR . DIRECTORY_SEPARATOR . 'config.php' , $cfg );
2011-08-28 08:02:00 +09:00
return $res ;
}
/**
* Write the site profile . We do this after creating the initial user
* in case the site profile is set to single user . This gets around the
* 'chicken-and-egg' problem of the system requiring a valid user for
* single user mode , before the intial user is actually created . Yeah ,
* we should probably do this in smarter way .
*
* @ return int res number of bytes written
*/
2019-07-15 09:40:31 +09:00
public function writeSiteProfile () : int
2011-08-28 08:02:00 +09:00
{
2019-07-15 09:40:31 +09:00
$vals = $this -> phpVals ([
2011-08-28 08:02:00 +09:00
'site_profile' => $this -> siteProfile ,
'nickname' => $this -> adminNick
2019-07-15 09:40:31 +09:00
]);
2011-08-28 08:02:00 +09:00
$cfg =
2019-07-15 09:40:31 +09:00
// site profile
" \$ config['site']['profile'] = { $vals [ 'site_profile' ] } ; \n " ;
2011-08-28 06:25:12 +09:00
if ( $this -> siteProfile == " singleuser " ) {
$cfg .= " \$ config['singleuser']['nickname'] = { $vals [ 'nickname' ] } ; \n \n " ;
} else {
$cfg .= " \n " ;
}
2010-05-12 04:16:13 +09:00
// Normalize line endings for Windows servers
$cfg = str_replace ( " \n " , PHP_EOL , $cfg );
2010-04-08 09:47:08 +09:00
// write configuration file out to install directory
2019-07-15 09:40:31 +09:00
$res = file_put_contents ( INSTALLDIR . '/config.php' , $cfg , FILE_APPEND );
2010-04-08 09:47:08 +09:00
return $res ;
}
/**
* Install schema into the database
*
2019-07-15 09:40:31 +09:00
* @ param string $filename location of database schema file
* @ param DB_common $conn connection to database
2010-04-08 09:47:08 +09:00
*
2019-07-15 09:40:31 +09:00
* @ return bool - indicating success or failure
2010-04-08 09:47:08 +09:00
*/
2019-07-15 09:40:31 +09:00
public function runDbScript ( string $filename , DB_common $conn ) : bool
2010-04-08 09:47:08 +09:00
{
$sql = trim ( file_get_contents ( INSTALLDIR . '/db/' . $filename ));
$stmts = explode ( ';' , $sql );
foreach ( $stmts as $stmt ) {
$stmt = trim ( $stmt );
if ( ! mb_strlen ( $stmt )) {
continue ;
}
2010-10-30 08:26:45 +09:00
try {
2019-07-15 09:40:31 +09:00
$res = $conn -> query ( $stmt );
2010-10-30 08:26:45 +09:00
} catch ( Exception $e ) {
$error = $e -> getMessage ();
2010-04-08 09:47:08 +09:00
$this -> updateStatus ( " ERROR ( $error ) for SQL ' $stmt ' " );
2010-10-30 08:26:45 +09:00
return false ;
2010-04-08 09:47:08 +09:00
}
}
return true ;
}
/**
* Create the initial admin user account .
2014-03-01 22:14:39 +09:00
* Side effect : may load portions of GNU social framework .
2010-04-08 09:47:08 +09:00
* Side effect : outputs program info
*/
2019-07-15 09:40:31 +09:00
public function registerInitialUser () : bool
2010-04-08 09:47:08 +09:00
{
2017-12-18 01:52:24 +09:00
// initalize hostname from install arguments, so it can be used to find
// the /etc config file from the commandline installer
$server = $this -> server ;
2019-08-23 21:36:02 +09:00
require_once INSTALLDIR . '/lib/util/common.php' ;
2010-04-08 09:47:08 +09:00
2019-07-15 09:40:31 +09:00
$data = [ 'nickname' => $this -> adminNick ,
'password' => $this -> adminPass ,
'fullname' => $this -> adminNick ];
2010-04-08 09:47:08 +09:00
if ( $this -> adminEmail ) {
$data [ 'email' ] = $this -> adminEmail ;
}
2015-03-01 20:36:19 +09:00
try {
2016-01-17 01:20:26 +09:00
$user = User :: register ( $data , true ); // true to skip email sending verification
2015-03-01 20:36:19 +09:00
} catch ( Exception $e ) {
2010-04-08 09:47:08 +09:00
return false ;
}
// give initial user carte blanche
$user -> grantRole ( 'owner' );
$user -> grantRole ( 'moderator' );
$user -> grantRole ( 'administrator' );
2011-08-27 13:10:24 +09:00
2010-04-08 09:47:08 +09:00
return true ;
}
/**
* The beef of the installer !
* Create database , config file , and admin user .
2011-08-27 13:10:24 +09:00
*
2010-04-08 09:47:08 +09:00
* Prerequisites : validation of input data .
2011-08-27 13:10:24 +09:00
*
2019-07-15 09:40:31 +09:00
* @ return bool success
2010-04-08 09:47:08 +09:00
*/
2019-07-15 09:40:31 +09:00
public function doInstall () : bool
2010-04-08 09:47:08 +09:00
{
2013-10-29 00:22:09 +09:00
global $config ;
2010-10-16 05:47:38 +09:00
$this -> updateStatus ( " Initializing... " );
ini_set ( 'display_errors' , 1 );
2014-07-10 20:16:51 +09:00
error_reporting ( E_ALL & ~ E_STRICT & ~ E_NOTICE );
2013-09-18 07:35:49 +09:00
if ( ! defined ( 'GNUSOCIAL' )) {
define ( 'GNUSOCIAL' , true );
}
2011-04-29 04:38:07 +09:00
if ( ! defined ( 'STATUSNET' )) {
2013-09-18 07:35:49 +09:00
define ( 'STATUSNET' , true );
2011-04-29 04:38:07 +09:00
}
2013-10-29 00:22:09 +09:00
2019-08-23 21:36:02 +09:00
require_once INSTALLDIR . '/lib/util/framework.php' ;
2015-02-27 20:44:15 +09:00
GNUsocial :: initDefaults ( $this -> server , $this -> path );
2010-10-16 05:47:38 +09:00
2013-10-29 00:22:09 +09:00
if ( $this -> siteProfile == " singleuser " ) {
// Until we use ['site']['profile']==='singleuser' everywhere
$config [ 'singleuser' ][ 'enabled' ] = true ;
}
2010-10-16 05:47:38 +09:00
try {
$this -> db = $this -> setupDatabase ();
if ( ! $this -> db ) {
// database connection failed, do not move on to create config file.
return false ;
}
} catch ( Exception $e ) {
// Lower-level DB error!
$this -> updateStatus ( " Database error: " . $e -> getMessage (), true );
2010-04-08 09:47:08 +09:00
return false ;
}
2017-11-27 06:14:30 +09:00
if ( ! $this -> skipConfig ) {
2019-07-15 09:40:31 +09:00
// Make sure we can write to the file twice
$oldUmask = umask ( 000 );
2011-08-28 08:02:00 +09:00
2010-04-08 09:47:08 +09:00
$this -> updateStatus ( " Writing config file... " );
$res = $this -> writeConf ();
if ( ! $res ) {
$this -> updateStatus ( " Can't write config file. " , true );
return false ;
}
}
if ( ! empty ( $this -> adminNick )) {
// Okay, cross fingers and try to register an initial user
if ( $this -> registerInitialUser ()) {
$this -> updateStatus (
" An initial user with the administrator role has been created. "
);
} else {
$this -> updateStatus (
2014-03-01 22:14:39 +09:00
" Could not create initial user account. " ,
2010-04-08 09:47:08 +09:00
true
);
return false ;
}
}
2011-08-28 08:02:00 +09:00
if ( ! $this -> skipConfig ) {
$this -> updateStatus ( " Setting site profile... " );
$res = $this -> writeSiteProfile ();
if ( ! $res ) {
$this -> updateStatus ( " Can't write to config file. " , true );
return false ;
}
2019-07-15 09:40:31 +09:00
// Restore original umask
umask ( $oldUmask );
// Set permissions back to something decent
chmod ( INSTALLDIR . '/config.php' , 0644 );
2017-11-27 06:14:30 +09:00
}
2019-07-15 09:40:31 +09:00
2013-10-19 01:17:37 +09:00
$scheme = $this -> ssl === 'always' ? 'https' : 'http' ;
$link = " { $scheme } :// { $this -> server } / { $this -> path } " ;
2010-04-08 09:47:08 +09:00
2014-03-01 22:14:39 +09:00
$this -> updateStatus ( " GNU social has been installed at $link " );
2010-04-08 09:47:08 +09:00
$this -> updateStatus (
2019-07-15 09:40:31 +09:00
'<strong>DONE!</strong> You can visit your <a href="' . htmlspecialchars ( $link ) . '">new GNU social site</a> (log in as "' . htmlspecialchars ( $this -> adminNick ) . '"). If this is your first GNU social install, make your experience the best possible by visiting our resource site to join the <a href="https://gnu.io/social/resources/">mailing list or IRC</a>. <a href="' . htmlspecialchars ( $link ) . '/doc/faq">FAQ is found here</a>.'
2010-04-08 09:47:08 +09:00
);
return true ;
}
/**
* Output a pre - install - time warning message
* @ param string $message HTML ok , but should be plaintext - able
* @ param string $submessage HTML ok , but should be plaintext - able
*/
2019-07-15 09:40:31 +09:00
abstract public function warning ( string $message , string $submessage = '' );
2010-04-08 09:47:08 +09:00
/**
* Output an install - time progress message
2019-07-15 09:40:31 +09:00
* @ param string $status HTML ok , but should be plaintext - able
* @ param bool $error true if this should be marked as an error condition
2010-04-08 09:47:08 +09:00
*/
2019-07-15 09:40:31 +09:00
abstract public function updateStatus ( string $status , bool $error = false );
2010-04-08 09:47:08 +09:00
}