]> git.mxchange.org Git - friendica.git/blob - boot.php
Merge https://github.com/friendica/friendica into pull
[friendica.git] / boot.php
1 <?php
2
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/datetime.php');
8 require_once('include/pgettext.php');
9 require_once('include/nav.php');
10 require_once('include/cache.php');
11 require_once('library/Mobile_Detect/Mobile_Detect.php');
12
13 define ( 'FRIENDICA_PLATFORM',     'Friendica');
14 define ( 'FRIENDICA_VERSION',      '3.0.1442' );
15 define ( 'DFRN_PROTOCOL_VERSION',  '2.23'    );
16 define ( 'DB_UPDATE_VERSION',      1154      );
17
18 define ( 'EOL',                    "<br />\r\n"     );
19 define ( 'ATOM_TIME',              'Y-m-d\TH:i:s\Z' );
20
21
22 /**
23  *
24  * Image storage quality. Lower numbers save space at cost of image detail.
25  * For ease of upgrade, please do not change here. Change jpeg quality with
26  * $a->config['system']['jpeg_quality'] = n;
27  * in .htconfig.php, where n is netween 1 and 100, and with very poor results
28  * below about 50
29  *
30  */
31
32 define ( 'JPEG_QUALITY',            100  );
33 /**
34  * $a->config['system']['png_quality'] from 0 (uncompressed) to 9
35  */
36 define ( 'PNG_QUALITY',             8  );
37
38 /**
39  *
40  * An alternate way of limiting picture upload sizes. Specify the maximum pixel
41  * length that pictures are allowed to be (for non-square pictures, it will apply
42  * to the longest side). Pictures longer than this length will be resized to be
43  * this length (on the longest side, the other side will be scaled appropriately).
44  * Modify this value using
45  *
46  *    $a->config['system']['max_image_length'] = n;
47  *
48  * in .htconfig.php
49  *
50  * If you don't want to set a maximum length, set to -1. The default value is
51  * defined by 'MAX_IMAGE_LENGTH' below.
52  *
53  */
54 define ( 'MAX_IMAGE_LENGTH',        -1  );
55
56
57 /**
58  * Not yet used
59  */
60
61 define ( 'DEFAULT_DB_ENGINE',  'MyISAM'  );
62
63 /**
64  * SSL redirection policies
65  */
66
67 define ( 'SSL_POLICY_NONE',         0 );
68 define ( 'SSL_POLICY_FULL',         1 );
69 define ( 'SSL_POLICY_SELFSIGN',     2 );
70
71
72 /**
73  * log levels
74  */
75
76 define ( 'LOGGER_NORMAL',          0 );
77 define ( 'LOGGER_TRACE',           1 );
78 define ( 'LOGGER_DEBUG',           2 );
79 define ( 'LOGGER_DATA',            3 );
80 define ( 'LOGGER_ALL',             4 );
81
82 /**
83  * registration policies
84  */
85
86 define ( 'REGISTER_CLOSED',        0 );
87 define ( 'REGISTER_APPROVE',       1 );
88 define ( 'REGISTER_OPEN',          2 );
89
90 /**
91  * relationship types
92  */
93
94 define ( 'CONTACT_IS_FOLLOWER', 1);
95 define ( 'CONTACT_IS_SHARING',  2);
96 define ( 'CONTACT_IS_FRIEND',   3);
97
98
99 /**
100  * DB update return values
101  */
102
103 define ( 'UPDATE_SUCCESS', 0);
104 define ( 'UPDATE_FAILED',  1);
105
106
107 /**
108  *
109  * page/profile types
110  *
111  * PAGE_NORMAL is a typical personal profile account
112  * PAGE_SOAPBOX automatically approves all friend requests as CONTACT_IS_SHARING, (readonly)
113  * PAGE_COMMUNITY automatically approves all friend requests as CONTACT_IS_SHARING, but with
114  *      write access to wall and comments (no email and not included in page owner's ACL lists)
115  * PAGE_FREELOVE automatically approves all friend requests as full friends (CONTACT_IS_FRIEND).
116  *
117  */
118
119 define ( 'PAGE_NORMAL',            0 );
120 define ( 'PAGE_SOAPBOX',           1 );
121 define ( 'PAGE_COMMUNITY',         2 );
122 define ( 'PAGE_FREELOVE',          3 );
123 define ( 'PAGE_BLOG',              4 );
124 define ( 'PAGE_PRVGROUP',          5 );
125
126 /**
127  * Network and protocol family types
128  */
129
130 define ( 'NETWORK_DFRN',             'dfrn');    // Friendica, Mistpark, other DFRN implementations
131 define ( 'NETWORK_ZOT',              'zot!');    // Zot!
132 define ( 'NETWORK_OSTATUS',          'stat');    // status.net, identi.ca, GNU-social, other OStatus implementations
133 define ( 'NETWORK_FEED',             'feed');    // RSS/Atom feeds with no known "post/notify" protocol
134 define ( 'NETWORK_DIASPORA',         'dspr');    // Diaspora
135 define ( 'NETWORK_MAIL',             'mail');    // IMAP/POP
136 define ( 'NETWORK_MAIL2',            'mai2');    // extended IMAP/POP
137 define ( 'NETWORK_FACEBOOK',         'face');    // Facebook API
138 define ( 'NETWORK_LINKEDIN',         'lnkd');    // LinkedIn
139 define ( 'NETWORK_XMPP',             'xmpp');    // XMPP
140 define ( 'NETWORK_MYSPACE',          'mysp');    // MySpace
141 define ( 'NETWORK_GPLUS',            'goog');    // Google+
142
143 define ( 'NETWORK_PHANTOM',          'unkn');    // Place holder
144
145 /**
146  * These numbers are used in stored permissions
147  * and existing allocations MUST NEVER BE CHANGED
148  * OR RE-ASSIGNED! You may only add to them.
149  */
150
151 $netgroup_ids = array(
152         NETWORK_DFRN     => (-1),
153         NETWORK_ZOT      => (-2),
154         NETWORK_OSTATUS  => (-3),
155         NETWORK_FEED     => (-4),
156         NETWORK_DIASPORA => (-5),
157         NETWORK_MAIL     => (-6),
158         NETWORK_MAIL2    => (-7),
159         NETWORK_FACEBOOK => (-8),
160         NETWORK_LINKEDIN => (-9),
161         NETWORK_XMPP     => (-10),
162         NETWORK_MYSPACE  => (-11),
163         NETWORK_GPLUS    => (-12),
164
165         NETWORK_PHANTOM  => (-127),
166 );
167
168
169 /**
170  * Maximum number of "people who like (or don't like) this"  that we will list by name
171  */
172
173 define ( 'MAX_LIKERS',    75);
174
175 /**
176  * Communication timeout
177  */
178
179 define ( 'ZCURL_TIMEOUT' , (-1));
180
181
182 /**
183  * email notification options
184  */
185
186 define ( 'NOTIFY_INTRO',    0x0001 );
187 define ( 'NOTIFY_CONFIRM',  0x0002 );
188 define ( 'NOTIFY_WALL',     0x0004 );
189 define ( 'NOTIFY_COMMENT',  0x0008 );
190 define ( 'NOTIFY_MAIL',     0x0010 );
191 define ( 'NOTIFY_SUGGEST',  0x0020 );
192 define ( 'NOTIFY_PROFILE',  0x0040 );
193 define ( 'NOTIFY_TAGSELF',  0x0080 );
194 define ( 'NOTIFY_TAGSHARE', 0x0100 );
195 define ( 'NOTIFY_POKE',     0x0200 );
196
197 define ( 'NOTIFY_SYSTEM',   0x8000 );
198
199
200 /**
201  * Tag/term types
202  */
203
204 define ( 'TERM_UNKNOWN',   0 );
205 define ( 'TERM_HASHTAG',   1 );
206 define ( 'TERM_MENTION',   2 );   
207 define ( 'TERM_CATEGORY',  3 );
208 define ( 'TERM_PCATEGORY', 4 );
209 define ( 'TERM_FILE',      5 );
210
211 define ( 'TERM_OBJ_POST',  1 );
212 define ( 'TERM_OBJ_PHOTO', 2 );
213
214
215
216 /**
217  * various namespaces we may need to parse
218  */
219
220 define ( 'NAMESPACE_ZOT',             'http://purl.org/zot' );
221 define ( 'NAMESPACE_DFRN' ,           'http://purl.org/macgirvin/dfrn/1.0' );
222 define ( 'NAMESPACE_THREAD' ,         'http://purl.org/syndication/thread/1.0' );
223 define ( 'NAMESPACE_TOMB' ,           'http://purl.org/atompub/tombstones/1.0' );
224 define ( 'NAMESPACE_ACTIVITY',        'http://activitystrea.ms/spec/1.0/' );
225 define ( 'NAMESPACE_ACTIVITY_SCHEMA', 'http://activitystrea.ms/schema/1.0/' );
226 define ( 'NAMESPACE_MEDIA',           'http://purl.org/syndication/atommedia' );
227 define ( 'NAMESPACE_SALMON_ME',       'http://salmon-protocol.org/ns/magic-env' );
228 define ( 'NAMESPACE_OSTATUSSUB',      'http://ostatus.org/schema/1.0/subscribe' );
229 define ( 'NAMESPACE_GEORSS',          'http://www.georss.org/georss' );
230 define ( 'NAMESPACE_POCO',            'http://portablecontacts.net/spec/1.0' );
231 define ( 'NAMESPACE_FEED',            'http://schemas.google.com/g/2010#updates-from' );
232 define ( 'NAMESPACE_OSTATUS',         'http://ostatus.org/schema/1.0' );
233 define ( 'NAMESPACE_STATUSNET',       'http://status.net/schema/api/1/' );
234 define ( 'NAMESPACE_ATOM1',           'http://www.w3.org/2005/Atom' );
235 /**
236  * activity stream defines
237  */
238
239 define ( 'ACTIVITY_LIKE',        NAMESPACE_ACTIVITY_SCHEMA . 'like' );
240 define ( 'ACTIVITY_DISLIKE',     NAMESPACE_DFRN            . '/dislike' );
241 define ( 'ACTIVITY_OBJ_HEART',   NAMESPACE_DFRN            . '/heart' );
242
243 define ( 'ACTIVITY_FRIEND',      NAMESPACE_ACTIVITY_SCHEMA . 'make-friend' );
244 define ( 'ACTIVITY_REQ_FRIEND',  NAMESPACE_ACTIVITY_SCHEMA . 'request-friend' );
245 define ( 'ACTIVITY_UNFRIEND',    NAMESPACE_ACTIVITY_SCHEMA . 'remove-friend' );
246 define ( 'ACTIVITY_FOLLOW',      NAMESPACE_ACTIVITY_SCHEMA . 'follow' );
247 define ( 'ACTIVITY_UNFOLLOW',    NAMESPACE_ACTIVITY_SCHEMA . 'stop-following' );
248 define ( 'ACTIVITY_JOIN',        NAMESPACE_ACTIVITY_SCHEMA . 'join' );
249
250 define ( 'ACTIVITY_POST',        NAMESPACE_ACTIVITY_SCHEMA . 'post' );
251 define ( 'ACTIVITY_UPDATE',      NAMESPACE_ACTIVITY_SCHEMA . 'update' );
252 define ( 'ACTIVITY_TAG',         NAMESPACE_ACTIVITY_SCHEMA . 'tag' );
253 define ( 'ACTIVITY_FAVORITE',    NAMESPACE_ACTIVITY_SCHEMA . 'favorite' );
254
255 define ( 'ACTIVITY_POKE',        NAMESPACE_ZOT . '/activity/poke' );
256
257 define ( 'ACTIVITY_OBJ_COMMENT', NAMESPACE_ACTIVITY_SCHEMA . 'comment' );
258 define ( 'ACTIVITY_OBJ_NOTE',    NAMESPACE_ACTIVITY_SCHEMA . 'note' );
259 define ( 'ACTIVITY_OBJ_PERSON',  NAMESPACE_ACTIVITY_SCHEMA . 'person' );
260 define ( 'ACTIVITY_OBJ_PHOTO',   NAMESPACE_ACTIVITY_SCHEMA . 'photo' );
261 define ( 'ACTIVITY_OBJ_P_PHOTO', NAMESPACE_ACTIVITY_SCHEMA . 'profile-photo' );
262 define ( 'ACTIVITY_OBJ_ALBUM',   NAMESPACE_ACTIVITY_SCHEMA . 'photo-album' );
263 define ( 'ACTIVITY_OBJ_EVENT',   NAMESPACE_ACTIVITY_SCHEMA . 'event' );
264 define ( 'ACTIVITY_OBJ_GROUP',   NAMESPACE_ACTIVITY_SCHEMA . 'group' );
265 define ( 'ACTIVITY_OBJ_TAGTERM', NAMESPACE_DFRN            . '/tagterm' );
266 define ( 'ACTIVITY_OBJ_PROFILE', NAMESPACE_DFRN            . '/profile' );
267
268 /**
269  * item weight for query ordering
270  */
271
272 define ( 'GRAVITY_PARENT',       0);
273 define ( 'GRAVITY_LIKE',         3);
274 define ( 'GRAVITY_COMMENT',      6);
275
276 /**
277  *
278  * Reverse the effect of magic_quotes_gpc if it is enabled.
279  * Please disable magic_quotes_gpc so we don't have to do this.
280  * See http://php.net/manual/en/security.magicquotes.disabling.php
281  *
282  */
283
284 function startup() {
285         error_reporting(E_ERROR | E_WARNING | E_PARSE);
286         set_time_limit(0);
287
288         // This has to be quite large to deal with embedded private photos
289         ini_set('pcre.backtrack_limit', 500000);
290
291
292         if (get_magic_quotes_gpc()) {
293                 $process = array(&$_GET, &$_POST, &$_COOKIE, &$_REQUEST);
294                 while (list($key, $val) = each($process)) {
295                         foreach ($val as $k => $v) {
296                                 unset($process[$key][$k]);
297                                 if (is_array($v)) {
298                                         $process[$key][stripslashes($k)] = $v;
299                                         $process[] = &$process[$key][stripslashes($k)];
300                                 } else {
301                                         $process[$key][stripslashes($k)] = stripslashes($v);
302                                 }
303                         }
304                 }
305                 unset($process);
306         }
307
308 }
309
310 /**
311  *
312  * class: App
313  *
314  * Our main application structure for the life of this page
315  * Primarily deals with the URL that got us here
316  * and tries to make some sense of it, and
317  * stores our page contents and config storage
318  * and anything else that might need to be passed around
319  * before we spit the page out.
320  *
321  */
322
323 if(! class_exists('App')) {
324         class App {
325
326                 public  $module_loaded = false;
327                 public  $query_string;
328                 public  $config;
329                 public  $page;
330                 public  $profile;
331                 public  $user;
332                 public  $cid;
333                 public  $contact;
334                 public  $contacts;
335                 public  $page_contact;
336                 public  $content;
337                 public  $data = array();
338                 public  $error = false;
339                 public  $cmd;
340                 public  $argv;
341                 public  $argc;
342                 public  $module;
343                 public  $pager;
344                 public  $strings;
345                 public  $path;
346                 public  $hooks;
347                 public  $timezone;
348                 public  $interactive = true;
349                 public  $plugins;
350                 public  $apps = array();
351                 public  $identities;
352         
353                 public $nav_sel;
354
355                 public $category;
356
357                 // Allow themes to control internal parameters
358                 // by changing App values in theme.php
359                 //
360                 // Possibly should make these part of the plugin
361                 // system, but it seems like overkill to invoke
362                 // all the plugin machinery just to change a couple
363                 // of values
364                 public  $sourcename = '';
365                 public  $videowidth = 425;
366                 public  $videoheight = 350;
367                 public  $force_max_items = 0;
368                 public  $theme_thread_allow = true;
369
370                 private $scheme;
371                 private $hostname;
372                 private $baseurl;
373                 private $db;
374
375                 private $curl_code;
376                 private $curl_headers;
377
378                 private $cached_profile_image;
379                 private $cached_profile_picdate;
380                                                         
381                 function __construct() {
382
383                         global $default_timezone;
384
385                         $this->timezone = ((x($default_timezone)) ? $default_timezone : 'UTC');
386
387                         date_default_timezone_set($this->timezone);
388
389                         $this->config = array();
390                         $this->page = array();
391                         $this->pager= array();
392
393                         $this->query_string = '';
394
395                         startup();
396
397                         $this->scheme = 'http';
398                         if(x($_SERVER,'HTTPS') && $_SERVER['HTTPS'])
399                                 $this->scheme = 'https';
400                         elseif(x($_SERVER,'SERVER_PORT') && (intval($_SERVER['SERVER_PORT']) == 443))
401                         $this->scheme = 'https';
402
403
404                         if(x($_SERVER,'SERVER_NAME')) {
405                                 $this->hostname = $_SERVER['SERVER_NAME'];
406
407                                 // See bug 437 - this didn't work so disabling it
408                                 //if(stristr($this->hostname,'xn--')) {
409                                         // PHP or webserver may have converted idn to punycode, so
410                                         // convert punycode back to utf-8
411                                 //      require_once('library/simplepie/idn/idna_convert.class.php');
412                                 //      $x = new idna_convert();
413                                 //      $this->hostname = $x->decode($_SERVER['SERVER_NAME']);
414                                 //}
415
416                                 if(x($_SERVER,'SERVER_PORT') && $_SERVER['SERVER_PORT'] != 80 && $_SERVER['SERVER_PORT'] != 443)
417                                         $this->hostname .= ':' . $_SERVER['SERVER_PORT'];
418                                 /**
419                                  * Figure out if we are running at the top of a domain
420                                  * or in a sub-directory and adjust accordingly
421                                  */
422
423                                 $path = trim(dirname($_SERVER['SCRIPT_NAME']),'/\\');
424                                 if(isset($path) && strlen($path) && ($path != $this->path))
425                                         $this->path = $path;
426                         }
427
428                         set_include_path(
429                                         "include/$this->hostname" . PATH_SEPARATOR
430                                         . 'include' . PATH_SEPARATOR
431                                         . 'library' . PATH_SEPARATOR
432                                         . 'library/phpsec' . PATH_SEPARATOR
433                                         . 'library/langdet' . PATH_SEPARATOR
434                                         . '.' );
435
436                         if((x($_SERVER,'QUERY_STRING')) && substr($_SERVER['QUERY_STRING'],0,2) === "q=") {
437                                 $this->query_string = substr($_SERVER['QUERY_STRING'],2);
438                                 // removing trailing / - maybe a nginx problem
439                                 if (substr($this->query_string, 0, 1) == "/")
440                                         $this->query_string = substr($this->query_string, 1);
441                         }
442                         if(x($_GET,'q'))
443                                 $this->cmd = trim($_GET['q'],'/\\');
444
445                         // unix style "homedir"
446
447                         if(substr($this->cmd,0,1) === '~')
448                                 $this->cmd = 'profile/' . substr($this->cmd,1);
449
450                         // Diaspora style profile url
451
452                         if(substr($this->cmd,0,2) === 'u/')
453                                 $this->cmd = 'profile/' . substr($this->cmd,2);
454
455                         /**
456                          *
457                          * Break the URL path into C style argc/argv style arguments for our
458                          * modules. Given "http://example.com/module/arg1/arg2", $this->argc
459                          * will be 3 (integer) and $this->argv will contain:
460                          *   [0] => 'module'
461                          *   [1] => 'arg1'
462                          *   [2] => 'arg2'
463                          *
464                          *
465                          * There will always be one argument. If provided a naked domain
466                          * URL, $this->argv[0] is set to "home".
467                          *
468                          */
469
470                         $this->argv = explode('/',$this->cmd);
471                         $this->argc = count($this->argv);
472                         if((array_key_exists('0',$this->argv)) && strlen($this->argv[0])) {
473                                 $this->module = str_replace(".", "_", $this->argv[0]);
474                         }
475                         else {
476                                 $this->argc = 1;
477                                 $this->argv = array('home');
478                                 $this->module = 'home';
479                         }
480
481                         /**
482                          * Special handling for the webfinger/lrdd host XRD file
483                          */
484
485                         if($this->cmd === '.well-known/host-meta') {
486                                 $this->argc = 1;
487                                 $this->argv = array('hostxrd');
488                                 $this->module = 'hostxrd';
489                         }
490
491                         /**
492                          * See if there is any page number information, and initialise
493                          * pagination
494                          */
495
496                         $this->pager['page'] = ((x($_GET,'page') && intval($_GET['page']) > 0) ? intval($_GET['page']) : 1);
497                         $this->pager['itemspage'] = 50;
498                         $this->pager['start'] = ($this->pager['page'] * $this->pager['itemspage']) - $this->pager['itemspage'];
499                         if($this->pager['start'] < 0)
500                                 $this->pager['start'] = 0;
501                         $this->pager['total'] = 0;
502                 }
503
504                 function get_baseurl($ssl = false) {
505
506                         $scheme = $this->scheme;
507
508                         if((x($this->config,'system')) && (x($this->config['system'],'ssl_policy'))) {
509                                 if(intval($this->config['system']['ssl_policy']) === intval(SSL_POLICY_FULL))
510                                         $scheme = 'https';
511
512                                 //      Basically, we have $ssl = true on any links which can only be seen by a logged in user
513                                 //      (and also the login link). Anything seen by an outsider will have it turned off.
514
515                                 if($this->config['system']['ssl_policy'] == SSL_POLICY_SELFSIGN) {
516                                         if($ssl)
517                                                 $scheme = 'https';
518                                         else
519                                                 $scheme = 'http';
520                                 }
521                         }
522
523                         $this->baseurl = $scheme . "://" . $this->hostname . ((isset($this->path) && strlen($this->path)) ? '/' . $this->path : '' );
524                         return $this->baseurl;
525                 }
526
527                 function set_baseurl($url) {
528                         $parsed = @parse_url($url);
529
530                         $this->baseurl = $url;
531
532                         if($parsed) {
533                                 $this->scheme = $parsed['scheme'];
534
535                                 $this->hostname = $parsed['host'];
536                                 if(x($parsed,'port'))
537                                         $this->hostname .= ':' . $parsed['port'];
538                                 if(x($parsed,'path'))
539                                         $this->path = trim($parsed['path'],'\\/');
540                         }
541
542                 }
543
544                 function get_hostname() {
545                         return $this->hostname;
546                 }
547
548                 function set_hostname($h) {
549                         $this->hostname = $h;
550                 }
551
552                 function set_path($p) {
553                         $this->path = trim(trim($p),'/');
554                 }
555
556                 function get_path() {
557                         return $this->path;
558                 }
559
560                 function set_pager_total($n) {
561                         $this->pager['total'] = intval($n);
562                 }
563
564                 function set_pager_itemspage($n) {
565                         $this->pager['itemspage'] = ((intval($n) > 0) ? intval($n) : 0);
566                         $this->pager['start'] = ($this->pager['page'] * $this->pager['itemspage']) - $this->pager['itemspage'];
567
568                 }
569
570                 function init_pagehead() {
571                         $interval = ((local_user()) ? get_pconfig(local_user(),'system','update_interval') : 40000);
572                         if($interval < 10000)
573                                 $interval = 40000;
574
575                         $this->page['title'] = $this->config['sitename'];
576                         $tpl = get_markup_template('head.tpl');
577                         $this->page['htmlhead'] = replace_macros($tpl,array(
578                                 '$baseurl' => $this->get_baseurl(), // FIXME for z_path!!!!
579                                 '$local_user' => local_user(),
580                                 '$generator' => 'Friendica' . ' ' . FRIENDICA_VERSION,
581                                 '$delitem' => t('Delete this item?'),
582                                 '$comment' => t('Comment'),
583                                 '$showmore' => t('show more'),
584                                 '$showfewer' => t('show fewer'),
585                                 '$update_interval' => $interval
586                         ));
587                 }
588
589                 function init_page_end() {
590                         $tpl = get_markup_template('end.tpl');
591                         $this->page['end'] = replace_macros($tpl,array(
592                                 '$baseurl' => $this->get_baseurl() // FIXME for z_path!!!!
593                         ));
594                 }
595
596                 function set_curl_code($code) {
597                         $this->curl_code = $code;
598                 }
599
600                 function get_curl_code() {
601                         return $this->curl_code;
602                 }
603
604                 function set_curl_headers($headers) {
605                         $this->curl_headers = $headers;
606                 }
607
608                 function get_curl_headers() {
609                         return $this->curl_headers;
610                 }
611
612                 function get_cached_avatar_image($avatar_image){
613                         if($this->cached_profile_image[$avatar_image])
614                                 return $this->cached_profile_image[$avatar_image];
615
616                         $path_parts = explode("/",$avatar_image);
617                         $common_filename = $path_parts[count($path_parts)-1];
618
619                         if($this->cached_profile_picdate[$common_filename]){
620                                 $this->cached_profile_image[$avatar_image] = $avatar_image . $this->cached_profile_picdate[$common_filename];
621                         } else {
622                                 $r = q("SELECT `contact`.`avatar-date` AS picdate FROM `contact` WHERE `contact`.`thumb` like \"%%/%s\"",
623                                         $common_filename);
624                                 if(! count($r)){
625                                         $this->cached_profile_image[$avatar_image] = $avatar_image;
626                                 } else {
627                                         $this->cached_profile_picdate[$common_filename] = "?rev=" . urlencode($r[0]['picdate']);
628                                         $this->cached_profile_image[$avatar_image] = $avatar_image . $this->cached_profile_picdate[$common_filename];
629                                 }
630                         }
631                         return $this->cached_profile_image[$avatar_image];
632                 }
633
634
635         }
636 }
637
638 // retrieve the App structure
639 // useful in functions which require it but don't get it passed to them
640
641 if(! function_exists('get_app')) {
642         function get_app() {
643                 global $a;
644                 return $a;
645         }
646 };
647
648
649 // Multi-purpose function to check variable state.
650 // Usage: x($var) or $x($array,'key')
651 // returns false if variable/key is not set
652 // if variable is set, returns 1 if has 'non-zero' value, otherwise returns 0.
653 // e.g. x('') or x(0) returns 0;
654
655 if(! function_exists('x')) {
656         function x($s,$k = NULL) {
657                 if($k != NULL) {
658                         if((is_array($s)) && (array_key_exists($k,$s))) {
659                                 if($s[$k])
660                                         return (int) 1;
661                                 return (int) 0;
662                 }
663                         return false;
664                 }
665                 else {
666                         if(isset($s)) {
667                                 if($s) {
668                                         return (int) 1;
669                                 }
670                                 return (int) 0;
671                         }
672                         return false;
673                 }
674         }
675 }
676
677 // called from db initialisation if db is dead.
678
679 if(! function_exists('system_unavailable')) {
680         function system_unavailable() {
681                 include('system_unavailable.php');
682                 system_down();
683                 killme();
684         }
685 }
686
687
688
689 function clean_urls() {
690         global $a;
691         //      if($a->config['system']['clean_urls'])
692         return true;
693         //      return false;
694 }
695
696 function z_path() {
697         global $a;
698         $base = $a->get_baseurl();
699         if(! clean_urls())
700                 $base .= '/?q=';
701         return $base;
702 }
703
704 function z_root() {
705         global $a;
706         return $a->get_baseurl();
707 }
708
709 function absurl($path) {
710         if(strpos($path,'/') === 0)
711                 return z_path() . $path;
712         return $path;
713 }
714
715 function is_ajax() {
716         return (!empty($_SERVER['HTTP_X_REQUESTED_WITH']) && strtolower($_SERVER['HTTP_X_REQUESTED_WITH']) == 'xmlhttprequest');
717 }
718
719
720 // Primarily involved with database upgrade, but also sets the
721 // base url for use in cmdline programs which don't have
722 // $_SERVER variables, and synchronising the state of installed plugins.
723
724
725 if(! function_exists('check_config')) {
726         function check_config(&$a) {
727
728                 $build = get_config('system','build');
729                 if(! x($build))
730                         $build = set_config('system','build',DB_UPDATE_VERSION);
731
732                 $url = get_config('system','url');
733
734                 // if the url isn't set or the stored url is radically different
735                 // than the currently visited url, store the current value accordingly.
736                 // "Radically different" ignores common variations such as http vs https
737                 // and www.example.com vs example.com.
738                 // We will only change the url to an ip address if there is no existing setting
739
740                 if(! x($url))
741                         $url = set_config('system','url',$a->get_baseurl());
742                 if((! link_compare($url,$a->get_baseurl())) && (! preg_match("/^(\d{1,3})\.(\d{1,3})\.(\d{1,3})\.(\d{1,3})$/",$a->get_hostname)))
743                         $url = set_config('system','url',$a->get_baseurl());
744
745
746                 if($build != DB_UPDATE_VERSION) {
747                         $stored = intval($build);
748                         $current = intval(DB_UPDATE_VERSION);
749                         if(($stored < $current) && file_exists('update.php')) {
750
751                                 load_config('database');
752
753                                 // We're reporting a different version than what is currently installed.
754                                 // Run any existing update scripts to bring the database up to current.
755
756                                 require_once('update.php');
757
758                                 // make sure that boot.php and update.php are the same release, we might be
759                                 // updating right this very second and the correct version of the update.php
760                                 // file may not be here yet. This can happen on a very busy site.
761
762                                 if(DB_UPDATE_VERSION == UPDATE_VERSION) {
763
764                                         for($x = $stored; $x < $current; $x ++) {
765                                                 if(function_exists('update_' . $x)) {
766
767                                                         // There could be a lot of processes running or about to run.
768                                                         // We want exactly one process to run the update command.
769                                                         // So store the fact that we're taking responsibility
770                                                         // after first checking to see if somebody else already has.
771
772                                                         // If the update fails or times-out completely you may need to
773                                                         // delete the config entry to try again.
774
775                                                         $t = get_config('database','update_' . $x);
776                                                         if($t !== false)
777                                                                 break;
778                                                         set_config('database','update_' . $x, time());
779
780                                                         // call the specific update
781
782                                                         $func = 'update_' . $x;
783                                                         $retval = $func();
784                                                         if($retval) {
785                                                                 //send the administrator an e-mail
786                                                                 $email_tpl = get_intltext_template("update_fail_eml.tpl");
787                                                                 $email_msg = replace_macros($email_tpl, array(
788                                                                         '$sitename' => $a->config['sitename'],
789                                                                         '$siteurl' =>  $a->get_baseurl(),
790                                                                         '$update' => $x,
791                                                                         '$error' => sprintf( t('Update %s failed. See error logs.'), $x)
792                                                                 ));
793                                                                 $subject=sprintf(t('Update Error at %s'), $a->get_baseurl());
794                                                                         
795                                                                 mail($a->config['admin_email'], $subject, $email_msg,
796                                                                         'From: ' . t('Administrator') . '@' . $_SERVER['SERVER_NAME'] . "\n"
797                                                                         . 'Content-type: text/plain; charset=UTF-8' . "\n"
798                                                                         . 'Content-transfer-encoding: 8bit' );
799                                                                 //try the logger
800                                                                 logger('CRITICAL: Update Failed: '. $x);
801                                                                 break;
802                                                         }
803                                                         else {
804                                                                 set_config('database','update_' . $x, 'success');
805                                                                 set_config('system','build', $x + 1);
806                                                         }                                                               
807                                                 }
808                                         }
809                                 }
810                         }
811                 }
812
813                 /**
814                  *
815                  * Synchronise plugins:
816                  *
817                  * $a->config['system']['addon'] contains a comma-separated list of names
818                  * of plugins/addons which are used on this system.
819                  * Go through the database list of already installed addons, and if we have
820                  * an entry, but it isn't in the config list, call the uninstall procedure
821                  * and mark it uninstalled in the database (for now we'll remove it).
822                  * Then go through the config list and if we have a plugin that isn't installed,
823                  * call the install procedure and add it to the database.
824                  *
825                  */
826
827                 $r = q("SELECT * FROM `addon` WHERE `installed` = 1");
828                 if(count($r))
829                         $installed = $r;
830                 else
831                         $installed = array();
832
833                 $plugins = get_config('system','addon');
834                 $plugins_arr = array();
835
836                 if($plugins)
837                         $plugins_arr = explode(',',str_replace(' ', '',$plugins));
838
839                 $a->plugins = $plugins_arr;
840
841                 $installed_arr = array();
842
843                 if(count($installed)) {
844                         foreach($installed as $i) {
845                                 if(! in_array($i['name'],$plugins_arr)) {
846                                         uninstall_plugin($i['name']);
847                                 }
848                                 else {
849                                         $installed_arr[] = $i['name'];
850                                 }
851                         }
852                 }
853
854                 if(count($plugins_arr)) {
855                         foreach($plugins_arr as $p) {
856                                 if(! in_array($p,$installed_arr)) {
857                                         install_plugin($p);
858                                 }
859                         }
860                 }
861
862
863                 load_hooks();
864
865                 return;
866         }
867 }
868
869
870 function get_guid($size=16) {
871         $exists = true; // assume by default that we don't have a unique guid
872         do {
873                 $s = random_string($size);
874                 $r = q("select id from guid where guid = '%s' limit 1", dbesc($s));
875                 if(! count($r))
876                         $exists = false;
877         } while($exists);
878         q("insert into guid ( guid ) values ( '%s' ) ", dbesc($s));
879         return $s;
880 }
881
882
883 // wrapper for adding a login box. If $register == true provide a registration
884 // link. This will most always depend on the value of $a->config['register_policy'].
885 // returns the complete html for inserting into the page
886
887 if(! function_exists('login')) {
888         function login($register = false, $hiddens=false) {
889                 $a = get_app();
890                 $o = "";
891                 $reg = false;
892                 if ($register) {
893                         $reg = array(
894                                 'title' => t('Create a New Account'),
895                                 'desc' => t('Register')
896                         );
897                 }
898
899                 $noid = get_config('system','no_openid');
900         
901                 $dest_url = $a->get_baseurl(true) . '/' . $a->query_string;
902
903                 if(local_user()) {
904                         $tpl = get_markup_template("logout.tpl");
905                 }
906                 else {
907                         $a->page['htmlhead'] .= replace_macros(get_markup_template("login_head.tpl"),array(
908                                 '$baseurl'              => $a->get_baseurl(true)
909                         ));
910
911                         $tpl = get_markup_template("login.tpl");
912                         $_SESSION['return_url'] = $a->query_string;
913                 }
914
915
916                 $o .= replace_macros($tpl,array(
917
918                         '$dest_url'     => $dest_url,
919                         '$logout'       => t('Logout'),
920                         '$login'        => t('Login'),
921         
922                         '$lname'                => array('username', t('Nickname or Email address: ') , '', ''),
923                         '$lpassword'    => array('password', t('Password: '), '', ''),
924         
925                         '$openid'               => !$noid,
926                         '$lopenid'      => array('openid_url', t('Or login using OpenID: '),'',''),
927         
928                         '$hiddens'      => $hiddens,
929         
930                         '$register'     => $reg,
931         
932                         '$lostpass'     => t('Forgot your password?'),
933                         '$lostlink'     => t('Password Reset'),
934                 ));
935
936                 call_hooks('login_hook',$o);
937
938                 return $o;
939         }
940 }
941
942 // Used to end the current process, after saving session state.
943
944 if(! function_exists('killme')) {
945         function killme() {
946                 session_write_close();
947                 exit;
948         }
949 }
950
951 // redirect to another URL and terminate this process.
952
953 if(! function_exists('goaway')) {
954         function goaway($s) {
955                 header("Location: $s");
956                 killme();
957         }
958 }
959
960
961 // Returns the uid of locally logged in user or false.
962
963 if(! function_exists('local_user')) {
964         function local_user() {
965                 if((x($_SESSION,'authenticated')) && (x($_SESSION,'uid')))
966                         return intval($_SESSION['uid']);
967                 return false;
968         }
969 }
970
971 // Returns contact id of authenticated site visitor or false
972
973 if(! function_exists('remote_user')) {
974         function remote_user() {
975                 if((x($_SESSION,'authenticated')) && (x($_SESSION,'visitor_id')))
976                         return intval($_SESSION['visitor_id']);
977                 return false;
978         }
979 }
980
981 // contents of $s are displayed prominently on the page the next time
982 // a page is loaded. Usually used for errors or alerts.
983
984 if(! function_exists('notice')) {
985         function notice($s) {
986                 $a = get_app();
987                 if(! x($_SESSION,'sysmsg'))     $_SESSION['sysmsg'] = array();
988                 if($a->interactive)
989                         $_SESSION['sysmsg'][] = $s;
990         }
991 }
992 if(! function_exists('info')) {
993         function info($s) {
994                 $a = get_app();
995                 if(! x($_SESSION,'sysmsg_info')) $_SESSION['sysmsg_info'] = array();
996                 if($a->interactive)
997                         $_SESSION['sysmsg_info'][] = $s;
998         }
999 }
1000
1001
1002 // wrapper around config to limit the text length of an incoming message
1003
1004 if(! function_exists('get_max_import_size')) {
1005         function get_max_import_size() {
1006                 global $a;
1007                 return ((x($a->config,'max_import_size')) ? $a->config['max_import_size'] : 0 );
1008         }
1009 }
1010
1011
1012
1013 /**
1014  *
1015  * Function : profile_load
1016  * @parameter App    $a
1017  * @parameter string $nickname
1018  * @parameter int    $profile
1019  *
1020  * Summary: Loads a profile into the page sidebar.
1021  * The function requires a writeable copy of the main App structure, and the nickname
1022  * of a registered local account.
1023  *
1024  * If the viewer is an authenticated remote viewer, the profile displayed is the
1025  * one that has been configured for his/her viewing in the Contact manager.
1026  * Passing a non-zero profile ID can also allow a preview of a selected profile
1027  * by the owner.
1028  *
1029  * Profile information is placed in the App structure for later retrieval.
1030  * Honours the owner's chosen theme for display.
1031  *
1032  */
1033
1034 if(! function_exists('profile_load')) {
1035         function profile_load(&$a, $nickname, $profile = 0) {
1036                 if(remote_user()) {
1037                         $r = q("SELECT `profile-id` FROM `contact` WHERE `id` = %d LIMIT 1",
1038                                         intval($_SESSION['visitor_id']));
1039                         if(count($r))
1040                                 $profile = $r[0]['profile-id'];
1041                 }
1042
1043                 $r = null;
1044                           
1045                 if($profile) {
1046                         $profile_int = intval($profile);
1047                         $r = q("SELECT `profile`.`uid` AS `profile_uid`, `profile`.* , `contact`.`avatar-date` AS picdate, `user`.* FROM `profile`
1048                                         left join `contact` on `contact`.`uid` = `profile`.`uid` LEFT JOIN `user` ON `profile`.`uid` = `user`.`uid`
1049                                         WHERE `user`.`nickname` = '%s' AND `profile`.`id` = %d and `contact`.`self` = 1 LIMIT 1",
1050                                         dbesc($nickname),
1051                                         intval($profile_int)
1052                         );
1053                 }
1054                 if((! $r) && (!  count($r))) {
1055                         $r = q("SELECT `profile`.`uid` AS `profile_uid`, `profile`.* , `contact`.`avatar-date` AS picdate, `user`.* FROM `profile`
1056                                         left join `contact` on `contact`.`uid` = `profile`.`uid` LEFT JOIN `user` ON `profile`.`uid` = `user`.`uid`
1057                                         WHERE `user`.`nickname` = '%s' AND `profile`.`is-default` = 1 and `contact`.`self` = 1 LIMIT 1",
1058                                         dbesc($nickname)
1059                         );
1060                 }
1061
1062                 if(($r === false) || (! count($r))) {
1063                         logger('profile error: ' . $a->query_string, LOGGER_DEBUG);
1064                         notice( t('Requested profile is not available.') . EOL );
1065                         $a->error = 404;
1066                         return;
1067                 }
1068         
1069                 // fetch user tags if this isn't the default profile
1070
1071                 if(! $r[0]['is-default']) {
1072                         $x = q("select `pub_keywords` from `profile` where uid = %d and `is-default` = 1 limit 1",
1073                                         intval($profile_uid)
1074                         );
1075                         if($x && count($x))
1076                                 $r[0]['pub_keywords'] = $x[0]['pub_keywords'];
1077                 }
1078
1079                 $a->profile = $r[0];
1080
1081
1082                 $a->page['title'] = $a->profile['name'] . " @ " . $a->config['sitename'];
1083                 $_SESSION['theme'] = $a->profile['theme'];
1084
1085                 /**
1086                  * load/reload current theme info
1087                  */
1088
1089                 $theme_info_file = "view/theme/".current_theme()."/theme.php";
1090                 if (file_exists($theme_info_file)){
1091                         require_once($theme_info_file);
1092                 }
1093
1094                 if(! (x($a->page,'aside')))
1095                         $a->page['aside'] = '';
1096
1097                 if(local_user() && local_user() == $a->profile['uid']) {
1098                         $a->page['aside'] .= replace_macros(get_markup_template('profile_edlink.tpl'),array(
1099                                 '$editprofile' => t('Edit profile'),
1100                                 '$profid' => $a->profile['id']
1101                         ));
1102                 }
1103
1104                 $block = (((get_config('system','block_public')) && (! local_user()) && (! remote_user())) ? true : false);
1105
1106                 $a->page['aside'] .= profile_sidebar($a->profile, $block);
1107
1108                 /*if(! $block)
1109                  $a->page['aside'] .= contact_block();*/
1110
1111                 return;
1112         }
1113 }
1114
1115
1116 /**
1117  *
1118  * Function: profile_sidebar
1119  *
1120  * Formats a profile for display in the sidebar.
1121  * It is very difficult to templatise the HTML completely
1122  * because of all the conditional logic.
1123  *
1124  * @parameter: array $profile
1125  *
1126  * Returns HTML string stuitable for sidebar inclusion
1127  * Exceptions: Returns empty string if passed $profile is wrong type or not populated
1128  *
1129  */
1130
1131
1132 if(! function_exists('profile_sidebar')) {
1133         function profile_sidebar($profile, $block = 0) {
1134
1135                 $a = get_app();
1136
1137                 $o = '';
1138                 $location = false;
1139                 $address = false;
1140                 $pdesc = true;
1141
1142                 if((! is_array($profile)) && (! count($profile)))
1143                         return $o;
1144
1145                 $profile['picdate'] = urlencode($profile['picdate']);
1146
1147                 call_hooks('profile_sidebar_enter', $profile);
1148
1149         
1150                 // don't show connect link to yourself
1151                 $connect = (($profile['uid'] != local_user()) ? t('Connect')  : False);
1152
1153                 // don't show connect link to authenticated visitors either
1154
1155                 if((remote_user()) && ($_SESSION['visitor_visiting'] == $profile['uid']))
1156                         $connect = False;
1157
1158                 if(get_my_url() && $profile['unkmail'])
1159                         $wallmessage = t('Message');
1160                 else
1161                         $wallmessage = false;
1162
1163
1164
1165                 // show edit profile to yourself
1166                 if ($profile['uid'] == local_user()) {
1167                         $profile['edit'] = array($a->get_baseurl(). '/profiles', t('Profiles'),"", t('Manage/edit profiles'));
1168                 
1169                         $r = q("SELECT * FROM `profile` WHERE `uid` = %d",
1170                                         local_user());
1171                 
1172                         $profile['menu'] = array(
1173                                 'chg_photo' => t('Change profile photo'),
1174                                 'cr_new' => t('Create New Profile'),
1175                                 'entries' => array(),
1176                         );
1177
1178                         if(count($r)) {
1179
1180                                 foreach($r as $rr) {
1181                                         $profile['menu']['entries'][] = array(
1182                                                 'photo' => $rr['thumb'],
1183                                                 'id' => $rr['id'],
1184                                                 'alt' => t('Profile Image'),
1185                                                 'profile_name' => $rr['profile-name'],
1186                                                 'isdefault' => $rr['is-default'],
1187                                                 'visibile_to_everybody' =>  t('visible to everybody'),
1188                                                 'edit_visibility' => t('Edit visibility'),
1189
1190                                         );
1191                                 }
1192
1193
1194                         }
1195
1196
1197                 }
1198
1199
1200
1201         
1202                 if((x($profile,'address') == 1)
1203                                 || (x($profile,'locality') == 1)
1204                                 || (x($profile,'region') == 1)
1205                                 || (x($profile,'postal-code') == 1)
1206                                 || (x($profile,'country-name') == 1))
1207                         $location = t('Location:');
1208
1209                 $gender = ((x($profile,'gender') == 1) ? t('Gender:') : False);
1210
1211
1212                 $marital = ((x($profile,'marital') == 1) ?  t('Status:') : False);
1213
1214                 $homepage = ((x($profile,'homepage') == 1) ?  t('Homepage:') : False);
1215
1216                 if(($profile['hidewall'] || $block) && (! local_user()) && (! remote_user())) {
1217                         $location = $pdesc = $gender = $marital = $homepage = False;
1218                 }
1219
1220                 $firstname = ((strpos($profile['name'],' '))
1221                                 ? trim(substr($profile['name'],0,strpos($profile['name'],' '))) : $profile['name']);
1222                 $lastname = (($firstname === $profile['name']) ? '' : trim(substr($profile['name'],strlen($firstname))));
1223
1224                 $diaspora = array(
1225                         'podloc' => $a->get_baseurl(),
1226                         'searchable' => (($profile['publish'] && $profile['net-publish']) ? 'true' : 'false' ),
1227                         'nickname' => $profile['nickname'],
1228                         'fullname' => $profile['name'],
1229                         'firstname' => $firstname,
1230                         'lastname' => $lastname,
1231                         'photo300' => $a->get_cached_avatar_image($a->get_baseurl() . '/photo/custom/300/' . $profile['uid'] . '.jpg'),
1232                         'photo100' => $a->get_cached_avatar_image($a->get_baseurl() . '/photo/custom/100/' . $profile['uid'] . '.jpg'),
1233                         'photo50' => $a->get_cached_avatar_image($a->get_baseurl() . '/photo/custom/50/'  . $profile['uid'] . '.jpg'),
1234                 );
1235
1236                 if (!$block){
1237                         $contact_block = contact_block();
1238                 }
1239
1240
1241                 $tpl = get_markup_template('profile_vcard.tpl');
1242
1243                 $o .= replace_macros($tpl, array(
1244                         '$profile' => $profile,
1245                         '$connect'  => $connect,
1246                         '$wallmessage' => $wallmessage,
1247                         '$location' => template_escape($location),
1248                         '$gender'   => $gender,
1249                         '$pdesc'        => $pdesc,
1250                         '$marital'  => $marital,
1251                         '$homepage' => $homepage,
1252                         '$diaspora' => $diaspora,
1253                         '$contact_block' => $contact_block,
1254                 ));
1255
1256
1257                 $arr = array('profile' => &$profile, 'entry' => &$o);
1258
1259                 call_hooks('profile_sidebar', $arr);
1260
1261                 return $o;
1262         }
1263 }
1264
1265
1266 if(! function_exists('get_birthdays')) {
1267         function get_birthdays() {
1268
1269                 $a = get_app();
1270                 $o = '';
1271
1272                 if(! local_user())
1273                         return $o;
1274
1275                 $mobile_detect = new Mobile_Detect();
1276                 $is_mobile = $mobile_detect->isMobile() || $mobile_detect->isTablet();
1277
1278                 if($is_mobile)
1279                         return $o;
1280
1281                 $bd_format = t('g A l F d') ; // 8 AM Friday January 18
1282                 $bd_short = t('F d');
1283
1284                 $r = q("SELECT `event`.*, `event`.`id` AS `eid`, `contact`.* FROM `event`
1285                                 LEFT JOIN `contact` ON `contact`.`id` = `event`.`cid`
1286                                 WHERE `event`.`uid` = %d AND `type` = 'birthday' AND `start` < '%s' AND `finish` > '%s'
1287                                 ORDER BY `start` ASC ",
1288                                 intval(local_user()),
1289                                 dbesc(datetime_convert('UTC','UTC','now + 6 days')),
1290                                 dbesc(datetime_convert('UTC','UTC','now'))
1291                 );
1292
1293                 if($r && count($r)) {
1294                         $total = 0;
1295                         $now = strtotime('now');
1296                         $cids = array();
1297
1298                         $istoday = false;
1299                         foreach($r as $rr) {
1300                                 if(strlen($rr['name']))
1301                                         $total ++;
1302                                 if((strtotime($rr['start'] . ' +00:00') < $now) && (strtotime($rr['finish'] . ' +00:00') > $now))
1303                                         $istoday = true;
1304                         }
1305                         $classtoday = $istoday ? ' birthday-today ' : '';
1306                         if($total) {
1307                                 foreach($r as &$rr) {
1308                                         if(! strlen($rr['name']))
1309                                                 continue;
1310
1311                                         // avoid duplicates
1312
1313                                         if(in_array($rr['cid'],$cids))
1314                                                 continue;
1315                                         $cids[] = $rr['cid'];
1316
1317                                         $today = (((strtotime($rr['start'] . ' +00:00') < $now) && (strtotime($rr['finish'] . ' +00:00') > $now)) ? true : false);
1318                                         $sparkle = '';
1319                                         $url = $rr['url'];
1320                                         if($rr['network'] === NETWORK_DFRN) {
1321                                                 $sparkle = " sparkle";
1322                                                 $url = $a->get_baseurl() . '/redir/'  . $rr['cid'];
1323                                         }
1324         
1325                                         $rr['link'] = $url;
1326                                         $rr['title'] = $rr['name'];
1327                                         $rr['date'] = day_translate(datetime_convert('UTC', $a->timezone, $rr['start'], $rr['adjust'] ? $bd_format : $bd_short)) . (($today) ?  ' ' . t('[today]') : '');
1328                                         $rr['startime'] = Null;
1329                                         $rr['today'] = $today;
1330         
1331                                 }
1332                         }
1333                 }
1334                 $tpl = get_markup_template("birthdays_reminder.tpl");
1335                 return replace_macros($tpl, array(
1336                         '$baseurl' => $a->get_baseurl(),
1337                         '$classtoday' => $classtoday,
1338                         '$count' => $total,
1339                         '$event_reminders' => t('Birthday Reminders'),
1340                         '$event_title' => t('Birthdays this week:'),
1341                         '$events' => $r,
1342                         '$lbr' => '{',  // raw brackets mess up if/endif macro processing
1343                         '$rbr' => '}'
1344
1345                 ));
1346         }
1347 }
1348
1349
1350 if(! function_exists('get_events')) {
1351         function get_events() {
1352
1353                 require_once('include/bbcode.php');
1354
1355                 $a = get_app();
1356
1357                 if(! local_user())
1358                         return $o;
1359
1360
1361                 $mobile_detect = new Mobile_Detect();
1362                 $is_mobile = $mobile_detect->isMobile() || $mobile_detect->isTablet();
1363
1364                 if($is_mobile)
1365                         return $o;
1366
1367                 $bd_format = t('g A l F d') ; // 8 AM Friday January 18
1368                 $bd_short = t('F d');
1369
1370                 $r = q("SELECT `event`.* FROM `event`
1371                                 WHERE `event`.`uid` = %d AND `type` != 'birthday' AND `start` < '%s' AND `start` > '%s'
1372                                 ORDER BY `start` ASC ",
1373                                 intval(local_user()),
1374                                 dbesc(datetime_convert('UTC','UTC','now + 6 days')),
1375                                 dbesc(datetime_convert('UTC','UTC','now - 1 days'))
1376                 );
1377
1378                 if($r && count($r)) {
1379                         $now = strtotime('now');
1380                         $istoday = false;
1381                         foreach($r as $rr) {
1382                                 if(strlen($rr['name']))
1383                                         $total ++;
1384
1385                                 $strt = datetime_convert('UTC',$rr['convert'] ? $a->timezone : 'UTC',$rr['start'],'Y-m-d');
1386                                 if($strt === datetime_convert('UTC',$a->timezone,'now','Y-m-d'))
1387                                         $istoday = true;
1388                         }
1389                         $classtoday = (($istoday) ? 'event-today' : '');
1390
1391
1392                         foreach($r as &$rr) {
1393                                 if($rr['adjust'])
1394                                         $md = datetime_convert('UTC',$a->timezone,$rr['start'],'Y/m');
1395                                 else
1396                                         $md = datetime_convert('UTC','UTC',$rr['start'],'Y/m');
1397                                 $md .= "/#link-".$rr['id'];
1398
1399                                 $title = substr(strip_tags(bbcode($rr['desc'])),0,32) . '... ';
1400                                 if(! $title)
1401                                         $title = t('[No description]');
1402
1403                                 $strt = datetime_convert('UTC',$rr['convert'] ? $a->timezone : 'UTC',$rr['start']);
1404                                 $today = ((substr($strt,0,10) === datetime_convert('UTC',$a->timezone,'now','Y-m-d')) ? true : false);
1405                                 
1406                                 $rr['link'] = $md;
1407                                 $rr['title'] = $title;
1408                                 $rr['date'] = day_translate(datetime_convert('UTC', $rr['adjust'] ? $a->timezone : 'UTC', $rr['start'], $bd_format)) . (($today) ?  ' ' . t('[today]') : '');
1409                                 $rr['startime'] = $strt;
1410                                 $rr['today'] = $today;
1411                         }
1412                 }
1413
1414                 $tpl = get_markup_template("events_reminder.tpl");
1415                 return replace_macros($tpl, array(
1416                         '$baseurl' => $a->get_baseurl(),
1417                         '$classtoday' => $classtoday,
1418                         '$count' => count($r),
1419                         '$event_reminders' => t('Event Reminders'),
1420                         '$event_title' => t('Events this week:'),
1421                         '$events' => $r,
1422                 ));
1423         }
1424 }
1425
1426
1427 /**
1428  *
1429  * Wrap calls to proc_close(proc_open()) and call hook
1430  * so plugins can take part in process :)
1431  *
1432  * args:
1433  * $cmd program to run
1434  *  next args are passed as $cmd command line
1435  *
1436  * e.g.: proc_run("ls","-la","/tmp");
1437  *
1438  * $cmd and string args are surrounded with ""
1439  */
1440
1441 if(! function_exists('proc_run')) {
1442         function proc_run($cmd){
1443
1444                 $a = get_app();
1445
1446                 $args = func_get_args();
1447
1448                 $newargs = array();
1449                 if(! count($args))
1450                         return;
1451
1452                 // expand any arrays
1453
1454                 foreach($args as $arg) {
1455                         if(is_array($arg)) {
1456                                 foreach($arg as $n) {
1457                                         $newargs[] = $n;
1458                                 }
1459                         }
1460                         else
1461                                 $newargs[] = $arg;
1462                 }
1463
1464                 $args = $newargs;
1465                 
1466                 $arr = array('args' => $args, 'run_cmd' => true);
1467
1468                 call_hooks("proc_run", $arr);
1469                 if(! $arr['run_cmd'])
1470                         return;
1471
1472                 if(count($args) && $args[0] === 'php')
1473                         $args[0] = ((x($a->config,'php_path')) && (strlen($a->config['php_path'])) ? $a->config['php_path'] : 'php');
1474                 for($x = 0; $x < count($args); $x ++)
1475                         $args[$x] = escapeshellarg($args[$x]);
1476
1477                 $cmdline = implode($args," ");
1478                 proc_close(proc_open($cmdline." &",array(),$foo));
1479         }
1480 }
1481
1482 if(! function_exists('current_theme')) {
1483         function current_theme(){
1484                 $app_base_themes = array('duepuntozero', 'dispy', 'quattro');
1485         
1486                 $a = get_app();
1487         
1488                 $mobile_detect = new Mobile_Detect();
1489                 $is_mobile = $mobile_detect->isMobile() || $mobile_detect->isTablet();
1490         
1491                 if($is_mobile) {
1492                         $system_theme = ((isset($a->config['system']['mobile-theme'])) ? $a->config['system']['mobile-theme'] : '');
1493                         $theme_name = ((isset($_SESSION) && x($_SESSION,'mobile-theme')) ? $_SESSION['mobile-theme'] : $system_theme);
1494                 }
1495                 if(!$is_mobile || ($system_theme === '' && $theme_name === '')) {
1496                         $system_theme = ((isset($a->config['system']['theme'])) ? $a->config['system']['theme'] : '');
1497                         $theme_name = ((isset($_SESSION) && x($_SESSION,'theme')) ? $_SESSION['theme'] : $system_theme);
1498                 }
1499
1500                 if($theme_name &&
1501                                 (file_exists('view/theme/' . $theme_name . '/style.css') ||
1502                                                 file_exists('view/theme/' . $theme_name . '/style.php')))
1503                         return($theme_name);
1504         
1505                 foreach($app_base_themes as $t) {
1506                         if(file_exists('view/theme/' . $t . '/style.css')||
1507                                         file_exists('view/theme/' . $t . '/style.php'))
1508                                 return($t);
1509                 }
1510         
1511                 $fallback = array_merge(glob('view/theme/*/style.css'),glob('view/theme/*/style.php'));
1512                 if(count($fallback))
1513                         return (str_replace('view/theme/','', substr($fallback[0],0,-10)));
1514         
1515         }
1516 }
1517
1518 /*
1519  * Return full URL to theme which is currently in effect.
1520 * Provide a sane default if nothing is chosen or the specified theme does not exist.
1521 */
1522 if(! function_exists('current_theme_url')) {
1523         function current_theme_url() {
1524                 global $a;
1525                 $t = current_theme();
1526                 if (file_exists('view/theme/' . $t . '/style.php'))
1527                         return($a->get_baseurl() . '/view/theme/' . $t . '/style.pcss');
1528                 return($a->get_baseurl() . '/view/theme/' . $t . '/style.css');
1529         }
1530 }
1531
1532 if(! function_exists('feed_birthday')) {
1533         function feed_birthday($uid,$tz) {
1534
1535                 /**
1536                  *
1537                  * Determine the next birthday, but only if the birthday is published
1538                  * in the default profile. We _could_ also look for a private profile that the
1539                  * recipient can see, but somebody could get mad at us if they start getting
1540                  * public birthday greetings when they haven't made this info public.
1541                  *
1542                  * Assuming we are able to publish this info, we are then going to convert
1543                  * the start time from the owner's timezone to UTC.
1544                  *
1545                  * This will potentially solve the problem found with some social networks
1546                  * where birthdays are converted to the viewer's timezone and salutations from
1547                  * elsewhere in the world show up on the wrong day. We will convert it to the
1548                  * viewer's timezone also, but first we are going to convert it from the birthday
1549                  * person's timezone to GMT - so the viewer may find the birthday starting at
1550                  * 6:00PM the day before, but that will correspond to midnight to the birthday person.
1551                  *
1552                  */
1553
1554         
1555                 $birthday = '';
1556
1557                 if(! strlen($tz))
1558                         $tz = 'UTC';
1559
1560                 $p = q("SELECT `dob` FROM `profile` WHERE `is-default` = 1 AND `uid` = %d LIMIT 1",
1561                                 intval($uid)
1562                 );
1563
1564                 if($p && count($p)) {
1565                         $tmp_dob = substr($p[0]['dob'],5);
1566                         if(intval($tmp_dob)) {
1567                                 $y = datetime_convert($tz,$tz,'now','Y');
1568                                 $bd = $y . '-' . $tmp_dob . ' 00:00';
1569                                 $t_dob = strtotime($bd);
1570                                 $now = strtotime(datetime_convert($tz,$tz,'now'));
1571                                 if($t_dob < $now)
1572                                         $bd = $y + 1 . '-' . $tmp_dob . ' 00:00';
1573                                 $birthday = datetime_convert($tz,'UTC',$bd,ATOM_TIME);
1574                         }
1575                 }
1576
1577                 return $birthday;
1578         }
1579 }
1580
1581 if(! function_exists('is_site_admin')) {
1582         function is_site_admin() {
1583                 $a = get_app();
1584                 if(local_user() && x($a->user,'email') && x($a->config,'admin_email') && ($a->user['email'] === $a->config['admin_email']))
1585                         return true;
1586                 return false;
1587         }
1588 }
1589
1590
1591 if(! function_exists('load_contact_links')) {
1592         function load_contact_links($uid) {
1593
1594                 $a = get_app();
1595
1596                 $ret = array();
1597
1598                 if(! $uid || x($a->contacts,'empty'))
1599                         return;
1600
1601                 $r = q("SELECT `id`,`network`,`url`,`thumb` FROM `contact` WHERE `uid` = %d AND `self` = 0 AND `blocked` = 0 ",
1602                                 intval($uid)
1603                 );
1604                 if(count($r)) {
1605                         foreach($r as $rr){
1606                                 $url = normalise_link($rr['url']);
1607                                 $ret[$url] = $rr;
1608                         }
1609                 }
1610                 else
1611                         $ret['empty'] = true;
1612                 $a->contacts = $ret;
1613                 return;
1614         }
1615 }
1616
1617 if(! function_exists('profile_tabs')){
1618         function profile_tabs($a, $is_owner=False, $nickname=Null){
1619                 //echo "<pre>"; var_dump($a->user); killme();
1620         
1621                 if (is_null($nickname))
1622                         $nickname  = $a->user['nickname'];
1623                 
1624                 if(x($_GET,'tab'))
1625                         $tab = notags(trim($_GET['tab']));
1626         
1627                 $url = $a->get_baseurl() . '/profile/' . $nickname;
1628
1629                 $tabs = array(
1630                         array(
1631                                 'label'=>t('Status'),
1632                                 'url' => $url,
1633                                 'sel' => ((!isset($tab)&&$a->argv[0]=='profile')?'active':''),
1634                                 'title' => t('Status Messages and Posts'),
1635                                 'id' => 'status-tab',
1636                         ),
1637                         array(
1638                                 'label' => t('Profile'),
1639                                 'url'   => $url.'/?tab=profile',
1640                                 'sel'   => ((isset($tab) && $tab=='profile')?'active':''),
1641                                 'title' => t('Profile Details'),
1642                                 'id' => 'profile-tab',
1643                         ),
1644                         array(
1645                                 'label' => t('Photos'),
1646                                 'url'   => $a->get_baseurl() . '/photos/' . $nickname,
1647                                 'sel'   => ((!isset($tab)&&$a->argv[0]=='photos')?'active':''),
1648                                 'title' => t('Photo Albums'),
1649                                 'id' => 'photo-tab',
1650                         ),
1651                 );
1652         
1653                 if ($is_owner){
1654                         $tabs[] = array(
1655                                 'label' => t('Events'),
1656                                 'url'   => $a->get_baseurl() . '/events',
1657                                 'sel'   =>((!isset($tab)&&$a->argv[0]=='events')?'active':''),
1658                                 'title' => t('Events and Calendar'),
1659                                 'id' => 'events-tab',
1660                         );
1661                         $tabs[] = array(
1662                                 'label' => t('Personal Notes'),
1663                                 'url'   => $a->get_baseurl() . '/notes',
1664                                 'sel'   =>((!isset($tab)&&$a->argv[0]=='notes')?'active':''),
1665                                 'title' => t('Only You Can See This'),
1666                                 'id' => 'notes-tab',
1667                         );
1668                 }
1669
1670
1671                 $arr = array('is_owner' => $is_owner, 'nickname' => $nickname, 'tab' => (($tab) ? $tab : false), 'tabs' => $tabs);
1672                 call_hooks('profile_tabs', $arr);
1673         
1674                 $tpl = get_markup_template('common_tabs.tpl');
1675
1676                 return replace_macros($tpl,array('$tabs' => $arr['tabs']));
1677         }
1678 }
1679
1680 function get_my_url() {
1681         if(x($_SESSION,'my_url'))
1682                 return $_SESSION['my_url'];
1683         return false;
1684 }
1685
1686 function zrl_init(&$a) {
1687         $tmp_str = get_my_url();
1688         if(validate_url($tmp_str)) {
1689                 proc_run('php','include/gprobe.php',bin2hex($tmp_str));
1690                 $arr = array('zrl' => $tmp_str, 'url' => $a->cmd);
1691                 call_hooks('zrl_init',$arr);
1692         }
1693 }
1694
1695 function zrl($s,$force = false) {
1696         if(! strlen($s))
1697                 return $s;
1698         if((! strpos($s,'/profile/')) && (! $force))
1699                 return $s;
1700         if($force && substr($s,-1,1) !== '/')
1701                 $s = $s . '/';
1702         $achar = strpos($s,'?') ? '&' : '?';
1703         $mine = get_my_url();
1704         if($mine and ! link_compare($mine,$s))
1705                 return $s . $achar . 'zrl=' . urlencode($mine);
1706         return $s;
1707 }
1708
1709 /**
1710 * returns querystring as string from a mapped array
1711 *
1712 * @param params Array 
1713 * @return string
1714 */
1715 function build_querystring($params, $name=null) { 
1716     $ret = ""; 
1717     foreach($params as $key=>$val) {
1718         if(is_array($val)) { 
1719             if($name==null) {
1720                 $ret .= build_querystring($val, $key); 
1721             } else {
1722                 $ret .= build_querystring($val, $name."[$key]");    
1723             }
1724         } else {
1725             $val = urlencode($val);
1726             if($name!=null) {
1727                 $ret.=$name."[$key]"."=$val&"; 
1728             } else {
1729                 $ret.= "$key=$val&"; 
1730             }
1731         } 
1732     } 
1733     return $ret;    
1734 }