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');
9 require_once('include/cache.php');
11 define ( 'FRIENDIKA_PLATFORM', 'Friendica');
12 define ( 'FRIENDIKA_VERSION', '2.3.1168' );
13 define ( 'DFRN_PROTOCOL_VERSION', '2.22' );
14 define ( 'DB_UPDATE_VERSION', 1104 );
16 define ( 'EOL', "<br />\r\n" );
17 define ( 'ATOM_TIME', 'Y-m-d\TH:i:s\Z' );
22 * Image storage quality. Lower numbers save space at cost of image detail.
23 * For ease of upgrade, please do not change here. Change jpeg quality with
24 * set_config('system','jpeg_quality',n) in .htconfig.php
25 * where n is netween 1 and 100, and with very poor results below about 50
29 define ( 'JPEG_QUALITY', 100 );
32 * SSL redirection policies
35 define ( 'SSL_POLICY_NONE', 0 );
36 define ( 'SSL_POLICY_FULL', 1 );
37 define ( 'SSL_POLICY_SELFSIGN', 2 );
44 define ( 'LOGGER_NORMAL', 0 );
45 define ( 'LOGGER_TRACE', 1 );
46 define ( 'LOGGER_DEBUG', 2 );
47 define ( 'LOGGER_DATA', 3 );
48 define ( 'LOGGER_ALL', 4 );
51 * registration policies
54 define ( 'REGISTER_CLOSED', 0 );
55 define ( 'REGISTER_APPROVE', 1 );
56 define ( 'REGISTER_OPEN', 2 );
62 define ( 'CONTACT_IS_FOLLOWER', 1);
63 define ( 'CONTACT_IS_SHARING', 2);
64 define ( 'CONTACT_IS_FRIEND', 3);
71 define ( 'HOOK_HOOK', 0);
72 define ( 'HOOK_FILE', 1);
73 define ( 'HOOK_FUNCTION', 2);
79 * PAGE_NORMAL is a typical personal profile account
80 * PAGE_SOAPBOX automatically approves all friend requests as CONTACT_IS_SHARING, (readonly)
81 * PAGE_COMMUNITY automatically approves all friend requests as CONTACT_IS_SHARING, but with
82 * write access to wall and comments (no email and not included in page owner's ACL lists)
83 * PAGE_FREELOVE automatically approves all friend requests as full friends (CONTACT_IS_FRIEND).
87 define ( 'PAGE_NORMAL', 0 );
88 define ( 'PAGE_SOAPBOX', 1 );
89 define ( 'PAGE_COMMUNITY', 2 );
90 define ( 'PAGE_FREELOVE', 3 );
93 * Network and protocol family types
96 define ( 'NETWORK_ZOT', 'zot!'); // Zot!
97 define ( 'NETWORK_DFRN', 'dfrn'); // Friendica, Mistpark, other DFRN implementations
98 define ( 'NETWORK_OSTATUS', 'stat'); // status.net, identi.ca, GNU-social, other OStatus implementations
99 define ( 'NETWORK_FEED', 'feed'); // RSS/Atom feeds with no known "post/notify" protocol
100 define ( 'NETWORK_DIASPORA', 'dspr'); // Diaspora
101 define ( 'NETWORK_MAIL', 'mail'); // IMAP/POP
102 define ( 'NETWORK_FACEBOOK', 'face'); // Facebook API
106 * Maximum number of "people who like (or don't like) this" that we will list by name
109 define ( 'MAX_LIKERS', 75);
112 * Communication timeout
115 define ( 'ZCURL_TIMEOUT' , (-1));
119 * email notification options
122 define ( 'NOTIFY_INTRO', 0x0001 );
123 define ( 'NOTIFY_CONFIRM', 0x0002 );
124 define ( 'NOTIFY_WALL', 0x0004 );
125 define ( 'NOTIFY_COMMENT', 0x0008 );
126 define ( 'NOTIFY_MAIL', 0x0010 );
129 * various namespaces we may need to parse
132 define ( 'NAMESPACE_ZOT', 'http://purl.org/macgirvin/zot' );
133 define ( 'NAMESPACE_DFRN' , 'http://purl.org/macgirvin/dfrn/1.0' );
134 define ( 'NAMESPACE_THREAD' , 'http://purl.org/syndication/thread/1.0' );
135 define ( 'NAMESPACE_TOMB' , 'http://purl.org/atompub/tombstones/1.0' );
136 define ( 'NAMESPACE_ACTIVITY', 'http://activitystrea.ms/spec/1.0/' );
137 define ( 'NAMESPACE_ACTIVITY_SCHEMA', 'http://activitystrea.ms/schema/1.0/' );
138 define ( 'NAMESPACE_MEDIA', 'http://purl.org/syndication/atommedia' );
139 define ( 'NAMESPACE_SALMON_ME', 'http://salmon-protocol.org/ns/magic-env' );
140 define ( 'NAMESPACE_OSTATUSSUB', 'http://ostatus.org/schema/1.0/subscribe' );
141 define ( 'NAMESPACE_GEORSS', 'http://www.georss.org/georss' );
142 define ( 'NAMESPACE_POCO', 'http://portablecontacts.net/spec/1.0' );
143 define ( 'NAMESPACE_FEED', 'http://schemas.google.com/g/2010#updates-from' );
144 define ( 'NAMESPACE_OSTATUS', 'http://ostatus.org/schema/1.0' );
145 define ( 'NAMESPACE_STATUSNET', 'http://status.net/schema/api/1/' );
146 define ( 'NAMESPACE_ATOM1', 'http://www.w3.org/2005/Atom' );
148 * activity stream defines
151 define ( 'ACTIVITY_LIKE', NAMESPACE_ACTIVITY_SCHEMA . 'like' );
152 define ( 'ACTIVITY_DISLIKE', NAMESPACE_DFRN . '/dislike' );
153 define ( 'ACTIVITY_OBJ_HEART', NAMESPACE_DFRN . '/heart' );
155 define ( 'ACTIVITY_FRIEND', NAMESPACE_ACTIVITY_SCHEMA . 'make-friend' );
156 define ( 'ACTIVITY_REQ_FRIEND', NAMESPACE_ACTIVITY_SCHEMA . 'request-friend' );
157 define ( 'ACTIVITY_UNFRIEND', NAMESPACE_ACTIVITY_SCHEMA . 'remove-friend' );
158 define ( 'ACTIVITY_FOLLOW', NAMESPACE_ACTIVITY_SCHEMA . 'follow' );
159 define ( 'ACTIVITY_UNFOLLOW', NAMESPACE_ACTIVITY_SCHEMA . 'stop-following' );
160 define ( 'ACTIVITY_POST', NAMESPACE_ACTIVITY_SCHEMA . 'post' );
161 define ( 'ACTIVITY_UPDATE', NAMESPACE_ACTIVITY_SCHEMA . 'update' );
162 define ( 'ACTIVITY_TAG', NAMESPACE_ACTIVITY_SCHEMA . 'tag' );
164 define ( 'ACTIVITY_OBJ_COMMENT', NAMESPACE_ACTIVITY_SCHEMA . 'comment' );
165 define ( 'ACTIVITY_OBJ_NOTE', NAMESPACE_ACTIVITY_SCHEMA . 'note' );
166 define ( 'ACTIVITY_OBJ_PERSON', NAMESPACE_ACTIVITY_SCHEMA . 'person' );
167 define ( 'ACTIVITY_OBJ_PHOTO', NAMESPACE_ACTIVITY_SCHEMA . 'photo' );
168 define ( 'ACTIVITY_OBJ_P_PHOTO', NAMESPACE_ACTIVITY_SCHEMA . 'profile-photo' );
169 define ( 'ACTIVITY_OBJ_ALBUM', NAMESPACE_ACTIVITY_SCHEMA . 'photo-album' );
170 define ( 'ACTIVITY_OBJ_EVENT', NAMESPACE_ACTIVITY_SCHEMA . 'event' );
171 define ( 'ACTIVITY_OBJ_TAGTERM', NAMESPACE_DFRN . '/tagterm' );
174 * item weight for query ordering
177 define ( 'GRAVITY_PARENT', 0);
178 define ( 'GRAVITY_LIKE', 3);
179 define ( 'GRAVITY_COMMENT', 6);
183 * Reverse the effect of magic_quotes_gpc if it is enabled.
184 * Please disable magic_quotes_gpc so we don't have to do this.
185 * See http://php.net/manual/en/security.magicquotes.disabling.php
190 error_reporting(E_ERROR | E_WARNING | E_PARSE);
193 // This has to be quite large to deal with embedded private photos
194 ini_set('pcre.backtrack_limit', 500000);
197 if (get_magic_quotes_gpc()) {
198 $process = array(&$_GET, &$_POST, &$_COOKIE, &$_REQUEST);
199 while (list($key, $val) = each($process)) {
200 foreach ($val as $k => $v) {
201 unset($process[$key][$k]);
203 $process[$key][stripslashes($k)] = $v;
204 $process[] = &$process[$key][stripslashes($k)];
206 $process[$key][stripslashes($k)] = stripslashes($v);
219 * Our main application structure for the life of this page
220 * Primarily deals with the URL that got us here
221 * and tries to make some sense of it, and
222 * stores our page contents and config storage
223 * and anything else that might need to be passed around
224 * before we spit the page out.
228 if(! class_exists('App')) {
231 public $module_loaded = false;
232 public $query_string;
240 public $page_contact;
242 public $data = array();
243 public $error = false;
253 public $interactive = true;
255 public $apps = array();
266 private $curl_headers;
268 function __construct() {
270 $this->config = array();
271 $this->page = array();
272 $this->pager= array();
274 $this->query_string = '';
278 $this->scheme = ((isset($_SERVER['HTTPS']) && ($_SERVER['HTTPS'])) ? 'https' : 'http' );
280 if(x($_SERVER,'SERVER_NAME')) {
281 $this->hostname = $_SERVER['SERVER_NAME'];
282 if(x($_SERVER,'SERVER_PORT') && $_SERVER['SERVER_PORT'] != 80 && $_SERVER['SERVER_PORT'] != 443)
283 $this->hostname .= ':' . $_SERVER['SERVER_PORT'];
285 * Figure out if we are running at the top of a domain
286 * or in a sub-directory and adjust accordingly
289 $path = trim(dirname($_SERVER['SCRIPT_NAME']),'/\\');
290 if(isset($path) && strlen($path) && ($path != $this->path))
295 "include/$this->hostname" . PATH_SEPARATOR
296 . 'include' . PATH_SEPARATOR
297 . 'library' . PATH_SEPARATOR
298 . 'library/phpsec' . PATH_SEPARATOR
301 if((x($_SERVER,'QUERY_STRING')) && substr($_SERVER['QUERY_STRING'],0,2) === "q=")
302 $this->query_string = substr($_SERVER['QUERY_STRING'],2);
304 $this->cmd = trim($_GET['q'],'/\\');
310 * Break the URL path into C style argc/argv style arguments for our
311 * modules. Given "http://example.com/module/arg1/arg2", $this->argc
312 * will be 3 (integer) and $this->argv will contain:
318 * There will always be one argument. If provided a naked domain
319 * URL, $this->argv[0] is set to "home".
323 $this->argv = explode('/',$this->cmd);
324 $this->argc = count($this->argv);
325 if((array_key_exists('0',$this->argv)) && strlen($this->argv[0])) {
326 $this->module = str_replace(".", "_", $this->argv[0]);
330 $this->argv = array('home');
331 $this->module = 'home';
335 * Special handling for the webfinger/lrdd host XRD file
338 if($this->cmd === '.well-known/host-meta') {
340 $this->argv = array('hostxrd');
341 $this->module = 'hostxrd';
345 * See if there is any page number information, and initialise
349 $this->pager['page'] = ((x($_GET,'page')) ? $_GET['page'] : 1);
350 $this->pager['itemspage'] = 50;
351 $this->pager['start'] = ($this->pager['page'] * $this->pager['itemspage']) - $this->pager['itemspage'];
352 $this->pager['total'] = 0;
355 function get_baseurl($ssl = false) {
357 $scheme = $this->scheme;
359 if(x($this->config,'ssl_policy')) {
360 if(($ssl) || ($this->config['ssl_policy'] == SSL_POLICY_FULL))
362 if(($this->config['ssl_policy'] == SSL_POLICY_SELFSIGN) && (local_user() || x($_POST,'auth-params')))
366 $this->baseurl = $scheme . "://" . $this->hostname . ((isset($this->path) && strlen($this->path)) ? '/' . $this->path : '' );
367 return $this->baseurl;
370 function set_baseurl($url) {
371 $parsed = @parse_url($url);
373 $this->baseurl = $url;
376 $this->scheme = $parsed['scheme'];
378 $this->hostname = $parsed['host'];
379 if(x($parsed,'port'))
380 $this->hostname .= ':' . $parsed['port'];
381 if(x($parsed,'path'))
382 $this->path = trim($parsed['path'],'\\/');
387 function get_hostname() {
388 return $this->hostname;
391 function set_hostname($h) {
392 $this->hostname = $h;
395 function set_path($p) {
396 $this->path = trim(trim($p),'/');
399 function get_path() {
403 function set_pager_total($n) {
404 $this->pager['total'] = intval($n);
407 function set_pager_itemspage($n) {
408 $this->pager['itemspage'] = intval($n);
409 $this->pager['start'] = ($this->pager['page'] * $this->pager['itemspage']) - $this->pager['itemspage'];
413 function init_pagehead() {
414 $this->page['title'] = $this->config['sitename'];
415 $tpl = file_get_contents('view/head.tpl');
416 $this->page['htmlhead'] = replace_macros($tpl,array(
417 '$baseurl' => $this->get_baseurl(), // FIXME for z_path!!!!
418 '$generator' => 'Friendika' . ' ' . FRIENDIKA_VERSION,
419 '$delitem' => t('Delete this item?'),
420 '$comment' => t('Comment')
424 function set_curl_code($code) {
425 $this->curl_code = $code;
428 function get_curl_code() {
429 return $this->curl_code;
432 function set_curl_headers($headers) {
433 $this->curl_headers = $headers;
436 function get_curl_headers() {
437 return $this->curl_headers;
443 // retrieve the App structure
444 // useful in functions which require it but don't get it passed to them
446 if(! function_exists('get_app')) {
453 // Multi-purpose function to check variable state.
454 // Usage: x($var) or $x($array,'key')
455 // returns false if variable/key is not set
456 // if variable is set, returns 1 if has 'non-zero' value, otherwise returns 0.
457 // e.g. x('') or x(0) returns 0;
459 if(! function_exists('x')) {
460 function x($s,$k = NULL) {
462 if((is_array($s)) && (array_key_exists($k,$s))) {
480 // called from db initialisation if db is dead.
482 if(! function_exists('system_unavailable')) {
483 function system_unavailable() {
484 include('system_unavailable.php');
491 function clean_urls() {
493 // if($a->config['system']['clean_urls'])
500 $base = $a->get_baseurl();
508 return $a->get_baseurl();
511 function absurl($path) {
512 if(strpos($path,'/') === 0)
513 return z_path() . $path;
518 // Primarily involved with database upgrade, but also sets the
519 // base url for use in cmdline programs which don't have
520 // $_SERVER variables, and synchronising the state of installed plugins.
523 if(! function_exists('check_config')) {
524 function check_config(&$a) {
526 $build = get_config('system','build');
528 $build = set_config('system','build',DB_UPDATE_VERSION);
530 $url = get_config('system','url');
532 // if the url isn't set or the stored url is radically different
533 // than the currently visited url, store the current value accordingly.
534 // "Radically different" ignores common variations such as http vs https
535 // and www.example.com vs example.com.
537 if((! x($url)) || (! link_compare($url,$a->get_baseurl())))
538 $url = set_config('system','url',$a->get_baseurl());
540 if($build != DB_UPDATE_VERSION) {
541 $stored = intval($build);
542 $current = intval(DB_UPDATE_VERSION);
543 if(($stored < $current) && file_exists('update.php')) {
545 load_config('database');
547 // We're reporting a different version than what is currently installed.
548 // Run any existing update scripts to bring the database up to current.
550 require_once('update.php');
552 // make sure that boot.php and update.php are the same release, we might be
553 // updating right this very second and the correct version of the update.php
554 // file may not be here yet. This can happen on a very busy site.
556 if(DB_UPDATE_VERSION == UPDATE_VERSION) {
558 for($x = $stored; $x < $current; $x ++) {
559 if(function_exists('update_' . $x)) {
561 // There could be a lot of processes running or about to run.
562 // We want exactly one process to run the update command.
563 // So store the fact that we're taking responsibility
564 // after first checking to see if somebody else already has.
566 // If the update fails or times-out completely you may need to
567 // delete the config entry to try again.
569 if(get_config('database','update_' . $x))
571 set_config('database','update_' . $x, '1');
573 // call the specific update
575 $func = 'update_' . $x;
579 set_config('system','build', DB_UPDATE_VERSION);
586 * Synchronise plugins:
588 * $a->config['system']['addon'] contains a comma-separated list of names
589 * of plugins/addons which are used on this system.
590 * Go through the database list of already installed addons, and if we have
591 * an entry, but it isn't in the config list, call the uninstall procedure
592 * and mark it uninstalled in the database (for now we'll remove it).
593 * Then go through the config list and if we have a plugin that isn't installed,
594 * call the install procedure and add it to the database.
598 $r = q("SELECT * FROM `addon` WHERE `installed` = 1");
602 $installed = array();
604 $plugins = get_config('system','addon');
605 $plugins_arr = array();
608 $plugins_arr = explode(',',str_replace(' ', '',$plugins));
610 $a->plugins = $plugins_arr;
612 $installed_arr = array();
614 if(count($installed)) {
615 foreach($installed as $i) {
616 if(! in_array($i['name'],$plugins_arr)) {
617 uninstall_plugin($i['name']);
620 $installed_arr[] = $i['name'];
624 if(count($plugins_arr)) {
625 foreach($plugins_arr as $p) {
626 if(! in_array($p,$installed_arr)) {
639 function get_guid($size=16) {
640 $exists = true; // assume by default that we don't have a unique guid
642 $s = random_string($size);
643 $r = q("select id from guid where guid = '%s' limit 1", dbesc($s));
647 q("insert into guid ( guid ) values ( '%s' ) ", dbesc($s));
652 // wrapper for adding a login box. If $register == true provide a registration
653 // link. This will most always depend on the value of $a->config['register_policy'].
654 // returns the complete html for inserting into the page
656 if(! function_exists('login')) {
657 function login($register = false, $hiddens=false) {
662 'title' => t('Create a New Account'),
663 'desc' => t('Register')
667 $noid = get_config('system','no_openid');
670 $tpl = get_markup_template("logout.tpl");
673 $tpl = get_markup_template("login.tpl");
678 $o .= replace_macros($tpl,array(
679 '$logout' => t('Logout'),
680 '$login' => t('Login'),
682 '$lname' => array('username', t('Nickname or Email address: ') , '', ''),
683 '$lpassword' => array('password', t('Password: '), '', ''),
686 '$lopenid' => array('openid_url', t('OpenID: '),'',''),
688 '$hiddens' => $hiddens,
692 '$lostpass' => t('Forgot your password?'),
693 '$lostlink' => t('Password Reset'),
696 call_hooks('login_hook',$o);
701 // Used to end the current process, after saving session state.
703 if(! function_exists('killme')) {
705 session_write_close();
709 // redirect to another URL and terminate this process.
711 if(! function_exists('goaway')) {
712 function goaway($s) {
713 header("Location: $s");
718 // Returns the uid of locally logged in user or false.
720 if(! function_exists('local_user')) {
721 function local_user() {
722 if((x($_SESSION,'authenticated')) && (x($_SESSION,'uid')))
723 return intval($_SESSION['uid']);
727 // Returns contact id of authenticated site visitor or false
729 if(! function_exists('remote_user')) {
730 function remote_user() {
731 if((x($_SESSION,'authenticated')) && (x($_SESSION,'visitor_id')))
732 return intval($_SESSION['visitor_id']);
736 // contents of $s are displayed prominently on the page the next time
737 // a page is loaded. Usually used for errors or alerts.
739 if(! function_exists('notice')) {
740 function notice($s) {
742 if(! x($_SESSION,'sysmsg')) $_SESSION['sysmsg'] = array();
744 $_SESSION['sysmsg'][] = $s;
746 if(! function_exists('info')) {
749 if(! x($_SESSION,'sysmsg_info')) $_SESSION['sysmsg_info'] = array();
751 $_SESSION['sysmsg_info'][] = $s;
755 // wrapper around config to limit the text length of an incoming message
757 if(! function_exists('get_max_import_size')) {
758 function get_max_import_size() {
760 return ((x($a->config,'max_import_size')) ? $a->config['max_import_size'] : 0 );
767 * Function : profile_load
769 * @parameter string $nickname
770 * @parameter int $profile
772 * Summary: Loads a profile into the page sidebar.
773 * The function requires a writeable copy of the main App structure, and the nickname
774 * of a registered local account.
776 * If the viewer is an authenticated remote viewer, the profile displayed is the
777 * one that has been configured for his/her viewing in the Contact manager.
778 * Passing a non-zero profile ID can also allow a preview of a selected profile
781 * Profile information is placed in the App structure for later retrieval.
782 * Honours the owner's chosen theme for display.
786 if(! function_exists('profile_load')) {
787 function profile_load(&$a, $nickname, $profile = 0) {
789 $r = q("SELECT `profile-id` FROM `contact` WHERE `id` = %d LIMIT 1",
790 intval($_SESSION['visitor_id']));
792 $profile = $r[0]['profile-id'];
798 $profile_int = intval($profile);
799 $r = q("SELECT `profile`.`uid` AS `profile_uid`, `profile`.* , `contact`.`avatar-date` AS picdate, `user`.* FROM `profile`
800 left join `contact` on `contact`.`uid` = `profile`.`uid` LEFT JOIN `user` ON `profile`.`uid` = `user`.`uid`
801 WHERE `user`.`nickname` = '%s' AND `profile`.`id` = %d and `contact`.`self` = 1 LIMIT 1",
807 $r = q("SELECT `profile`.`uid` AS `profile_uid`, `profile`.* , `contact`.`avatar-date` AS picdate, `user`.* FROM `profile`
808 left join `contact` on `contact`.`uid` = `profile`.`uid` LEFT JOIN `user` ON `profile`.`uid` = `user`.`uid`
809 WHERE `user`.`nickname` = '%s' AND `profile`.`is-default` = 1 and `contact`.`self` = 1 LIMIT 1",
814 if(($r === false) || (! count($r))) {
815 notice( t('No profile') . EOL );
823 $a->page['title'] = $a->profile['name'] . " @ " . $a->config['sitename'];
824 $_SESSION['theme'] = $a->profile['theme'];
827 * load/reload current theme info
829 $theme_info_file = "view/theme/".current_theme()."/theme.php";
830 if (file_exists($theme_info_file)){
831 require_once($theme_info_file);
834 if(! (x($a->page,'aside')))
835 $a->page['aside'] = '';
837 if(local_user() && local_user() == $a->profile['uid']) {
838 $a->page['aside'] .= replace_macros(get_markup_template('profile_edlink.tpl'),array(
839 '$editprofile' => t('Edit profile'),
840 '$profid' => $a->profile['id']
844 $block = (((get_config('system','block_public')) && (! local_user()) && (! remote_user())) ? true : false);
846 $a->page['aside'] .= profile_sidebar($a->profile, $block);
849 $a->page['aside'] .= contact_block();*/
857 * Function: profile_sidebar
859 * Formats a profile for display in the sidebar.
860 * It is very difficult to templatise the HTML completely
861 * because of all the conditional logic.
863 * @parameter: array $profile
865 * Returns HTML string stuitable for sidebar inclusion
866 * Exceptions: Returns empty string if passed $profile is wrong type or not populated
871 if(! function_exists('profile_sidebar')) {
872 function profile_sidebar($profile, $block = 0) {
881 if((! is_array($profile)) && (! count($profile)))
884 $profile['picdate'] = urlencode($profile['picdate']);
886 call_hooks('profile_sidebar_enter', $profile);
889 // don't show connect link to yourself
890 $connect = (($profile['uid'] != local_user()) ? t('Connect') : False);
892 // don't show connect link to authenticated visitors either
894 if((remote_user()) && ($_SESSION['visitor_visiting'] == $profile['uid']))
898 // show edit profile to yourself
899 if ($profile['uid'] == local_user()) {
900 $profile['edit'] = array($a->get_baseurl(). '/profiles', t('Profiles'),"", t('Manage/edit profiles'));
902 $r = q("SELECT * FROM `profile` WHERE `uid` = %d",
905 $profile['menu'] = array(
906 'chg_photo' => t('Change profile photo'),
907 'cr_new' => t('Create New Profile'),
908 'entries' => array(),
914 $profile['menu']['entries'][] = array(
915 'photo' => $rr['thumb'],
917 'alt' => t('Profile Image'),
918 'profile_name' => $rr['profile-name'],
919 'isdefault' => $rr['is-default'],
920 'visibile_to_everybody' => t('visible to everybody'),
921 'edit_visibility' => t('Edit visibility'),
935 if((x($profile,'address') == 1)
936 || (x($profile,'locality') == 1)
937 || (x($profile,'region') == 1)
938 || (x($profile,'postal-code') == 1)
939 || (x($profile,'country-name') == 1))
940 $location = t('Location:');
942 $gender = ((x($profile,'gender') == 1) ? t('Gender:') : False);
945 $marital = ((x($profile,'marital') == 1) ? t('Status:') : False);
947 $homepage = ((x($profile,'homepage') == 1) ? t('Homepage:') : False);
949 if(($profile['hidewall'] || $block) && (! local_user()) && (! remote_user())) {
950 $location = $pdesc = $connect = $gender = $marital = $homepage = False;
953 $firstname = ((strpos($profile['name'],' '))
954 ? trim(substr($profile['name'],0,strpos($profile['name'],' '))) : $profile['name']);
955 $lastname = (($firstname === $profile['name']) ? '' : trim(substr($profile['name'],strlen($firstname))));
958 'podloc' => $a->get_baseurl(),
959 'searchable' => (($profile['publish'] && $profile['net-publish']) ? 'true' : 'false' ),
960 'nickname' => $profile['nickname'],
961 'fullname' => $profile['name'],
962 'firstname' => $firstname,
963 'lastname' => $lastname,
964 'photo300' => $a->get_baseurl() . '/photo/custom/300/' . $profile['uid'] . '.jpg',
965 'photo100' => $a->get_baseurl() . '/photo/custom/100/' . $profile['uid'] . '.jpg',
966 'photo50' => $a->get_baseurl() . '/photo/custom/50/' . $profile['uid'] . '.jpg',
970 $contact_block = contact_block();
974 $tpl = get_markup_template('profile_vcard.tpl');
976 $o .= replace_macros($tpl, array(
977 '$profile' => $profile,
978 '$connect' => $connect,
979 '$location' => template_escape($location),
980 '$gender' => $gender,
982 '$marital' => $marital,
983 '$homepage' => $homepage,
984 '$diaspora' => $diaspora,
985 '$contact_block' => $contact_block,
989 $arr = array('profile' => &$profile, 'entry' => &$o);
991 call_hooks('profile_sidebar', $arr);
997 if(! function_exists('get_birthdays')) {
998 function get_birthdays() {
1006 $bd_format = t('g A l F d') ; // 8 AM Friday January 18
1007 $bd_short = t('F d');
1009 $r = q("SELECT `event`.*, `event`.`id` AS `eid`, `contact`.* FROM `event`
1010 LEFT JOIN `contact` ON `contact`.`id` = `event`.`cid`
1011 WHERE `event`.`uid` = %d AND `type` = 'birthday' AND `start` < '%s' AND `finish` > '%s'
1012 ORDER BY `start` ASC ",
1013 intval(local_user()),
1014 dbesc(datetime_convert('UTC','UTC','now + 6 days')),
1015 dbesc(datetime_convert('UTC','UTC','now'))
1018 if($r && count($r)) {
1020 $now = strtotime('now');
1022 foreach($r as $rr) {
1023 if(strlen($rr['name']))
1025 if((strtotime($rr['start'] . ' +00:00') < $now) && (strtotime($rr['finish'] . ' +00:00') > $now))
1028 $classtoday = $istoday ? ' birthday-today ' : '';
1030 $o .= '<div id="birthday-notice" class="birthday-notice fakelink' . $classtoday . '" onclick=openClose(\'birthday-wrapper\'); >' . t('Birthday Reminders') . ' ' . '(' . $total . ')' . '</div>';
1031 $o .= '<div id="birthday-wrapper" style="display: none;" ><div id="birthday-title">' . t('Birthdays this week:') . '</div>';
1032 $o .= '<div id="birthday-title-end"></div>';
1034 foreach($r as $rr) {
1035 if(! strlen($rr['name']))
1037 $today = (((strtotime($rr['start'] . ' +00:00') < $now) && (strtotime($rr['finish'] . ' +00:00') > $now)) ? true : false);
1040 if($rr['network'] === NETWORK_DFRN) {
1041 $sparkle = " sparkle";
1042 $url = $a->get_baseurl() . '/redir/' . $rr['cid'];
1045 $o .= '<div class="birthday-list" id="birthday-' . $rr['eid'] . '"><a class="birthday-link$sparkle" target="redir" href="'
1046 . $url . '">' . $rr['name'] . '</a> '
1047 . day_translate(datetime_convert('UTC', $a->timezone, $rr['start'], $rr['adjust'] ? $bd_format : $bd_short)) . (($today) ? ' ' . t('[today]') : '')
1050 $o .= '</div></div>';
1057 if(! function_exists('get_events')) {
1058 function get_events() {
1060 require_once('include/bbcode.php');
1068 $bd_format = t('g A l F d') ; // 8 AM Friday January 18
1069 $bd_short = t('F d');
1071 $r = q("SELECT `event`.* FROM `event`
1072 WHERE `event`.`uid` = %d AND `type` != 'birthday' AND `start` < '%s' AND `start` > '%s'
1073 ORDER BY `start` ASC ",
1074 intval(local_user()),
1075 dbesc(datetime_convert('UTC','UTC','now + 6 days')),
1076 dbesc(datetime_convert('UTC','UTC','now - 1 days'))
1079 if($r && count($r)) {
1080 $now = strtotime('now');
1082 foreach($r as $rr) {
1083 if(strlen($rr['name']))
1086 $strt = datetime_convert('UTC',$rr['convert'] ? $a->timezone : 'UTC',$rr['start'],'Y-m-d');
1087 if($strt === datetime_convert('UTC',$a->timezone,'now','Y-m-d'))
1090 $classtoday = (($istoday) ? ' event-today ' : '');
1092 $o .= '<div id="event-notice" class="birthday-notice fakelink' . $classtoday . '" onclick=openClose(\'event-wrapper\'); >' . t('Event Reminders') . ' ' . '(' . count($r) . ')' . '</div>';
1093 $o .= '<div id="event-wrapper" style="display: none;" ><div id="event-title">' . t('Events this week:') . '</div>';
1094 $o .= '<div id="event-title-end"></div>';
1096 foreach($r as $rr) {
1099 $md = datetime_convert('UTC',$a->timezone,$rr['start'],'Y/m\#\l\i\n\k\-j');
1101 $md = datetime_convert('UTC','UTC',$rr['start'],'Y/m\#\l\i\n\k\-j');
1103 $title = substr(strip_tags(bbcode($rr['desc'])),0,32) . '... ';
1105 $title = t('[No description]');
1107 $strt = datetime_convert('UTC',$rr['convert'] ? $a->timezone : 'UTC',$rr['start']);
1108 $today = ((substr($strt,0,10) === datetime_convert('UTC',$a->timezone,'now','Y-m-d')) ? true : false);
1110 $o .= '<div class="event-list" id="event-' . $rr['eid'] . '"></a> <a href="events/' . $md . '">' . $title . '</a>'
1111 . day_translate(datetime_convert('UTC', $rr['adjust'] ? $a->timezone : 'UTC', $rr['start'], $bd_format)) . (($today) ? ' ' . t('[today]') : '')
1114 $o .= '</div></div>';
1123 * Wrap calls to proc_close(proc_open()) and call hook
1124 * so plugins can take part in process :)
1127 * $cmd program to run
1128 * next args are passed as $cmd command line
1130 * e.g.: proc_run("ls","-la","/tmp");
1132 * $cmd and string args are surrounded with ""
1135 if(! function_exists('proc_run')) {
1136 function proc_run($cmd){
1140 $args = func_get_args();
1141 $arr = array('args' => $args, 'run_cmd' => true);
1143 call_hooks("proc_run", $arr);
1144 if(! $arr['run_cmd'])
1147 if(count($args) && $args[0] === 'php')
1148 $args[0] = ((x($a->config,'php_path')) && (strlen($a->config['php_path'])) ? $a->config['php_path'] : 'php');
1149 foreach ($args as $arg){
1150 $arg = escapeshellarg($arg);
1152 $cmdline = implode($args," ");
1153 proc_close(proc_open($cmdline." &",array(),$foo));
1156 if(! function_exists('current_theme')) {
1157 function current_theme(){
1158 $app_base_themes = array('duepuntozero', 'loozah');
1162 $system_theme = ((isset($a->config['system']['theme'])) ? $a->config['system']['theme'] : '');
1163 $theme_name = ((is_array($_SESSION) && x($_SESSION,'theme')) ? $_SESSION['theme'] : $system_theme);
1165 if($theme_name && file_exists('view/theme/' . $theme_name . '/style.css'))
1166 return($theme_name);
1168 foreach($app_base_themes as $t) {
1169 if(file_exists('view/theme/' . $t . '/style.css'))
1173 $fallback = glob('view/theme/*/style.css');
1174 if(count($fallback))
1175 return (str_replace('view/theme/','', str_replace("/style.css","",$fallback[0])));
1180 * Return full URL to theme which is currently in effect.
1181 * Provide a sane default if nothing is chosen or the specified theme does not exist.
1183 if(! function_exists('current_theme_url')) {
1184 function current_theme_url() {
1186 $t = current_theme();
1187 return($a->get_baseurl() . '/view/theme/' . $t . '/style.css');
1190 if(! function_exists('feed_birthday')) {
1191 function feed_birthday($uid,$tz) {
1195 * Determine the next birthday, but only if the birthday is published
1196 * in the default profile. We _could_ also look for a private profile that the
1197 * recipient can see, but somebody could get mad at us if they start getting
1198 * public birthday greetings when they haven't made this info public.
1200 * Assuming we are able to publish this info, we are then going to convert
1201 * the start time from the owner's timezone to UTC.
1203 * This will potentially solve the problem found with some social networks
1204 * where birthdays are converted to the viewer's timezone and salutations from
1205 * elsewhere in the world show up on the wrong day. We will convert it to the
1206 * viewer's timezone also, but first we are going to convert it from the birthday
1207 * person's timezone to GMT - so the viewer may find the birthday starting at
1208 * 6:00PM the day before, but that will correspond to midnight to the birthday person.
1214 $p = q("SELECT `dob` FROM `profile` WHERE `is-default` = 1 AND `uid` = %d LIMIT 1",
1218 if($p && count($p)) {
1219 $tmp_dob = substr($p[0]['dob'],5);
1220 if(intval($tmp_dob)) {
1221 $y = datetime_convert($tz,$tz,'now','Y');
1222 $bd = $y . '-' . $tmp_dob . ' 00:00';
1223 $t_dob = strtotime($bd);
1224 $now = strtotime(datetime_convert($tz,$tz,'now'));
1226 $bd = $y + 1 . '-' . $tmp_dob . ' 00:00';
1227 $birthday = datetime_convert($tz,'UTC',$bd,ATOM_TIME);
1234 if(! function_exists('is_site_admin')) {
1235 function is_site_admin() {
1237 if(local_user() && x($a->user,'email') && x($a->config,'admin_email') && ($a->user['email'] === $a->config['admin_email']))
1243 if(! function_exists('load_contact_links')) {
1244 function load_contact_links($uid) {
1250 if(! $uid || x($a->contacts,'empty'))
1253 $r = q("SELECT `id`,`network`,`url`,`thumb` FROM `contact` WHERE `uid` = %d AND `self` = 0 AND `blocked` = 0 ",
1258 $url = normalise_link($rr['url']);
1263 $ret['empty'] = true;
1264 $a->contacts = $ret;
1268 if(! function_exists('profile_tabs')){
1269 function profile_tabs($a, $is_owner=False, $nickname=Null){
1270 //echo "<pre>"; var_dump($a->user); killme();
1272 if (is_null($nickname))
1273 $nickname = $a->user['nickname'];
1276 $tab = notags(trim($_GET['tab']));
1278 $url = $a->get_baseurl() . '/profile/' . $nickname;
1282 'label'=>t('Status'),
1284 'sel' => ((!isset($tab)&&$a->argv[0]=='profile')?'active':''),
1287 'label' => t('Profile'),
1288 'url' => $url.'/?tab=profile',
1289 'sel' => (($tab=='profile')?'active':''),
1292 'label' => t('Photos'),
1293 'url' => $a->get_baseurl() . '/photos/' . $nickname,
1294 'sel' => ((!isset($tab)&&$a->argv[0]=='photos')?'active':''),
1300 'label' => t('Events'),
1301 'url' => $a->get_baseurl() . '/events',
1302 'sel' =>((!isset($tab)&&$a->argv[0]=='events')?'active':''),
1305 'label' => t('Personal Notes'),
1306 'url' => $a->get_baseurl() . '/notes',
1307 'sel' =>((!isset($tab)&&$a->argv[0]=='notes')?'active':''),
1311 $tpl = get_markup_template('common_tabs.tpl');
1312 return replace_macros($tpl,array('$tabs'=>$tabs));