3 require_once('include/config.php');
4 require_once('include/network.php');
5 require_once('include/plugin.php');
6 require_once('include/text.php');
7 require_once("include/pgettext.php");
8 require_once('include/nav.php');
10 define ( 'FRIENDIKA_PLATFORM', 'Free Friendika');
11 define ( 'FRIENDIKA_VERSION', '2.3.1119' );
12 define ( 'DFRN_PROTOCOL_VERSION', '2.21' );
13 define ( 'DB_UPDATE_VERSION', 1093 );
15 define ( 'EOL', "<br />\r\n" );
16 define ( 'ATOM_TIME', 'Y-m-d\TH:i:s\Z' );
21 * Image storage quality. Lower numbers save space at cost of image detail.
22 * For ease of upgrade, please do not change here. Change jpeg quality with
23 * set_config('system','jpeg_quality',n) in .htconfig.php
24 * where n is netween 1 and 100, and with very poor results below about 50
28 define ( 'JPEG_QUALITY', 100 );
31 * SSL redirection policies
34 define ( 'SSL_POLICY_NONE', 0 );
35 define ( 'SSL_POLICY_FULL', 1 );
36 define ( 'SSL_POLICY_SELFSIGN', 2 );
43 define ( 'LOGGER_NORMAL', 0 );
44 define ( 'LOGGER_TRACE', 1 );
45 define ( 'LOGGER_DEBUG', 2 );
46 define ( 'LOGGER_DATA', 3 );
47 define ( 'LOGGER_ALL', 4 );
50 * registration policies
53 define ( 'REGISTER_CLOSED', 0 );
54 define ( 'REGISTER_APPROVE', 1 );
55 define ( 'REGISTER_OPEN', 2 );
61 define ( 'CONTACT_IS_FOLLOWER', 1);
62 define ( 'CONTACT_IS_SHARING', 2);
63 define ( 'CONTACT_IS_FRIEND', 3);
70 define ( 'HOOK_HOOK', 0);
71 define ( 'HOOK_FILE', 1);
72 define ( 'HOOK_FUNCTION', 2);
78 * PAGE_NORMAL is a typical personal profile account
79 * PAGE_SOAPBOX automatically approves all friend requests as CONTACT_IS_SHARING, (readonly)
80 * PAGE_COMMUNITY automatically approves all friend requests as CONTACT_IS_SHARING, but with
81 * write access to wall and comments (no email and not included in page owner's ACL lists)
82 * PAGE_FREELOVE automatically approves all friend requests as full friends (CONTACT_IS_FRIEND).
86 define ( 'PAGE_NORMAL', 0 );
87 define ( 'PAGE_SOAPBOX', 1 );
88 define ( 'PAGE_COMMUNITY', 2 );
89 define ( 'PAGE_FREELOVE', 3 );
92 * Network and protocol family types
95 define ( 'NETWORK_ZOT', 'zot!'); // Zot!
96 define ( 'NETWORK_DFRN', 'dfrn'); // Friendika, Mistpark, other DFRN implementations
97 define ( 'NETWORK_OSTATUS', 'stat'); // status.net, identi.ca, GNU-social, other OStatus implementations
98 define ( 'NETWORK_FEED', 'feed'); // RSS/Atom feeds with no known "post/notify" protocol
99 define ( 'NETWORK_DIASPORA', 'dspr'); // Diaspora
100 define ( 'NETWORK_MAIL', 'mail'); // IMAP/POP
101 define ( 'NETWORK_FACEBOOK', 'face'); // Facebook API
105 * Maximum number of "people who like (or don't like) this" that we will list by name
108 define ( 'MAX_LIKERS', 75);
111 * Communication timeout
114 define ( 'ZCURL_TIMEOUT' , (-1));
118 * email notification options
121 define ( 'NOTIFY_INTRO', 0x0001 );
122 define ( 'NOTIFY_CONFIRM', 0x0002 );
123 define ( 'NOTIFY_WALL', 0x0004 );
124 define ( 'NOTIFY_COMMENT', 0x0008 );
125 define ( 'NOTIFY_MAIL', 0x0010 );
128 * various namespaces we may need to parse
131 define ( 'NAMESPACE_ZOT', 'http://purl.org/macgirvin/zot' );
132 define ( 'NAMESPACE_DFRN' , 'http://purl.org/macgirvin/dfrn/1.0' );
133 define ( 'NAMESPACE_THREAD' , 'http://purl.org/syndication/thread/1.0' );
134 define ( 'NAMESPACE_TOMB' , 'http://purl.org/atompub/tombstones/1.0' );
135 define ( 'NAMESPACE_ACTIVITY', 'http://activitystrea.ms/spec/1.0/' );
136 define ( 'NAMESPACE_ACTIVITY_SCHEMA', 'http://activitystrea.ms/schema/1.0/' );
137 define ( 'NAMESPACE_MEDIA', 'http://purl.org/syndication/atommedia' );
138 define ( 'NAMESPACE_SALMON_ME', 'http://salmon-protocol.org/ns/magic-env' );
139 define ( 'NAMESPACE_OSTATUSSUB', 'http://ostatus.org/schema/1.0/subscribe' );
140 define ( 'NAMESPACE_GEORSS', 'http://www.georss.org/georss' );
141 define ( 'NAMESPACE_POCO', 'http://portablecontacts.net/spec/1.0' );
142 define ( 'NAMESPACE_FEED', 'http://schemas.google.com/g/2010#updates-from' );
143 define ( 'NAMESPACE_OSTATUS', 'http://ostatus.org/schema/1.0' );
144 define ( 'NAMESPACE_STATUSNET', 'http://status.net/schema/api/1/' );
145 define ( 'NAMESPACE_ATOM1', 'http://www.w3.org/2005/Atom' );
147 * activity stream defines
150 define ( 'ACTIVITY_LIKE', NAMESPACE_ACTIVITY_SCHEMA . 'like' );
151 define ( 'ACTIVITY_DISLIKE', NAMESPACE_DFRN . '/dislike' );
152 define ( 'ACTIVITY_OBJ_HEART', NAMESPACE_DFRN . '/heart' );
154 define ( 'ACTIVITY_FRIEND', NAMESPACE_ACTIVITY_SCHEMA . 'make-friend' );
155 define ( 'ACTIVITY_FOLLOW', NAMESPACE_ACTIVITY_SCHEMA . 'follow' );
156 define ( 'ACTIVITY_UNFOLLOW', NAMESPACE_ACTIVITY_SCHEMA . 'stop-following' );
157 define ( 'ACTIVITY_POST', NAMESPACE_ACTIVITY_SCHEMA . 'post' );
158 define ( 'ACTIVITY_UPDATE', NAMESPACE_ACTIVITY_SCHEMA . 'update' );
159 define ( 'ACTIVITY_TAG', NAMESPACE_ACTIVITY_SCHEMA . 'tag' );
161 define ( 'ACTIVITY_OBJ_COMMENT', NAMESPACE_ACTIVITY_SCHEMA . 'comment' );
162 define ( 'ACTIVITY_OBJ_NOTE', NAMESPACE_ACTIVITY_SCHEMA . 'note' );
163 define ( 'ACTIVITY_OBJ_PERSON', NAMESPACE_ACTIVITY_SCHEMA . 'person' );
164 define ( 'ACTIVITY_OBJ_PHOTO', NAMESPACE_ACTIVITY_SCHEMA . 'photo' );
165 define ( 'ACTIVITY_OBJ_P_PHOTO', NAMESPACE_ACTIVITY_SCHEMA . 'profile-photo' );
166 define ( 'ACTIVITY_OBJ_ALBUM', NAMESPACE_ACTIVITY_SCHEMA . 'photo-album' );
167 define ( 'ACTIVITY_OBJ_EVENT', NAMESPACE_ACTIVITY_SCHEMA . 'event' );
168 define ( 'ACTIVITY_OBJ_TAGTERM', NAMESPACE_DFRN . '/tagterm' );
171 * item weight for query ordering
174 define ( 'GRAVITY_PARENT', 0);
175 define ( 'GRAVITY_LIKE', 3);
176 define ( 'GRAVITY_COMMENT', 6);
180 * Reverse the effect of magic_quotes_gpc if it is enabled.
181 * Please disable magic_quotes_gpc so we don't have to do this.
182 * See http://php.net/manual/en/security.magicquotes.disabling.php
187 error_reporting(E_ERROR | E_WARNING | E_PARSE);
190 // This has to be quite large to deal with embedded private photos
191 ini_set('pcre.backtrack_limit', 350000);
194 if (get_magic_quotes_gpc()) {
195 $process = array(&$_GET, &$_POST, &$_COOKIE, &$_REQUEST);
196 while (list($key, $val) = each($process)) {
197 foreach ($val as $k => $v) {
198 unset($process[$key][$k]);
200 $process[$key][stripslashes($k)] = $v;
201 $process[] = &$process[$key][stripslashes($k)];
203 $process[$key][stripslashes($k)] = stripslashes($v);
216 * Our main application structure for the life of this page
217 * Primarily deals with the URL that got us here
218 * and tries to make some sense of it, and
219 * stores our page contents and config storage
220 * and anything else that might need to be passed around
221 * before we spit the page out.
225 if(! class_exists('App')) {
228 public $module_loaded = false;
229 public $query_string;
237 public $page_contact;
240 public $error = false;
250 public $interactive = true;
252 public $apps = Array();
261 private $curl_headers;
263 function __construct() {
265 $this->config = array();
266 $this->page = array();
267 $this->pager= array();
269 $this->query_string = '';
273 $this->scheme = ((isset($_SERVER['HTTPS']) && ($_SERVER['HTTPS'])) ? 'https' : 'http' );
275 if(x($_SERVER,'SERVER_NAME')) {
276 $this->hostname = $_SERVER['SERVER_NAME'];
277 if(x($_SERVER,'SERVER_PORT') && $_SERVER['SERVER_PORT'] != 80 && $_SERVER['SERVER_PORT'] != 443)
278 $this->hostname .= ':' . $_SERVER['SERVER_PORT'];
280 * Figure out if we are running at the top of a domain
281 * or in a sub-directory and adjust accordingly
284 $path = trim(dirname($_SERVER['SCRIPT_NAME']),'/\\');
285 if(isset($path) && strlen($path) && ($path != $this->path))
290 "include/$this->hostname" . PATH_SEPARATOR
291 . 'include' . PATH_SEPARATOR
292 . 'library' . PATH_SEPARATOR
293 . 'library/phpsec' . PATH_SEPARATOR
296 if((x($_SERVER,'QUERY_STRING')) && substr($_SERVER['QUERY_STRING'],0,2) === "q=")
297 $this->query_string = substr($_SERVER['QUERY_STRING'],2);
299 $this->cmd = trim($_GET['q'],'/\\');
305 * Break the URL path into C style argc/argv style arguments for our
306 * modules. Given "http://example.com/module/arg1/arg2", $this->argc
307 * will be 3 (integer) and $this->argv will contain:
313 * There will always be one argument. If provided a naked domain
314 * URL, $this->argv[0] is set to "home".
318 $this->argv = explode('/',$this->cmd);
319 $this->argc = count($this->argv);
320 if((array_key_exists('0',$this->argv)) && strlen($this->argv[0])) {
321 $this->module = str_replace(".", "_", $this->argv[0]);
325 $this->argv = array('home');
326 $this->module = 'home';
330 * Special handling for the webfinger/lrdd host XRD file
333 if($this->cmd === '.well-known/host-meta') {
335 $this->argv = array('hostxrd');
336 $this->module = 'hostxrd';
340 * See if there is any page number information, and initialise
344 $this->pager['page'] = ((x($_GET,'page')) ? $_GET['page'] : 1);
345 $this->pager['itemspage'] = 50;
346 $this->pager['start'] = ($this->pager['page'] * $this->pager['itemspage']) - $this->pager['itemspage'];
347 $this->pager['total'] = 0;
350 function get_baseurl($ssl = false) {
352 $scheme = $this->scheme;
354 if(x($this->config,'ssl_policy')) {
355 if(($ssl) || ($this->config['ssl_policy'] == SSL_POLICY_FULL))
357 if(($this->config['ssl_policy'] == SSL_POLICY_SELFSIGN) && (local_user() || x($_POST,'auth-params')))
361 $this->baseurl = $scheme . "://" . $this->hostname . ((isset($this->path) && strlen($this->path)) ? '/' . $this->path : '' );
362 return $this->baseurl;
365 function set_baseurl($url) {
366 $parsed = @parse_url($url);
368 $this->baseurl = $url;
371 $this->scheme = $parsed['scheme'];
373 $this->hostname = $parsed['host'];
374 if(x($parsed,'port'))
375 $this->hostname .= ':' . $parsed['port'];
376 if(x($parsed,'path'))
377 $this->path = trim($parsed['path'],'\\/');
382 function get_hostname() {
383 return $this->hostname;
386 function set_hostname($h) {
387 $this->hostname = $h;
390 function set_path($p) {
391 $this->path = trim(trim($p),'/');
394 function get_path() {
398 function set_pager_total($n) {
399 $this->pager['total'] = intval($n);
402 function set_pager_itemspage($n) {
403 $this->pager['itemspage'] = intval($n);
404 $this->pager['start'] = ($this->pager['page'] * $this->pager['itemspage']) - $this->pager['itemspage'];
408 function init_pagehead() {
409 $this->page['title'] = $this->config['sitename'];
410 $tpl = file_get_contents('view/head.tpl');
411 $this->page['htmlhead'] = replace_macros($tpl,array(
412 '$baseurl' => $this->get_baseurl(), // FIXME for z_path!!!!
413 '$generator' => 'Friendika' . ' ' . FRIENDIKA_VERSION,
414 '$delitem' => t('Delete this item?'),
415 '$comment' => t('Comment')
419 function set_curl_code($code) {
420 $this->curl_code = $code;
423 function get_curl_code() {
424 return $this->curl_code;
427 function set_curl_headers($headers) {
428 $this->curl_headers = $headers;
431 function get_curl_headers() {
432 return $this->curl_headers;
438 // retrieve the App structure
439 // useful in functions which require it but don't get it passed to them
441 if(! function_exists('get_app')) {
448 // Multi-purpose function to check variable state.
449 // Usage: x($var) or $x($array,'key')
450 // returns false if variable/key is not set
451 // if variable is set, returns 1 if has 'non-zero' value, otherwise returns 0.
452 // e.g. x('') or x(0) returns 0;
454 if(! function_exists('x')) {
455 function x($s,$k = NULL) {
457 if((is_array($s)) && (array_key_exists($k,$s))) {
475 // called from db initialisation if db is dead.
477 if(! function_exists('system_unavailable')) {
478 function system_unavailable() {
479 include('system_unavailable.php');
486 function clean_urls() {
488 // if($a->config['system']['clean_urls'])
495 $base = $a->get_baseurl();
503 return $a->get_baseurl();
506 function absurl($path) {
507 if(strpos($path,'/') === 0)
508 return z_path() . $path;
513 // Primarily involved with database upgrade, but also sets the
514 // base url for use in cmdline programs which don't have
515 // $_SERVER variables, and synchronising the state of installed plugins.
518 if(! function_exists('check_config')) {
519 function check_config(&$a) {
521 $build = get_config('system','build');
523 $build = set_config('system','build',DB_UPDATE_VERSION);
525 $url = get_config('system','url');
527 // if the url isn't set or the stored url is radically different
528 // than the currently visited url, store the current value accordingly.
529 // "Radically different" ignores common variations such as http vs https
530 // and www.example.com vs example.com.
532 if((! x($url)) || (! link_compare($url,$a->get_baseurl())))
533 $url = set_config('system','url',$a->get_baseurl());
535 if($build != DB_UPDATE_VERSION) {
536 $stored = intval($build);
537 $current = intval(DB_UPDATE_VERSION);
538 if(($stored < $current) && file_exists('update.php')) {
540 // We're reporting a different version than what is currently installed.
541 // Run any existing update scripts to bring the database up to current.
543 require_once('update.php');
545 // make sure that boot.php and update.php are the same release, we might be
546 // updating right this very second and the correct version of the update.php
547 // file may not be here yet. This can happen on a very busy site.
549 if(DB_UPDATE_VERSION == UPDATE_VERSION) {
551 for($x = $stored; $x < $current; $x ++) {
552 if(function_exists('update_' . $x)) {
553 $func = 'update_' . $x;
557 set_config('system','build', DB_UPDATE_VERSION);
564 * Synchronise plugins:
566 * $a->config['system']['addon'] contains a comma-separated list of names
567 * of plugins/addons which are used on this system.
568 * Go through the database list of already installed addons, and if we have
569 * an entry, but it isn't in the config list, call the uninstall procedure
570 * and mark it uninstalled in the database (for now we'll remove it).
571 * Then go through the config list and if we have a plugin that isn't installed,
572 * call the install procedure and add it to the database.
576 $r = q("SELECT * FROM `addon` WHERE `installed` = 1");
580 $installed = array();
582 $plugins = get_config('system','addon');
583 $plugins_arr = array();
586 $plugins_arr = explode(',',str_replace(' ', '',$plugins));
588 $a->plugins = $plugins_arr;
590 $installed_arr = array();
592 if(count($installed)) {
593 foreach($installed as $i) {
594 if(! in_array($i['name'],$plugins_arr)) {
595 uninstall_plugin($i['name']);
598 $installed_arr[] = $i['name'];
602 if(count($plugins_arr)) {
603 foreach($plugins_arr as $p) {
604 if(! in_array($p,$installed_arr)) {
617 function get_guid($size=16) {
618 $exists = true; // assume by default that we don't have a unique guid
620 $s = random_string($size);
621 $r = q("select id from guid where guid = '%s' limit 1", dbesc($s));
625 q("insert into guid ( guid ) values ( '%s' ) ", dbesc($s));
630 // wrapper for adding a login box. If $register == true provide a registration
631 // link. This will most always depend on the value of $a->config['register_policy'].
632 // returns the complete html for inserting into the page
634 if(! function_exists('login')) {
635 function login($register = false) {
637 $register_tpl = (($register) ? get_markup_template("register-link.tpl") : "");
639 $register_html = replace_macros($register_tpl,array(
640 '$title' => t('Create a New Account'),
641 '$desc' => t('Register')
644 $noid = get_config('system','no_openid');
646 $classname = 'no-openid';
647 $namelabel = t('Nickname or Email address: ');
648 $passlabel = t('Password: ');
652 $classname = 'openid';
653 $namelabel = t('Nickname/Email/OpenID: ');
654 $passlabel = t("Password \x28if not OpenID\x29: ");
657 $lostpass = t('Forgot your password?');
658 $lostlink = t('Password Reset');
661 $tpl = get_markup_template("logout.tpl");
664 $tpl = get_markup_template("login.tpl");
668 $o = '<script type="text/javascript"> $(document).ready(function() { $("#login-name").focus();} );</script>';
670 $o .= replace_macros($tpl,array(
671 '$logout' => t('Logout'),
672 '$register_html' => $register_html,
673 '$classname' => $classname,
674 '$namelabel' => $namelabel,
675 '$passlabel' => $passlabel,
677 '$lostpass' => $lostpass,
678 '$lostlink' => $lostlink
681 call_hooks('login_hook',$o);
686 // Used to end the current process, after saving session state.
688 if(! function_exists('killme')) {
690 session_write_close();
694 // redirect to another URL and terminate this process.
696 if(! function_exists('goaway')) {
697 function goaway($s) {
698 header("Location: $s");
703 // Returns the uid of locally logged in user or false.
705 if(! function_exists('local_user')) {
706 function local_user() {
707 if((x($_SESSION,'authenticated')) && (x($_SESSION,'uid')))
708 return intval($_SESSION['uid']);
712 // Returns contact id of authenticated site visitor or false
714 if(! function_exists('remote_user')) {
715 function remote_user() {
716 if((x($_SESSION,'authenticated')) && (x($_SESSION,'visitor_id')))
717 return intval($_SESSION['visitor_id']);
721 // contents of $s are displayed prominently on the page the next time
722 // a page is loaded. Usually used for errors or alerts.
724 if(! function_exists('notice')) {
725 function notice($s) {
727 if(! x($_SESSION,'sysmsg')) $_SESSION['sysmsg'] = array();
729 $_SESSION['sysmsg'][] = $s;
731 if(! function_exists('info')) {
734 if(! x($_SESSION,'sysmsg_info')) $_SESSION['sysmsg_info'] = array();
736 $_SESSION['sysmsg_info'][] = $s;
740 // wrapper around config to limit the text length of an incoming message
742 if(! function_exists('get_max_import_size')) {
743 function get_max_import_size() {
745 return ((x($a->config,'max_import_size')) ? $a->config['max_import_size'] : 0 );
752 * Function : profile_load
754 * @parameter string $nickname
755 * @parameter int $profile
757 * Summary: Loads a profile into the page sidebar.
758 * The function requires a writeable copy of the main App structure, and the nickname
759 * of a registered local account.
761 * If the viewer is an authenticated remote viewer, the profile displayed is the
762 * one that has been configured for his/her viewing in the Contact manager.
763 * Passing a non-zero profile ID can also allow a preview of a selected profile
766 * Profile information is placed in the App structure for later retrieval.
767 * Honours the owner's chosen theme for display.
771 if(! function_exists('profile_load')) {
772 function profile_load(&$a, $nickname, $profile = 0) {
774 $r = q("SELECT `profile-id` FROM `contact` WHERE `id` = %d LIMIT 1",
775 intval($_SESSION['visitor_id']));
777 $profile = $r[0]['profile-id'];
783 $profile_int = intval($profile);
784 $r = q("SELECT `profile`.`uid` AS `profile_uid`, `profile`.* , `user`.* FROM `profile`
785 LEFT JOIN `user` ON `profile`.`uid` = `user`.`uid`
786 WHERE `user`.`nickname` = '%s' AND `profile`.`id` = %d LIMIT 1",
792 $r = q("SELECT `profile`.`uid` AS `profile_uid`, `profile`.* , `user`.* FROM `profile`
793 LEFT JOIN `user` ON `profile`.`uid` = `user`.`uid`
794 WHERE `user`.`nickname` = '%s' AND `profile`.`is-default` = 1 LIMIT 1",
799 if(($r === false) || (! count($r))) {
800 notice( t('No profile') . EOL );
808 $a->page['title'] = $a->profile['name'] . " @ " . $a->config['sitename'];
809 $_SESSION['theme'] = $a->profile['theme'];
811 if(! (x($a->page,'aside')))
812 $a->page['aside'] = '';
814 $block = (((get_config('system','block_public')) && (! local_user()) && (! remote_user())) ? true : false);
816 $a->page['aside'] .= profile_sidebar($a->profile, $block);
819 $a->page['aside'] .= contact_block();*/
827 * Function: profile_sidebar
829 * Formats a profile for display in the sidebar.
830 * It is very difficult to templatise the HTML completely
831 * because of all the conditional logic.
833 * @parameter: array $profile
835 * Returns HTML string stuitable for sidebar inclusion
836 * Exceptions: Returns empty string if passed $profile is wrong type or not populated
841 if(! function_exists('profile_sidebar')) {
842 function profile_sidebar($profile, $block = 0) {
851 if((! is_array($profile)) && (! count($profile)))
854 call_hooks('profile_sidebar_enter', $profile);
857 // don't show connect link to yourself
858 $connect = (($profile['uid'] != local_user()) ? t('Connect') : False);
860 // don't show connect link to authenticated visitors either
862 if((remote_user()) && ($_SESSION['visitor_visiting'] == $profile['uid']))
866 // show edit profile to yourself
867 if ($profile['uid'] == local_user()) {
868 $profile['edit'] = array($a->get_baseurl(). '/profiles', t('Profiles'),"", t('Manage/edit profiles'));
870 $r = q("SELECT * FROM `profile` WHERE `uid` = %d",
873 $profile['menu'] = array(
874 'chg_photo' => t('Change profile photo'),
875 'cr_new' => t('Create New Profile'),
876 'entries' => array(),
882 $profile['menu']['entries'][] = array(
883 'photo' => $rr['thumb'],
885 'alt' => t('Profile Image'),
886 'profile_name' => $rr['profile-name'],
887 'isdefault' => $rr['is-default'],
888 'visibile_to_everybody' => t('visible to everybody'),
889 'edit_visibility' => t('Edit visibility'),
903 if((x($profile,'address') == 1)
904 || (x($profile,'locality') == 1)
905 || (x($profile,'region') == 1)
906 || (x($profile,'postal-code') == 1)
907 || (x($profile,'country-name') == 1))
908 $location = t('Location:');
910 $gender = ((x($profile,'gender') == 1) ? t('Gender:') : False);
913 $marital = ((x($profile,'marital') == 1) ? t('Status:') : False);
915 $homepage = ((x($profile,'homepage') == 1) ? t('Homepage:') : False);
917 if(($profile['hidewall'] || $block) && (! local_user()) && (! remote_user())) {
918 $location = $pdesc = $connect = $gender = $marital = $homepage = False;
922 'podloc' => $a->get_baseurl(),
923 'searchable' => (($profile['publish'] && $profile['net-publish']) ? 'true' : 'false' ),
924 'nickname ' => $profile['nickname'],
925 'fullname' => $profile['name'],
926 'photo300' => $a->get_baseurl() . '/photo/custom/300/' . $profile['uid'] . '.jpg',
927 'photo100' => $a->get_baseurl() . '/photo/custom/100/' . $profile['uid'] . '.jpg',
928 'photo50' => $a->get_baseurl() . '/photo/custom/50/' . $profile['uid'] . '.jpg',
932 $contact_block = contact_block();
936 $tpl = get_markup_template('profile_vcard.tpl');
938 $o .= replace_macros($tpl, array(
939 '$profile' => $profile,
940 '$connect' => $connect,
941 '$location' => template_escape($location),
942 '$gender' => $gender,
944 '$marital' => $marital,
945 '$homepage' => $homepage,
946 '$diaspora' => $diaspora,
947 '$contact_block' => $contact_block,
951 $arr = array('profile' => &$profile, 'entry' => &$o);
953 call_hooks('profile_sidebar', $arr);
959 if(! function_exists('get_birthdays')) {
960 function get_birthdays() {
968 $bd_format = t('g A l F d') ; // 8 AM Friday January 18
970 $r = q("SELECT `event`.*, `event`.`id` AS `eid`, `contact`.* FROM `event`
971 LEFT JOIN `contact` ON `contact`.`id` = `event`.`cid`
972 WHERE `event`.`uid` = %d AND `type` = 'birthday' AND `start` < '%s' AND `finish` > '%s'
973 ORDER BY `start` DESC ",
974 intval(local_user()),
975 dbesc(datetime_convert('UTC','UTC','now + 6 days')),
976 dbesc(datetime_convert('UTC','UTC','now'))
979 if($r && count($r)) {
982 if(strlen($rr['name']))
986 $o .= '<div id="birthday-notice" class="birthday-notice fakelink" onclick=openClose(\'birthday-wrapper\'); >' . t('Birthday Reminders') . ' ' . '(' . $total . ')' . '</div>';
987 $o .= '<div id="birthday-wrapper" style="display: none;" ><div id="birthday-title">' . t('Birthdays this week:') . '</div>';
988 $o .= '<div id="birthday-adjust">' . t("\x28Adjusted for local time\x29") . '</div>';
989 $o .= '<div id="birthday-title-end"></div>';
992 if(! strlen($rr['name']))
994 $now = strtotime('now');
995 $today = (((strtotime($rr['start'] . ' +00:00') < $now) && (strtotime($rr['finish'] . ' +00:00') > $now)) ? true : false);
997 $o .= '<div class="birthday-list" id="birthday-' . $rr['eid'] . '"><a class="sparkle" target="redir" href="'
998 . $a->get_baseurl() . '/redir/' . $rr['cid'] . '">' . $rr['name'] . '</a> '
999 . day_translate(datetime_convert('UTC', $a->timezone, $rr['start'], $bd_format)) . (($today) ? ' ' . t('[today]') : '')
1002 $o .= '</div></div>';
1011 * Wrap calls to proc_close(proc_open()) and call hook
1012 * so plugins can take part in process :)
1015 * $cmd program to run
1016 * next args are passed as $cmd command line
1018 * e.g.: proc_run("ls","-la","/tmp");
1020 * $cmd and string args are surrounded with ""
1023 if(! function_exists('proc_run')) {
1024 function proc_run($cmd){
1028 $args = func_get_args();
1029 $arr = array('args' => $args, 'run_cmd' => true);
1031 call_hooks("proc_run", $arr);
1032 if(! $arr['run_cmd'])
1035 if(count($args) && $args[0] === 'php')
1036 $args[0] = ((x($a->config,'php_path')) && (strlen($a->config['php_path'])) ? $a->config['php_path'] : 'php');
1037 foreach ($args as $arg){
1038 $arg = escapeshellarg($arg);
1040 $cmdline = implode($args," ");
1041 proc_close(proc_open($cmdline." &",array(),$foo));
1044 if(! function_exists('current_theme')) {
1045 function current_theme(){
1046 $app_base_themes = array('duepuntozero', 'loozah');
1050 $system_theme = ((isset($a->config['system']['theme'])) ? $a->config['system']['theme'] : '');
1051 $theme_name = ((is_array($_SESSION) && x($_SESSION,'theme')) ? $_SESSION['theme'] : $system_theme);
1053 if($theme_name && file_exists('view/theme/' . $theme_name . '/style.css'))
1054 return($theme_name);
1056 foreach($app_base_themes as $t) {
1057 if(file_exists('view/theme/' . $t . '/style.css'))
1061 $fallback = glob('view/theme/*/style.css');
1062 if(count($fallback))
1063 return (str_replace('view/theme/','', str_replace("/style.css","",$fallback[0])));
1068 * Return full URL to theme which is currently in effect.
1069 * Provide a sane default if nothing is chosen or the specified theme does not exist.
1071 if(! function_exists('current_theme_url')) {
1072 function current_theme_url() {
1074 $t = current_theme();
1075 return($a->get_baseurl() . '/view/theme/' . $t . '/style.css');
1078 if(! function_exists('feed_birthday')) {
1079 function feed_birthday($uid,$tz) {
1083 * Determine the next birthday, but only if the birthday is published
1084 * in the default profile. We _could_ also look for a private profile that the
1085 * recipient can see, but somebody could get mad at us if they start getting
1086 * public birthday greetings when they haven't made this info public.
1088 * Assuming we are able to publish this info, we are then going to convert
1089 * the start time from the owner's timezone to UTC.
1091 * This will potentially solve the problem found with some social networks
1092 * where birthdays are converted to the viewer's timezone and salutations from
1093 * elsewhere in the world show up on the wrong day. We will convert it to the
1094 * viewer's timezone also, but first we are going to convert it from the birthday
1095 * person's timezone to GMT - so the viewer may find the birthday starting at
1096 * 6:00PM the day before, but that will correspond to midnight to the birthday person.
1102 $p = q("SELECT `dob` FROM `profile` WHERE `is-default` = 1 AND `uid` = %d LIMIT 1",
1106 if($p && count($p)) {
1107 $tmp_dob = substr($p[0]['dob'],5);
1108 if(intval($tmp_dob)) {
1109 $y = datetime_convert($tz,$tz,'now','Y');
1110 $bd = $y . '-' . $tmp_dob . ' 00:00';
1111 $t_dob = strtotime($bd);
1112 $now = strtotime(datetime_convert($tz,$tz,'now'));
1114 $bd = $y + 1 . '-' . $tmp_dob . ' 00:00';
1115 $birthday = datetime_convert($tz,'UTC',$bd,ATOM_TIME);
1122 if(! function_exists('is_site_admin')) {
1123 function is_site_admin() {
1125 if(local_user() && x($a->user,'email') && x($a->config,'admin_email') && ($a->user['email'] === $a->config['admin_email']))
1131 if(! function_exists('load_contact_links')) {
1132 function load_contact_links($uid) {
1138 if(! $uid || x($a->contacts,'empty'))
1141 $r = q("SELECT `id`,`network`,`url`,`thumb` FROM `contact` WHERE `uid` = %d AND `self` = 0 AND `blocked` = 0 ",
1146 $url = normalise_link($rr['url']);
1151 $ret['empty'] = true;
1152 $a->contacts = $ret;