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.
21 use Friendica\BaseObject;
22 use Friendica\Core\Addon;
23 use Friendica\Core\Cache;
24 use Friendica\Core\Config;
25 use Friendica\Core\L10n;
26 use Friendica\Core\PConfig;
27 use Friendica\Core\Protocol;
28 use Friendica\Core\System;
29 use Friendica\Core\Update;
30 use Friendica\Core\Worker;
31 use Friendica\Database\DBA;
32 use Friendica\Model\Contact;
33 use Friendica\Model\Conversation;
34 use Friendica\Util\DateTimeFormat;
36 define('FRIENDICA_PLATFORM', 'Friendica');
37 define('FRIENDICA_CODENAME', 'The Tazmans Flax-lily');
38 define('FRIENDICA_VERSION', '2019.03-dev');
39 define('DFRN_PROTOCOL_VERSION', '2.23');
40 define('NEW_UPDATE_ROUTINE_VERSION', 1170);
43 * @brief Constant with a HTML line break.
45 * Contains a HTML line break (br) element and a real carriage return with line
46 * feed for the source.
47 * This can be used in HTML and JavaScript where needed a line break.
49 define('EOL', "<br />\r\n");
52 * @brief Image storage quality.
54 * Lower numbers save space at cost of image detail.
55 * For ease of upgrade, please do not change here. Set system.jpegquality = n in config/local.config.php,
56 * where n is between 1 and 100, and with very poor results below about 50
58 define('JPEG_QUALITY', 100);
61 * system.png_quality = n where is between 0 (uncompressed) to 9
63 define('PNG_QUALITY', 8);
66 * An alternate way of limiting picture upload sizes. Specify the maximum pixel
67 * length that pictures are allowed to be (for non-square pictures, it will apply
68 * to the longest side). Pictures longer than this length will be resized to be
69 * this length (on the longest side, the other side will be scaled appropriately).
70 * Modify this value using
73 * 'max_image_length' => 'n',
77 * in config/local.config.php
79 * If you don't want to set a maximum length, set to -1. The default value is
80 * defined by 'MAX_IMAGE_LENGTH' below.
82 define('MAX_IMAGE_LENGTH', -1);
87 define('DEFAULT_DB_ENGINE', 'InnoDB');
92 * SSL redirection policies
95 define('SSL_POLICY_NONE', 0);
96 define('SSL_POLICY_FULL', 1);
97 define('SSL_POLICY_SELFSIGN', 2);
103 * Type of the community page
106 define('CP_NO_INTERNAL_COMMUNITY', -2);
107 define('CP_NO_COMMUNITY_PAGE', -1);
108 define('CP_USERS_ON_SERVER', 0);
109 define('CP_GLOBAL_COMMUNITY', 1);
110 define('CP_USERS_AND_GLOBAL', 2);
116 * These numbers are used in stored permissions
117 * and existing allocations MUST NEVER BE CHANGED
118 * OR RE-ASSIGNED! You may only add to them.
121 Protocol::DFRN => (-1),
122 Protocol::ZOT => (-2),
123 Protocol::OSTATUS => (-3),
124 Protocol::FEED => (-4),
125 Protocol::DIASPORA => (-5),
126 Protocol::MAIL => (-6),
127 Protocol::FACEBOOK => (-8),
128 Protocol::LINKEDIN => (-9),
129 Protocol::XMPP => (-10),
130 Protocol::MYSPACE => (-11),
131 Protocol::GPLUS => (-12),
132 Protocol::PUMPIO => (-13),
133 Protocol::TWITTER => (-14),
134 Protocol::DIASPORA2 => (-15),
135 Protocol::STATUSNET => (-16),
136 Protocol::NEWS => (-18),
137 Protocol::ICALENDAR => (-19),
138 Protocol::PNUT => (-20),
140 Protocol::PHANTOM => (-127),
144 * Maximum number of "people who like (or don't like) this" that we will list by name
146 define('MAX_LIKERS', 75);
151 * Email notification options
154 define('NOTIFY_INTRO', 1);
155 define('NOTIFY_CONFIRM', 2);
156 define('NOTIFY_WALL', 4);
157 define('NOTIFY_COMMENT', 8);
158 define('NOTIFY_MAIL', 16);
159 define('NOTIFY_SUGGEST', 32);
160 define('NOTIFY_PROFILE', 64);
161 define('NOTIFY_TAGSELF', 128);
162 define('NOTIFY_TAGSHARE', 256);
163 define('NOTIFY_POKE', 512);
164 define('NOTIFY_SHARE', 1024);
166 define('SYSTEM_EMAIL', 16384);
168 define('NOTIFY_SYSTEM', 32768);
178 define('TERM_UNKNOWN', 0);
179 define('TERM_HASHTAG', 1);
180 define('TERM_MENTION', 2);
181 define('TERM_CATEGORY', 3);
182 define('TERM_PCATEGORY', 4);
183 define('TERM_FILE', 5);
184 define('TERM_SAVEDSEARCH', 6);
185 define('TERM_CONVERSATION', 7);
187 define('TERM_OBJ_POST', 1);
188 define('TERM_OBJ_PHOTO', 2);
193 * Various namespaces we may need to parse
196 define('NAMESPACE_ZOT', 'http://purl.org/zot');
197 define('NAMESPACE_DFRN', 'http://purl.org/macgirvin/dfrn/1.0');
198 define('NAMESPACE_THREAD', 'http://purl.org/syndication/thread/1.0');
199 define('NAMESPACE_TOMB', 'http://purl.org/atompub/tombstones/1.0');
200 define('NAMESPACE_ACTIVITY', 'http://activitystrea.ms/spec/1.0/');
201 define('NAMESPACE_ACTIVITY_SCHEMA', 'http://activitystrea.ms/schema/1.0/');
202 define('NAMESPACE_MEDIA', 'http://purl.org/syndication/atommedia');
203 define('NAMESPACE_SALMON_ME', 'http://salmon-protocol.org/ns/magic-env');
204 define('NAMESPACE_OSTATUSSUB', 'http://ostatus.org/schema/1.0/subscribe');
205 define('NAMESPACE_GEORSS', 'http://www.georss.org/georss');
206 define('NAMESPACE_POCO', 'http://portablecontacts.net/spec/1.0');
207 define('NAMESPACE_FEED', 'http://schemas.google.com/g/2010#updates-from');
208 define('NAMESPACE_OSTATUS', 'http://ostatus.org/schema/1.0');
209 define('NAMESPACE_STATUSNET', 'http://status.net/schema/api/1/');
210 define('NAMESPACE_ATOM1', 'http://www.w3.org/2005/Atom');
211 define('NAMESPACE_MASTODON', 'http://mastodon.social/schema/1.0');
217 * Activity stream defines
220 define('ACTIVITY_LIKE', NAMESPACE_ACTIVITY_SCHEMA . 'like');
221 define('ACTIVITY_DISLIKE', NAMESPACE_DFRN . '/dislike');
222 define('ACTIVITY_ATTEND', NAMESPACE_ZOT . '/activity/attendyes');
223 define('ACTIVITY_ATTENDNO', NAMESPACE_ZOT . '/activity/attendno');
224 define('ACTIVITY_ATTENDMAYBE', NAMESPACE_ZOT . '/activity/attendmaybe');
226 define('ACTIVITY_OBJ_HEART', NAMESPACE_DFRN . '/heart');
228 define('ACTIVITY_FRIEND', NAMESPACE_ACTIVITY_SCHEMA . 'make-friend');
229 define('ACTIVITY_REQ_FRIEND', NAMESPACE_ACTIVITY_SCHEMA . 'request-friend');
230 define('ACTIVITY_UNFRIEND', NAMESPACE_ACTIVITY_SCHEMA . 'remove-friend');
231 define('ACTIVITY_FOLLOW', NAMESPACE_ACTIVITY_SCHEMA . 'follow');
232 define('ACTIVITY_UNFOLLOW', NAMESPACE_ACTIVITY_SCHEMA . 'stop-following');
233 define('ACTIVITY_JOIN', NAMESPACE_ACTIVITY_SCHEMA . 'join');
235 define('ACTIVITY_POST', NAMESPACE_ACTIVITY_SCHEMA . 'post');
236 define('ACTIVITY_UPDATE', NAMESPACE_ACTIVITY_SCHEMA . 'update');
237 define('ACTIVITY_TAG', NAMESPACE_ACTIVITY_SCHEMA . 'tag');
238 define('ACTIVITY_FAVORITE', NAMESPACE_ACTIVITY_SCHEMA . 'favorite');
239 define('ACTIVITY_UNFAVORITE', NAMESPACE_ACTIVITY_SCHEMA . 'unfavorite');
240 define('ACTIVITY_SHARE', NAMESPACE_ACTIVITY_SCHEMA . 'share');
241 define('ACTIVITY_DELETE', NAMESPACE_ACTIVITY_SCHEMA . 'delete');
243 define('ACTIVITY_POKE', NAMESPACE_ZOT . '/activity/poke');
245 define('ACTIVITY_OBJ_BOOKMARK', NAMESPACE_ACTIVITY_SCHEMA . 'bookmark');
246 define('ACTIVITY_OBJ_COMMENT', NAMESPACE_ACTIVITY_SCHEMA . 'comment');
247 define('ACTIVITY_OBJ_NOTE', NAMESPACE_ACTIVITY_SCHEMA . 'note');
248 define('ACTIVITY_OBJ_PERSON', NAMESPACE_ACTIVITY_SCHEMA . 'person');
249 define('ACTIVITY_OBJ_IMAGE', NAMESPACE_ACTIVITY_SCHEMA . 'image');
250 define('ACTIVITY_OBJ_PHOTO', NAMESPACE_ACTIVITY_SCHEMA . 'photo');
251 define('ACTIVITY_OBJ_VIDEO', NAMESPACE_ACTIVITY_SCHEMA . 'video');
252 define('ACTIVITY_OBJ_P_PHOTO', NAMESPACE_ACTIVITY_SCHEMA . 'profile-photo');
253 define('ACTIVITY_OBJ_ALBUM', NAMESPACE_ACTIVITY_SCHEMA . 'photo-album');
254 define('ACTIVITY_OBJ_EVENT', NAMESPACE_ACTIVITY_SCHEMA . 'event');
255 define('ACTIVITY_OBJ_GROUP', NAMESPACE_ACTIVITY_SCHEMA . 'group');
256 define('ACTIVITY_OBJ_TAGTERM', NAMESPACE_DFRN . '/tagterm');
257 define('ACTIVITY_OBJ_PROFILE', NAMESPACE_DFRN . '/profile');
258 define('ACTIVITY_OBJ_QUESTION', 'http://activityschema.org/object/question');
264 * Item weight for query ordering
267 define('GRAVITY_PARENT', 0);
268 define('GRAVITY_ACTIVITY', 3);
269 define('GRAVITY_COMMENT', 6);
270 define('GRAVITY_UNKNOWN', 9);
276 * Process priority for the worker
279 define('PRIORITY_UNDEFINED', 0);
280 define('PRIORITY_CRITICAL', 10);
281 define('PRIORITY_HIGH', 20);
282 define('PRIORITY_MEDIUM', 30);
283 define('PRIORITY_LOW', 40);
284 define('PRIORITY_NEGLIGIBLE', 50);
288 * @name Social Relay settings
290 * See here: https://github.com/jaywink/social-relay
291 * and here: https://wiki.diasporafoundation.org/Relay_servers_for_public_posts
294 define('SR_SCOPE_NONE', '');
295 define('SR_SCOPE_ALL', 'all');
296 define('SR_SCOPE_TAGS', 'tags');
299 // Normally this constant is defined - but not if "pcntl" isn't installed
300 if (!defined("SIGTERM")) {
301 define("SIGTERM", 15);
305 * Depending on the PHP version this constant does exist - or not.
306 * See here: http://php.net/manual/en/curl.constants.php#117928
308 if (!defined('CURLE_OPERATION_TIMEDOUT')) {
309 define('CURLE_OPERATION_TIMEDOUT', CURLE_OPERATION_TIMEOUTED);
313 * @brief Retrieve the App structure
315 * Useful in functions which require it but don't get it passed to them
317 * @deprecated since version 2018.09
318 * @see BaseObject::getApp()
323 return BaseObject::getApp();
327 * Return the provided variable value if it exists and is truthy or the provided
328 * default value instead.
330 * Works with initialized variables and potentially uninitialized array keys
333 * - defaults($var, $default)
334 * - defaults($array, 'key', $default)
337 * @brief Returns a defaut value if the provided variable or array key is falsy
340 function defaults(...$args)
342 if (count($args) < 2) {
343 throw new BadFunctionCallException('defaults() requires at least 2 parameters');
345 if (count($args) > 3) {
346 throw new BadFunctionCallException('defaults() cannot use more than 3 parameters');
348 if (count($args) === 3 && is_null($args[1])) {
349 throw new BadFunctionCallException('defaults($arr, $key, $def) $key is null');
352 // The default value always is the last argument
353 $return = array_pop($args);
355 if (count($args) == 2 && is_array($args[0]) && !empty($args[0][$args[1]])) {
356 $return = $args[0][$args[1]];
359 if (count($args) == 1 && !empty($args[0])) {
367 * @brief Used to end the current process, after saving session state.
376 * @brief Returns the user id of locally logged in user or false.
378 * @return int|bool user id or false
380 function local_user()
382 if (!empty($_SESSION['authenticated']) && !empty($_SESSION['uid'])) {
383 return intval($_SESSION['uid']);
389 * @brief Returns the public contact id of logged in user or false.
391 * @return int|bool public contact id or false
393 function public_contact()
395 static $public_contact_id = false;
397 if (!$public_contact_id && !empty($_SESSION['authenticated'])) {
398 if (!empty($_SESSION['my_address'])) {
400 $public_contact_id = intval(Contact::getIdForURL($_SESSION['my_address'], 0, true));
401 } elseif (!empty($_SESSION['visitor_home'])) {
403 $public_contact_id = intval(Contact::getIdForURL($_SESSION['visitor_home'], 0, true));
405 } elseif (empty($_SESSION['authenticated'])) {
406 $public_contact_id = false;
409 return $public_contact_id;
413 * @brief Returns contact id of authenticated site visitor or false
415 * @return int|bool visitor_id or false
417 function remote_user()
419 // You cannot be both local and remote.
420 // Unncommented by rabuzarus because remote authentication to local
421 // profiles wasn't possible anymore (2018-04-12).
422 // if (local_user()) {
426 if (empty($_SESSION)) {
430 if (!empty($_SESSION['authenticated']) && !empty($_SESSION['visitor_id'])) {
431 return intval($_SESSION['visitor_id']);
437 * @brief Show an error message to user.
439 * This function save text in session, to be shown to the user at next page load
441 * @param string $s - Text of notice
445 if (empty($_SESSION)) {
450 if (empty($_SESSION['sysmsg'])) {
451 $_SESSION['sysmsg'] = [];
453 if ($a->interactive) {
454 $_SESSION['sysmsg'][] = $s;
459 * @brief Show an info message to user.
461 * This function save text in session, to be shown to the user at next page load
463 * @param string $s - Text of notice
469 if (local_user() && PConfig::get(local_user(), 'system', 'ignore_info')) {
473 if (empty($_SESSION['sysmsg_info'])) {
474 $_SESSION['sysmsg_info'] = [];
476 if ($a->interactive) {
477 $_SESSION['sysmsg_info'][] = $s;
481 function feed_birthday($uid, $tz)
484 * Determine the next birthday, but only if the birthday is published
485 * in the default profile. We _could_ also look for a private profile that the
486 * recipient can see, but somebody could get mad at us if they start getting
487 * public birthday greetings when they haven't made this info public.
489 * Assuming we are able to publish this info, we are then going to convert
490 * the start time from the owner's timezone to UTC.
492 * This will potentially solve the problem found with some social networks
493 * where birthdays are converted to the viewer's timezone and salutations from
494 * elsewhere in the world show up on the wrong day. We will convert it to the
495 * viewer's timezone also, but first we are going to convert it from the birthday
496 * person's timezone to GMT - so the viewer may find the birthday starting at
497 * 6:00PM the day before, but that will correspond to midnight to the birthday person.
505 $profile = DBA::selectFirst('profile', ['dob'], ['is-default' => true, 'uid' => $uid]);
506 if (DBA::isResult($profile)) {
507 $tmp_dob = substr($profile['dob'], 5);
508 if (intval($tmp_dob)) {
509 $y = DateTimeFormat::timezoneNow($tz, 'Y');
510 $bd = $y . '-' . $tmp_dob . ' 00:00';
511 $t_dob = strtotime($bd);
512 $now = strtotime(DateTimeFormat::timezoneNow($tz));
514 $bd = $y + 1 . '-' . $tmp_dob . ' 00:00';
516 $birthday = DateTimeFormat::convert($bd, 'UTC', $tz, DateTimeFormat::ATOM);
524 * @brief Check if current user has admin role.
526 * @return bool true if user is an admin
528 function is_site_admin()
532 $admin_email = Config::get('config', 'admin_email');
534 $adminlist = explode(',', str_replace(' ', '', $admin_email));
536 return local_user() && $admin_email && in_array(defaults($a->user, 'email', ''), $adminlist);
540 * @brief Returns querystring as string from a mapped array.
542 * @param array $params mapped array with query parameters
543 * @param string $name of parameter, default null
547 function build_querystring($params, $name = null)
550 foreach ($params as $key => $val) {
551 if (is_array($val)) {
552 /// @TODO maybe not compare against null, use is_null()
554 $ret .= build_querystring($val, $key);
556 $ret .= build_querystring($val, $name . "[$key]");
559 $val = urlencode($val);
560 /// @TODO maybe not compare against null, use is_null()
562 /// @TODO two string concated, can be merged to one
563 $ret .= $name . "[$key]" . "=$val&";
565 $ret .= "$key=$val&";
572 function explode_querystring($query)
574 $arg_st = strpos($query, '?');
575 if ($arg_st !== false) {
576 $base = substr($query, 0, $arg_st);
583 $args = explode('&', substr($query, $arg_st));
584 foreach ($args as $k => $arg) {
585 /// @TODO really compare type-safe here?
590 $args = array_values($args);
595 $args = array_values($args);
605 * Returns the complete URL of the current page, e.g.: http(s)://something.com/network
607 * Taken from http://webcheatsheet.com/php/get_current_page_url.php
609 function curPageURL()
612 if (!empty($_SERVER["HTTPS"]) && ($_SERVER["HTTPS"] == "on")) {
618 if ($_SERVER["SERVER_PORT"] != "80" && $_SERVER["SERVER_PORT"] != "443") {
619 $pageURL .= $_SERVER["SERVER_NAME"] . ":" . $_SERVER["SERVER_PORT"] . $_SERVER["REQUEST_URI"];
621 $pageURL .= $_SERVER["SERVER_NAME"] . $_SERVER["REQUEST_URI"];
626 function get_server()
628 $server = Config::get("system", "directory");
631 $server = "https://dir.friendica.social";
637 function get_temppath()
641 $temppath = Config::get("system", "temppath");
643 if (($temppath != "") && App::isDirectoryUsable($temppath)) {
644 // We have a temp path and it is usable
645 return App::getRealPath($temppath);
648 // We don't have a working preconfigured temp path, so we take the system path.
649 $temppath = sys_get_temp_dir();
651 // Check if it is usable
652 if (($temppath != "") && App::isDirectoryUsable($temppath)) {
653 // Always store the real path, not the path through symlinks
654 $temppath = App::getRealPath($temppath);
656 // To avoid any interferences with other systems we create our own directory
657 $new_temppath = $temppath . "/" . $a->getHostName();
658 if (!is_dir($new_temppath)) {
659 /// @TODO There is a mkdir()+chmod() upwards, maybe generalize this (+ configurable) into a function/method?
660 mkdir($new_temppath);
663 if (App::isDirectoryUsable($new_temppath)) {
664 // The new path is usable, we are happy
665 Config::set("system", "temppath", $new_temppath);
666 return $new_temppath;
668 // We can't create a subdirectory, strange.
669 // But the directory seems to work, so we use it but don't store it.
674 // Reaching this point means that the operating system is configured badly.
678 function get_cachefile($file, $writemode = true)
680 $cache = get_itemcachepath();
682 if ((!$cache) || (!is_dir($cache))) {
686 $subfolder = $cache . "/" . substr($file, 0, 2);
688 $cachepath = $subfolder . "/" . $file;
691 if (!is_dir($subfolder)) {
693 chmod($subfolder, 0777);
700 function clear_cache($basepath = "", $path = "")
703 $basepath = get_itemcachepath();
707 if (($path == "") || (!is_dir($path))) {
711 if (substr(realpath($path), 0, strlen($basepath)) != $basepath) {
715 $cachetime = (int) Config::get('system', 'itemcache_duration');
716 if ($cachetime == 0) {
720 if (is_writable($path)) {
721 if ($dh = opendir($path)) {
722 while (($file = readdir($dh)) !== false) {
723 $fullpath = $path . "/" . $file;
724 if ((filetype($fullpath) == "dir") && ($file != ".") && ($file != "..")) {
725 clear_cache($basepath, $fullpath);
727 if ((filetype($fullpath) == "file") && (filectime($fullpath) < (time() - $cachetime))) {
736 function get_itemcachepath()
738 // Checking, if the cache is deactivated
739 $cachetime = (int) Config::get('system', 'itemcache_duration');
740 if ($cachetime < 0) {
744 $itemcache = Config::get('system', 'itemcache');
745 if (($itemcache != "") && App::isDirectoryUsable($itemcache)) {
746 return App::getRealPath($itemcache);
749 $temppath = get_temppath();
751 if ($temppath != "") {
752 $itemcache = $temppath . "/itemcache";
753 if (!file_exists($itemcache) && !is_dir($itemcache)) {
757 if (App::isDirectoryUsable($itemcache)) {
758 Config::set("system", "itemcache", $itemcache);
766 * @brief Returns the path where spool files are stored
768 * @return string Spool path
770 function get_spoolpath()
772 $spoolpath = Config::get('system', 'spoolpath');
773 if (($spoolpath != "") && App::isDirectoryUsable($spoolpath)) {
774 // We have a spool path and it is usable
778 // We don't have a working preconfigured spool path, so we take the temp path.
779 $temppath = get_temppath();
781 if ($temppath != "") {
782 // To avoid any interferences with other systems we create our own directory
783 $spoolpath = $temppath . "/spool";
784 if (!is_dir($spoolpath)) {
788 if (App::isDirectoryUsable($spoolpath)) {
789 // The new path is usable, we are happy
790 Config::set("system", "spoolpath", $spoolpath);
793 // We can't create a subdirectory, strange.
794 // But the directory seems to work, so we use it but don't store it.
799 // Reaching this point means that the operating system is configured badly.
803 if (!function_exists('exif_imagetype')) {
804 function exif_imagetype($file)
806 $size = getimagesize($file);
811 function validate_include(&$file)
815 $file = realpath($file);
817 if (strpos($file, getcwd()) !== 0) {
821 $file = str_replace(getcwd() . "/", "", $file, $count);
826 if ($orig_file !== $file) {
831 if (strpos($file, "include/") === 0) {
835 if (strpos($file, "addon/") === 0) {
839 // Simply return flag
844 * PHP 5 compatible dirname() with count parameter
846 * @see http://php.net/manual/en/function.dirname.php#113193
848 * @deprecated with PHP 7
849 * @param string $path
853 function rdirname($path, $levels = 1)
856 return dirname(rdirname($path, --$levels));
858 return dirname($path);