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