streams/index.php

390 lines
11 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
2010-12-09 07:08:59 +00:00
$a = new App;
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
$a->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->timezone = ((x($default_timezone)) ? $default_timezone : 'UTC');
date_default_timezone_set($a->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
if(! $a->install) {
PostgreSQL support initial commit There were 11 main types of changes: - UPDATE's and DELETE's sometimes had LIMIT 1 at the end of them. This is not only non-compliant but it would certainly not do what whoever wrote it thought it would. It is likely this mistake was just copied from Friendica. All of these instances, the LIMIT 1 was simply removed. - Bitwise operations (and even some non-zero int checks) erroneously rely on MySQL implicit integer-boolean conversion in the WHERE clauses. This is non-compliant (and bad programming practice to boot). Proper explicit boolean conversions were added. New queries should use proper conventions. - MySQL has a different operator for bitwise XOR than postgres. Rather than add yet another dba_ func, I converted them to "& ~" ("AND NOT") when turning off, and "|" ("OR") when turning on. There were no true toggles (XOR). New queries should refrain from using XOR when not necessary. - There are several fields which the schema has marked as NOT NULL, but the inserts don't specify them. The reason this works is because mysql totally ignores the constraint and adds an empty text default automatically. Again, non-compliant, obviously. In these cases a default of empty text was added. - Several statements rely on a non-standard MySQL feature (http://dev.mysql.com/doc/refman/5.5/en/group-by-handling.html). These queries can all be rewritten to be standards compliant. Interestingly enough, the newly rewritten standards compliant queries run a zillion times faster, even on MySQL. - A couple of function/operator name translations were needed (RAND/RANDOM, GROUP_CONCAT/STRING_AGG, UTC_NOW, REGEXP/~, ^/#) -- assist functions added in the dba_ - INTERVALs: postgres requires quotes around the value, mysql requires that there are not quotes around the value -- assist functions added in the dba_ - NULL_DATE's -- Postgres does not allow the invalid date '0000-00-00 00:00:00' (there is no such thing as year 0 or month 0 or day 0). We use '0001-01-01 00:00:00' for postgres. Conversions are handled in Zot/item packets automagically by quoting all dates with dbescdate(). - char(##) specifications in the schema creates fields with blank spaces that aren't trimmed in the code. MySQL apparently treats char(##) as varchar(##), again, non-compliant. Since postgres works better with text fields anyway, this ball of bugs was simply side-stepped by using 'text' datatype for all text fields in the postgres schema. varchar was used in a couple of places where it actually seemed appropriate (size constraint), but without rigorously vetting that all of the PHP code actually validates data, new bugs might come out from under the rug. - postgres doesn't store nul bytes and a few other non-printables in text fields, even when quoted. bytea fields were used when storing binary data (photo.data, attach.data). A new dbescbin() function was added to handle this transparently. - postgres does not support LIMIT #,# syntax. All databases support LIMIT # OFFSET # syntax. Statements were updated to be standard. These changes require corresponding changes in the coding standards. Please review those before adding any code going forward. Still on my TODO list: - remove quotes from non-reserved identifiers and make reserved identifiers use dba func for quoting - Rewrite search queries for better results (both MySQL and Postgres)
2014-11-13 20:21:58 +00:00
$db = dba_factory($db_host, $db_port, $db_user, $db_pass, $db_data, $db_type, $a->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
require_once('include/session.php');
2011-06-28 00:18:13 +00:00
load_hooks();
call_hooks('init_1');
$a->language = get_best_language();
load_translation_table($a->language);
// Force the cookie to be secure (https only) if this site is SSL enabled. Must be done before session_start().
2014-05-08 23:33:35 +00:00
if(intval($a->config['system']['ssl_cookie_protection'])) {
$arr = session_get_cookie_params();
session_set_cookie_params(
2014-05-13 00:04:03 +00:00
((isset($arr['lifetime'])) ? $arr['lifetime'] : 0),
((isset($arr['path'])) ? $arr['path'] : '/'),
((isset($arr['domain'])) ? $arr['domain'] : $a->get_hostname()),
((isset($_SERVER['HTTPS']) && strtolower($_SERVER['HTTPS']) == 'on') ? true : false),
((isset($arr['httponly'])) ? $arr['httponly'] : true));
}
}
else {
// load translations but do not check plugins as we have no database
$a->language = get_best_language();
load_translation_table($a->language,true);
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
*
*/
2010-07-01 23:48:07 +00:00
session_start();
/**
* 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)) {
$a->language = $_SESSION['language'];
load_translation_table($a->language);
}
if((x($_GET,'zid')) && (! $a->install)) {
$a->query_string = strip_zids($a->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
}
if((x($_SESSION, 'authenticated')) || (x($_POST, 'auth-params')) || ($a->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
*/
if($a->install) {
2013-07-04 03:37:39 +00:00
/* Allow an exception for the view module so that pcss will be interpreted during installation */
if($a->module != 'view')
$a->module = 'setup';
}
else
check_config($a);
2010-07-01 23:48:07 +00:00
nav_set_selected('nothing');
2010-12-09 07:08:59 +00:00
2012-10-22 05:11:02 +00:00
$arr = array('app_menu' => $a->get_apps());
call_hooks('app_menu', $arr);
2012-10-22 05:11:02 +00:00
$a->set_apps($arr['app_menu']);
2010-12-09 07:08:59 +00:00
/**
*
2011-03-10 10:45:37 +00:00
* We have already parsed the server path into $a->argc and $a->argv
2010-12-09 07:08:59 +00:00
*
* $a->argv[0] is our module name. We will load the file mod/{$a->argv[0]}.php
* and use it for handling our URL request.
* The module file contains a few functions that we call in various circumstances
* and in the following order:
*
2010-12-09 07:08:59 +00:00
* "module"_init
2011-03-10 10:45:37 +00:00
* "module"_post (only called if there are $_POST variables)
2010-12-09 07:08:59 +00:00
* "module"_content - the string return of this function contains our page body
*
* Modules which emit other serialisations besides HTML (XML,JSON, etc.) should do
2010-12-13 01:40:23 +00:00
* so within the module init and/or post functions and then invoke killme() to terminate
* further processing.
2010-12-09 07:08:59 +00:00
*/
2010-07-01 23:48:07 +00:00
if(strlen($a->module)) {
2011-03-10 10:45:37 +00:00
/**
*
* We will always have a module name.
* First see if we have a plugin which is masquerading as a module.
*
*/
2011-02-11 00:17:21 +00:00
if(is_array($a->plugins) && in_array($a->module,$a->plugins) && file_exists("addon/{$a->module}/{$a->module}.php")) {
include_once("addon/{$a->module}/{$a->module}.php");
2011-02-11 00:17:21 +00:00
if(function_exists($a->module . '_module'))
$a->module_loaded = true;
}
2011-03-10 10:45:37 +00:00
if((strpos($a->module,'admin') === 0) && (! is_site_admin())) {
$a->module_loaded = false;
notice( t('Permission denied.') . EOL);
goaway(z_root());
}
2011-03-10 10:45:37 +00:00
/**
* If the site has a custom module to over-ride the standard module, use it.
* Otherwise, look for the standard program module in the 'mod' directory
2011-03-10 10:45:37 +00:00
*/
if(! $a->module_loaded) {
if(file_exists("mod/site/{$a->module}.php")) {
include_once("mod/site/{$a->module}.php");
$a->module_loaded = true;
}
elseif(file_exists("mod/{$a->module}.php")) {
include_once("mod/{$a->module}.php");
$a->module_loaded = true;
}
2010-07-01 23:48:07 +00:00
}
2011-03-10 10:45:37 +00:00
/**
* This provides a place for plugins to register module handlers which don't otherwise exist on the system.
* If the plugin sets 'installed' to true we won't throw a 404 error for the specified module even if
* there is no specific module file or matching plugin name.
* The plugin should catch at least one of the module hooks for this URL.
*/
$x = array('module' => $a->module, 'installed' => false);
call_hooks('module_loaded', $x);
if($x['installed'])
$a->module_loaded = true;
2011-03-10 10:45:37 +00:00
/**
* The URL provided does not resolve to a valid module.
*
* On Dreamhost sites, quite often things go wrong for no apparent reason and they send us to '/internal_error.html'.
* We don't like doing this, but as it occasionally accounts for 10-20% or more of all site traffic -
2011-03-10 10:45:37 +00:00
* we are going to trap this and redirect back to the requested page. As long as you don't have a critical error on your page
* this will often succeed and eventually do the right thing.
*
* Otherwise we are going to emit a 404 not found.
*/
2011-02-11 05:25:24 +00:00
if(! $a->module_loaded) {
// Stupid browser tried to pre-fetch our Javascript img template. Don't log the event or return anything - just quietly exit.
if((x($_SERVER, 'QUERY_STRING')) && preg_match('/{[0-9]}/', $_SERVER['QUERY_STRING']) !== 0) {
killme();
}
if((x($_SERVER, 'QUERY_STRING')) && ($_SERVER['QUERY_STRING'] === 'q=internal_error.html') && isset($dreamhost_error_hack)) {
2011-01-31 02:25:41 +00:00
logger('index.php: dreamhost_error_hack invoked. Original URI =' . $_SERVER['REQUEST_URI']);
2010-12-17 04:12:23 +00:00
goaway($a->get_baseurl() . $_SERVER['REQUEST_URI']);
}
2011-08-15 01:13:52 +00:00
logger('index.php: page not found: ' . $_SERVER['REQUEST_URI'] . ' ADDRESS: ' . $_SERVER['REMOTE_ADDR'] . ' QUERY: ' . $_SERVER['QUERY_STRING'], LOGGER_DEBUG);
header($_SERVER['SERVER_PROTOCOL'] . ' 404 ' . t('Not Found'));
$tpl = get_markup_template('404.tpl');
$a->page['content'] = replace_macros($tpl, array(
'$message' => t('Page not found.')
));
// pretend this is a module so it will initialise the theme
$a->module = '404';
$a->module_loaded = true;
2010-07-01 23:48:07 +00:00
}
}
/* initialise content region */
if(! x($a->page, 'content'))
$a->page['content'] = '';
2014-02-02 22:06:36 +00:00
2014-02-02 22:09:09 +00:00
if(! ($a->module === 'setup')) {
2014-02-02 22:06:36 +00:00
/* set JS cookie */
if($_COOKIE['jsAvailable'] != 1) {
$a->page['content'] .= '<script>document.cookie="jsAvailable=1; path=/"; var jsMatch = /\&JS=1/; if (!jsMatch.exec(location.href)) { location.href = location.href + "&JS=1"; }</script>';
/* emulate JS cookie if cookies are not accepted */
if ($_GET['JS'] == 1) {
$_COOKIE['jsAvailable'] = 1;
}
}
2013-12-09 12:30:00 +00:00
call_hooks('page_content_top', $a->page['content']);
}
2013-12-09 12:30:00 +00:00
2014-02-02 22:06:36 +00:00
/**
* Call module functions
*/
2010-07-01 23:48:07 +00:00
if($a->module_loaded) {
$a->page['page_title'] = $a->module;
$placeholder = '';
/**
* No theme has been specified when calling the module_init functions
* For this reason, please restrict the use of templates to those which
* do not provide any presentation details - as themes will not be able
* to over-ride them.
*/
2010-07-01 23:48:07 +00:00
if(function_exists($a->module . '_init')) {
2016-01-31 23:55:27 +00:00
$arr = array('init' => true, 'replace' => false);
call_hooks($a->module . '_mod_init', $arr);
if(! $arr['replace']) {
$func = $a->module . '_init';
$func($a);
}
2010-12-09 07:08:59 +00:00
}
2010-07-01 23:48:07 +00:00
/**
* Do all theme initialiasion here before calling any additional module functions.
* The module_init function may have changed the theme.
* Additionally any page with a Comanche template may alter the theme.
* So we'll check for those now.
*/
/**
* In case a page has overloaded a module, see if we already have a layout defined
* otherwise, if a PDL file exists for this module, use it
* The member may have also created a customised PDL that's stored in the config
*/
load_pdl($a);
/**
* load current theme info
*/
$theme_info_file = 'view/theme/' . current_theme() . '/php/theme.php';
if (file_exists($theme_info_file)){
require_once($theme_info_file);
}
if(function_exists(str_replace('-', '_', current_theme()) . '_init')) {
$func = str_replace('-', '_', current_theme()) . '_init';
2012-04-08 12:52:00 +00:00
$func($a);
}
elseif (x($a->theme_info, 'extends') && file_exists('view/theme/' . $a->theme_info['extends'] . '/php/theme.php')) {
require_once('view/theme/' . $a->theme_info['extends'] . '/php/theme.php');
if(function_exists(str_replace('-', '_', $a->theme_info['extends']) . '_init')) {
$func = str_replace('-', '_', $a->theme_info['extends']) . '_init';
2012-08-24 03:00:10 +00:00
$func($a);
}
}
2012-04-08 12:52:00 +00:00
2010-09-27 00:24:20 +00:00
if(($_SERVER['REQUEST_METHOD'] === 'POST') && (! $a->error)
2010-07-01 23:48:07 +00:00
&& (function_exists($a->module . '_post'))
2016-01-31 23:55:27 +00:00
&& (! x($_POST, 'auth-params'))) {
call_hooks($a->module . '_mod_post', $_POST);
2010-07-01 23:48:07 +00:00
$func = $a->module . '_post';
$func($a);
}
if((! $a->error) && (function_exists($a->module . '_content'))) {
$arr = array('content' => $a->page['content'], 'replace' => false);
call_hooks($a->module . '_mod_content', $arr);
$a->page['content'] = $arr['content'];
if(! $arr['replace']) {
$func = $a->module . '_content';
$arr = array('content' => $func($a));
}
call_hooks($a->module . '_mod_aftercontent', $arr);
$a->page['content'] .= $arr['content'];
2010-07-01 23:48:07 +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()) {
2013-08-15 12:20:23 +00:00
$homebase = $a->get_baseurl() . '/channel/' . $a->channel['channel_address'];
}
if(isset($homebase)) {
$a->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
}
call_hooks('page_end', $a->page['content']);
if(! $a->install)
check_cron_broken();
construct_page($a);
2010-07-01 23:48:07 +00:00
session_write_close();
exit;