streams/index.php

184 lines
4.2 KiB
PHP
Raw Normal View History

<?php
2010-12-09 07:08:59 +00:00
/**
* @file index.php
2010-12-09 07:08:59 +00:00
*
* @brief The main entry point to the application.
2010-12-09 07:08:59 +00:00
*
* Bootstrap the application, load configuration, load modules, load theme, etc.
2010-12-09 07:08:59 +00:00
*/
2010-07-01 23:48:07 +00:00
/*
2010-12-09 07:08:59 +00:00
* bootstrap the application
*/
require_once('boot.php');
2016-01-18 00:29:32 +00:00
if(file_exists('.htsite.php'))
include('.htsite.php');
// our global App object
$a = new miniApp;
2016-04-01 03:24:30 +00:00
App::init();
2010-07-01 23:48:07 +00:00
/*
2010-12-09 07:08:59 +00:00
* Load the configuration file which contains our DB credentials.
* Ignore errors. If the file doesn't exist or is empty, we are running in
* installation mode.
2010-12-09 07:08:59 +00:00
*/
2010-07-01 23:48:07 +00:00
2016-03-31 23:06:03 +00:00
App::$install = ((file_exists('.htconfig.php') && filesize('.htconfig.php')) ? false : true);
2010-07-01 23:48:07 +00:00
@include('.htconfig.php');
2010-10-07 00:40:58 +00:00
2016-02-05 08:06:35 +00:00
if(! defined('UNO'))
define('UNO', 0);
$a->convert();
2016-03-31 23:06:03 +00:00
App::$timezone = ((x($default_timezone)) ? $default_timezone : 'UTC');
date_default_timezone_set(App::$timezone);
/*
2010-12-09 07:08:59 +00:00
* Try to open the database;
*/
require_once('include/dba/dba_driver.php');
2010-12-09 07:08:59 +00:00
2016-03-31 23:06:03 +00:00
if(! App::$install) {
$db = dba_factory($db_host, $db_port, $db_user, $db_pass, $db_data, $db_type, App::$install);
if(! $db->connected) {
system_unavailable();
}
unset($db_host, $db_port, $db_user, $db_pass, $db_data, $db_type);
2011-06-28 00:18:13 +00:00
/**
* Load configs from db. Overwrite configs from .htconfig.php
*/
load_config('config');
load_config('system');
load_config('feature');
2011-06-28 00:18:13 +00:00
App::$session = new \Zotlabs\Web\Session();
App::$session->init();
2011-06-28 00:18:13 +00:00
load_hooks();
call_hooks('init_1');
}
2016-02-24 19:20:46 +00:00
2016-03-31 23:06:03 +00:00
App::$language = get_best_language();
load_translation_table(App::$language,App::$install);
2011-06-13 10:51:36 +00:00
2010-12-09 07:08:59 +00:00
/**
*
* Important stuff we always need to do.
*
2010-12-09 07:08:59 +00:00
* The order of these may be important so use caution if you think they're all
* intertwingled with no logical order and decide to sort it out. Some of the
* dependencies have changed, but at least at one time in the recent past - the
2010-12-09 07:08:59 +00:00
* order was critical to everything working properly
*
*/
if(App::$session) {
App::$session->start();
}
else {
session_start();
register_shutdown_function('session_write_close');
}
2010-07-01 23:48:07 +00:00
/**
* Language was set earlier, but we can over-ride it in the session.
* We have to do it here because the session was just now opened.
*/
if(array_key_exists('system_language',$_POST)) {
if(strlen($_POST['system_language']))
$_SESSION['language'] = $_POST['system_language'];
else
unset($_SESSION['language']);
}
if((x($_SESSION, 'language')) && ($_SESSION['language'] !== $lang)) {
2016-03-31 23:06:03 +00:00
App::$language = $_SESSION['language'];
load_translation_table(App::$language);
}
2016-03-31 23:06:03 +00:00
if((x($_GET,'zid')) && (! App::$install)) {
App::$query_string = strip_zids(App::$query_string);
2015-01-29 04:56:04 +00:00
if(! local_channel()) {
2012-11-09 03:07:19 +00:00
$_SESSION['my_address'] = $_GET['zid'];
zid_init($a);
}
2012-03-30 03:58:32 +00:00
}
2016-03-31 23:06:03 +00:00
if((x($_SESSION, 'authenticated')) || (x($_POST, 'auth-params')) || (App::$module === 'login'))
require('include/auth.php');
2010-07-01 23:48:07 +00:00
if(! x($_SESSION, 'sysmsg'))
$_SESSION['sysmsg'] = array();
2010-10-31 23:38:22 +00:00
if(! x($_SESSION, 'sysmsg_info'))
$_SESSION['sysmsg_info'] = array();
2010-12-09 07:08:59 +00:00
/*
* check_config() is responsible for running update scripts. These automatically
2011-03-10 10:45:37 +00:00
* update the DB schema whenever we push a new one out. It also checks to see if
* any plugins have been added or removed and reacts accordingly.
2010-12-09 07:08:59 +00:00
*/
2016-03-31 23:06:03 +00:00
if(App::$install) {
2013-07-04 03:37:39 +00:00
/* Allow an exception for the view module so that pcss will be interpreted during installation */
2016-03-31 23:06:03 +00:00
if(App::$module != 'view')
App::$module = 'setup';
2013-07-04 03:37:39 +00:00
}
else
check_config($a);
2010-07-01 23:48:07 +00:00
nav_set_selected('nothing');
2010-12-09 07:08:59 +00:00
2016-02-20 00:19:15 +00:00
$Router = new Zotlabs\Web\Router($a);
/* initialise content region */
2016-03-31 23:06:03 +00:00
if(! x(App::$page, 'content'))
App::$page['content'] = '';
call_hooks('page_content_top', App::$page['content']);
2014-02-02 22:06:36 +00:00
2013-12-09 12:30:00 +00:00
2016-02-20 00:19:15 +00:00
$Router->Dispatch($a);
2014-02-02 22:06:36 +00:00
2011-03-10 10:45:37 +00:00
// If you're just visiting, let javascript take you home
if(x($_SESSION, 'visitor_home')) {
$homebase = $_SESSION['visitor_home'];
} elseif(local_channel()) {
2016-03-31 23:06:03 +00:00
$homebase = z_root() . '/channel/' . App::$channel['channel_address'];
}
if(isset($homebase)) {
2016-03-31 23:06:03 +00:00
App::$page['content'] .= '<script>var homebase = "' . $homebase . '";</script>';
}
2011-01-04 13:06:10 +00:00
// now that we've been through the module content, see if the page reported
// a permission problem and if so, a 403 response would seem to be in order.
if(stristr(implode("", $_SESSION['sysmsg']), t('Permission denied'))) {
header($_SERVER['SERVER_PROTOCOL'] . ' 403 ' . t('Permission denied.'));
2010-09-09 03:14:17 +00:00
}
2016-03-31 23:06:03 +00:00
call_hooks('page_end', App::$page['content']);
construct_page($a);
2010-07-01 23:48:07 +00:00
2016-05-10 02:13:27 +00:00
killme();