2010-07-01 19:48:07 -04:00
|
|
|
<?php
|
2011-05-04 05:20:44 -04:00
|
|
|
|
2013-01-14 18:35:41 -05:00
|
|
|
|
2010-12-09 02:08:59 -05:00
|
|
|
/**
|
|
|
|
*
|
2011-11-12 07:21:14 -05:00
|
|
|
* Friendica
|
2010-12-09 02:08:59 -05:00
|
|
|
*
|
|
|
|
*/
|
2010-07-01 19:48:07 -04:00
|
|
|
|
2010-12-09 02:08:59 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* bootstrap the application
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2017-04-30 00:07:00 -04:00
|
|
|
use Friendica\App;
|
2017-04-30 00:01:26 -04:00
|
|
|
use Friendica\Core\Config;
|
2017-01-18 16:45:32 -05:00
|
|
|
|
2017-05-02 22:42:29 -04:00
|
|
|
require_once 'boot.php';
|
|
|
|
require_once 'object/BaseObject.php';
|
2010-07-01 19:48:07 -04:00
|
|
|
|
2017-05-02 22:42:42 -04:00
|
|
|
$a = new App(__DIR__);
|
2012-08-10 13:57:39 -04:00
|
|
|
BaseObject::set_app($a);
|
2010-07-01 19:48:07 -04:00
|
|
|
|
2016-07-02 02:54:57 -04:00
|
|
|
// We assume that the index.php is called by a frontend process
|
|
|
|
// The value is set to "true" by default in boot.php
|
|
|
|
$a->backend = false;
|
|
|
|
|
2010-12-09 02:08:59 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* Load the configuration file which contains our DB credentials.
|
2017-01-26 08:28:43 -05:00
|
|
|
* Ignore errors. If the file doesn't exist or is empty, we are running in
|
|
|
|
* installation mode.
|
2010-12-09 02:08:59 -05:00
|
|
|
*
|
|
|
|
*/
|
2010-07-01 19:48:07 -04:00
|
|
|
|
2011-03-08 21:11:36 -05:00
|
|
|
$install = ((file_exists('.htconfig.php') && filesize('.htconfig.php')) ? false : true);
|
2010-07-01 19:48:07 -04:00
|
|
|
|
2017-01-26 08:28:43 -05:00
|
|
|
// Only load config if found, don't surpress errors
|
|
|
|
if (!$install) {
|
2017-03-25 07:43:07 -04:00
|
|
|
include ".htconfig.php";
|
2017-01-26 08:28:43 -05:00
|
|
|
}
|
2010-10-06 20:40:58 -04:00
|
|
|
|
2010-12-09 02:08:59 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* Try to open the database;
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2017-03-25 07:43:07 -04:00
|
|
|
require_once "include/dba.php";
|
2010-12-09 02:08:59 -05:00
|
|
|
|
2017-01-26 08:28:43 -05:00
|
|
|
if (!$install) {
|
2012-04-14 07:54:26 -04:00
|
|
|
$db = new dba($db_host, $db_user, $db_pass, $db_data, $install);
|
2017-03-25 07:43:07 -04:00
|
|
|
unset($db_host, $db_user, $db_pass, $db_data);
|
2011-06-27 20:18:13 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Load configs from db. Overwrite configs from .htconfig.php
|
|
|
|
*/
|
|
|
|
|
2017-01-18 16:45:32 -05:00
|
|
|
Config::load();
|
2011-06-27 20:18:13 -04:00
|
|
|
|
2016-07-02 02:54:57 -04:00
|
|
|
if ($a->max_processes_reached() OR $a->maxload_reached()) {
|
2017-03-25 07:43:07 -04:00
|
|
|
header($_SERVER["SERVER_PROTOCOL"] . ' 503 Service Temporarily Unavailable');
|
2016-07-02 18:26:00 -04:00
|
|
|
header('Retry-After: 120');
|
2017-03-25 07:43:07 -04:00
|
|
|
header('Refresh: 120; url=' . App::get_baseurl() . "/" . $a->query_string);
|
2016-07-02 02:54:57 -04:00
|
|
|
die("System is currently unavailable. Please try again later");
|
2016-06-03 17:10:23 -04:00
|
|
|
}
|
2016-06-01 01:04:31 -04:00
|
|
|
|
2017-03-25 07:43:07 -04:00
|
|
|
if (get_config('system', 'force_ssl') AND ($a->get_scheme() == "http") AND
|
2017-03-30 14:24:55 -04:00
|
|
|
(intval(get_config('system', 'ssl_policy')) == SSL_POLICY_FULL) AND
|
2016-12-20 06:45:16 -05:00
|
|
|
(substr(App::get_baseurl(), 0, 8) == "https://")) {
|
2014-10-23 18:52:29 -04:00
|
|
|
header("HTTP/1.1 302 Moved Temporarily");
|
2017-03-30 14:24:55 -04:00
|
|
|
header("Location: " . App::get_baseurl() . "/" . $a->query_string);
|
2016-03-01 08:49:07 -05:00
|
|
|
exit();
|
2014-10-23 18:52:29 -04:00
|
|
|
}
|
|
|
|
|
2017-05-02 22:42:29 -04:00
|
|
|
require_once 'include/session.php';
|
2011-06-27 20:18:13 -04:00
|
|
|
load_hooks();
|
|
|
|
call_hooks('init_1');
|
2011-06-13 06:51:36 -04:00
|
|
|
|
2013-01-19 01:38:49 -05:00
|
|
|
$maintenance = get_config('system', 'maintenance');
|
|
|
|
}
|
2013-01-14 18:35:41 -05:00
|
|
|
|
2013-03-02 18:46:54 -05:00
|
|
|
$lang = get_browser_language();
|
|
|
|
|
|
|
|
load_translation_table($lang);
|
2011-06-13 06:51:36 -04:00
|
|
|
|
2010-12-09 02:08:59 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* Important stuff we always need to do.
|
2012-06-11 22:52:46 -04:00
|
|
|
*
|
2010-12-09 02:08:59 -05: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
|
2014-09-20 06:09:10 -04:00
|
|
|
* dependencies have changed, but at least at one time in the recent past - the
|
2010-12-09 02:08:59 -05:00
|
|
|
* order was critical to everything working properly
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2016-07-02 02:54:57 -04:00
|
|
|
// Exclude the backend processes from the session management
|
|
|
|
if (!$a->is_backend()) {
|
|
|
|
$stamp1 = microtime(true);
|
|
|
|
session_start();
|
|
|
|
$a->save_timestamp($stamp1, "parser");
|
2016-11-26 19:55:05 -05:00
|
|
|
} else {
|
|
|
|
require_once "include/poller.php";
|
|
|
|
|
|
|
|
call_worker_if_idle();
|
2016-07-02 02:54:57 -04:00
|
|
|
}
|
2010-07-01 19:48:07 -04:00
|
|
|
|
2011-03-31 07:57:31 -04: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.
|
|
|
|
*/
|
2015-11-08 08:23:49 -05:00
|
|
|
if (x($_SESSION,'authenticated') && !x($_SESSION,'language')) {
|
|
|
|
// we didn't loaded user data yet, but we need user language
|
2017-05-07 16:52:00 -04:00
|
|
|
$r = dba::select('user', array('language'), array('uid' => $_SESSION['uid']), array('limit' => 1));
|
2015-11-08 08:23:49 -05:00
|
|
|
$_SESSION['language'] = $lang;
|
2017-05-07 16:52:00 -04:00
|
|
|
if (dbm::is_result($r)) {
|
|
|
|
$_SESSION['language'] = $r['language'];
|
|
|
|
}
|
2011-09-21 19:00:17 -04:00
|
|
|
}
|
2015-11-08 08:23:49 -05:00
|
|
|
|
2017-01-26 08:28:43 -05:00
|
|
|
if ((x($_SESSION,'language')) && ($_SESSION['language'] !== $lang)) {
|
2011-03-31 07:57:31 -04:00
|
|
|
$lang = $_SESSION['language'];
|
|
|
|
load_translation_table($lang);
|
|
|
|
}
|
|
|
|
|
2017-01-26 08:28:43 -05:00
|
|
|
if ((x($_GET,'zrl')) && (!$install && !$maintenance)) {
|
2016-04-20 15:47:57 -04:00
|
|
|
// Only continue when the given profile link seems valid
|
2016-04-20 16:10:05 -04:00
|
|
|
// Valid profile links contain a path with "/profile/" and no query parameters
|
2016-04-20 15:47:57 -04:00
|
|
|
if ((parse_url($_GET['zrl'], PHP_URL_QUERY) == "") AND
|
2016-04-20 16:10:05 -04:00
|
|
|
strstr(parse_url($_GET['zrl'], PHP_URL_PATH), "/profile/")) {
|
2016-04-20 15:47:57 -04:00
|
|
|
$_SESSION['my_url'] = $_GET['zrl'];
|
|
|
|
$a->query_string = preg_replace('/[\?&]zrl=(.*?)([\?&]|$)/is','',$a->query_string);
|
|
|
|
zrl_init($a);
|
2016-04-20 16:10:05 -04:00
|
|
|
} else {
|
|
|
|
// Someone came with an invalid parameter, maybe as a DDoS attempt
|
|
|
|
// We simply stop processing here
|
2016-04-20 15:47:57 -04:00
|
|
|
logger("Invalid ZRL parameter ".$_GET['zrl'], LOGGER_DEBUG);
|
2016-04-20 16:10:05 -04:00
|
|
|
header('HTTP/1.1 403 Forbidden');
|
|
|
|
echo "<h1>403 Forbidden</h1>";
|
|
|
|
killme();
|
|
|
|
}
|
2012-03-29 23:58:32 -04:00
|
|
|
}
|
2011-03-31 07:57:31 -04:00
|
|
|
|
2010-12-09 02:08:59 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* For Mozilla auth manager - still needs sorting, and this might conflict with LRDD header.
|
|
|
|
* Apache/PHP lumps the Link: headers into one - and other services might not be able to parse it
|
2014-09-20 06:09:10 -04:00
|
|
|
* this way. There's a PHP flag to link the headers because by default this will over-write any other
|
2013-09-15 04:40:58 -04:00
|
|
|
* link header.
|
2010-12-09 02:08:59 -05:00
|
|
|
*
|
|
|
|
* What we really need to do is output the raw headers ourselves so we can keep them separate.
|
|
|
|
*
|
|
|
|
*/
|
2013-09-15 04:40:58 -04:00
|
|
|
|
2016-12-20 06:45:16 -05:00
|
|
|
// header('Link: <' . App::get_baseurl() . '/amcd>; rel="acct-mgmt";');
|
2010-08-16 08:23:26 -04:00
|
|
|
|
2016-12-20 11:43:46 -05:00
|
|
|
if (x($_COOKIE["Friendica"]) || (x($_SESSION,'authenticated')) || (x($_POST,'auth-params')) || ($a->module === 'login')) {
|
2012-12-28 18:17:33 -05:00
|
|
|
require("include/auth.php");
|
2016-12-20 11:43:46 -05:00
|
|
|
}
|
2010-07-01 19:48:07 -04:00
|
|
|
|
2016-12-20 11:43:46 -05:00
|
|
|
if (! x($_SESSION,'authenticated')) {
|
2010-11-11 05:49:28 -05:00
|
|
|
header('X-Account-Management-Status: none');
|
2016-12-20 11:43:46 -05:00
|
|
|
}
|
2010-11-11 05:49:28 -05:00
|
|
|
|
2012-11-06 10:43:19 -05:00
|
|
|
/* set up page['htmlhead'] and page['end'] for the modules to use */
|
|
|
|
$a->page['htmlhead'] = '';
|
|
|
|
$a->page['end'] = '';
|
2011-12-11 23:32:43 -05:00
|
|
|
|
|
|
|
|
2016-12-20 11:43:46 -05:00
|
|
|
if (! x($_SESSION,'sysmsg')) {
|
2011-09-05 08:01:21 -04:00
|
|
|
$_SESSION['sysmsg'] = array();
|
2016-12-20 11:43:46 -05:00
|
|
|
}
|
2010-10-31 19:38:22 -04:00
|
|
|
|
2016-12-20 11:43:46 -05:00
|
|
|
if (! x($_SESSION,'sysmsg_info')) {
|
2011-09-05 08:01:21 -04:00
|
|
|
$_SESSION['sysmsg_info'] = array();
|
2016-12-20 11:43:46 -05:00
|
|
|
}
|
2011-05-23 05:39:57 -04:00
|
|
|
|
2017-04-22 16:08:05 -04:00
|
|
|
// Array for informations about last received items
|
|
|
|
if (! x($_SESSION,'last_updated')) {
|
|
|
|
$_SESSION['last_updated'] = array();
|
|
|
|
}
|
2010-12-09 02:08:59 -05:00
|
|
|
/*
|
2014-09-20 06:09:10 -04:00
|
|
|
* check_config() is responsible for running update scripts. These automatically
|
2011-03-10 05:45:37 -05:00
|
|
|
* update the DB schema whenever we push a new one out. It also checks to see if
|
2014-09-20 06:09:10 -04:00
|
|
|
* any plugins have been added or removed and reacts accordingly.
|
2010-12-09 02:08:59 -05:00
|
|
|
*/
|
|
|
|
|
2014-09-20 06:09:10 -04:00
|
|
|
// in install mode, any url loads install module
|
|
|
|
// but we need "view" module for stylesheet
|
2016-12-20 11:43:46 -05:00
|
|
|
if ($install && $a->module!="view") {
|
2010-07-01 19:48:07 -04:00
|
|
|
$a->module = 'install';
|
2016-12-20 11:43:46 -05:00
|
|
|
} elseif ($maintenance && $a->module!="view") {
|
2013-01-14 18:35:41 -05:00
|
|
|
$a->module = 'maintenance';
|
2016-12-20 11:43:46 -05:00
|
|
|
} else {
|
2013-01-19 01:38:49 -05:00
|
|
|
check_url($a);
|
2013-01-18 20:37:45 -05:00
|
|
|
check_db();
|
2013-01-14 22:31:32 -05:00
|
|
|
check_plugins($a);
|
|
|
|
}
|
2010-07-01 19:48:07 -04:00
|
|
|
|
2011-11-12 15:28:21 -05:00
|
|
|
nav_set_selected('nothing');
|
2010-12-09 02:08:59 -05:00
|
|
|
|
2013-07-23 21:45:22 -04:00
|
|
|
//Don't populate apps_menu if apps are private
|
|
|
|
$privateapps = get_config('config','private_addons');
|
2016-12-20 11:43:46 -05:00
|
|
|
if ((local_user()) || (! $privateapps === "1")) {
|
2013-07-23 21:45:22 -04:00
|
|
|
$arr = array('app_menu' => $a->apps);
|
2011-02-19 03:56:15 -05:00
|
|
|
|
2013-07-23 21:45:22 -04:00
|
|
|
call_hooks('app_menu', $arr);
|
2011-02-19 03:56:15 -05:00
|
|
|
|
2013-07-23 21:45:22 -04:00
|
|
|
$a->apps = $arr['app_menu'];
|
|
|
|
}
|
2011-02-19 03:56:15 -05:00
|
|
|
|
2010-12-09 02:08:59 -05:00
|
|
|
/**
|
|
|
|
*
|
2011-03-10 05:45:37 -05:00
|
|
|
* We have already parsed the server path into $a->argc and $a->argv
|
2010-12-09 02:08:59 -05: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:
|
2014-09-20 06:09:10 -04:00
|
|
|
*
|
2010-12-09 02:08:59 -05:00
|
|
|
* "module"_init
|
2011-03-10 05:45:37 -05:00
|
|
|
* "module"_post (only called if there are $_POST variables)
|
2010-12-09 02:08:59 -05:00
|
|
|
* "module"_afterpost
|
|
|
|
* "module"_content - the string return of this function contains our page body
|
|
|
|
*
|
2014-09-20 06:09:10 -04:00
|
|
|
* Modules which emit other serialisations besides HTML (XML,JSON, etc.) should do
|
2010-12-12 20:40:23 -05:00
|
|
|
* so within the module init and/or post functions and then invoke killme() to terminate
|
|
|
|
* further processing.
|
2010-12-09 02:08:59 -05:00
|
|
|
*/
|
|
|
|
|
2017-01-26 08:28:43 -05:00
|
|
|
if (strlen($a->module)) {
|
2011-03-10 05:45:37 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* We will always have a module name.
|
|
|
|
* First see if we have a plugin which is masquerading as a module.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2013-03-06 17:23:04 -05:00
|
|
|
// Compatibility with the Android Diaspora client
|
2017-01-26 08:28:43 -05:00
|
|
|
if ($a->module == "stream") {
|
2013-03-06 17:23:04 -05:00
|
|
|
$a->module = "network";
|
2017-01-26 08:28:43 -05:00
|
|
|
}
|
2013-09-15 04:40:58 -04:00
|
|
|
|
2014-02-02 03:56:37 -05:00
|
|
|
// Compatibility with the Firefox App
|
2017-01-26 08:28:43 -05:00
|
|
|
if (($a->module == "users") AND ($a->cmd == "users/sign_in")) {
|
2014-02-02 03:56:37 -05:00
|
|
|
$a->module = "login";
|
2017-01-26 08:28:43 -05:00
|
|
|
}
|
2014-02-02 03:56:37 -05:00
|
|
|
|
2013-07-23 21:45:22 -04:00
|
|
|
$privateapps = get_config('config','private_addons');
|
2013-03-06 17:23:04 -05:00
|
|
|
|
2016-12-20 11:43:46 -05:00
|
|
|
if (is_array($a->plugins) && in_array($a->module,$a->plugins) && file_exists("addon/{$a->module}/{$a->module}.php")) {
|
2013-07-23 21:45:22 -04:00
|
|
|
//Check if module is an app and if public access to apps is allowed or not
|
2016-12-20 11:43:46 -05:00
|
|
|
if ((!local_user()) && plugin_is_app($a->module) && $privateapps === "1") {
|
2013-07-23 21:45:22 -04:00
|
|
|
info( t("You must be logged in to use addons. "));
|
2017-01-26 08:28:43 -05:00
|
|
|
} else {
|
2013-07-23 21:45:22 -04:00
|
|
|
include_once("addon/{$a->module}/{$a->module}.php");
|
2017-01-26 08:28:43 -05:00
|
|
|
if (function_exists($a->module . '_module')) {
|
2013-07-23 21:45:22 -04:00
|
|
|
$a->module_loaded = true;
|
2017-01-26 08:28:43 -05:00
|
|
|
}
|
2013-07-23 21:45:22 -04:00
|
|
|
}
|
2011-02-10 19:17:21 -05:00
|
|
|
}
|
2011-03-10 05:45:37 -05:00
|
|
|
|
|
|
|
/**
|
2016-02-09 03:39:29 -05:00
|
|
|
* If not, next look for a 'standard' program module in the 'mod' directory
|
2011-03-10 05:45:37 -05:00
|
|
|
*/
|
|
|
|
|
2016-12-20 11:43:46 -05:00
|
|
|
if ((! $a->module_loaded) && (file_exists("mod/{$a->module}.php"))) {
|
2011-03-10 23:46:27 -05:00
|
|
|
include_once("mod/{$a->module}.php");
|
2010-07-01 19:48:07 -04:00
|
|
|
$a->module_loaded = true;
|
|
|
|
}
|
2011-03-10 05:45:37 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* The URL provided does not resolve to a valid module.
|
|
|
|
*
|
2014-09-20 06:09:10 -04:00
|
|
|
* 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 05:45:37 -05: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.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2016-12-20 11:43:46 -05:00
|
|
|
if (! $a->module_loaded) {
|
2011-07-26 22:20:29 -04:00
|
|
|
|
2011-08-17 12:36:24 -04:00
|
|
|
// Stupid browser tried to pre-fetch our Javascript img template. Don't log the event or return anything - just quietly exit.
|
2016-12-20 11:43:46 -05:00
|
|
|
if ((x($_SERVER,'QUERY_STRING')) && preg_match('/{[0-9]}/',$_SERVER['QUERY_STRING']) !== 0) {
|
2011-07-26 22:20:29 -04:00
|
|
|
killme();
|
|
|
|
}
|
|
|
|
|
2016-12-20 11:43:46 -05:00
|
|
|
if ((x($_SERVER,'QUERY_STRING')) && ($_SERVER['QUERY_STRING'] === 'q=internal_error.html') && isset($dreamhost_error_hack)) {
|
2011-01-30 21:25:41 -05:00
|
|
|
logger('index.php: dreamhost_error_hack invoked. Original URI =' . $_SERVER['REQUEST_URI']);
|
2016-12-20 06:45:16 -05:00
|
|
|
goaway(App::get_baseurl() . $_SERVER['REQUEST_URI']);
|
2010-12-16 23:12:23 -05:00
|
|
|
}
|
|
|
|
|
2011-08-14 21:13:52 -04:00
|
|
|
logger('index.php: page not found: ' . $_SERVER['REQUEST_URI'] . ' ADDRESS: ' . $_SERVER['REMOTE_ADDR'] . ' QUERY: ' . $_SERVER['QUERY_STRING'], LOGGER_DEBUG);
|
2010-08-09 00:03:08 -04:00
|
|
|
header($_SERVER["SERVER_PROTOCOL"] . ' 404 ' . t('Not Found'));
|
2011-09-19 05:52:32 -04:00
|
|
|
$tpl = get_markup_template("404.tpl");
|
|
|
|
$a->page['content'] = replace_macros($tpl, array(
|
|
|
|
'$message' => t('Page not found.' )
|
|
|
|
));
|
2010-07-01 19:48:07 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-09-27 03:32:20 -04:00
|
|
|
/**
|
|
|
|
* load current theme info
|
|
|
|
*/
|
|
|
|
$theme_info_file = "view/theme/".current_theme()."/theme.php";
|
|
|
|
if (file_exists($theme_info_file)){
|
|
|
|
require_once($theme_info_file);
|
|
|
|
}
|
2011-02-19 03:56:15 -05:00
|
|
|
|
|
|
|
|
2011-01-10 16:45:42 -05:00
|
|
|
/* initialise content region */
|
|
|
|
|
2016-12-20 11:43:46 -05:00
|
|
|
if (! x($a->page,'content')) {
|
2011-01-10 16:45:42 -05:00
|
|
|
$a->page['content'] = '';
|
2016-12-20 11:43:46 -05:00
|
|
|
}
|
2011-01-10 16:45:42 -05:00
|
|
|
|
2016-12-20 11:43:46 -05:00
|
|
|
if (!$install && !$maintenance) {
|
2012-04-02 01:22:26 -04:00
|
|
|
call_hooks('page_content_top',$a->page['content']);
|
2016-12-20 11:43:46 -05:00
|
|
|
}
|
2011-01-10 16:45:42 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Call module functions
|
|
|
|
*/
|
|
|
|
|
2017-01-26 08:28:43 -05:00
|
|
|
if ($a->module_loaded) {
|
2010-07-01 19:48:07 -04:00
|
|
|
$a->page['page_title'] = $a->module;
|
2012-06-18 23:57:43 -04:00
|
|
|
$placeholder = '';
|
|
|
|
|
2017-01-26 08:28:43 -05:00
|
|
|
if (function_exists($a->module . '_init')) {
|
2012-06-18 23:57:43 -04:00
|
|
|
call_hooks($a->module . '_mod_init', $placeholder);
|
2010-07-01 19:48:07 -04:00
|
|
|
$func = $a->module . '_init';
|
|
|
|
$func($a);
|
2010-12-09 02:08:59 -05:00
|
|
|
}
|
2010-07-01 19:48:07 -04:00
|
|
|
|
2017-01-26 08:28:43 -05:00
|
|
|
if (function_exists(str_replace('-','_',current_theme()) . '_init')) {
|
2012-04-08 08:52:00 -04:00
|
|
|
$func = str_replace('-','_',current_theme()) . '_init';
|
|
|
|
$func($a);
|
|
|
|
}
|
|
|
|
|
2017-01-26 08:28:43 -05:00
|
|
|
if (($_SERVER['REQUEST_METHOD'] === 'POST') && (! $a->error)
|
2010-07-01 19:48:07 -04:00
|
|
|
&& (function_exists($a->module . '_post'))
|
|
|
|
&& (! x($_POST,'auth-params'))) {
|
2012-06-18 23:57:43 -04:00
|
|
|
call_hooks($a->module . '_mod_post', $_POST);
|
2010-07-01 19:48:07 -04:00
|
|
|
$func = $a->module . '_post';
|
|
|
|
$func($a);
|
|
|
|
}
|
|
|
|
|
2017-01-26 08:28:43 -05:00
|
|
|
if ((! $a->error) && (function_exists($a->module . '_afterpost'))) {
|
2012-06-18 23:57:43 -04:00
|
|
|
call_hooks($a->module . '_mod_afterpost',$placeholder);
|
2010-07-01 19:48:07 -04:00
|
|
|
$func = $a->module . '_afterpost';
|
|
|
|
$func($a);
|
|
|
|
}
|
|
|
|
|
2017-01-26 08:28:43 -05:00
|
|
|
if ((! $a->error) && (function_exists($a->module . '_content'))) {
|
2012-06-18 23:57:43 -04:00
|
|
|
$arr = array('content' => $a->page['content']);
|
|
|
|
call_hooks($a->module . '_mod_content', $arr);
|
|
|
|
$a->page['content'] = $arr['content'];
|
2010-07-01 19:48:07 -04:00
|
|
|
$func = $a->module . '_content';
|
2012-06-18 23:57:43 -04:00
|
|
|
$arr = array('content' => $func($a));
|
|
|
|
call_hooks($a->module . '_mod_aftercontent', $arr);
|
|
|
|
$a->page['content'] .= $arr['content'];
|
2010-07-01 19:48:07 -04:00
|
|
|
}
|
|
|
|
|
2017-01-26 08:28:43 -05:00
|
|
|
if (function_exists(str_replace('-','_',current_theme()) . '_content_loaded')) {
|
2012-11-06 10:43:19 -05:00
|
|
|
$func = str_replace('-','_',current_theme()) . '_content_loaded';
|
|
|
|
$func($a);
|
|
|
|
}
|
2010-07-01 19:48:07 -04:00
|
|
|
}
|
|
|
|
|
2012-11-06 10:43:19 -05:00
|
|
|
/*
|
|
|
|
* Create the page head after setting the language
|
2017-03-25 08:56:56 -04:00
|
|
|
* and getting any auth credentials.
|
2012-11-06 10:43:19 -05:00
|
|
|
*
|
|
|
|
* Moved init_pagehead() and init_page_end() to after
|
|
|
|
* all the module functions have executed so that all
|
2017-03-25 08:56:56 -04:00
|
|
|
* theme choices made by the modules can take effect.
|
2012-11-06 10:43:19 -05:00
|
|
|
*/
|
|
|
|
|
|
|
|
$a->init_pagehead();
|
|
|
|
|
2017-03-25 08:56:56 -04:00
|
|
|
/*
|
2012-11-06 10:43:19 -05:00
|
|
|
* Build the page ending -- this is stuff that goes right before
|
|
|
|
* the closing </body> tag
|
|
|
|
*/
|
|
|
|
$a->init_page_end();
|
|
|
|
|
2011-03-10 05:45:37 -05:00
|
|
|
// If you're just visiting, let javascript take you home
|
2017-03-25 08:56:56 -04:00
|
|
|
if (x($_SESSION, 'visitor_home')) {
|
2011-01-04 17:35:12 -05:00
|
|
|
$homebase = $_SESSION['visitor_home'];
|
2017-03-25 09:32:49 -04:00
|
|
|
} elseif (local_user()) {
|
2016-02-17 02:08:28 -05:00
|
|
|
$homebase = 'profile/' . $a->user['nickname'];
|
2017-01-26 08:28:43 -05:00
|
|
|
}
|
2011-01-04 17:35:12 -05:00
|
|
|
|
2017-01-26 08:28:43 -05:00
|
|
|
if (isset($homebase)) {
|
2011-01-04 17:35:12 -05:00
|
|
|
$a->page['content'] .= '<script>var homebase="' . $homebase . '" ; </script>';
|
2017-01-26 08:28:43 -05:00
|
|
|
}
|
2011-01-04 08:06:10 -05:00
|
|
|
|
2017-03-25 08:56:56 -04: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.
|
|
|
|
*/
|
2017-03-25 09:32:49 -04:00
|
|
|
if (stristr(implode("", $_SESSION['sysmsg']), t('Permission denied'))) {
|
2010-09-08 23:14:17 -04:00
|
|
|
header($_SERVER["SERVER_PROTOCOL"] . ' 403 ' . t('Permission denied.'));
|
|
|
|
}
|
|
|
|
|
2017-03-25 08:56:56 -04:00
|
|
|
/*
|
2010-12-09 02:08:59 -05:00
|
|
|
* Report anything which needs to be communicated in the notification area (before the main body)
|
|
|
|
*/
|
2011-01-10 16:45:42 -05:00
|
|
|
call_hooks('page_end', $a->page['content']);
|
|
|
|
|
2017-03-25 08:56:56 -04:00
|
|
|
/*
|
2010-12-09 02:08:59 -05:00
|
|
|
* Add the navigation (menu) template
|
|
|
|
*/
|
2017-01-26 08:28:43 -05:00
|
|
|
if ($a->module != 'install' && $a->module != 'maintenance') {
|
2011-02-21 23:19:33 -05:00
|
|
|
nav($a);
|
|
|
|
}
|
2010-07-01 19:48:07 -04:00
|
|
|
|
2017-03-25 08:56:56 -04:00
|
|
|
/*
|
2013-01-03 13:16:10 -05:00
|
|
|
* Add a "toggle mobile" link if we're using a mobile device
|
2010-12-09 02:08:59 -05:00
|
|
|
*/
|
2017-01-26 08:28:43 -05:00
|
|
|
if ($a->is_mobile || $a->is_tablet) {
|
|
|
|
if (isset($_SESSION['show-mobile']) && !$_SESSION['show-mobile']) {
|
2016-02-17 02:08:28 -05:00
|
|
|
$link = 'toggle_mobile?address=' . curPageURL();
|
2017-01-26 08:28:43 -05:00
|
|
|
} else {
|
2016-02-17 02:08:28 -05:00
|
|
|
$link = 'toggle_mobile?off=1&address=' . curPageURL();
|
2012-09-29 19:47:47 -04:00
|
|
|
}
|
|
|
|
$a->page['footer'] = replace_macros(get_markup_template("toggle_mobile_footer.tpl"), array(
|
2017-01-26 08:28:43 -05:00
|
|
|
'$toggle_link' => $link,
|
|
|
|
'$toggle_text' => t('toggle mobile')
|
|
|
|
));
|
2012-09-29 19:47:47 -04:00
|
|
|
}
|
|
|
|
|
2013-01-03 13:16:10 -05:00
|
|
|
/**
|
|
|
|
* Build the page - now that we have all the components
|
|
|
|
*/
|
|
|
|
|
2017-01-26 08:28:43 -05:00
|
|
|
if (!$a->theme['stylesheet']) {
|
2013-01-03 13:16:10 -05:00
|
|
|
$stylesheet = current_theme_url();
|
2017-01-26 08:28:43 -05:00
|
|
|
} else {
|
2013-01-03 13:16:10 -05:00
|
|
|
$stylesheet = $a->theme['stylesheet'];
|
2017-01-26 08:28:43 -05:00
|
|
|
}
|
2013-05-22 01:37:51 -04:00
|
|
|
|
|
|
|
$a->page['htmlhead'] = str_replace('{{$stylesheet}}',$stylesheet,$a->page['htmlhead']);
|
|
|
|
//$a->page['htmlhead'] = replace_macros($a->page['htmlhead'], array('$stylesheet' => $stylesheet));
|
2013-01-03 13:16:10 -05:00
|
|
|
|
2014-07-24 16:53:09 -04:00
|
|
|
if (isset($_GET["mode"]) AND (($_GET["mode"] == "raw") OR ($_GET["mode"] == "minimal"))) {
|
2013-10-14 18:43:11 -04:00
|
|
|
$doc = new DOMDocument();
|
|
|
|
|
|
|
|
$target = new DOMDocument();
|
|
|
|
$target->loadXML("<root></root>");
|
|
|
|
|
|
|
|
$content = mb_convert_encoding($a->page["content"], 'HTML-ENTITIES', "UTF-8");
|
|
|
|
|
2017-03-24 16:17:00 -04:00
|
|
|
/// @TODO one day, kill those error-surpressing @ stuff, or PHP should ban it
|
2013-10-14 18:43:11 -04:00
|
|
|
@$doc->loadHTML($content);
|
|
|
|
|
|
|
|
$xpath = new DomXPath($doc);
|
|
|
|
|
|
|
|
$list = $xpath->query("//*[contains(@id,'tread-wrapper-')]"); /* */
|
|
|
|
|
|
|
|
foreach ($list as $item) {
|
|
|
|
$item = $target->importNode($item, true);
|
|
|
|
|
|
|
|
// And then append it to the target
|
|
|
|
$target->documentElement->appendChild($item);
|
|
|
|
}
|
2013-12-04 17:46:51 -05:00
|
|
|
}
|
|
|
|
|
2014-07-24 16:53:09 -04:00
|
|
|
if (isset($_GET["mode"]) AND ($_GET["mode"] == "raw")) {
|
2013-10-14 18:43:11 -04:00
|
|
|
|
|
|
|
header("Content-type: text/html; charset=utf-8");
|
|
|
|
|
|
|
|
echo substr($target->saveHTML(), 6, -8);
|
|
|
|
|
2017-03-24 16:17:00 -04:00
|
|
|
killme();
|
2013-10-14 18:43:11 -04:00
|
|
|
}
|
|
|
|
|
2010-07-01 19:48:07 -04:00
|
|
|
$page = $a->page;
|
|
|
|
$profile = $a->profile;
|
|
|
|
|
2017-03-24 16:08:03 -04:00
|
|
|
header("X-Friendica-Version: " . FRIENDICA_VERSION);
|
2010-07-01 19:48:07 -04:00
|
|
|
header("Content-type: text/html; charset=utf-8");
|
2010-08-16 08:23:26 -04:00
|
|
|
|
2017-03-24 16:17:00 -04:00
|
|
|
/*
|
2017-04-30 00:01:26 -04:00
|
|
|
* We use $_GET["mode"] for special page templates. So we will check if we have
|
2017-03-24 16:17:00 -04:00
|
|
|
* to load another page template than the default one.
|
|
|
|
* The page templates are located in /view/php/ or in the theme directory.
|
|
|
|
*/
|
2016-07-11 04:33:39 -04:00
|
|
|
if (isset($_GET["mode"])) {
|
2017-03-24 16:08:03 -04:00
|
|
|
$template = theme_include($_GET["mode"] . '.php');
|
2016-07-11 04:33:39 -04:00
|
|
|
}
|
2010-07-01 19:48:07 -04:00
|
|
|
|
2016-07-11 04:33:39 -04:00
|
|
|
// If there is no page template use the default page template
|
2017-01-26 08:28:43 -05:00
|
|
|
if (!$template) {
|
2016-07-11 04:33:39 -04:00
|
|
|
$template = theme_include("default.php");
|
2013-12-04 17:46:51 -05:00
|
|
|
}
|
2010-07-01 19:48:07 -04:00
|
|
|
|
2017-03-24 16:08:03 -04:00
|
|
|
/// @TODO Looks unsafe (remote-inclusion), is maybe not but theme_include() uses file_exists() but does not escape anything
|
|
|
|
require_once $template;
|
2016-07-11 04:33:39 -04:00
|
|
|
|
2017-03-24 16:17:00 -04:00
|
|
|
killme();
|