friendica/boot.php

1384 lines
38 KiB
PHP
Raw Normal View History

2010-07-02 01:48:07 +02:00
<?php
require_once('include/config.php');
require_once('include/network.php');
require_once('include/plugin.php');
require_once('include/text.php');
require_once('include/pgettext.php');
require_once('include/nav.php');
2011-10-24 13:02:38 +02:00
require_once('include/cache.php');
define ( 'FRIENDICA_PLATFORM', 'Friendica');
2012-03-23 00:17:10 +01:00
define ( 'FRIENDICA_VERSION', '2.3.1289' );
define ( 'DFRN_PROTOCOL_VERSION', '2.23' );
define ( 'DB_UPDATE_VERSION', 1133 );
2010-07-02 01:48:07 +02:00
2010-10-13 11:47:32 +02:00
define ( 'EOL', "<br />\r\n" );
define ( 'ATOM_TIME', 'Y-m-d\TH:i:s\Z' );
2011-08-17 05:05:02 +02:00
/**
*
* Image storage quality. Lower numbers save space at cost of image detail.
* For ease of upgrade, please do not change here. Change jpeg quality with
2011-12-06 09:16:13 +01:00
* $a->config['system']['jpeg_quality'] = n;
* in .htconfig.php, where n is netween 1 and 100, and with very poor results
* below about 50
*
*/
define ( 'JPEG_QUALITY', 100 );
/**
* SSL redirection policies
*/
define ( 'SSL_POLICY_NONE', 0 );
define ( 'SSL_POLICY_FULL', 1 );
2011-01-30 07:41:01 +01:00
define ( 'SSL_POLICY_SELFSIGN', 2 );
2010-12-10 13:04:35 +01:00
/**
* log levels
*/
2010-11-02 01:56:36 +01:00
define ( 'LOGGER_NORMAL', 0 );
define ( 'LOGGER_TRACE', 1 );
define ( 'LOGGER_DEBUG', 2 );
define ( 'LOGGER_DATA', 3 );
define ( 'LOGGER_ALL', 4 );
2010-12-10 13:04:35 +01:00
/**
* registration policies
*/
2010-10-13 11:47:32 +02:00
define ( 'REGISTER_CLOSED', 0 );
define ( 'REGISTER_APPROVE', 1 );
define ( 'REGISTER_OPEN', 2 );
2010-07-02 01:48:07 +02:00
2010-12-10 13:04:35 +01:00
/**
* relationship types
*/
2010-07-02 01:48:07 +02:00
2011-08-08 01:15:54 +02:00
define ( 'CONTACT_IS_FOLLOWER', 1);
define ( 'CONTACT_IS_SHARING', 2);
define ( 'CONTACT_IS_FRIEND', 3);
2010-09-10 01:48:33 +02:00
/**
* Hook array order
*/
define ( 'HOOK_HOOK', 0);
define ( 'HOOK_FILE', 1);
define ( 'HOOK_FUNCTION', 2);
2010-12-10 13:04:35 +01:00
/**
*
* page/profile types
*
* PAGE_NORMAL is a typical personal profile account
2011-08-08 01:15:54 +02:00
* PAGE_SOAPBOX automatically approves all friend requests as CONTACT_IS_SHARING, (readonly)
* PAGE_COMMUNITY automatically approves all friend requests as CONTACT_IS_SHARING, but with
2010-12-10 13:04:35 +01:00
* write access to wall and comments (no email and not included in page owner's ACL lists)
2011-08-08 01:15:54 +02:00
* PAGE_FREELOVE automatically approves all friend requests as full friends (CONTACT_IS_FRIEND).
2010-12-10 13:04:35 +01:00
*
*/
define ( 'PAGE_NORMAL', 0 );
define ( 'PAGE_SOAPBOX', 1 );
define ( 'PAGE_COMMUNITY', 2 );
define ( 'PAGE_FREELOVE', 3 );
2012-01-25 01:23:30 +01:00
define ( 'PAGE_BLOG', 4 );
2011-04-11 12:22:09 +02:00
/**
* Network and protocol family types
*/
2011-07-12 03:28:13 +02:00
define ( 'NETWORK_ZOT', 'zot!'); // Zot!
define ( 'NETWORK_DFRN', 'dfrn'); // Friendica, Mistpark, other DFRN implementations
2011-04-11 12:22:09 +02:00
define ( 'NETWORK_OSTATUS', 'stat'); // status.net, identi.ca, GNU-social, other OStatus implementations
define ( 'NETWORK_FEED', 'feed'); // RSS/Atom feeds with no known "post/notify" protocol
define ( 'NETWORK_DIASPORA', 'dspr'); // Diaspora
define ( 'NETWORK_MAIL', 'mail'); // IMAP/POP
2012-02-01 05:03:46 +01:00
define ( 'NETWORK_MAIL2', 'mai2'); // extended IMAP/POP
2011-04-11 12:22:09 +02:00
define ( 'NETWORK_FACEBOOK', 'face'); // Facebook API
define ( 'NETWORK_LINKEDIN', 'lnkd'); // LinkedIn
define ( 'NETWORK_XMPP', 'xmpp'); // XMPP
define ( 'NETWORK_MYSPACE', 'mysp'); // MySpace
2012-02-01 05:03:46 +01:00
define ( 'NETWORK_GPLUS', 'goog'); // Google+
2011-04-11 12:22:09 +02:00
2010-12-10 13:04:35 +01:00
/**
* Maximum number of "people who like (or don't like) this" that we will list by name
*/
2010-10-13 02:11:06 +02:00
define ( 'MAX_LIKERS', 75);
2011-07-15 12:08:43 +02:00
/**
* Communication timeout
*/
define ( 'ZCURL_TIMEOUT' , (-1));
2010-12-10 13:04:35 +01:00
/**
* email notification options
*/
2010-10-13 02:11:06 +02:00
2012-02-09 23:06:17 +01:00
define ( 'NOTIFY_INTRO', 0x0001 );
define ( 'NOTIFY_CONFIRM', 0x0002 );
define ( 'NOTIFY_WALL', 0x0004 );
define ( 'NOTIFY_COMMENT', 0x0008 );
define ( 'NOTIFY_MAIL', 0x0010 );
define ( 'NOTIFY_SUGGEST', 0x0020 );
define ( 'NOTIFY_PROFILE', 0x0040 );
define ( 'NOTIFY_TAGSELF', 0x0080 );
define ( 'NOTIFY_TAGSHARE', 0x0100 );
2010-12-10 13:04:35 +01:00
/**
* various namespaces we may need to parse
*/
2010-10-13 11:47:32 +02:00
2011-07-12 03:28:13 +02:00
define ( 'NAMESPACE_ZOT', 'http://purl.org/macgirvin/zot' );
2010-09-10 02:55:59 +02:00
define ( 'NAMESPACE_DFRN' , 'http://purl.org/macgirvin/dfrn/1.0' );
define ( 'NAMESPACE_THREAD' , 'http://purl.org/syndication/thread/1.0' );
define ( 'NAMESPACE_TOMB' , 'http://purl.org/atompub/tombstones/1.0' );
define ( 'NAMESPACE_ACTIVITY', 'http://activitystrea.ms/spec/1.0/' );
define ( 'NAMESPACE_ACTIVITY_SCHEMA', 'http://activitystrea.ms/schema/1.0/' );
define ( 'NAMESPACE_MEDIA', 'http://purl.org/syndication/atommedia' );
define ( 'NAMESPACE_SALMON_ME', 'http://salmon-protocol.org/ns/magic-env' );
define ( 'NAMESPACE_OSTATUSSUB', 'http://ostatus.org/schema/1.0/subscribe' );
define ( 'NAMESPACE_GEORSS', 'http://www.georss.org/georss' );
define ( 'NAMESPACE_POCO', 'http://portablecontacts.net/spec/1.0' );
define ( 'NAMESPACE_FEED', 'http://schemas.google.com/g/2010#updates-from' );
2011-06-21 04:08:40 +02:00
define ( 'NAMESPACE_OSTATUS', 'http://ostatus.org/schema/1.0' );
define ( 'NAMESPACE_STATUSNET', 'http://status.net/schema/api/1/' );
2011-07-21 08:14:43 +02:00
define ( 'NAMESPACE_ATOM1', 'http://www.w3.org/2005/Atom' );
2010-12-10 13:04:35 +01:00
/**
* activity stream defines
*/
2010-10-13 11:47:32 +02:00
2010-09-09 05:14:17 +02:00
define ( 'ACTIVITY_LIKE', NAMESPACE_ACTIVITY_SCHEMA . 'like' );
2010-09-10 03:49:19 +02:00
define ( 'ACTIVITY_DISLIKE', NAMESPACE_DFRN . '/dislike' );
2010-09-10 02:55:59 +02:00
define ( 'ACTIVITY_OBJ_HEART', NAMESPACE_DFRN . '/heart' );
2010-09-09 05:14:17 +02:00
define ( 'ACTIVITY_FRIEND', NAMESPACE_ACTIVITY_SCHEMA . 'make-friend' );
2011-10-03 01:18:01 +02:00
define ( 'ACTIVITY_REQ_FRIEND', NAMESPACE_ACTIVITY_SCHEMA . 'request-friend' );
define ( 'ACTIVITY_UNFRIEND', NAMESPACE_ACTIVITY_SCHEMA . 'remove-friend' );
define ( 'ACTIVITY_FOLLOW', NAMESPACE_ACTIVITY_SCHEMA . 'follow' );
define ( 'ACTIVITY_UNFOLLOW', NAMESPACE_ACTIVITY_SCHEMA . 'stop-following' );
2010-09-09 05:14:17 +02:00
define ( 'ACTIVITY_POST', NAMESPACE_ACTIVITY_SCHEMA . 'post' );
define ( 'ACTIVITY_UPDATE', NAMESPACE_ACTIVITY_SCHEMA . 'update' );
2010-11-05 04:47:44 +01:00
define ( 'ACTIVITY_TAG', NAMESPACE_ACTIVITY_SCHEMA . 'tag' );
2012-01-25 01:23:30 +01:00
define ( 'ACTIVITY_FAVORITE', NAMESPACE_ACTIVITY_SCHEMA . 'favorite' );
2010-09-09 05:14:17 +02:00
define ( 'ACTIVITY_OBJ_COMMENT', NAMESPACE_ACTIVITY_SCHEMA . 'comment' );
define ( 'ACTIVITY_OBJ_NOTE', NAMESPACE_ACTIVITY_SCHEMA . 'note' );
define ( 'ACTIVITY_OBJ_PERSON', NAMESPACE_ACTIVITY_SCHEMA . 'person' );
define ( 'ACTIVITY_OBJ_PHOTO', NAMESPACE_ACTIVITY_SCHEMA . 'photo' );
define ( 'ACTIVITY_OBJ_P_PHOTO', NAMESPACE_ACTIVITY_SCHEMA . 'profile-photo' );
define ( 'ACTIVITY_OBJ_ALBUM', NAMESPACE_ACTIVITY_SCHEMA . 'photo-album' );
2011-06-10 01:24:29 +02:00
define ( 'ACTIVITY_OBJ_EVENT', NAMESPACE_ACTIVITY_SCHEMA . 'event' );
2011-09-19 05:17:44 +02:00
define ( 'ACTIVITY_OBJ_TAGTERM', NAMESPACE_DFRN . '/tagterm' );
2010-09-09 05:14:17 +02:00
2010-12-10 13:04:35 +01:00
/**
* item weight for query ordering
*/
2010-10-13 11:47:32 +02:00
2010-09-17 12:10:19 +02:00
define ( 'GRAVITY_PARENT', 0);
define ( 'GRAVITY_LIKE', 3);
define ( 'GRAVITY_COMMENT', 6);
2010-09-09 05:14:17 +02:00
2010-12-10 13:04:35 +01:00
/**
*
* Reverse the effect of magic_quotes_gpc if it is enabled.
* Please disable magic_quotes_gpc so we don't have to do this.
* See http://php.net/manual/en/security.magicquotes.disabling.php
*
*/
2010-11-24 08:42:45 +01:00
2011-07-18 06:34:02 +02:00
function startup() {
error_reporting(E_ERROR | E_WARNING | E_PARSE);
set_time_limit(0);
2011-09-23 02:35:49 +02:00
// This has to be quite large to deal with embedded private photos
2011-11-02 09:50:15 +01:00
ini_set('pcre.backtrack_limit', 500000);
2011-07-18 06:34:02 +02:00
if (get_magic_quotes_gpc()) {
$process = array(&$_GET, &$_POST, &$_COOKIE, &$_REQUEST);
while (list($key, $val) = each($process)) {
foreach ($val as $k => $v) {
unset($process[$key][$k]);
if (is_array($v)) {
$process[$key][stripslashes($k)] = $v;
$process[] = &$process[$key][stripslashes($k)];
} else {
$process[$key][stripslashes($k)] = stripslashes($v);
}
}
}
unset($process);
}
2010-11-24 08:42:45 +01:00
}
2010-12-10 13:04:35 +01:00
/**
*
* class: App
*
* Our main application structure for the life of this page
* Primarily deals with the URL that got us here
* and tries to make some sense of it, and
* stores our page contents and config storage
* and anything else that might need to be passed around
* before we spit the page out.
*
*/
2010-09-28 02:16:52 +02:00
2010-07-02 01:48:07 +02:00
if(! class_exists('App')) {
class App {
public $module_loaded = false;
public $query_string;
2010-07-02 01:48:07 +02:00
public $config;
public $page;
public $profile;
public $user;
public $cid;
2010-07-17 02:16:50 +02:00
public $contact;
2011-05-06 15:30:33 +02:00
public $contacts;
2011-04-12 01:15:38 +02:00
public $page_contact;
2010-07-02 01:48:07 +02:00
public $content;
public $data = array();
2010-07-02 01:48:07 +02:00
public $error = false;
public $cmd;
public $argv;
public $argc;
public $module;
2010-07-10 09:45:18 +02:00
public $pager;
2010-07-27 07:48:08 +02:00
public $strings;
2010-08-16 06:49:29 +02:00
public $path;
2010-12-21 04:38:34 +01:00
public $hooks;
2011-01-14 05:28:33 +01:00
public $timezone;
public $interactive = true;
2011-02-11 01:17:21 +01:00
public $plugins;
public $apps = array();
2011-03-02 05:18:47 +01:00
public $identities;
2011-11-07 10:17:44 +01:00
public $nav_sel;
2010-12-21 04:38:34 +01:00
2010-07-02 01:48:07 +02:00
private $scheme;
private $hostname;
2010-07-19 05:49:10 +02:00
private $baseurl;
2010-07-02 01:48:07 +02:00
private $db;
private $curl_code;
private $curl_headers;
2010-07-02 01:48:07 +02:00
function __construct() {
$this->config = array();
$this->page = array();
2010-07-10 09:45:18 +02:00
$this->pager= array();
2010-07-02 01:48:07 +02:00
$this->query_string = '';
2011-07-18 06:34:02 +02:00
startup();
$this->scheme = 'http';
if(x($_SERVER,'HTTPS') && $_SERVER['HTTPS'])
$this->scheme = 'https';
elseif(x($_SERVER,'SERVER_PORT') && (intval($_SERVER['SERVER_PORT']) == 443))
$this->scheme = 'https';
2010-10-30 22:25:37 +02:00
if(x($_SERVER,'SERVER_NAME')) {
2010-10-30 22:25:37 +02:00
$this->hostname = $_SERVER['SERVER_NAME'];
2011-07-26 00:43:28 +02:00
if(x($_SERVER,'SERVER_PORT') && $_SERVER['SERVER_PORT'] != 80 && $_SERVER['SERVER_PORT'] != 443)
$this->hostname .= ':' . $_SERVER['SERVER_PORT'];
/**
* Figure out if we are running at the top of a domain
* or in a sub-directory and adjust accordingly
*/
$path = trim(dirname($_SERVER['SCRIPT_NAME']),'/\\');
if(isset($path) && strlen($path) && ($path != $this->path))
$this->path = $path;
}
2011-08-08 01:15:54 +02:00
set_include_path(
"include/$this->hostname" . PATH_SEPARATOR
. 'include' . PATH_SEPARATOR
. 'library' . PATH_SEPARATOR
. 'library/phpsec' . PATH_SEPARATOR
. '.' );
2012-02-20 01:53:22 +01:00
if((x($_SERVER,'QUERY_STRING')) && substr($_SERVER['QUERY_STRING'],0,2) === "q=") {
$this->query_string = substr($_SERVER['QUERY_STRING'],2);
2012-02-20 01:53:22 +01:00
// removing trailing / - maybe a nginx problem
if (substr($this->query_string, 0, 1) == "/")
$this->query_string = substr($this->query_string, 1);
}
2010-10-30 22:25:37 +02:00
if(x($_GET,'q'))
$this->cmd = trim($_GET['q'],'/\\');
2010-07-02 01:48:07 +02:00
2011-12-04 12:01:04 +01:00
// unix style "homedir"
2010-07-10 09:45:18 +02:00
2011-12-04 12:01:04 +01:00
if(substr($this->cmd,0,1) === '~')
$this->cmd = 'profile/' . substr($this->cmd,1);
2010-12-11 05:21:34 +01:00
// Diaspora style profile url
if(substr($this->cmd,0,2) === 'u/')
$this->cmd = 'profile/' . substr($this->cmd,2);
2010-12-11 05:21:34 +01:00
/**
*
* Break the URL path into C style argc/argv style arguments for our
* modules. Given "http://example.com/module/arg1/arg2", $this->argc
* will be 3 (integer) and $this->argv will contain:
* [0] => 'module'
* [1] => 'arg1'
* [2] => 'arg2'
*
*
* There will always be one argument. If provided a naked domain
* URL, $this->argv[0] is set to "home".
*
*/
2010-07-02 01:48:07 +02:00
$this->argv = explode('/',$this->cmd);
$this->argc = count($this->argv);
if((array_key_exists('0',$this->argv)) && strlen($this->argv[0])) {
$this->module = str_replace(".", "_", $this->argv[0]);
2010-07-02 01:48:07 +02:00
}
else {
2011-07-01 05:34:49 +02:00
$this->argc = 1;
$this->argv = array('home');
2010-07-02 01:48:07 +02:00
$this->module = 'home';
}
2010-07-24 01:33:34 +02:00
2010-12-11 05:21:34 +01:00
/**
* Special handling for the webfinger/lrdd host XRD file
*/
if($this->cmd === '.well-known/host-meta') {
$this->argc = 1;
$this->argv = array('hostxrd');
$this->module = 'hostxrd';
}
2010-11-11 11:49:28 +01:00
2010-12-11 05:21:34 +01:00
/**
* See if there is any page number information, and initialise
* pagination
*/
2010-07-10 09:45:18 +02:00
$this->pager['page'] = ((x($_GET,'page')) ? $_GET['page'] : 1);
$this->pager['itemspage'] = 50;
$this->pager['start'] = ($this->pager['page'] * $this->pager['itemspage']) - $this->pager['itemspage'];
$this->pager['total'] = 0;
2010-07-02 01:48:07 +02:00
}
function get_baseurl($ssl = false) {
2010-07-19 05:49:10 +02:00
$scheme = $this->scheme;
2012-03-15 04:36:23 +01:00
if((x($this->config,'system')) && (x($this->config['system'],'ssl_policy'))) {
if(intval($this->config['system']['ssl_policy']) === intval(SSL_POLICY_FULL))
$scheme = 'https';
2012-03-15 04:36:23 +01:00
// We need to populate the $ssl flag across the entire program before turning this on.
// Basically, we'll have $ssl = true on any links which can only be seen by a logged in user
// (and also the login link). Anything seen by an outsider will have it turned off.
// At present, setting SSL_POLICY_SELFSIGN will only force remote contacts to update their
// contact links to this site with "http:" if they are currently using "https:"
// if($this->config['system']['ssl_policy'] == SSL_POLICY_SELFSIGN) {
// if($ssl)
// $scheme = 'https';
// else
// $scheme = 'http';
// }
}
2011-01-30 07:38:58 +01:00
$this->baseurl = $scheme . "://" . $this->hostname . ((isset($this->path) && strlen($this->path)) ? '/' . $this->path : '' );
2010-07-19 05:49:10 +02:00
return $this->baseurl;
}
function set_baseurl($url) {
$parsed = @parse_url($url);
2010-07-19 05:49:10 +02:00
$this->baseurl = $url;
if($parsed) {
$this->scheme = $parsed['scheme'];
$this->hostname = $parsed['host'];
if(x($parsed,'port'))
$this->hostname .= ':' . $parsed['port'];
if(x($parsed,'path'))
$this->path = trim($parsed['path'],'\\/');
}
2010-07-02 01:48:07 +02:00
}
2010-07-19 08:23:18 +02:00
function get_hostname() {
return $this->hostname;
}
function set_hostname($h) {
$this->hostname = $h;
}
2010-07-19 05:49:10 +02:00
2010-07-02 01:48:07 +02:00
function set_path($p) {
$this->path = trim(trim($p),'/');
2010-07-02 01:48:07 +02:00
}
2010-07-20 07:52:31 +02:00
function get_path() {
return $this->path;
}
2010-07-10 09:45:18 +02:00
function set_pager_total($n) {
$this->pager['total'] = intval($n);
}
2010-07-20 07:52:31 +02:00
2010-07-10 09:45:18 +02:00
function set_pager_itemspage($n) {
$this->pager['itemspage'] = intval($n);
$this->pager['start'] = ($this->pager['page'] * $this->pager['itemspage']) - $this->pager['itemspage'];
}
2010-07-02 01:48:07 +02:00
function init_pagehead() {
$interval = ((local_user()) ? get_pconfig(local_user(),'system','update_interval') : 40000);
if($interval < 10000)
$interval = 40000;
2011-01-03 10:03:21 +01:00
$this->page['title'] = $this->config['sitename'];
$tpl = file_get_contents('view/head.tpl');
$this->page['htmlhead'] = replace_macros($tpl,array(
'$baseurl' => $this->get_baseurl(), // FIXME for z_path!!!!
'$generator' => 'Friendica' . ' ' . FRIENDICA_VERSION,
2011-03-30 00:27:14 +02:00
'$delitem' => t('Delete this item?'),
2011-11-23 01:00:05 +01:00
'$comment' => t('Comment'),
'$showmore' => t('show more'),
'$showfewer' => t('show fewer'),
'$update_interval' => $interval
2010-08-16 14:23:26 +02:00
));
2010-07-02 01:48:07 +02:00
}
function set_curl_code($code) {
$this->curl_code = $code;
}
function get_curl_code() {
return $this->curl_code;
}
function set_curl_headers($headers) {
$this->curl_headers = $headers;
}
function get_curl_headers() {
return $this->curl_headers;
}
2010-07-02 01:48:07 +02:00
}}
2010-10-07 02:40:58 +02:00
// retrieve the App structure
// useful in functions which require it but don't get it passed to them
if(! function_exists('get_app')) {
function get_app() {
global $a;
return $a;
}};
2010-07-02 01:48:07 +02:00
2010-09-28 02:16:52 +02:00
// Multi-purpose function to check variable state.
// Usage: x($var) or $x($array,'key')
// returns false if variable/key is not set
// if variable is set, returns 1 if has 'non-zero' value, otherwise returns 0.
// e.g. x('') or x(0) returns 0;
2010-07-02 01:48:07 +02:00
if(! function_exists('x')) {
function x($s,$k = NULL) {
if($k != NULL) {
if((is_array($s)) && (array_key_exists($k,$s))) {
if($s[$k])
return (int) 1;
return (int) 0;
}
return false;
}
else {
if(isset($s)) {
if($s) {
return (int) 1;
}
return (int) 0;
}
return false;
}
}}
2010-09-28 02:16:52 +02:00
// called from db initialisation if db is dead.
2010-07-02 01:48:07 +02:00
if(! function_exists('system_unavailable')) {
function system_unavailable() {
include('system_unavailable.php');
system_down();
2010-07-02 01:48:07 +02:00
killme();
}}
2011-06-14 11:16:27 +02:00
function clean_urls() {
global $a;
// if($a->config['system']['clean_urls'])
return true;
// return false;
}
function z_path() {
global $a;
$base = $a->get_baseurl();
if(! clean_urls())
$base .= '/?q=';
return $base;
}
function z_root() {
global $a;
return $a->get_baseurl();
}
function absurl($path) {
if(strpos($path,'/') === 0)
return z_path() . $path;
return $path;
}
2010-09-28 02:16:52 +02:00
// Primarily involved with database upgrade, but also sets the
// base url for use in cmdline programs which don't have
// $_SERVER variables, and synchronising the state of installed plugins.
if(! function_exists('check_config')) {
function check_config(&$a) {
2010-08-16 07:43:42 +02:00
$build = get_config('system','build');
if(! x($build))
2011-03-10 01:57:22 +01:00
$build = set_config('system','build',DB_UPDATE_VERSION);
2010-08-16 07:43:42 +02:00
$url = get_config('system','url');
// if the url isn't set or the stored url is radically different
// than the currently visited url, store the current value accordingly.
// "Radically different" ignores common variations such as http vs https
// and www.example.com vs example.com.
if((! x($url)) || (! link_compare($url,$a->get_baseurl())))
2010-08-16 07:43:42 +02:00
$url = set_config('system','url',$a->get_baseurl());
2011-03-10 01:57:22 +01:00
if($build != DB_UPDATE_VERSION) {
2010-08-16 07:43:42 +02:00
$stored = intval($build);
2011-03-10 01:57:22 +01:00
$current = intval(DB_UPDATE_VERSION);
2010-08-16 07:43:42 +02:00
if(($stored < $current) && file_exists('update.php')) {
load_config('database');
2010-08-16 07:43:42 +02:00
// We're reporting a different version than what is currently installed.
// Run any existing update scripts to bring the database up to current.
require_once('update.php');
// make sure that boot.php and update.php are the same release, we might be
// updating right this very second and the correct version of the update.php
// file may not be here yet. This can happen on a very busy site.
if(DB_UPDATE_VERSION == UPDATE_VERSION) {
for($x = $stored; $x < $current; $x ++) {
if(function_exists('update_' . $x)) {
// There could be a lot of processes running or about to run.
// We want exactly one process to run the update command.
// So store the fact that we're taking responsibility
// after first checking to see if somebody else already has.
// If the update fails or times-out completely you may need to
// delete the config entry to try again.
if(get_config('database','update_' . $x))
break;
set_config('database','update_' . $x, '1');
// call the specific update
$func = 'update_' . $x;
$func($a);
}
2010-08-15 04:31:10 +02:00
}
set_config('system','build', DB_UPDATE_VERSION);
2010-08-15 04:31:10 +02:00
}
}
}
/**
*
* Synchronise plugins:
*
* $a->config['system']['addon'] contains a comma-separated list of names
* of plugins/addons which are used on this system.
* Go through the database list of already installed addons, and if we have
* an entry, but it isn't in the config list, call the uninstall procedure
* and mark it uninstalled in the database (for now we'll remove it).
* Then go through the config list and if we have a plugin that isn't installed,
* call the install procedure and add it to the database.
*
*/
$r = q("SELECT * FROM `addon` WHERE `installed` = 1");
if(count($r))
$installed = $r;
2010-12-23 02:25:58 +01:00
else
$installed = array();
$plugins = get_config('system','addon');
$plugins_arr = array();
if($plugins)
$plugins_arr = explode(',',str_replace(' ', '',$plugins));
2011-02-11 01:17:21 +01:00
$a->plugins = $plugins_arr;
$installed_arr = array();
2010-12-23 02:25:58 +01:00
if(count($installed)) {
foreach($installed as $i) {
if(! in_array($i['name'],$plugins_arr)) {
2011-06-14 11:16:27 +02:00
uninstall_plugin($i['name']);
}
2010-12-23 02:25:58 +01:00
else
$installed_arr[] = $i['name'];
}
}
if(count($plugins_arr)) {
foreach($plugins_arr as $p) {
if(! in_array($p,$installed_arr)) {
2011-06-14 11:16:27 +02:00
install_plugin($p);
}
}
}
2011-03-09 11:12:32 +01:00
load_hooks();
2010-08-15 04:31:10 +02:00
return;
}}
2010-07-19 15:58:03 +02:00
2011-08-08 01:56:26 +02:00
function get_guid($size=16) {
$exists = true; // assume by default that we don't have a unique guid
do {
2011-08-08 01:56:26 +02:00
$s = random_string($size);
$r = q("select id from guid where guid = '%s' limit 1", dbesc($s));
2011-08-08 01:56:26 +02:00
if(! count($r))
$exists = false;
} while($exists);
q("insert into guid ( guid ) values ( '%s' ) ", dbesc($s));
return $s;
}
2010-07-02 01:48:07 +02:00
2010-09-28 02:16:52 +02:00
// wrapper for adding a login box. If $register == true provide a registration
// link. This will most always depend on the value of $a->config['register_policy'].
2010-10-13 11:47:32 +02:00
// returns the complete html for inserting into the page
2010-09-28 02:16:52 +02:00
2010-07-02 01:48:07 +02:00
if(! function_exists('login')) {
2011-11-07 17:34:29 +01:00
function login($register = false, $hiddens=false) {
$a = get_app();
2010-07-02 01:48:07 +02:00
$o = "";
2011-10-17 16:53:59 +02:00
$reg = false;
if ($register) {
$reg = array(
'title' => t('Create a New Account'),
'desc' => t('Register')
);
}
2010-07-02 01:48:07 +02:00
2011-10-17 16:53:59 +02:00
$noid = get_config('system','no_openid');
$dest_url = $a->get_baseurl(true) . '/' . $a->query_string;
2011-02-07 08:06:50 +01:00
if(local_user()) {
2011-05-11 13:37:13 +02:00
$tpl = get_markup_template("logout.tpl");
2010-07-02 01:48:07 +02:00
}
else {
2011-05-11 13:37:13 +02:00
$tpl = get_markup_template("login.tpl");
$_SESSION['return_url'] = $a->query_string;
2010-07-02 01:48:07 +02:00
}
2011-05-01 02:24:37 +02:00
$o .= replace_macros($tpl,array(
'$dest_url' => $dest_url,
'$logout' => t('Logout'),
'$login' => t('Login'),
2011-10-17 16:53:59 +02:00
'$lname' => array('username', t('Nickname or Email address: ') , '', ''),
'$lpassword' => array('password', t('Password: '), '', ''),
'$openid' => !$noid,
'$lopenid'