4 * This file defines some global constants and includes the central App class.
10 * Friendica is a communications platform for integrated social communications
11 * utilising decentralised communications and linkage to several indie social
12 * projects - as well as popular mainstream providers.
14 * Our mission is to free our friends and families from the clutches of
15 * data-harvesting corporations, and pave the way to a future where social
16 * communications are free and open and flow between alternate providers as
17 * easily as email does today.
20 require_once('include/autoloader.php');
22 require_once('include/config.php');
23 require_once('include/network.php');
24 require_once('include/plugin.php');
25 require_once('include/text.php');
26 require_once('include/datetime.php');
27 require_once('include/pgettext.php');
28 require_once('include/nav.php');
29 require_once('include/cache.php');
30 require_once('library/Mobile_Detect/Mobile_Detect.php');
31 require_once('include/features.php');
32 require_once('include/identity.php');
34 require_once('update.php');
35 require_once('include/dbstructure.php');
37 define ( 'FRIENDICA_PLATFORM', 'Friendica');
38 define ( 'FRIENDICA_CODENAME', 'Asparagus');
39 define ( 'FRIENDICA_VERSION', '3.5-dev' );
40 define ( 'DFRN_PROTOCOL_VERSION', '2.23' );
41 define ( 'DB_UPDATE_VERSION', 1194 );
44 * @brief Constant with a HTML line break.
46 * Contains a HTML line break (br) element and a real carriage return with line
47 * feed for the source.
48 * This can be used in HTML and JavaScript where needed a line break.
50 define ( 'EOL', "<br />\r\n" );
51 define ( 'ATOM_TIME', 'Y-m-d\TH:i:s\Z' );
55 * @brief Image storage quality.
57 * Lower numbers save space at cost of image detail.
58 * For ease of upgrade, please do not change here. Change jpeg quality with
59 * $a->config['system']['jpeg_quality'] = n;
60 * in .htconfig.php, where n is netween 1 and 100, and with very poor results
65 define ( 'JPEG_QUALITY', 100 );
67 * $a->config['system']['png_quality'] from 0 (uncompressed) to 9
69 define ( 'PNG_QUALITY', 8 );
73 * An alternate way of limiting picture upload sizes. Specify the maximum pixel
74 * length that pictures are allowed to be (for non-square pictures, it will apply
75 * to the longest side). Pictures longer than this length will be resized to be
76 * this length (on the longest side, the other side will be scaled appropriately).
77 * Modify this value using
79 * $a->config['system']['max_image_length'] = n;
83 * If you don't want to set a maximum length, set to -1. The default value is
84 * defined by 'MAX_IMAGE_LENGTH' below.
87 define ( 'MAX_IMAGE_LENGTH', -1 );
94 define ( 'DEFAULT_DB_ENGINE', 'MyISAM' );
99 * SSL redirection policies
102 define ( 'SSL_POLICY_NONE', 0 );
103 define ( 'SSL_POLICY_FULL', 1 );
104 define ( 'SSL_POLICY_SELFSIGN', 2 );
113 define ( 'LOGGER_NORMAL', 0 );
114 define ( 'LOGGER_TRACE', 1 );
115 define ( 'LOGGER_DEBUG', 2 );
116 define ( 'LOGGER_DATA', 3 );
117 define ( 'LOGGER_ALL', 4 );
126 define ( 'CACHE_MONTH', 0 );
127 define ( 'CACHE_WEEK', 1 );
128 define ( 'CACHE_DAY', 2 );
129 define ( 'CACHE_HOUR', 3 );
135 * Registration policies
138 define ( 'REGISTER_CLOSED', 0 );
139 define ( 'REGISTER_APPROVE', 1 );
140 define ( 'REGISTER_OPEN', 2 );
149 define ( 'CONTACT_IS_FOLLOWER', 1);
150 define ( 'CONTACT_IS_SHARING', 2);
151 define ( 'CONTACT_IS_FRIEND', 3);
157 * DB update return values
160 define ( 'UPDATE_SUCCESS', 0);
161 define ( 'UPDATE_FAILED', 1);
166 * @name page/profile types
168 * PAGE_NORMAL is a typical personal profile account
169 * PAGE_SOAPBOX automatically approves all friend requests as CONTACT_IS_SHARING, (readonly)
170 * PAGE_COMMUNITY automatically approves all friend requests as CONTACT_IS_SHARING, but with
171 * write access to wall and comments (no email and not included in page owner's ACL lists)
172 * PAGE_FREELOVE automatically approves all friend requests as full friends (CONTACT_IS_FRIEND).
176 define ( 'PAGE_NORMAL', 0 );
177 define ( 'PAGE_SOAPBOX', 1 );
178 define ( 'PAGE_COMMUNITY', 2 );
179 define ( 'PAGE_FREELOVE', 3 );
180 define ( 'PAGE_BLOG', 4 );
181 define ( 'PAGE_PRVGROUP', 5 );
187 * Type of the community page
190 define ( 'CP_NO_COMMUNITY_PAGE', -1 );
191 define ( 'CP_USERS_ON_SERVER', 0 );
192 define ( 'CP_GLOBAL_COMMUNITY', 1 );
198 * Network and protocol family types
201 define ( 'NETWORK_DFRN', 'dfrn'); // Friendica, Mistpark, other DFRN implementations
202 define ( 'NETWORK_ZOT', 'zot!'); // Zot!
203 define ( 'NETWORK_OSTATUS', 'stat'); // status.net, identi.ca, GNU-social, other OStatus implementations
204 define ( 'NETWORK_FEED', 'feed'); // RSS/Atom feeds with no known "post/notify" protocol
205 define ( 'NETWORK_DIASPORA', 'dspr'); // Diaspora
206 define ( 'NETWORK_MAIL', 'mail'); // IMAP/POP
207 define ( 'NETWORK_MAIL2', 'mai2'); // extended IMAP/POP
208 define ( 'NETWORK_FACEBOOK', 'face'); // Facebook API
209 define ( 'NETWORK_LINKEDIN', 'lnkd'); // LinkedIn
210 define ( 'NETWORK_XMPP', 'xmpp'); // XMPP
211 define ( 'NETWORK_MYSPACE', 'mysp'); // MySpace
212 define ( 'NETWORK_GPLUS', 'goog'); // Google+
213 define ( 'NETWORK_PUMPIO', 'pump'); // pump.io
214 define ( 'NETWORK_TWITTER', 'twit'); // Twitter
215 define ( 'NETWORK_DIASPORA2', 'dspc'); // Diaspora connector
216 define ( 'NETWORK_STATUSNET', 'stac'); // Statusnet connector
217 define ( 'NETWORK_APPNET', 'apdn'); // app.net
218 define ( 'NETWORK_NEWS', 'nntp'); // Network News Transfer Protocol
219 define ( 'NETWORK_ICALENDAR', 'ical'); // iCalendar
220 define ( 'NETWORK_PHANTOM', 'unkn'); // Place holder
224 * These numbers are used in stored permissions
225 * and existing allocations MUST NEVER BE CHANGED
226 * OR RE-ASSIGNED! You may only add to them.
229 $netgroup_ids = array(
230 NETWORK_DFRN => (-1),
232 NETWORK_OSTATUS => (-3),
233 NETWORK_FEED => (-4),
234 NETWORK_DIASPORA => (-5),
235 NETWORK_MAIL => (-6),
236 NETWORK_MAIL2 => (-7),
237 NETWORK_FACEBOOK => (-8),
238 NETWORK_LINKEDIN => (-9),
239 NETWORK_XMPP => (-10),
240 NETWORK_MYSPACE => (-11),
241 NETWORK_GPLUS => (-12),
242 NETWORK_PUMPIO => (-13),
243 NETWORK_TWITTER => (-14),
244 NETWORK_DIASPORA2 => (-15),
245 NETWORK_STATUSNET => (-16),
246 NETWORK_APPNET => (-17),
247 NETWORK_NEWS => (-18),
248 NETWORK_ICALENDAR => (-19),
250 NETWORK_PHANTOM => (-127),
255 * Maximum number of "people who like (or don't like) this" that we will list by name
258 define ( 'MAX_LIKERS', 75);
261 * Communication timeout
264 define ( 'ZCURL_TIMEOUT' , (-1));
270 * Email notification options
273 define ( 'NOTIFY_INTRO', 0x0001 );
274 define ( 'NOTIFY_CONFIRM', 0x0002 );
275 define ( 'NOTIFY_WALL', 0x0004 );
276 define ( 'NOTIFY_COMMENT', 0x0008 );
277 define ( 'NOTIFY_MAIL', 0x0010 );
278 define ( 'NOTIFY_SUGGEST', 0x0020 );
279 define ( 'NOTIFY_PROFILE', 0x0040 );
280 define ( 'NOTIFY_TAGSELF', 0x0080 );
281 define ( 'NOTIFY_TAGSHARE', 0x0100 );
282 define ( 'NOTIFY_POKE', 0x0200 );
283 define ( 'NOTIFY_SHARE', 0x0400 );
285 define ( 'NOTIFY_SYSTEM', 0x8000 );
295 define ( 'TERM_UNKNOWN', 0 );
296 define ( 'TERM_HASHTAG', 1 );
297 define ( 'TERM_MENTION', 2 );
298 define ( 'TERM_CATEGORY', 3 );
299 define ( 'TERM_PCATEGORY', 4 );
300 define ( 'TERM_FILE', 5 );
301 define ( 'TERM_SAVEDSEARCH', 6 );
302 define ( 'TERM_CONVERSATION', 7 );
304 define ( 'TERM_OBJ_POST', 1 );
305 define ( 'TERM_OBJ_PHOTO', 2 );
312 * Various namespaces we may need to parse
315 define ( 'NAMESPACE_ZOT', 'http://purl.org/zot' );
316 define ( 'NAMESPACE_DFRN' , 'http://purl.org/macgirvin/dfrn/1.0' );
317 define ( 'NAMESPACE_THREAD' , 'http://purl.org/syndication/thread/1.0' );
318 define ( 'NAMESPACE_TOMB' , 'http://purl.org/atompub/tombstones/1.0' );
319 define ( 'NAMESPACE_ACTIVITY', 'http://activitystrea.ms/spec/1.0/' );
320 define ( 'NAMESPACE_ACTIVITY_SCHEMA', 'http://activitystrea.ms/schema/1.0/' );
321 define ( 'NAMESPACE_MEDIA', 'http://purl.org/syndication/atommedia' );
322 define ( 'NAMESPACE_SALMON_ME', 'http://salmon-protocol.org/ns/magic-env' );
323 define ( 'NAMESPACE_OSTATUSSUB', 'http://ostatus.org/schema/1.0/subscribe' );
324 define ( 'NAMESPACE_GEORSS', 'http://www.georss.org/georss' );
325 define ( 'NAMESPACE_POCO', 'http://portablecontacts.net/spec/1.0' );
326 define ( 'NAMESPACE_FEED', 'http://schemas.google.com/g/2010#updates-from' );
327 define ( 'NAMESPACE_OSTATUS', 'http://ostatus.org/schema/1.0' );
328 define ( 'NAMESPACE_STATUSNET', 'http://status.net/schema/api/1/' );
329 define ( 'NAMESPACE_ATOM1', 'http://www.w3.org/2005/Atom' );
335 * Activity stream defines
338 define ( 'ACTIVITY_LIKE', NAMESPACE_ACTIVITY_SCHEMA . 'like' );
339 define ( 'ACTIVITY_DISLIKE', NAMESPACE_DFRN . '/dislike' );
340 define ( 'ACTIVITY_ATTEND', NAMESPACE_ZOT . '/activity/attendyes' );
341 define ( 'ACTIVITY_ATTENDNO', NAMESPACE_ZOT . '/activity/attendno' );
342 define ( 'ACTIVITY_ATTENDMAYBE', NAMESPACE_ZOT . '/activity/attendmaybe' );
344 define ( 'ACTIVITY_OBJ_HEART', NAMESPACE_DFRN . '/heart' );
346 define ( 'ACTIVITY_FRIEND', NAMESPACE_ACTIVITY_SCHEMA . 'make-friend' );
347 define ( 'ACTIVITY_REQ_FRIEND', NAMESPACE_ACTIVITY_SCHEMA . 'request-friend' );
348 define ( 'ACTIVITY_UNFRIEND', NAMESPACE_ACTIVITY_SCHEMA . 'remove-friend' );
349 define ( 'ACTIVITY_FOLLOW', NAMESPACE_ACTIVITY_SCHEMA . 'follow' );
350 define ( 'ACTIVITY_UNFOLLOW', NAMESPACE_ACTIVITY_SCHEMA . 'stop-following' );
351 define ( 'ACTIVITY_JOIN', NAMESPACE_ACTIVITY_SCHEMA . 'join' );
353 define ( 'ACTIVITY_POST', NAMESPACE_ACTIVITY_SCHEMA . 'post' );
354 define ( 'ACTIVITY_UPDATE', NAMESPACE_ACTIVITY_SCHEMA . 'update' );
355 define ( 'ACTIVITY_TAG', NAMESPACE_ACTIVITY_SCHEMA . 'tag' );
356 define ( 'ACTIVITY_FAVORITE', NAMESPACE_ACTIVITY_SCHEMA . 'favorite' );
357 define ( 'ACTIVITY_SHARE', NAMESPACE_ACTIVITY_SCHEMA . 'share' );
359 define ( 'ACTIVITY_POKE', NAMESPACE_ZOT . '/activity/poke' );
360 define ( 'ACTIVITY_MOOD', NAMESPACE_ZOT . '/activity/mood' );
362 define ( 'ACTIVITY_OBJ_BOOKMARK', NAMESPACE_ACTIVITY_SCHEMA . 'bookmark' );
363 define ( 'ACTIVITY_OBJ_COMMENT', NAMESPACE_ACTIVITY_SCHEMA . 'comment' );
364 define ( 'ACTIVITY_OBJ_NOTE', NAMESPACE_ACTIVITY_SCHEMA . 'note' );
365 define ( 'ACTIVITY_OBJ_PERSON', NAMESPACE_ACTIVITY_SCHEMA . 'person' );
366 define ( 'ACTIVITY_OBJ_IMAGE', NAMESPACE_ACTIVITY_SCHEMA . 'image' );
367 define ( 'ACTIVITY_OBJ_PHOTO', NAMESPACE_ACTIVITY_SCHEMA . 'photo' );
368 define ( 'ACTIVITY_OBJ_VIDEO', NAMESPACE_ACTIVITY_SCHEMA . 'video' );
369 define ( 'ACTIVITY_OBJ_P_PHOTO', NAMESPACE_ACTIVITY_SCHEMA . 'profile-photo' );
370 define ( 'ACTIVITY_OBJ_ALBUM', NAMESPACE_ACTIVITY_SCHEMA . 'photo-album' );
371 define ( 'ACTIVITY_OBJ_EVENT', NAMESPACE_ACTIVITY_SCHEMA . 'event' );
372 define ( 'ACTIVITY_OBJ_GROUP', NAMESPACE_ACTIVITY_SCHEMA . 'group' );
373 define ( 'ACTIVITY_OBJ_TAGTERM', NAMESPACE_DFRN . '/tagterm' );
374 define ( 'ACTIVITY_OBJ_PROFILE', NAMESPACE_DFRN . '/profile' );
375 define ( 'ACTIVITY_OBJ_QUESTION', 'http://activityschema.org/object/question' );
381 * Item weight for query ordering
384 define ( 'GRAVITY_PARENT', 0);
385 define ( 'GRAVITY_LIKE', 3);
386 define ( 'GRAVITY_COMMENT', 6);
392 * Reverse the effect of magic_quotes_gpc if it is enabled.
393 * Please disable magic_quotes_gpc so we don't have to do this.
394 * See http://php.net/manual/en/security.magicquotes.disabling.php
400 error_reporting(E_ERROR | E_WARNING | E_PARSE);
404 // This has to be quite large to deal with embedded private photos
405 ini_set('pcre.backtrack_limit', 500000);
408 if (get_magic_quotes_gpc()) {
409 $process = array(&$_GET, &$_POST, &$_COOKIE, &$_REQUEST);
410 while (list($key, $val) = each($process)) {
411 foreach ($val as $k => $v) {
412 unset($process[$key][$k]);
414 $process[$key][stripslashes($k)] = $v;
415 $process[] = &$process[$key][stripslashes($k)];
417 $process[$key][stripslashes($k)] = stripslashes($v);
430 * @brief Our main application structure for the life of this page.
432 * Primarily deals with the URL that got us here
433 * and tries to make some sense of it, and
434 * stores our page contents and config storage
435 * and anything else that might need to be passed around
436 * before we spit the page out.
441 public $module_loaded = false;
442 public $query_string;
451 public $page_contact;
453 public $data = array();
454 public $error = false;
464 public $interactive = true;
466 public $apps = array();
470 public $is_friendica_app;
471 public $performance = array();
472 public $callstack = array();
479 // Allow themes to control internal parameters
480 // by changing App values in theme.php
482 public $sourcename = '';
483 public $videowidth = 425;
484 public $videoheight = 350;
485 public $force_max_items = 0;
486 public $theme_thread_allow = true;
487 public $theme_events_in_profile = true;
490 * @brief An array for all theme-controllable parameters
492 * Mostly unimplemented yet. Only options 'template_engine' and
495 public $theme = array(
498 'videoheight' => 350,
499 'force_max_items' => 0,
500 'thread_allow' => true,
502 'template_engine' => 'smarty3',
506 * @brief An array of registered template engines ('name'=>'class name')
508 public $template_engines = array();
510 * @brief An array of instanced template engines ('name'=>'instance')
512 public $template_engine_instance = array();
514 private $ldelim = array(
518 private $rdelim = array(
529 private $curl_content_type;
530 private $curl_headers;
532 private $cached_profile_image;
533 private $cached_profile_picdate;
538 * @brief App constructor.
540 function __construct() {
542 global $default_timezone;
546 if (file_exists(".htpreconfig.php"))
547 @include(".htpreconfig.php");
549 $this->timezone = ((x($default_timezone)) ? $default_timezone : 'UTC');
551 date_default_timezone_set($this->timezone);
553 $this->performance["start"] = microtime(true);
554 $this->performance["database"] = 0;
555 $this->performance["network"] = 0;
556 $this->performance["file"] = 0;
557 $this->performance["rendering"] = 0;
558 $this->performance["parser"] = 0;
559 $this->performance["marktime"] = 0;
560 $this->performance["markstart"] = microtime(true);
562 $this->callstack["database"] = array();
563 $this->callstack["network"] = array();
564 $this->callstack["file"] = array();
565 $this->callstack["rendering"] = array();
566 $this->callstack["parser"] = array();
568 $this->config = array();
569 $this->page = array();
570 $this->pager= array();
572 $this->query_string = '';
577 'include' . PATH_SEPARATOR
578 . 'library' . PATH_SEPARATOR
579 . 'library/phpsec' . PATH_SEPARATOR
580 . 'library/langdet' . PATH_SEPARATOR
584 $this->scheme = 'http';
585 if(x($_SERVER,'HTTPS') && $_SERVER['HTTPS'])
586 $this->scheme = 'https';
587 elseif(x($_SERVER,'SERVER_PORT') && (intval($_SERVER['SERVER_PORT']) == 443))
588 $this->scheme = 'https';
590 if(x($_SERVER,'SERVER_NAME')) {
591 $this->hostname = $_SERVER['SERVER_NAME'];
593 // See bug 437 - this didn't work so disabling it
594 //if(stristr($this->hostname,'xn--')) {
595 // PHP or webserver may have converted idn to punycode, so
596 // convert punycode back to utf-8
597 // require_once('library/simplepie/idn/idna_convert.class.php');
598 // $x = new idna_convert();
599 // $this->hostname = $x->decode($_SERVER['SERVER_NAME']);
602 if(x($_SERVER,'SERVER_PORT') && $_SERVER['SERVER_PORT'] != 80 && $_SERVER['SERVER_PORT'] != 443)
603 $this->hostname .= ':' . $_SERVER['SERVER_PORT'];
605 * Figure out if we are running at the top of a domain
606 * or in a sub-directory and adjust accordingly
609 $path = trim(dirname($_SERVER['SCRIPT_NAME']),'/\\');
610 if(isset($path) && strlen($path) && ($path != $this->path))
615 $this->hostname = $hostname;
617 if (is_array($_SERVER["argv"]) && $_SERVER["argc"]>1 && substr(end($_SERVER["argv"]), 0, 4)=="http" ) {
618 $this->set_baseurl(array_pop($_SERVER["argv"]) );
622 #set_include_path("include/$this->hostname" . PATH_SEPARATOR . get_include_path());
624 if((x($_SERVER,'QUERY_STRING')) && substr($_SERVER['QUERY_STRING'],0,9) === "pagename=") {
625 $this->query_string = substr($_SERVER['QUERY_STRING'],9);
626 // removing trailing / - maybe a nginx problem
627 if (substr($this->query_string, 0, 1) == "/")
628 $this->query_string = substr($this->query_string, 1);
629 } elseif((x($_SERVER,'QUERY_STRING')) && substr($_SERVER['QUERY_STRING'],0,2) === "q=") {
630 $this->query_string = substr($_SERVER['QUERY_STRING'],2);
631 // removing trailing / - maybe a nginx problem
632 if (substr($this->query_string, 0, 1) == "/")
633 $this->query_string = substr($this->query_string, 1);
636 if (x($_GET,'pagename'))
637 $this->cmd = trim($_GET['pagename'],'/\\');
638 elseif (x($_GET,'q'))
639 $this->cmd = trim($_GET['q'],'/\\');
643 $this->query_string = str_replace($this->cmd."&",$this->cmd."?", $this->query_string);
646 // unix style "homedir"
648 if(substr($this->cmd,0,1) === '~')
649 $this->cmd = 'profile/' . substr($this->cmd,1);
651 // Diaspora style profile url
653 if(substr($this->cmd,0,2) === 'u/')
654 $this->cmd = 'profile/' . substr($this->cmd,2);
659 * Break the URL path into C style argc/argv style arguments for our
660 * modules. Given "http://example.com/module/arg1/arg2", $this->argc
661 * will be 3 (integer) and $this->argv will contain:
667 * There will always be one argument. If provided a naked domain
668 * URL, $this->argv[0] is set to "home".
672 $this->argv = explode('/',$this->cmd);
673 $this->argc = count($this->argv);
674 if((array_key_exists('0',$this->argv)) && strlen($this->argv[0])) {
675 $this->module = str_replace(".", "_", $this->argv[0]);
676 $this->module = str_replace("-", "_", $this->module);
680 $this->argv = array('home');
681 $this->module = 'home';
685 * See if there is any page number information, and initialise
689 $this->pager['page'] = ((x($_GET,'page') && intval($_GET['page']) > 0) ? intval($_GET['page']) : 1);
690 $this->pager['itemspage'] = 50;
691 $this->pager['start'] = ($this->pager['page'] * $this->pager['itemspage']) - $this->pager['itemspage'];
692 if($this->pager['start'] < 0)
693 $this->pager['start'] = 0;
694 $this->pager['total'] = 0;
697 * Detect mobile devices
700 $mobile_detect = new Mobile_Detect();
701 $this->is_mobile = $mobile_detect->isMobile();
702 $this->is_tablet = $mobile_detect->isTablet();
705 $this->is_friendica_app = ($_SERVER['HTTP_USER_AGENT'] == "Apache-HttpClient/UNAVAILABLE (java 1.4)");
708 * register template engines
710 $dc = get_declared_classes();
711 foreach ($dc as $k) {
712 if (in_array("ITemplateEngine", class_implements($k))){
713 $this->register_template_engine($k);
721 function get_basepath() {
723 $basepath = get_config("system", "basepath");
726 $basepath = dirname(__FILE__);
729 $basepath = $_SERVER["DOCUMENT_ROOT"];
732 $basepath = $_SERVER["PWD"];
737 function get_scheme() {
738 return($this->scheme);
741 function get_baseurl($ssl = false) {
743 // Is the function called statically?
744 if (!is_object($this))
745 return(self::$a->get_baseurl($ssl));
747 $scheme = $this->scheme;
749 if((x($this->config,'system')) && (x($this->config['system'],'ssl_policy'))) {
750 if(intval($this->config['system']['ssl_policy']) === intval(SSL_POLICY_FULL))
753 // Basically, we have $ssl = true on any links which can only be seen by a logged in user
754 // (and also the login link). Anything seen by an outsider will have it turned off.
756 if($this->config['system']['ssl_policy'] == SSL_POLICY_SELFSIGN) {
764 if (get_config('config','hostname') != "")
765 $this->hostname = get_config('config','hostname');
767 $this->baseurl = $scheme . "://" . $this->hostname . ((isset($this->path) && strlen($this->path)) ? '/' . $this->path : '' );
768 return $this->baseurl;
771 function set_baseurl($url) {
772 $parsed = @parse_url($url);
774 $this->baseurl = $url;
777 $this->scheme = $parsed['scheme'];
779 $hostname = $parsed['host'];
780 if(x($parsed,'port'))
781 $hostname .= ':' . $parsed['port'];
782 if(x($parsed,'path'))
783 $this->path = trim($parsed['path'],'\\/');
785 if (file_exists(".htpreconfig.php"))
786 @include(".htpreconfig.php");
788 if (get_config('config','hostname') != "")
789 $this->hostname = get_config('config','hostname');
791 if (!isset($this->hostname) OR ($this->hostname == ""))
792 $this->hostname = $hostname;
797 function get_hostname() {
798 if (get_config('config','hostname') != "")
799 $this->hostname = get_config('config','hostname');
801 return $this->hostname;
804 function set_hostname($h) {
805 $this->hostname = $h;
808 function set_path($p) {
809 $this->path = trim(trim($p),'/');
812 function get_path() {
816 function set_pager_total($n) {
817 $this->pager['total'] = intval($n);
820 function set_pager_itemspage($n) {
821 $this->pager['itemspage'] = ((intval($n) > 0) ? intval($n) : 0);
822 $this->pager['start'] = ($this->pager['page'] * $this->pager['itemspage']) - $this->pager['itemspage'];
825 function set_pager_page($n) {
826 $this->pager['page'] = $n;
827 $this->pager['start'] = ($this->pager['page'] * $this->pager['itemspage']) - $this->pager['itemspage'];
830 function init_pagehead() {
831 $interval = ((local_user()) ? get_pconfig(local_user(),'system','update_interval') : 40000);
833 // If the update is "deactivated" set it to the highest integer number (~24 days)
835 $interval = 2147483647;
837 if($interval < 10000)
840 // compose the page title from the sitename and the
841 // current module called
842 if (!$this->module=='')
844 $this->page['title'] = $this->config['sitename'].' ('.$this->module.')';
846 $this->page['title'] = $this->config['sitename'];
849 /* put the head template at the beginning of page['htmlhead']
850 * since the code added by the modules frequently depends on it
853 if(!isset($this->page['htmlhead']))
854 $this->page['htmlhead'] = '';
856 // If we're using Smarty, then doing replace_macros() will replace
857 // any unrecognized variables with a blank string. Since we delay
858 // replacing $stylesheet until later, we need to replace it now
859 // with another variable name
860 if($this->theme['template_engine'] === 'smarty3')
861 $stylesheet = $this->get_template_ldelim('smarty3') . '$stylesheet' . $this->get_template_rdelim('smarty3');
863 $stylesheet = '$stylesheet';
865 $shortcut_icon = get_config("system", "shortcut_icon");
866 if ($shortcut_icon == "")
867 $shortcut_icon = $this->get_baseurl()."/images/friendica-32.png";
869 $touch_icon = get_config("system", "touch_icon");
870 if ($touch_icon == "")
871 $touch_icon = $this->get_baseurl()."/images/friendica-128.png";
873 $tpl = get_markup_template('head.tpl');
874 $this->page['htmlhead'] = replace_macros($tpl,array(
875 '$baseurl' => $this->get_baseurl(), // FIXME for z_path!!!!
876 '$local_user' => local_user(),
877 '$generator' => 'Friendica' . ' ' . FRIENDICA_VERSION,
878 '$delitem' => t('Delete this item?'),
879 '$comment' => t('Comment'),
880 '$showmore' => t('show more'),
881 '$showfewer' => t('show fewer'),
882 '$update_interval' => $interval,
883 '$shortcut_icon' => $shortcut_icon,
884 '$touch_icon' => $touch_icon,
885 '$stylesheet' => $stylesheet
886 )) . $this->page['htmlhead'];
889 function init_page_end() {
890 if(!isset($this->page['end']))
891 $this->page['end'] = '';
892 $tpl = get_markup_template('end.tpl');
893 $this->page['end'] = replace_macros($tpl,array(
894 '$baseurl' => $this->get_baseurl() // FIXME for z_path!!!!
895 )) . $this->page['end'];
898 function set_curl_code($code) {
899 $this->curl_code = $code;
902 function get_curl_code() {
903 return $this->curl_code;
906 function set_curl_content_type($content_type) {
907 $this->curl_content_type = $content_type;
910 function get_curl_content_type() {
911 return $this->curl_content_type;
914 function set_curl_headers($headers) {
915 $this->curl_headers = $headers;
918 function get_curl_headers() {
919 return $this->curl_headers;
922 function get_cached_avatar_image($avatar_image){
923 return $avatar_image;
925 // The following code is deactivated. It doesn't seem to make any sense and it slows down the system.
927 if($this->cached_profile_image[$avatar_image])
928 return $this->cached_profile_image[$avatar_image];
930 $path_parts = explode("/",$avatar_image);
931 $common_filename = $path_parts[count($path_parts)-1];
933 if($this->cached_profile_picdate[$common_filename]){
934 $this->cached_profile_image[$avatar_image] = $avatar_image . $this->cached_profile_picdate[$common_filename];
936 $r = q("SELECT `contact`.`avatar-date` AS picdate FROM `contact` WHERE `contact`.`thumb` like '%%/%s'",
939 $this->cached_profile_image[$avatar_image] = $avatar_image;
941 $this->cached_profile_picdate[$common_filename] = "?rev=".urlencode($r[0]['picdate']);
942 $this->cached_profile_image[$avatar_image] = $avatar_image.$this->cached_profile_picdate[$common_filename];
945 return $this->cached_profile_image[$avatar_image];
951 * @brief Removes the baseurl from an url. This avoids some mixed content problems.
955 * @return string The cleaned url
957 function remove_baseurl($url){
959 // Is the function called statically?
960 if (!is_object($this))
961 return(self::$a->remove_baseurl($ssl));
963 $url = normalise_link($url);
964 $base = normalise_link($this->get_baseurl());
965 $url = str_replace($base."/", "", $url);
970 * @brief Register template engine class
972 * If $name is "", is used class static property $class::$name
974 * @param string $class
975 * @param string $name
977 function register_template_engine($class, $name = '') {
979 $v = get_class_vars( $class );
980 if(x($v,"name")) $name = $v['name'];
983 echo "template engine <tt>$class</tt> cannot be registered without a name.\n";
986 $this->template_engines[$name] = $class;
990 * @brief Return template engine instance.
992 * If $name is not defined, return engine defined by theme,
995 * @param strin $name Template engine name
996 * @return object Template Engine instance
998 function template_engine($name = ''){
1000 $template_engine = $name;
1002 $template_engine = 'smarty3';
1003 if (x($this->theme, 'template_engine')) {
1004 $template_engine = $this->theme['template_engine'];
1008 if (isset($this->template_engines[$template_engine])){
1009 if(isset($this->template_engine_instance[$template_engine])){
1010 return $this->template_engine_instance[$template_engine];
1012 $class = $this->template_engines[$template_engine];
1014 $this->template_engine_instance[$template_engine] = $obj;
1019 echo "template engine <tt>$template_engine</tt> is not registered!\n"; killme();
1023 * @brief Returns the active template engine.
1027 function get_template_engine() {
1028 return $this->theme['template_engine'];
1031 function set_template_engine($engine = 'smarty3') {
1032 $this->theme['template_engine'] = $engine;
1034 $this->theme['template_engine'] = 'smarty3';
1038 if(is_writable('view/smarty3/'))
1039 $this->theme['template_engine'] = 'smarty3';
1047 function get_template_ldelim($engine = 'smarty3') {
1048 return $this->ldelim[$engine];
1051 function get_template_rdelim($engine = 'smarty3') {
1052 return $this->rdelim[$engine];
1055 function save_timestamp($stamp, $value) {
1056 $duration = (float)(microtime(true)-$stamp);
1058 $this->performance[$value] += (float)$duration;
1059 $this->performance["marktime"] += (float)$duration;
1061 $callstack = $this->callstack();
1063 $this->callstack[$value][$callstack] += (float)$duration;
1068 * @brief Returns a string with a callstack. Can be used for logging.
1072 function callstack() {
1073 $trace = debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS, 6);
1075 // We remove the first two items from the list since they contain data that we don't need.
1076 array_shift($trace);
1077 array_shift($trace);
1079 $callstack = array();
1080 foreach ($trace AS $func)
1081 $callstack[] = $func["function"];
1083 return implode(", ", $callstack);
1086 function mark_timestamp($mark) {
1087 //$this->performance["markstart"] -= microtime(true) - $this->performance["marktime"];
1088 $this->performance["markstart"] = microtime(true) - $this->performance["markstart"] - $this->performance["marktime"];
1091 function get_useragent() {
1092 return(FRIENDICA_PLATFORM." '".FRIENDICA_CODENAME."' ".FRIENDICA_VERSION."-".DB_UPDATE_VERSION."; ".$this->get_baseurl());
1095 function is_friendica_app() {
1096 return($this->is_friendica_app);
1102 * @brief Retrieve the App structure
1104 * Useful in functions which require it but don't get it passed to them
1106 function get_app() {
1113 * @brief Multi-purpose function to check variable state.
1115 * Usage: x($var) or $x($array, 'key')
1117 * returns false if variable/key is not set
1118 * if variable is set, returns 1 if has 'non-zero' value, otherwise returns 0.
1119 * e.g. x('') or x(0) returns 0;
1121 * @param string|array $s variable to check
1122 * @param string $k key inside the array to check
1126 function x($s,$k = NULL) {
1128 if((is_array($s)) && (array_key_exists($k,$s))) {
1148 * @brief Called from db initialisation if db is dead.
1150 function system_unavailable() {
1151 include('system_unavailable.php');
1157 function clean_urls() {
1159 // if($a->config['system']['clean_urls'])
1166 $base = $a->get_baseurl();
1173 * @brief Returns the baseurl.
1175 * @see App::get_baseurl()
1181 return $a->get_baseurl();
1185 * @brief Return absolut URL for given $path.
1187 * @param string $path
1191 function absurl($path) {
1192 if(strpos($path,'/') === 0)
1193 return z_path() . $path;
1198 * @brief Function to check if request was an AJAX (xmlhttprequest) request.
1202 function is_ajax() {
1203 return (!empty($_SERVER['HTTP_X_REQUESTED_WITH']) && strtolower($_SERVER['HTTP_X_REQUESTED_WITH']) == 'xmlhttprequest');
1206 function check_db() {
1208 $build = get_config('system','build');
1210 set_config('system','build',DB_UPDATE_VERSION);
1211 $build = DB_UPDATE_VERSION;
1213 if($build != DB_UPDATE_VERSION)
1214 proc_run('php', 'include/dbupdate.php');
1220 * Sets the base url for use in cmdline programs which don't have
1221 * $_SERVER variables
1223 function check_url(&$a) {
1225 $url = get_config('system','url');
1227 // if the url isn't set or the stored url is radically different
1228 // than the currently visited url, store the current value accordingly.
1229 // "Radically different" ignores common variations such as http vs https
1230 // and www.example.com vs example.com.
1231 // We will only change the url to an ip address if there is no existing setting
1234 $url = set_config('system','url',$a->get_baseurl());
1235 if((! link_compare($url,$a->get_baseurl())) && (! preg_match("/^(\d{1,3})\.(\d{1,3})\.(\d{1,3})\.(\d{1,3})$/",$a->get_hostname)))
1236 $url = set_config('system','url',$a->get_baseurl());
1243 * @brief Automatic database updates
1245 function update_db(&$a) {
1246 $build = get_config('system','build');
1248 $build = set_config('system','build',DB_UPDATE_VERSION);
1250 if($build != DB_UPDATE_VERSION) {
1251 $stored = intval($build);
1252 $current = intval(DB_UPDATE_VERSION);
1253 if($stored < $current) {
1254 load_config('database');
1256 // We're reporting a different version than what is currently installed.
1257 // Run any existing update scripts to bring the database up to current.
1259 // make sure that boot.php and update.php are the same release, we might be
1260 // updating right this very second and the correct version of the update.php
1261 // file may not be here yet. This can happen on a very busy site.
1263 if(DB_UPDATE_VERSION == UPDATE_VERSION) {
1264 // Compare the current structure with the defined structure
1266 $t = get_config('database','dbupdate_'.DB_UPDATE_VERSION);
1270 set_config('database','dbupdate_'.DB_UPDATE_VERSION, time());
1272 // run old update routine (wich could modify the schema and
1273 // conflits with new routine)
1274 for ($x = $stored; $x < NEW_UPDATE_ROUTINE_VERSION; $x++) {
1275 $r = run_update_function($x);
1278 if ($stored < NEW_UPDATE_ROUTINE_VERSION) $stored = NEW_UPDATE_ROUTINE_VERSION;
1281 // run new update routine
1282 // it update the structure in one call
1283 $retval = update_structure(false, true);
1291 set_config('database','dbupdate_'.DB_UPDATE_VERSION, 'success');
1294 // run any left update_nnnn functions in update.php
1295 for($x = $stored; $x < $current; $x ++) {
1296 $r = run_update_function($x);
1306 function run_update_function($x) {
1307 if(function_exists('update_' . $x)) {
1309 // There could be a lot of processes running or about to run.
1310 // We want exactly one process to run the update command.
1311 // So store the fact that we're taking responsibility
1312 // after first checking to see if somebody else already has.
1314 // If the update fails or times-out completely you may need to
1315 // delete the config entry to try again.
1317 $t = get_config('database','update_' . $x);
1320 set_config('database','update_' . $x, time());
1322 // call the specific update
1324 $func = 'update_' . $x;
1328 //send the administrator an e-mail
1331 sprintf(t('Update %s failed. See error logs.'), $x)
1335 set_config('database','update_' . $x, 'success');
1336 set_config('system','build', $x + 1);
1340 set_config('database','update_' . $x, 'success');
1341 set_config('system','build', $x + 1);
1348 * @brief Synchronise plugins:
1350 * $a->config['system']['addon'] contains a comma-separated list of names
1351 * of plugins/addons which are used on this system.
1352 * Go through the database list of already installed addons, and if we have
1353 * an entry, but it isn't in the config list, call the uninstall procedure
1354 * and mark it uninstalled in the database (for now we'll remove it).
1355 * Then go through the config list and if we have a plugin that isn't installed,
1356 * call the install procedure and add it to the database.
1361 function check_plugins(&$a) {
1363 $r = q("SELECT * FROM `addon` WHERE `installed` = 1");
1367 $installed = array();
1369 $plugins = get_config('system','addon');
1370 $plugins_arr = array();
1373 $plugins_arr = explode(',',str_replace(' ', '',$plugins));
1375 $a->plugins = $plugins_arr;
1377 $installed_arr = array();
1379 if(count($installed)) {
1380 foreach($installed as $i) {
1381 if(! in_array($i['name'],$plugins_arr)) {
1382 uninstall_plugin($i['name']);
1385 $installed_arr[] = $i['name'];
1390 if(count($plugins_arr)) {
1391 foreach($plugins_arr as $p) {
1392 if(! in_array($p,$installed_arr)) {
1404 function get_guid($size=16, $prefix = "") {
1406 if ($prefix == "") {
1408 $prefix = hash("crc32", $a->get_hostname());
1411 while (strlen($prefix) < ($size - 13))
1412 $prefix .= mt_rand();
1415 $prefix = substr($prefix, 0, $size - 22);
1416 return(str_replace(".", "", uniqid($prefix, true)));
1418 $prefix = substr($prefix, 0, max($size - 13, 0));
1419 return(uniqid($prefix));
1424 * @brief Wrapper for adding a login box.
1426 * @param bool $register
1427 * If $register == true provide a registration link.
1428 * This will most always depend on the value of $a->config['register_policy'].
1429 * @param bool $hiddens
1432 * Returns the complete html for inserting into the page
1434 * @hooks 'login_hook'
1437 function login($register = false, $hiddens=false) {
1443 'title' => t('Create a New Account'),
1444 'desc' => t('Register')
1448 $noid = get_config('system','no_openid');
1450 $dest_url = $a->get_baseurl(true) . '/' . $a->query_string;
1453 $tpl = get_markup_template("logout.tpl");
1456 $a->page['htmlhead'] .= replace_macros(get_markup_template("login_head.tpl"),array(
1457 '$baseurl' => $a->get_baseurl(true)
1460 $tpl = get_markup_template("login.tpl");
1461 $_SESSION['return_url'] = $a->query_string;
1462 $a->module = 'login';
1465 $o .= replace_macros($tpl, array(
1467 '$dest_url' => $dest_url,
1468 '$logout' => t('Logout'),
1469 '$login' => t('Login'),
1471 '$lname' => array('username', t('Nickname or Email address: ') , '', ''),
1472 '$lpassword' => array('password', t('Password: '), '', ''),
1473 '$lremember' => array('remember', t('Remember me'), 0, ''),
1475 '$openid' => !$noid,
1476 '$lopenid' => array('openid_url', t('Or login using OpenID: '),'',''),
1478 '$hiddens' => $hiddens,
1480 '$register' => $reg,
1482 '$lostpass' => t('Forgot your password?'),
1483 '$lostlink' => t('Password Reset'),
1485 '$tostitle' => t('Website Terms of Service'),
1486 '$toslink' => t('terms of service'),
1488 '$privacytitle' => t('Website Privacy Policy'),
1489 '$privacylink' => t('privacy policy'),
1493 call_hooks('login_hook',$o);
1499 * @brief Used to end the current process, after saving session state.
1502 session_write_close();
1507 * @brief Redirect to another URL and terminate this process.
1509 function goaway($s) {
1510 header("Location: $s");
1516 * @brief Returns the user id of locally logged in user or false.
1518 * @return int|bool user id or false
1520 function local_user() {
1521 if((x($_SESSION,'authenticated')) && (x($_SESSION,'uid')))
1522 return intval($_SESSION['uid']);
1527 * @brief Returns contact id of authenticated site visitor or false
1529 * @return int|bool visitor_id or false
1531 function remote_user() {
1532 if((x($_SESSION,'authenticated')) && (x($_SESSION,'visitor_id')))
1533 return intval($_SESSION['visitor_id']);
1538 * @brief Show an error message to user.
1540 * This function save text in session, to be shown to the user at next page load
1542 * @param string $s - Text of notice
1544 function notice($s) {
1546 if(! x($_SESSION,'sysmsg')) $_SESSION['sysmsg'] = array();
1548 $_SESSION['sysmsg'][] = $s;
1552 * @brief Show an info message to user.
1554 * This function save text in session, to be shown to the user at next page load
1556 * @param string $s - Text of notice
1561 if (local_user() AND get_pconfig(local_user(),'system','ignore_info'))
1564 if(! x($_SESSION,'sysmsg_info')) $_SESSION['sysmsg_info'] = array();
1566 $_SESSION['sysmsg_info'][] = $s;
1571 * @brief Wrapper around config to limit the text length of an incoming message
1575 function get_max_import_size() {
1577 return ((x($a->config,'max_import_size')) ? $a->config['max_import_size'] : 0 );
1581 * @brief Wrap calls to proc_close(proc_open()) and call hook
1582 * so plugins can take part in process :)
1584 * @param string $cmd program to run
1586 * next args are passed as $cmd command line
1587 * e.g.: proc_run("ls","-la","/tmp");
1589 * @note $cmd and string args are surrounded with ""
1594 function proc_run($cmd){
1598 $args = func_get_args();
1604 // expand any arrays
1606 foreach($args as $arg) {
1607 if(is_array($arg)) {
1608 foreach($arg as $n) {
1618 $arr = array('args' => $args, 'run_cmd' => true);
1620 call_hooks("proc_run", $arr);
1621 if(! $arr['run_cmd'])
1624 if(count($args) && $args[0] === 'php') {
1626 if (get_config("system", "worker")) {
1630 $parameters = json_encode($argv);
1631 $found = q("SELECT `id` FROM `workerqueue` WHERE `parameter` = '%s'",
1632 dbesc($parameters));
1635 q("INSERT INTO `workerqueue` (`parameter`, `created`, `priority`)
1636 VALUES ('%s', '%s', %d)",
1638 dbesc(datetime_convert()),
1641 // Should we quit and wait for the poller to be called as a cronjob?
1642 if (get_config("system", "worker_dont_fork"))
1645 // Checking number of workers
1646 $workers = q("SELECT COUNT(*) AS `workers` FROM `workerqueue` WHERE `executed` != '0000-00-00 00:00:00'");
1648 // Get number of allowed number of worker threads
1649 $queues = intval(get_config("system", "worker_queues"));
1654 // If there are already enough workers running, don't fork another one
1655 if ($workers[0]["workers"] >= $queues)
1658 // Now call the poller to execute the jobs that we just added to the queue
1659 $args = array("php", "include/poller.php", "no_cron");
1662 $args[0] = ((x($a->config,'php_path')) && (strlen($a->config['php_path'])) ? $a->config['php_path'] : 'php');
1665 // add baseurl to args. cli scripts can't construct it
1666 $args[] = $a->get_baseurl();
1668 for($x = 0; $x < count($args); $x ++)
1669 $args[$x] = escapeshellarg($args[$x]);
1671 $cmdline = implode($args," ");
1673 if(get_config('system','proc_windows'))
1674 proc_close(proc_open('cmd /c start /b ' . $cmdline,array(),$foo,dirname(__FILE__)));
1676 proc_close(proc_open($cmdline." &",array(),$foo,dirname(__FILE__)));
1679 function current_theme(){
1680 $app_base_themes = array('duepuntozero', 'dispy', 'quattro');
1686 // Find the theme that belongs to the user whose stuff we are looking at
1688 if($a->profile_uid && ($a->profile_uid != local_user())) {
1689 $r = q("select theme from user where uid = %d limit 1",
1690 intval($a->profile_uid)
1693 $page_theme = $r[0]['theme'];
1696 // Allow folks to over-rule user themes and always use their own on their own site.
1697 // This works only if the user is on the same server
1699 if($page_theme && local_user() && (local_user() != $a->profile_uid)) {
1700 if(get_pconfig(local_user(),'system','always_my_theme'))
1704 // $mobile_detect = new Mobile_Detect();
1705 // $is_mobile = $mobile_detect->isMobile() || $mobile_detect->isTablet();
1706 $is_mobile = $a->is_mobile || $a->is_tablet;
1708 $standard_system_theme = ((isset($a->config['system']['theme'])) ? $a->config['system']['theme'] : '');
1709 $standard_theme_name = ((isset($_SESSION) && x($_SESSION,'theme')) ? $_SESSION['theme'] : $standard_system_theme);
1712 if(isset($_SESSION['show-mobile']) && !$_SESSION['show-mobile']) {
1713 $system_theme = $standard_system_theme;
1714 $theme_name = $standard_theme_name;
1717 $system_theme = ((isset($a->config['system']['mobile-theme'])) ? $a->config['system']['mobile-theme'] : $standard_system_theme);
1718 $theme_name = ((isset($_SESSION) && x($_SESSION,'mobile-theme')) ? $_SESSION['mobile-theme'] : $system_theme);
1720 if($theme_name === '---') {
1721 // user has selected to have the mobile theme be the same as the normal one
1722 $system_theme = $standard_system_theme;
1723 $theme_name = $standard_theme_name;
1726 $theme_name = $page_theme;
1731 $system_theme = $standard_system_theme;
1732 $theme_name = $standard_theme_name;
1735 $theme_name = $page_theme;
1739 (file_exists('view/theme/' . $theme_name . '/style.css') ||
1740 file_exists('view/theme/' . $theme_name . '/style.php')))
1741 return($theme_name);
1743 foreach($app_base_themes as $t) {
1744 if(file_exists('view/theme/' . $t . '/style.css')||
1745 file_exists('view/theme/' . $t . '/style.php'))
1749 $fallback = array_merge(glob('view/theme/*/style.css'),glob('view/theme/*/style.php'));
1750 if(count($fallback))
1751 return (str_replace('view/theme/','', substr($fallback[0],0,-10)));
1756 * @brief Return full URL to theme which is currently in effect.
1758 * Provide a sane default if nothing is chosen or the specified theme does not exist.
1762 function current_theme_url() {
1765 $t = current_theme();
1767 $opts = (($a->profile_uid) ? '?f=&puid=' . $a->profile_uid : '');
1768 if (file_exists('view/theme/' . $t . '/style.php'))
1769 return($a->get_baseurl() . '/view/theme/' . $t . '/style.pcss' . $opts);
1771 return($a->get_baseurl() . '/view/theme/' . $t . '/style.css');
1774 function feed_birthday($uid,$tz) {
1778 * Determine the next birthday, but only if the birthday is published
1779 * in the default profile. We _could_ also look for a private profile that the
1780 * recipient can see, but somebody could get mad at us if they start getting
1781 * public birthday greetings when they haven't made this info public.
1783 * Assuming we are able to publish this info, we are then going to convert
1784 * the start time from the owner's timezone to UTC.
1786 * This will potentially solve the problem found with some social networks
1787 * where birthdays are converted to the viewer's timezone and salutations from
1788 * elsewhere in the world show up on the wrong day. We will convert it to the
1789 * viewer's timezone also, but first we are going to convert it from the birthday
1790 * person's timezone to GMT - so the viewer may find the birthday starting at
1791 * 6:00PM the day before, but that will correspond to midnight to the birthday person.
1801 $p = q("SELECT `dob` FROM `profile` WHERE `is-default` = 1 AND `uid` = %d LIMIT 1",
1805 if($p && count($p)) {
1806 $tmp_dob = substr($p[0]['dob'],5);
1807 if(intval($tmp_dob)) {
1808 $y = datetime_convert($tz,$tz,'now','Y');
1809 $bd = $y . '-' . $tmp_dob . ' 00:00';
1810 $t_dob = strtotime($bd);
1811 $now = strtotime(datetime_convert($tz,$tz,'now'));
1813 $bd = $y + 1 . '-' . $tmp_dob . ' 00:00';
1814 $birthday = datetime_convert($tz,'UTC',$bd,ATOM_TIME);
1822 * @brief Check if current user has admin role.
1824 * @return bool true if user is an admin
1826 function is_site_admin() {
1829 $adminlist = explode(",", str_replace(" ", "", $a->config['admin_email']));
1831 //if(local_user() && x($a->user,'email') && x($a->config,'admin_email') && ($a->user['email'] === $a->config['admin_email']))
1832 if(local_user() && x($a->user,'email') && x($a->config,'admin_email') && in_array($a->user['email'], $adminlist))
1838 function load_contact_links($uid) {
1844 if(! $uid || x($a->contacts,'empty'))
1847 $r = q("SELECT `id`,`network`,`url`,`thumb`, `rel` FROM `contact` WHERE `uid` = %d AND `self` = 0 AND `blocked` = 0 AND `thumb` != ''",
1852 $url = normalise_link($rr['url']);
1856 $ret['empty'] = true;
1858 $a->contacts = $ret;
1863 * @brief Returns querystring as string from a mapped array.
1865 * @param array $params mapped array with query parameters
1866 * @param string $name of parameter, default null
1870 function build_querystring($params, $name=null) {
1872 foreach($params as $key=>$val) {
1873 if(is_array($val)) {
1875 $ret .= build_querystring($val, $key);
1877 $ret .= build_querystring($val, $name."[$key]");
1880 $val = urlencode($val);
1882 $ret.=$name."[$key]"."=$val&";
1884 $ret.= "$key=$val&";
1891 function explode_querystring($query) {
1892 $arg_st = strpos($query, '?');
1893 if($arg_st !== false) {
1894 $base = substr($query, 0, $arg_st);
1901 $args = explode('&', substr($query, $arg_st));
1902 foreach($args as $k=>$arg) {
1906 $args = array_values($args);
1911 $args = array_values($args);
1921 * Returns the complete URL of the current page, e.g.: http(s)://something.com/network
1923 * Taken from http://webcheatsheet.com/php/get_current_page_url.php
1925 function curPageURL() {
1927 if ($_SERVER["HTTPS"] == "on") {$pageURL .= "s";}
1929 if ($_SERVER["SERVER_PORT"] != "80" && $_SERVER["SERVER_PORT"] != "443") {
1930 $pageURL .= $_SERVER["SERVER_NAME"].":".$_SERVER["SERVER_PORT"].$_SERVER["REQUEST_URI"];
1932 $pageURL .= $_SERVER["SERVER_NAME"].$_SERVER["REQUEST_URI"];
1937 function random_digits($digits) {
1939 for($i = 0; $i < $digits; $i++) {
1945 function get_server() {
1946 $server = get_config("system", "directory");
1949 $server = "http://dir.friendi.ca";
1954 function get_cachefile($file, $writemode = true) {
1955 $cache = get_itemcachepath();
1957 if ((! $cache) || (! is_dir($cache)))
1960 $subfolder = $cache."/".substr($file, 0, 2);
1962 $cachepath = $subfolder."/".$file;
1965 if (!is_dir($subfolder)) {
1967 chmod($subfolder, 0777);
1974 function clear_cache($basepath = "", $path = "") {
1976 $basepath = get_itemcachepath();
1980 if (($path == "") OR (!is_dir($path)))
1983 if (substr(realpath($path), 0, strlen($basepath)) != $basepath)
1986 $cachetime = (int)get_config('system','itemcache_duration');
1987 if ($cachetime == 0)
1990 if (is_writable($path)){
1991 if ($dh = opendir($path)) {
1992 while (($file = readdir($dh)) !== false) {
1993 $fullpath = $path."/".$file;
1994 if ((filetype($fullpath) == "dir") and ($file != ".") and ($file != ".."))
1995 clear_cache($basepath, $fullpath);
1996 if ((filetype($fullpath) == "file") and (filectime($fullpath) < (time() - $cachetime)))
2004 function get_itemcachepath() {
2005 // Checking, if the cache is deactivated
2006 $cachetime = (int)get_config('system','itemcache_duration');
2010 $itemcache = get_config('system','itemcache');
2011 if (($itemcache != "") AND is_dir($itemcache) AND is_writable($itemcache))
2014 $temppath = get_temppath();
2016 if ($temppath != "") {
2017 $itemcache = $temppath."/itemcache";
2018 if(!file_exists($itemcache) && !is_dir($itemcache)) {
2022 if (is_dir($itemcache) AND is_writable($itemcache)) {
2023 set_config("system", "itemcache", $itemcache);
2030 function get_lockpath() {
2031 $lockpath = get_config('system','lockpath');
2032 if (($lockpath != "") AND is_dir($lockpath) AND is_writable($lockpath))
2035 $temppath = get_temppath();
2037 if ($temppath != "") {
2038 $lockpath = $temppath."/lock";
2040 if (!is_dir($lockpath))
2042 elseif (!is_writable($lockpath))
2043 $lockpath = $temppath;
2045 if (is_dir($lockpath) AND is_writable($lockpath)) {
2046 set_config("system", "lockpath", $lockpath);
2053 function get_temppath() {
2056 $temppath = get_config("system","temppath");
2057 if (($temppath != "") AND is_dir($temppath) AND is_writable($temppath))
2060 $temppath = sys_get_temp_dir();
2061 if (($temppath != "") AND is_dir($temppath) AND is_writable($temppath)) {
2062 $temppath .= "/".$a->get_hostname();
2063 if (!is_dir($temppath))
2066 if (is_dir($temppath) AND is_writable($temppath)) {
2067 set_config("system", "temppath", $temppath);
2075 function set_template_engine(&$a, $engine = 'internal') {
2076 /// @note This function is no longer necessary, but keep it as a wrapper to the class method
2077 /// to avoid breaking themes again unnecessarily
2079 $a->set_template_engine($engine);
2082 if(!function_exists('exif_imagetype')) {
2083 function exif_imagetype($file) {
2084 $size = getimagesize($file);
2089 function validate_include(&$file) {
2092 $file = realpath($file);
2094 if (strpos($file, getcwd()) !== 0)
2097 $file = str_replace(getcwd()."/", "", $file, $count);
2101 if ($orig_file !== $file)
2105 if (strpos($file, "include/") === 0)
2108 if (strpos($file, "addon/") === 0)
2117 function current_load() {
2118 if (!function_exists('sys_getloadavg'))
2121 $load_arr = sys_getloadavg();
2123 if (!is_array($load_arr))
2126 return max($load_arr);
2130 * @brief get c-style args
2135 return get_app()->argc;
2139 * @brief Returns the value of a argv key
2141 * @param int $x argv key
2142 * @return string Value of the argv key
2145 if(array_key_exists($x,get_app()->argv))
2146 return get_app()->argv[$x];