]> git.mxchange.org Git - friendica.git/blob - boot.php
move register_adminadd_eml.tpl to view/en/
[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 require_once('include/features.php');
13
14 define ( 'FRIENDICA_PLATFORM',     'Friendica');
15 define ( 'FRIENDICA_VERSION',      '3.1.1743' );
16 define ( 'DFRN_PROTOCOL_VERSION',  '2.23'    );
17 define ( 'DB_UPDATE_VERSION',      1163      );
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 define ( 'TERM_SAVEDSEARCH', 6 );
211 define ( 'TERM_CONVERSATION', 7 );
212
213 define ( 'TERM_OBJ_POST',  1 );
214 define ( 'TERM_OBJ_PHOTO', 2 );
215
216
217
218 /**
219  * various namespaces we may need to parse
220  */
221
222 define ( 'NAMESPACE_ZOT',             'http://purl.org/zot' );
223 define ( 'NAMESPACE_DFRN' ,           'http://purl.org/macgirvin/dfrn/1.0' );
224 define ( 'NAMESPACE_THREAD' ,         'http://purl.org/syndication/thread/1.0' );
225 define ( 'NAMESPACE_TOMB' ,           'http://purl.org/atompub/tombstones/1.0' );
226 define ( 'NAMESPACE_ACTIVITY',        'http://activitystrea.ms/spec/1.0/' );
227 define ( 'NAMESPACE_ACTIVITY_SCHEMA', 'http://activitystrea.ms/schema/1.0/' );
228 define ( 'NAMESPACE_MEDIA',           'http://purl.org/syndication/atommedia' );
229 define ( 'NAMESPACE_SALMON_ME',       'http://salmon-protocol.org/ns/magic-env' );
230 define ( 'NAMESPACE_OSTATUSSUB',      'http://ostatus.org/schema/1.0/subscribe' );
231 define ( 'NAMESPACE_GEORSS',          'http://www.georss.org/georss' );
232 define ( 'NAMESPACE_POCO',            'http://portablecontacts.net/spec/1.0' );
233 define ( 'NAMESPACE_FEED',            'http://schemas.google.com/g/2010#updates-from' );
234 define ( 'NAMESPACE_OSTATUS',         'http://ostatus.org/schema/1.0' );
235 define ( 'NAMESPACE_STATUSNET',       'http://status.net/schema/api/1/' );
236 define ( 'NAMESPACE_ATOM1',           'http://www.w3.org/2005/Atom' );
237 /**
238  * activity stream defines
239  */
240
241 define ( 'ACTIVITY_LIKE',        NAMESPACE_ACTIVITY_SCHEMA . 'like' );
242 define ( 'ACTIVITY_DISLIKE',     NAMESPACE_DFRN            . '/dislike' );
243 define ( 'ACTIVITY_OBJ_HEART',   NAMESPACE_DFRN            . '/heart' );
244
245 define ( 'ACTIVITY_FRIEND',      NAMESPACE_ACTIVITY_SCHEMA . 'make-friend' );
246 define ( 'ACTIVITY_REQ_FRIEND',  NAMESPACE_ACTIVITY_SCHEMA . 'request-friend' );
247 define ( 'ACTIVITY_UNFRIEND',    NAMESPACE_ACTIVITY_SCHEMA . 'remove-friend' );
248 define ( 'ACTIVITY_FOLLOW',      NAMESPACE_ACTIVITY_SCHEMA . 'follow' );
249 define ( 'ACTIVITY_UNFOLLOW',    NAMESPACE_ACTIVITY_SCHEMA . 'stop-following' );
250 define ( 'ACTIVITY_JOIN',        NAMESPACE_ACTIVITY_SCHEMA . 'join' );
251
252 define ( 'ACTIVITY_POST',        NAMESPACE_ACTIVITY_SCHEMA . 'post' );
253 define ( 'ACTIVITY_UPDATE',      NAMESPACE_ACTIVITY_SCHEMA . 'update' );
254 define ( 'ACTIVITY_TAG',         NAMESPACE_ACTIVITY_SCHEMA . 'tag' );
255 define ( 'ACTIVITY_FAVORITE',    NAMESPACE_ACTIVITY_SCHEMA . 'favorite' );
256
257 define ( 'ACTIVITY_POKE',        NAMESPACE_ZOT . '/activity/poke' );
258 define ( 'ACTIVITY_MOOD',        NAMESPACE_ZOT . '/activity/mood' );
259
260 define ( 'ACTIVITY_OBJ_COMMENT', NAMESPACE_ACTIVITY_SCHEMA . 'comment' );
261 define ( 'ACTIVITY_OBJ_NOTE',    NAMESPACE_ACTIVITY_SCHEMA . 'note' );
262 define ( 'ACTIVITY_OBJ_PERSON',  NAMESPACE_ACTIVITY_SCHEMA . 'person' );
263 define ( 'ACTIVITY_OBJ_PHOTO',   NAMESPACE_ACTIVITY_SCHEMA . 'photo' );
264 define ( 'ACTIVITY_OBJ_P_PHOTO', NAMESPACE_ACTIVITY_SCHEMA . 'profile-photo' );
265 define ( 'ACTIVITY_OBJ_ALBUM',   NAMESPACE_ACTIVITY_SCHEMA . 'photo-album' );
266 define ( 'ACTIVITY_OBJ_EVENT',   NAMESPACE_ACTIVITY_SCHEMA . 'event' );
267 define ( 'ACTIVITY_OBJ_GROUP',   NAMESPACE_ACTIVITY_SCHEMA . 'group' );
268 define ( 'ACTIVITY_OBJ_TAGTERM', NAMESPACE_DFRN            . '/tagterm' );
269 define ( 'ACTIVITY_OBJ_PROFILE', NAMESPACE_DFRN            . '/profile' );
270
271 /**
272  * item weight for query ordering
273  */
274
275 define ( 'GRAVITY_PARENT',       0);
276 define ( 'GRAVITY_LIKE',         3);
277 define ( 'GRAVITY_COMMENT',      6);
278
279 /**
280  *
281  * Reverse the effect of magic_quotes_gpc if it is enabled.
282  * Please disable magic_quotes_gpc so we don't have to do this.
283  * See http://php.net/manual/en/security.magicquotes.disabling.php
284  *
285  */
286
287 function startup() {
288         
289         error_reporting(E_ERROR | E_WARNING | E_PARSE);
290
291         set_time_limit(0);
292
293         // This has to be quite large to deal with embedded private photos
294         ini_set('pcre.backtrack_limit', 500000);
295
296
297         if (get_magic_quotes_gpc()) {
298                 $process = array(&$_GET, &$_POST, &$_COOKIE, &$_REQUEST);
299                 while (list($key, $val) = each($process)) {
300                         foreach ($val as $k => $v) {
301                                 unset($process[$key][$k]);
302                                 if (is_array($v)) {
303                                         $process[$key][stripslashes($k)] = $v;
304                                         $process[] = &$process[$key][stripslashes($k)];
305                                 } else {
306                                         $process[$key][stripslashes($k)] = stripslashes($v);
307                                 }
308                         }
309                 }
310                 unset($process);
311         }
312
313 }
314
315 /**
316  *
317  * class: App
318  *
319  * Our main application structure for the life of this page
320  * Primarily deals with the URL that got us here
321  * and tries to make some sense of it, and
322  * stores our page contents and config storage
323  * and anything else that might need to be passed around
324  * before we spit the page out.
325  *
326  */
327
328 if(! class_exists('App')) {
329         class App {
330
331                 public  $module_loaded = false;
332                 public  $query_string;
333                 public  $config;
334                 public  $page;
335                 public  $profile;
336                 public  $user;
337                 public  $cid;
338                 public  $contact;
339                 public  $contacts;
340                 public  $page_contact;
341                 public  $content;
342                 public  $data = array();
343                 public  $error = false;
344                 public  $cmd;
345                 public  $argv;
346                 public  $argc;
347                 public  $module;
348                 public  $pager;
349                 public  $strings;
350                 public  $path;
351                 public  $hooks;
352                 public  $timezone;
353                 public  $interactive = true;
354                 public  $plugins;
355                 public  $apps = array();
356                 public  $identities;
357                 public  $is_mobile;
358                 public  $is_tablet;
359                 public  $performance = array();
360
361                 public $nav_sel;
362
363                 public $category;
364
365
366                 // Allow themes to control internal parameters
367                 // by changing App values in theme.php
368
369                 public  $sourcename = '';
370                 public  $videowidth = 425;
371                 public  $videoheight = 350;
372                 public  $force_max_items = 0;
373                 public  $theme_thread_allow = true;
374
375                 // An array for all theme-controllable parameters
376                 // Mostly unimplemented yet. Only options 'stylesheet' and
377                 // beyond are used.
378
379                 public  $theme = array(
380                         'sourcename' => '',
381                         'videowidth' => 425,
382                         'videoheight' => 350,
383                         'force_max_items' => 0,
384                         'thread_allow' => true,
385                         'stylesheet' => '',
386                         'template_engine' => 'smarty3',
387                 );
388                 
389                 // array of registered template engines ('name'=>'class name')
390                 public $template_engines = array();
391                 // array of instanced template engines ('name'=>'instance')
392                 public $template_engine_instance = array();
393
394                 private $ldelim = array(
395                         'internal' => '',
396                         'smarty3' => '{{'
397                 );
398                 private $rdelim = array(
399                         'internal' => '',
400                         'smarty3' => '}}'
401                 );
402
403                 private $scheme;
404                 private $hostname;
405                 private $baseurl;
406                 private $db;
407
408                 private $curl_code;
409                 private $curl_content_type;
410                 private $curl_headers;
411
412                 private $cached_profile_image;
413                 private $cached_profile_picdate;
414
415                 function __construct() {
416
417                         global $default_timezone, $argv, $argc;
418
419                         $this->timezone = ((x($default_timezone)) ? $default_timezone : 'UTC');
420
421                         date_default_timezone_set($this->timezone);
422
423                         $this->performance["start"] = microtime(true);
424                         $this->performance["database"] = 0;
425                         $this->performance["network"] = 0;
426                         $this->performance["file"] = 0;
427                         $this->performance["rendering"] = 0;
428                         $this->performance["parser"] = 0;
429                         $this->performance["marktime"] = 0;
430                         $this->performance["markstart"] = microtime(true);
431
432                         $this->config = array();
433                         $this->page = array();
434                         $this->pager= array();
435
436                         $this->query_string = '';
437
438                         startup();
439
440                         set_include_path(
441                                         'include' . PATH_SEPARATOR
442                                         . 'library' . PATH_SEPARATOR
443                                         . 'library/phpsec' . PATH_SEPARATOR
444                                         . 'library/langdet' . PATH_SEPARATOR
445                                         . '.' );
446
447
448                         $this->scheme = 'http';
449                         if(x($_SERVER,'HTTPS') && $_SERVER['HTTPS'])
450                                 $this->scheme = 'https';
451                         elseif(x($_SERVER,'SERVER_PORT') && (intval($_SERVER['SERVER_PORT']) == 443))
452                         $this->scheme = 'https';
453
454                         if(x($_SERVER,'SERVER_NAME')) {
455                                 $this->hostname = $_SERVER['SERVER_NAME'];
456
457                                 // See bug 437 - this didn't work so disabling it
458                                 //if(stristr($this->hostname,'xn--')) {
459                                         // PHP or webserver may have converted idn to punycode, so
460                                         // convert punycode back to utf-8
461                                 //      require_once('library/simplepie/idn/idna_convert.class.php');
462                                 //      $x = new idna_convert();
463                                 //      $this->hostname = $x->decode($_SERVER['SERVER_NAME']);
464                                 //}
465
466                                 if(x($_SERVER,'SERVER_PORT') && $_SERVER['SERVER_PORT'] != 80 && $_SERVER['SERVER_PORT'] != 443)
467                                         $this->hostname .= ':' . $_SERVER['SERVER_PORT'];
468                                 /**
469                                  * Figure out if we are running at the top of a domain
470                                  * or in a sub-directory and adjust accordingly
471                                  */
472
473                                 $path = trim(dirname($_SERVER['SCRIPT_NAME']),'/\\');
474                                 if(isset($path) && strlen($path) && ($path != $this->path))
475                                         $this->path = $path;
476                         }
477                         if (is_array($argv) && $argc>1 && substr(end($argv), 0, 4)=="http" ) {
478                                 $this->set_baseurl(array_pop($argv) );
479                                 $argc --;
480                         }
481
482                         set_include_path("include/$this->hostname" . PATH_SEPARATOR . get_include_path());
483             
484                         if((x($_SERVER,'QUERY_STRING')) && substr($_SERVER['QUERY_STRING'],0,2) === "q=") {
485                                 $this->query_string = substr($_SERVER['QUERY_STRING'],2);
486                                 // removing trailing / - maybe a nginx problem
487                                 if (substr($this->query_string, 0, 1) == "/")
488                                         $this->query_string = substr($this->query_string, 1);
489                         }
490                         if(x($_GET,'q'))
491                                 $this->cmd = trim($_GET['q'],'/\\');
492
493                         // unix style "homedir"
494
495                         if(substr($this->cmd,0,1) === '~')
496                                 $this->cmd = 'profile/' . substr($this->cmd,1);
497
498                         // Diaspora style profile url
499
500                         if(substr($this->cmd,0,2) === 'u/')
501                                 $this->cmd = 'profile/' . substr($this->cmd,2);
502
503                         /**
504                          *
505                          * Break the URL path into C style argc/argv style arguments for our
506                          * modules. Given "http://example.com/module/arg1/arg2", $this->argc
507                          * will be 3 (integer) and $this->argv will contain:
508                          *   [0] => 'module'
509                          *   [1] => 'arg1'
510                          *   [2] => 'arg2'
511                          *
512                          *
513                          * There will always be one argument. If provided a naked domain
514                          * URL, $this->argv[0] is set to "home".
515                          *
516                          */
517
518                         $this->argv = explode('/',$this->cmd);
519                         $this->argc = count($this->argv);
520                         if((array_key_exists('0',$this->argv)) && strlen($this->argv[0])) {
521                                 $this->module = str_replace(".", "_", $this->argv[0]);
522                                 $this->module = str_replace("-", "_", $this->module);
523                         }
524                         else {
525                                 $this->argc = 1;
526                                 $this->argv = array('home');
527                                 $this->module = 'home';
528                         }
529
530                         /**
531                          * See if there is any page number information, and initialise
532                          * pagination
533                          */
534
535                         $this->pager['page'] = ((x($_GET,'page') && intval($_GET['page']) > 0) ? intval($_GET['page']) : 1);
536                         $this->pager['itemspage'] = 50;
537                         $this->pager['start'] = ($this->pager['page'] * $this->pager['itemspage']) - $this->pager['itemspage'];
538                         if($this->pager['start'] < 0)
539                                 $this->pager['start'] = 0;
540                         $this->pager['total'] = 0;
541
542                         /**
543                          * Detect mobile devices
544                          */
545
546                         $mobile_detect = new Mobile_Detect();
547                         $this->is_mobile = $mobile_detect->isMobile();
548                         $this->is_tablet = $mobile_detect->isTablet();
549                         
550                         /**
551                          * register template engines
552                          */
553                         $dc = get_declared_classes();
554                         foreach ($dc as $k) {
555                                 if (in_array("ITemplateEngine", class_implements($k))){
556                                         $this->register_template_engine($k);
557                                 }
558                         }
559                         
560                 }
561
562                 function get_basepath() {
563
564                         $basepath = get_config("system", "basepath");
565
566                         if ($basepath == "")
567                                 $basepath = $_SERVER["DOCUMENT_ROOT"];
568
569                         if ($basepath == "")
570                                 $basepath = $_SERVER["PWD"];
571
572                         return($basepath);
573                 }
574
575                 function get_baseurl($ssl = false) {
576
577                         $scheme = $this->scheme;
578
579                         if((x($this->config,'system')) && (x($this->config['system'],'ssl_policy'))) {
580                                 if(intval($this->config['system']['ssl_policy']) === intval(SSL_POLICY_FULL))
581                                         $scheme = 'https';
582
583                                 //      Basically, we have $ssl = true on any links which can only be seen by a logged in user
584                                 //      (and also the login link). Anything seen by an outsider will have it turned off.
585
586                                 if($this->config['system']['ssl_policy'] == SSL_POLICY_SELFSIGN) {
587                                         if($ssl)
588                                                 $scheme = 'https';
589                                         else
590                                                 $scheme = 'http';
591                                 }
592                         }
593
594                         $this->baseurl = $scheme . "://" . $this->hostname . ((isset($this->path) && strlen($this->path)) ? '/' . $this->path : '' );
595                         return $this->baseurl;
596                 }
597
598                 function set_baseurl($url) {
599                         $parsed = @parse_url($url);
600
601                         $this->baseurl = $url;
602
603                         if($parsed) {
604                                 $this->scheme = $parsed['scheme'];
605
606                                 $this->hostname = $parsed['host'];
607                                 if(x($parsed,'port'))
608                                         $this->hostname .= ':' . $parsed['port'];
609                                 if(x($parsed,'path'))
610                                         $this->path = trim($parsed['path'],'\\/');
611                         }
612
613                 }
614
615                 function get_hostname() {
616                         return $this->hostname;
617                 }
618
619                 function set_hostname($h) {
620                         $this->hostname = $h;
621                 }
622
623                 function set_path($p) {
624                         $this->path = trim(trim($p),'/');
625                 }
626
627                 function get_path() {
628                         return $this->path;
629                 }
630
631                 function set_pager_total($n) {
632                         $this->pager['total'] = intval($n);
633                 }
634
635                 function set_pager_itemspage($n) {
636                         $this->pager['itemspage'] = ((intval($n) > 0) ? intval($n) : 0);
637                         $this->pager['start'] = ($this->pager['page'] * $this->pager['itemspage']) - $this->pager['itemspage'];
638                 }
639                 
640                 function set_pager_page($n) {
641                         $this->pager['page'] = $n;
642                         $this->pager['start'] = ($this->pager['page'] * $this->pager['itemspage']) - $this->pager['itemspage'];
643                 }
644
645                 function init_pagehead() {
646                         $interval = ((local_user()) ? get_pconfig(local_user(),'system','update_interval') : 40000);
647                         if($interval < 10000)
648                                 $interval = 40000;
649
650                         $this->page['title'] = $this->config['sitename'];
651
652                         /* put the head template at the beginning of page['htmlhead']
653                          * since the code added by the modules frequently depends on it
654                          * being first
655                          */
656                         if(!isset($this->page['htmlhead']))
657                                 $this->page['htmlhead'] = '';
658
659                         // If we're using Smarty, then doing replace_macros() will replace
660                         // any unrecognized variables with a blank string. Since we delay
661                         // replacing $stylesheet until later, we need to replace it now
662                         // with another variable name
663                         if($this->theme['template_engine'] === 'smarty3')
664                                 $stylesheet = $this->get_template_ldelim('smarty3') . '$stylesheet' . $this->get_template_rdelim('smarty3');
665                         else
666                                 $stylesheet = '$stylesheet';
667
668                         $tpl = get_markup_template('head.tpl');
669                         $this->page['htmlhead'] = replace_macros($tpl,array(
670                                 '$baseurl' => $this->get_baseurl(), // FIXME for z_path!!!!
671                                 '$local_user' => local_user(),
672                                 '$generator' => 'Friendica' . ' ' . FRIENDICA_VERSION,
673                                 '$delitem' => t('Delete this item?'),
674                                 '$comment' => t('Comment'),
675                                 '$showmore' => t('show more'),
676                                 '$showfewer' => t('show fewer'),
677                                 '$update_interval' => $interval,
678                                 '$stylesheet' => $stylesheet
679                         )) . $this->page['htmlhead'];
680                 }
681
682                 function init_page_end() {
683                         if(!isset($this->page['end']))
684                                 $this->page['end'] = '';
685                         $tpl = get_markup_template('end.tpl');
686                         $this->page['end'] = replace_macros($tpl,array(
687                                 '$baseurl' => $this->get_baseurl() // FIXME for z_path!!!!
688                         )) . $this->page['end'];
689                 }
690
691                 function set_curl_code($code) {
692                         $this->curl_code = $code;
693                 }
694
695                 function get_curl_code() {
696                         return $this->curl_code;
697                 }
698
699                 function set_curl_content_type($content_type) {
700                         $this->curl_content_type = $content_type;
701                 }
702
703                 function get_curl_content_type() {
704                         return $this->curl_content_type;
705                 }
706
707                 function set_curl_headers($headers) {
708                         $this->curl_headers = $headers;
709                 }
710
711                 function get_curl_headers() {
712                         return $this->curl_headers;
713                 }
714
715                 function get_cached_avatar_image($avatar_image){
716                         if($this->cached_profile_image[$avatar_image])
717                                 return $this->cached_profile_image[$avatar_image];
718
719                         $path_parts = explode("/",$avatar_image);
720                         $common_filename = $path_parts[count($path_parts)-1];
721
722                         if($this->cached_profile_picdate[$common_filename]){
723                                 $this->cached_profile_image[$avatar_image] = $avatar_image . $this->cached_profile_picdate[$common_filename];
724                         } else {
725                                 $r = q("SELECT `contact`.`avatar-date` AS picdate FROM `contact` WHERE `contact`.`thumb` like \"%%/%s\"",
726                                         $common_filename);
727                                 if(! count($r)){
728                                         $this->cached_profile_image[$avatar_image] = $avatar_image;
729                                 } else {
730                                         $this->cached_profile_picdate[$common_filename] = "?rev=" . urlencode($r[0]['picdate']);
731                                         $this->cached_profile_image[$avatar_image] = $avatar_image . $this->cached_profile_picdate[$common_filename];
732                                 }
733                         }
734                         return $this->cached_profile_image[$avatar_image];
735                 }
736
737
738                 /**
739                  * register template engine class
740                  * if $name is "", is used class static property $class::$name
741                  * @param string $class
742                  * @param string $name
743                  */
744                 function register_template_engine($class, $name = '') {
745                         if ($name===""){
746                                 $v = get_class_vars( $class );
747                                 if(x($v,"name")) $name = $v['name'];
748                         }
749                         if ($name===""){
750                                 echo "template engine <tt>$class</tt> cannot be registered without a name.\n";
751                                 killme(); 
752                         }
753                         $this->template_engines[$name] = $class;
754                 }
755
756                 /**
757                  * return template engine instance. If $name is not defined,
758                  * return engine defined by theme, or default
759                  * 
760                  * @param strin $name Template engine name
761                  * @return object Template Engine instance
762                  */
763                 function template_engine($name = ''){
764                         if ($name!=="") {
765                                 $template_engine = $name;
766                         } else {
767                                 $template_engine = 'smarty3';
768                                 if (x($this->theme, 'template_engine')) {
769                                         $template_engine = $this->theme['template_engine'];
770                                 }
771                         }
772                         
773                         if (isset($this->template_engines[$template_engine])){
774                                 if(isset($this->template_engine_instance[$template_engine])){
775                                         return $this->template_engine_instance[$template_engine];
776                                 } else {
777                                         $class = $this->template_engines[$template_engine];
778                                         $obj = new $class;
779                                         $this->template_engine_instance[$template_engine] = $obj;
780                                         return $obj;
781                                 }
782                         }
783                         
784                         echo "template engine <tt>$template_engine</tt> is not registered!\n"; killme();
785                 }
786
787                 function get_template_engine() {
788                         return $this->theme['template_engine'];
789                 }
790
791                 function set_template_engine($engine = 'smarty3') {
792                         $this->theme['template_engine'] = $engine;
793                         /*
794                         $this->theme['template_engine'] = 'smarty3';
795
796                         switch($engine) {
797                                 case 'smarty3':
798                                         if(is_writable('view/smarty3/'))
799                                                 $this->theme['template_engine'] = 'smarty3';
800                                         break;
801                                 default:
802                                         break;
803                         }
804                         */
805                 }
806
807                 function get_template_ldelim($engine = 'smarty3') {
808                         return $this->ldelim[$engine];
809                 }
810
811                 function get_template_rdelim($engine = 'smarty3') {
812                         return $this->rdelim[$engine];
813                 }
814
815                 function save_timestamp($stamp, $value) {
816                         $duration = (float)(microtime(true)-$stamp);
817
818                         $this->performance[$value] += (float)$duration;
819                         $this->performance["marktime"] += (float)$duration;
820                 }
821
822                 function mark_timestamp($mark) {
823                         //$this->performance["markstart"] -= microtime(true) - $this->performance["marktime"];
824                         $this->performance["markstart"] = microtime(true) - $this->performance["markstart"] - $this->performance["marktime"];
825                 }
826         }
827 }
828
829 // retrieve the App structure
830 // useful in functions which require it but don't get it passed to them
831
832 if(! function_exists('get_app')) {
833         function get_app() {
834                 global $a;
835                 return $a;
836         }
837 };
838
839
840 // Multi-purpose function to check variable state.
841 // Usage: x($var) or $x($array,'key')
842 // returns false if variable/key is not set
843 // if variable is set, returns 1 if has 'non-zero' value, otherwise returns 0.
844 // e.g. x('') or x(0) returns 0;
845
846 if(! function_exists('x')) {
847         function x($s,$k = NULL) {
848                 if($k != NULL) {
849                         if((is_array($s)) && (array_key_exists($k,$s))) {
850                                 if($s[$k])
851                                         return (int) 1;
852                                 return (int) 0;
853                 }
854                         return false;
855                 }
856                 else {
857                         if(isset($s)) {
858                                 if($s) {
859                                         return (int) 1;
860                                 }
861                                 return (int) 0;
862                         }
863                         return false;
864                 }
865         }
866 }
867
868 // called from db initialisation if db is dead.
869
870 if(! function_exists('system_unavailable')) {
871         function system_unavailable() {
872                 include('system_unavailable.php');
873                 system_down();
874                 killme();
875         }
876 }
877
878
879
880 function clean_urls() {
881         global $a;
882         //      if($a->config['system']['clean_urls'])
883         return true;
884         //      return false;
885 }
886
887 function z_path() {
888         global $a;
889         $base = $a->get_baseurl();
890         if(! clean_urls())
891                 $base .= '/?q=';
892         return $base;
893 }
894
895 function z_root() {
896         global $a;
897         return $a->get_baseurl();
898 }
899
900 function absurl($path) {
901         if(strpos($path,'/') === 0)
902                 return z_path() . $path;
903         return $path;
904 }
905
906 function is_ajax() {
907         return (!empty($_SERVER['HTTP_X_REQUESTED_WITH']) && strtolower($_SERVER['HTTP_X_REQUESTED_WITH']) == 'xmlhttprequest');
908 }
909
910 function check_db() {
911
912         $build = get_config('system','build');
913         if(! x($build)) {
914                 set_config('system','build',DB_UPDATE_VERSION);
915                 $build = DB_UPDATE_VERSION;
916         }
917         if($build != DB_UPDATE_VERSION)
918                 proc_run('php', 'include/dbupdate.php');
919
920 }
921
922
923
924
925 // Sets the base url for use in cmdline programs which don't have
926 // $_SERVER variables
927
928 if(! function_exists('check_url')) {
929         function check_url(&$a) {
930
931                 $url = get_config('system','url');
932
933                 // if the url isn't set or the stored url is radically different
934                 // than the currently visited url, store the current value accordingly.
935                 // "Radically different" ignores common variations such as http vs https
936                 // and www.example.com vs example.com.
937                 // We will only change the url to an ip address if there is no existing setting
938
939                 if(! x($url))
940                         $url = set_config('system','url',$a->get_baseurl());
941                 if((! link_compare($url,$a->get_baseurl())) && (! preg_match("/^(\d{1,3})\.(\d{1,3})\.(\d{1,3})\.(\d{1,3})$/",$a->get_hostname)))
942                         $url = set_config('system','url',$a->get_baseurl());
943
944                 return;
945         }
946 }
947
948
949 // Automatic database updates
950
951 if(! function_exists('update_db')) {
952         function update_db(&$a) {
953
954                 $build = get_config('system','build');
955                 if(! x($build))
956                         $build = set_config('system','build',DB_UPDATE_VERSION);
957
958                 if($build != DB_UPDATE_VERSION) {
959                         $stored = intval($build);
960                         $current = intval(DB_UPDATE_VERSION);
961                         if(($stored < $current) && file_exists('update.php')) {
962
963                                 load_config('database');
964
965                                 // We're reporting a different version than what is currently installed.
966                                 // Run any existing update scripts to bring the database up to current.
967
968                                 require_once('update.php');
969
970                                 // make sure that boot.php and update.php are the same release, we might be
971                                 // updating right this very second and the correct version of the update.php
972                                 // file may not be here yet. This can happen on a very busy site.
973
974                                 if(DB_UPDATE_VERSION == UPDATE_VERSION) {
975
976                                         for($x = $stored; $x < $current; $x ++) {
977                                                 if(function_exists('update_' . $x)) {
978
979                                                         // There could be a lot of processes running or about to run.
980                                                         // We want exactly one process to run the update command.
981                                                         // So store the fact that we're taking responsibility
982                                                         // after first checking to see if somebody else already has.
983
984                                                         // If the update fails or times-out completely you may need to
985                                                         // delete the config entry to try again.
986
987                                                         $t = get_config('database','update_' . $x);
988                                                         if($t !== false)
989                                                                 break;
990                                                         set_config('database','update_' . $x, time());
991
992                                                         // call the specific update
993
994                                                         $func = 'update_' . $x;
995                                                         $retval = $func();
996                                                         if($retval) {
997                                                                 //send the administrator an e-mail
998                                                                 $email_tpl = get_intltext_template("update_fail_eml.tpl");
999                                                                 $email_msg = replace_macros($email_tpl, array(
1000                                                                         '$sitename' => $a->config['sitename'],
1001                                                                         '$siteurl' =>  $a->get_baseurl(),
1002                                                                         '$update' => $x,
1003                                                                         '$error' => sprintf( t('Update %s failed. See error logs.'), $x)
1004                                                                 ));
1005                                                                 $subject=sprintf(t('Update Error at %s'), $a->get_baseurl());
1006                                                                 require_once('include/email.php');
1007                                                                 $subject = email_header_encode($subject,'UTF-8');       
1008                                                                 mail($a->config['admin_email'], $subject, $email_msg,
1009                                                                         'From: ' . 'Administrator' . '@' . $_SERVER['SERVER_NAME'] . "\n"
1010                                                                         . 'Content-type: text/plain; charset=UTF-8' . "\n"
1011                                                                         . 'Content-transfer-encoding: 8bit' );
1012                                                                 //try the logger
1013                                                                 logger('CRITICAL: Update Failed: '. $x);
1014                                                                 break;
1015                                                         }
1016                                                         else {
1017                                                                 set_config('database','update_' . $x, 'success');
1018                                                                 set_config('system','build', $x + 1);
1019                                                         }                                                               
1020                                                 }
1021                                         }
1022                                 }
1023                         }
1024                 }
1025
1026                 return;
1027         }
1028 }
1029
1030
1031 if(! function_exists('check_plugins')) {
1032         function check_plugins(&$a) {
1033
1034                 /**
1035                  *
1036                  * Synchronise plugins:
1037                  *
1038                  * $a->config['system']['addon'] contains a comma-separated list of names
1039                  * of plugins/addons which are used on this system.
1040                  * Go through the database list of already installed addons, and if we have
1041                  * an entry, but it isn't in the config list, call the uninstall procedure
1042                  * and mark it uninstalled in the database (for now we'll remove it).
1043                  * Then go through the config list and if we have a plugin that isn't installed,
1044                  * call the install procedure and add it to the database.
1045                  *
1046                  */
1047
1048                 $r = q("SELECT * FROM `addon` WHERE `installed` = 1");
1049                 if(count($r))
1050                         $installed = $r;
1051                 else
1052                         $installed = array();
1053
1054                 $plugins = get_config('system','addon');
1055                 $plugins_arr = array();
1056
1057                 if($plugins)
1058                         $plugins_arr = explode(',',str_replace(' ', '',$plugins));
1059
1060                 $a->plugins = $plugins_arr;
1061
1062                 $installed_arr = array();
1063
1064                 if(count($installed)) {
1065                         foreach($installed as $i) {
1066                                 if(! in_array($i['name'],$plugins_arr)) {
1067                                         uninstall_plugin($i['name']);
1068                                 }
1069                                 else {
1070                                         $installed_arr[] = $i['name'];
1071                                 }
1072                         }
1073                 }
1074
1075                 if(count($plugins_arr)) {
1076                         foreach($plugins_arr as $p) {
1077                                 if(! in_array($p,$installed_arr)) {
1078                                         install_plugin($p);
1079                                 }
1080                         }
1081                 }
1082
1083
1084                 load_hooks();
1085
1086                 return;
1087         }
1088 }
1089
1090
1091 function get_guid($size=16) {
1092         $exists = true; // assume by default that we don't have a unique guid
1093         do {
1094                 $s = random_string($size);
1095                 $r = q("select id from guid where guid = '%s' limit 1", dbesc($s));
1096                 if(! count($r))
1097                         $exists = false;
1098         } while($exists);
1099         q("insert into guid ( guid ) values ( '%s' ) ", dbesc($s));
1100         return $s;
1101 }
1102
1103
1104 // wrapper for adding a login box. If $register == true provide a registration
1105 // link. This will most always depend on the value of $a->config['register_policy'].
1106 // returns the complete html for inserting into the page
1107
1108 if(! function_exists('login')) {
1109         function login($register = false, $hiddens=false) {
1110                 $a = get_app();
1111                 $o = "";
1112                 $reg = false;
1113                 if ($register) {
1114                         $reg = array(
1115                                 'title' => t('Create a New Account'),
1116                                 'desc' => t('Register')
1117                         );
1118                 }
1119
1120                 $noid = get_config('system','no_openid');
1121         
1122                 $dest_url = $a->get_baseurl(true) . '/' . $a->query_string;
1123
1124                 if(local_user()) {
1125                         $tpl = get_markup_template("logout.tpl");
1126                 }
1127                 else {
1128                         $a->page['htmlhead'] .= replace_macros(get_markup_template("login_head.tpl"),array(
1129                                 '$baseurl'              => $a->get_baseurl(true)
1130                         ));
1131
1132                         $tpl = get_markup_template("login.tpl");
1133                         $_SESSION['return_url'] = $a->query_string;
1134                         $a->module = 'login';
1135                 }
1136
1137                 $o .= replace_macros($tpl, array(
1138
1139                         '$dest_url'     => $dest_url,
1140                         '$logout'       => t('Logout'),
1141                         '$login'        => t('Login'),
1142         
1143                         '$lname'                => array('username', t('Nickname or Email address: ') , '', ''),
1144                         '$lpassword'    => array('password', t('Password: '), '', ''),
1145                         '$lremember'    => array('remember', t('Remember me'), 0, ''),
1146         
1147                         '$openid'               => !$noid,
1148                         '$lopenid'      => array('openid_url', t('Or login using OpenID: '),'',''),
1149         
1150                         '$hiddens'      => $hiddens,
1151         
1152                         '$register'     => $reg,
1153         
1154                         '$lostpass'     => t('Forgot your password?'),
1155                         '$lostlink'     => t('Password Reset'),
1156
1157                         '$tostitle'     => t('Website Terms of Service'),
1158                         '$toslink'      => t('terms of service'),
1159
1160                         '$privacytitle' => t('Website Privacy Policy'),
1161                         '$privacylink'  => t('privacy policy'),
1162
1163                 ));
1164
1165                 call_hooks('login_hook',$o);
1166
1167                 return $o;
1168         }
1169 }
1170
1171 // Used to end the current process, after saving session state.
1172
1173 if(! function_exists('killme')) {
1174         function killme() {
1175                 session_write_close();
1176                 exit;
1177         }
1178 }
1179
1180 // redirect to another URL and terminate this process.
1181
1182 if(! function_exists('goaway')) {
1183         function goaway($s) {
1184                 header("Location: $s");
1185                 killme();
1186         }
1187 }
1188
1189
1190 // Returns the uid of locally logged in user or false.
1191
1192 if(! function_exists('local_user')) {
1193         function local_user() {
1194                 if((x($_SESSION,'authenticated')) && (x($_SESSION,'uid')))
1195                         return intval($_SESSION['uid']);
1196                 return false;
1197         }
1198 }
1199
1200 // Returns contact id of authenticated site visitor or false
1201
1202 if(! function_exists('remote_user')) {
1203         function remote_user() {
1204                 if((x($_SESSION,'authenticated')) && (x($_SESSION,'visitor_id')))
1205                         return intval($_SESSION['visitor_id']);
1206                 return false;
1207         }
1208 }
1209
1210 // contents of $s are displayed prominently on the page the next time
1211 // a page is loaded. Usually used for errors or alerts.
1212
1213 if(! function_exists('notice')) {
1214         /**
1215          * Show an error message to user.
1216          * 
1217          * This function save text in session, to be shown to the user at next page load
1218          * 
1219          * @param string $s - Text of notice
1220          */
1221         function notice($s) {
1222                 $a = get_app();
1223                 if(! x($_SESSION,'sysmsg'))     $_SESSION['sysmsg'] = array();
1224                 if($a->interactive)
1225                         $_SESSION['sysmsg'][] = $s;
1226         }
1227 }
1228 if(! function_exists('info')) {
1229         /**
1230          * Show an info message to user.
1231          * 
1232          * This function save text in session, to be shown to the user at next page load
1233          * 
1234          * @param string $s - Text of notice
1235          */
1236         function info($s) {
1237                 $a = get_app();
1238                 if(! x($_SESSION,'sysmsg_info')) $_SESSION['sysmsg_info'] = array();
1239                 if($a->interactive)
1240                         $_SESSION['sysmsg_info'][] = $s;
1241         }
1242 }
1243
1244
1245 // wrapper around config to limit the text length of an incoming message
1246
1247 if(! function_exists('get_max_import_size')) {
1248         function get_max_import_size() {
1249                 global $a;
1250                 return ((x($a->config,'max_import_size')) ? $a->config['max_import_size'] : 0 );
1251         }
1252 }
1253
1254
1255
1256 /**
1257  *
1258  * Function : profile_load
1259  * @parameter App    $a
1260  * @parameter string $nickname
1261  * @parameter int    $profile
1262  *
1263  * Summary: Loads a profile into the page sidebar.
1264  * The function requires a writeable copy of the main App structure, and the nickname
1265  * of a registered local account.
1266  *
1267  * If the viewer is an authenticated remote viewer, the profile displayed is the
1268  * one that has been configured for his/her viewing in the Contact manager.
1269  * Passing a non-zero profile ID can also allow a preview of a selected profile
1270  * by the owner.
1271  *
1272  * Profile information is placed in the App structure for later retrieval.
1273  * Honours the owner's chosen theme for display.
1274  *
1275  * IMPORTANT: Should only be run in the _init() functions of a module. That ensures that
1276  * the theme is chosen before the _init() function of a theme is run, which will usually
1277  * load a lot of theme-specific content
1278  *
1279  */
1280
1281 if(! function_exists('profile_load')) {
1282         function profile_load(&$a, $nickname, $profile = 0) {
1283
1284                 $user = q("select uid from user where nickname = '%s' limit 1",
1285                         dbesc($nickname)
1286                 );
1287                 
1288                 if(! ($user && count($user))) {
1289                         logger('profile error: ' . $a->query_string, LOGGER_DEBUG);
1290                         notice( t('Requested account is not available.') . EOL );
1291                         $a->error = 404;
1292                         return;
1293                 }
1294
1295                 if(remote_user() && count($_SESSION['remote'])) {
1296                         foreach($_SESSION['remote'] as $visitor) {
1297                                 if($visitor['uid'] == $user[0]['uid']) {
1298                                         $r = q("SELECT `profile-id` FROM `contact` WHERE `id` = %d LIMIT 1",
1299                                                 intval($visitor['cid'])
1300                                         );
1301                                         if(count($r))
1302                                                 $profile = $r[0]['profile-id'];
1303                                         break;
1304                                 }
1305                         }
1306                 }
1307
1308                 $r = null;
1309                           
1310                 if($profile) {
1311                         $profile_int = intval($profile);
1312                         $r = q("SELECT `profile`.`uid` AS `profile_uid`, `profile`.* , `contact`.`avatar-date` AS picdate, `user`.* FROM `profile`
1313                                         left join `contact` on `contact`.`uid` = `profile`.`uid` LEFT JOIN `user` ON `profile`.`uid` = `user`.`uid`
1314                                         WHERE `user`.`nickname` = '%s' AND `profile`.`id` = %d and `contact`.`self` = 1 LIMIT 1",
1315                                         dbesc($nickname),
1316                                         intval($profile_int)
1317                         );
1318                 }
1319                 if((! $r) && (!  count($r))) {
1320                         $r = q("SELECT `profile`.`uid` AS `profile_uid`, `profile`.* , `contact`.`avatar-date` AS picdate, `user`.* FROM `profile`
1321                                         left join `contact` on `contact`.`uid` = `profile`.`uid` LEFT JOIN `user` ON `profile`.`uid` = `user`.`uid`
1322                                         WHERE `user`.`nickname` = '%s' AND `profile`.`is-default` = 1 and `contact`.`self` = 1 LIMIT 1",
1323                                         dbesc($nickname)
1324                         );
1325                 }
1326
1327                 if(($r === false) || (! count($r))) {
1328                         logger('profile error: ' . $a->query_string, LOGGER_DEBUG);
1329                         notice( t('Requested profile is not available.') . EOL );
1330                         $a->error = 404;
1331                         return;
1332                 }
1333         
1334                 // fetch user tags if this isn't the default profile
1335
1336                 if(! $r[0]['is-default']) {
1337                         $x = q("select `pub_keywords` from `profile` where uid = %d and `is-default` = 1 limit 1",
1338                                         intval($r[0]['profile_uid'])
1339                         );
1340                         if($x && count($x))
1341                                 $r[0]['pub_keywords'] = $x[0]['pub_keywords'];
1342                 }
1343
1344                 $a->profile = $r[0];
1345
1346                 $a->profile['mobile-theme'] = get_pconfig($a->profile['profile_uid'], 'system', 'mobile_theme');
1347
1348
1349                 $a->page['title'] = $a->profile['name'] . " @ " . $a->config['sitename'];
1350                 $_SESSION['theme'] = $a->profile['theme'];
1351                 $_SESSION['mobile-theme'] = $a->profile['mobile-theme'];
1352
1353                 /**
1354                  * load/reload current theme info
1355                  */
1356
1357                 $a->set_template_engine(); // reset the template engine to the default in case the user's theme doesn't specify one
1358
1359                 $theme_info_file = "view/theme/".current_theme()."/theme.php";
1360                 if (file_exists($theme_info_file)){
1361                         require_once($theme_info_file);
1362                 }
1363
1364                 if(! (x($a->page,'aside')))
1365                         $a->page['aside'] = '';
1366
1367                 if(local_user() && local_user() == $a->profile['uid']) {
1368                         $a->page['aside'] .= replace_macros(get_markup_template('profile_edlink.tpl'),array(
1369                                 '$editprofile' => t('Edit profile'),
1370                                 '$profid' => $a->profile['id']
1371                         ));
1372                 }
1373
1374                 $block = (((get_config('system','block_public')) && (! local_user()) && (! remote_user())) ? true : false);
1375
1376                 $a->page['aside'] .= profile_sidebar($a->profile, $block);
1377
1378                 /*if(! $block)
1379                  $a->page['aside'] .= contact_block();*/
1380
1381                 return;
1382         }
1383 }
1384
1385
1386 /**
1387  *
1388  * Function: profile_sidebar
1389  *
1390  * Formats a profile for display in the sidebar.
1391  * It is very difficult to templatise the HTML completely
1392  * because of all the conditional logic.
1393  *
1394  * @parameter: array $profile
1395  *
1396  * Returns HTML string stuitable for sidebar inclusion
1397  * Exceptions: Returns empty string if passed $profile is wrong type or not populated
1398  *
1399  */
1400
1401
1402 if(! function_exists('profile_sidebar')) {
1403         function profile_sidebar($profile, $block = 0) {
1404
1405                 $a = get_app();
1406
1407                 $o = '';
1408                 $location = false;
1409                 $address = false;
1410                 $pdesc = true;
1411
1412                 if((! is_array($profile)) && (! count($profile)))
1413                         return $o;
1414
1415                 $profile['picdate'] = urlencode($profile['picdate']);
1416
1417                 call_hooks('profile_sidebar_enter', $profile);
1418
1419         
1420                 // don't show connect link to yourself
1421                 $connect = (($profile['uid'] != local_user()) ? t('Connect')  : False);
1422
1423                 // don't show connect link to authenticated visitors either
1424
1425                 if(remote_user() && count($_SESSION['remote'])) {
1426                         foreach($_SESSION['remote'] as $visitor) {
1427                                 if($visitor['uid'] == $profile['uid']) {
1428                                         $connect = false;
1429                                         break;
1430                                 }
1431                         }
1432                 }
1433
1434                 if( get_my_url() && $profile['unkmail'] && ($profile['uid'] != local_user()) )
1435                         $wallmessage = t('Message');
1436                 else
1437                         $wallmessage = false;
1438
1439
1440
1441                 // show edit profile to yourself
1442                 if ($profile['uid'] == local_user() && feature_enabled(local_user(),'multi_profiles')) {
1443                         $profile['edit'] = array($a->get_baseurl(). '/profiles', t('Profiles'),"", t('Manage/edit profiles'));
1444                 
1445                         $r = q("SELECT * FROM `profile` WHERE `uid` = %d",
1446                                         local_user());
1447                 
1448                         $profile['menu'] = array(
1449                                 'chg_photo' => t('Change profile photo'),
1450                                 'cr_new' => t('Create New Profile'),
1451                                 'entries' => array(),
1452                         );
1453
1454                         if(count($r)) {
1455
1456                                 foreach($r as $rr) {
1457                                         $profile['menu']['entries'][] = array(
1458                                                 'photo' => $rr['thumb'],
1459                                                 'id' => $rr['id'],
1460                                                 'alt' => t('Profile Image'),
1461                                                 'profile_name' => $rr['profile-name'],
1462                                                 'isdefault' => $rr['is-default'],
1463                                                 'visibile_to_everybody' =>  t('visible to everybody'),
1464                                                 'edit_visibility' => t('Edit visibility'),
1465
1466                                         );
1467                                 }
1468
1469
1470                         }
1471                 }
1472         if ($profile['uid'] == local_user() && !feature_enabled(local_user(),'multi_profiles')) {
1473             $profile['edit'] = array($a->get_baseurl(). '/profiles/'.$profile['id'], t('Edit profile'),"", t('Edit profile'));
1474                 $profile['menu'] = array(
1475                                 'chg_photo' => t('Change profile photo'),
1476                                 'cr_new' => null,
1477                                 'entries' => array(),
1478                         );
1479         }
1480
1481
1482
1483         
1484                 if((x($profile,'address') == 1)
1485                                 || (x($profile,'locality') == 1)
1486                                 || (x($profile,'region') == 1)
1487                                 || (x($profile,'postal-code') == 1)
1488                                 || (x($profile,'country-name') == 1))
1489                         $location = t('Location:');
1490
1491                 $gender = ((x($profile,'gender') == 1) ? t('Gender:') : False);
1492
1493
1494                 $marital = ((x($profile,'marital') == 1) ?  t('Status:') : False);
1495
1496                 $homepage = ((x($profile,'homepage') == 1) ?  t('Homepage:') : False);
1497
1498                 if(($profile['hidewall'] || $block) && (! local_user()) && (! remote_user())) {
1499                         $location = $pdesc = $gender = $marital = $homepage = False;
1500                 }
1501
1502                 $firstname = ((strpos($profile['name'],' '))
1503                                 ? trim(substr($profile['name'],0,strpos($profile['name'],' '))) : $profile['name']);
1504                 $lastname = (($firstname === $profile['name']) ? '' : trim(substr($profile['name'],strlen($firstname))));
1505
1506                 $diaspora = array(
1507                         'podloc' => $a->get_baseurl(),
1508                         'searchable' => (($profile['publish'] && $profile['net-publish']) ? 'true' : 'false' ),
1509                         'nickname' => $profile['nickname'],
1510                         'fullname' => $profile['name'],
1511                         'firstname' => $firstname,
1512                         'lastname' => $lastname,
1513                         'photo300' => $a->get_cached_avatar_image($a->get_baseurl() . '/photo/custom/300/' . $profile['uid'] . '.jpg'),
1514                         'photo100' => $a->get_cached_avatar_image($a->get_baseurl() . '/photo/custom/100/' . $profile['uid'] . '.jpg'),
1515                         'photo50' => $a->get_cached_avatar_image($a->get_baseurl() . '/photo/custom/50/'  . $profile['uid'] . '.jpg'),
1516                 );
1517
1518                 if (!$block){
1519                         $contact_block = contact_block();
1520                 }
1521
1522
1523                 $p = array();
1524                 foreach($profile as $k => $v) {
1525                         $k = str_replace('-','_',$k);
1526                         $p[$k] = $v;
1527                 }
1528
1529                 if($a->theme['template_engine'] === 'internal')
1530                         $location = template_escape($location);
1531
1532
1533                 $tpl = get_markup_template('profile_vcard.tpl');
1534                 $o .= replace_macros($tpl, array(
1535                         '$profile' => $p,
1536                         '$connect'  => $connect,
1537                         '$wallmessage' => $wallmessage,
1538                         '$location' => $location,
1539                         '$gender'   => $gender,
1540                         '$pdesc'        => $pdesc,
1541                         '$marital'  => $marital,
1542                         '$homepage' => $homepage,
1543                         '$diaspora' => $diaspora,
1544                         '$contact_block' => $contact_block,
1545                 ));
1546
1547
1548                 $arr = array('profile' => &$profile, 'entry' => &$o);
1549
1550                 call_hooks('profile_sidebar', $arr);
1551
1552                 return $o;
1553         }
1554 }
1555
1556
1557 if(! function_exists('get_birthdays')) {
1558         function get_birthdays() {
1559
1560                 $a = get_app();
1561                 $o = '';
1562
1563                 if(! local_user() || $a->is_mobile || $a->is_tablet)
1564                         return $o;
1565
1566 //              $mobile_detect = new Mobile_Detect();
1567 //              $is_mobile = $mobile_detect->isMobile() || $mobile_detect->isTablet();
1568
1569 //              if($is_mobile)
1570 //                      return $o;
1571
1572                 $bd_format = t('g A l F d') ; // 8 AM Friday January 18
1573                 $bd_short = t('F d');
1574
1575                 $r = q("SELECT `event`.*, `event`.`id` AS `eid`, `contact`.* FROM `event`
1576                                 LEFT JOIN `contact` ON `contact`.`id` = `event`.`cid`
1577                                 WHERE `event`.`uid` = %d AND `type` = 'birthday' AND `start` < '%s' AND `finish` > '%s'
1578                                 ORDER BY `start` ASC ",
1579                                 intval(local_user()),
1580                                 dbesc(datetime_convert('UTC','UTC','now + 6 days')),
1581                                 dbesc(datetime_convert('UTC','UTC','now'))
1582                 );
1583
1584                 if($r && count($r)) {
1585                         $total = 0;
1586                         $now = strtotime('now');
1587                         $cids = array();
1588
1589                         $istoday = false;
1590                         foreach($r as $rr) {
1591                                 if(strlen($rr['name']))
1592                                         $total ++;
1593                                 if((strtotime($rr['start'] . ' +00:00') < $now) && (strtotime($rr['finish'] . ' +00:00') > $now))
1594                                         $istoday = true;
1595                         }
1596                         $classtoday = $istoday ? ' birthday-today ' : '';
1597                         if($total) {
1598                                 foreach($r as &$rr) {
1599                                         if(! strlen($rr['name']))
1600                                                 continue;
1601
1602                                         // avoid duplicates
1603
1604                                         if(in_array($rr['cid'],$cids))
1605                                                 continue;
1606                                         $cids[] = $rr['cid'];
1607
1608                                         $today = (((strtotime($rr['start'] . ' +00:00') < $now) && (strtotime($rr['finish'] . ' +00:00') > $now)) ? true : false);
1609                                         $sparkle = '';
1610                                         $url = $rr['url'];
1611                                         if($rr['network'] === NETWORK_DFRN) {
1612                                                 $sparkle = " sparkle";
1613                                                 $url = $a->get_baseurl() . '/redir/'  . $rr['cid'];
1614                                         }
1615         
1616                                         $rr['link'] = $url;
1617                                         $rr['title'] = $rr['name'];
1618                                         $rr['date'] = day_translate(datetime_convert('UTC', $a->timezone, $rr['start'], $rr['adjust'] ? $bd_format : $bd_short)) . (($today) ?  ' ' . t('[today]') : '');
1619                                         $rr['startime'] = Null;
1620                                         $rr['today'] = $today;
1621         
1622                                 }
1623                         }
1624                 }
1625                 $tpl = get_markup_template("birthdays_reminder.tpl");
1626                 return replace_macros($tpl, array(
1627                         '$baseurl' => $a->get_baseurl(),
1628                         '$classtoday' => $classtoday,
1629                         '$count' => $total,
1630                         '$event_reminders' => t('Birthday Reminders'),
1631                         '$event_title' => t('Birthdays this week:'),
1632                         '$events' => $r,
1633                         '$lbr' => '{',  // raw brackets mess up if/endif macro processing
1634                         '$rbr' => '}'
1635
1636                 ));
1637         }
1638 }
1639
1640
1641 if(! function_exists('get_events')) {
1642         function get_events() {
1643
1644                 require_once('include/bbcode.php');
1645
1646                 $a = get_app();
1647
1648                 if(! local_user() || $a->is_mobile || $a->is_tablet)
1649                         return $o;
1650
1651
1652 //              $mobile_detect = new Mobile_Detect();
1653 //              $is_mobile = $mobile_detect->isMobile() || $mobile_detect->isTablet();
1654
1655 //              if($is_mobile)
1656 //                      return $o;
1657
1658                 $bd_format = t('g A l F d') ; // 8 AM Friday January 18
1659                 $bd_short = t('F d');
1660
1661                 $r = q("SELECT `event`.* FROM `event`
1662                                 WHERE `event`.`uid` = %d AND `type` != 'birthday' AND `start` < '%s' AND `start` > '%s'
1663                                 ORDER BY `start` ASC ",
1664                                 intval(local_user()),
1665                                 dbesc(datetime_convert('UTC','UTC','now + 6 days')),
1666                                 dbesc(datetime_convert('UTC','UTC','now - 1 days'))
1667                 );
1668
1669                 if($r && count($r)) {
1670                         $now = strtotime('now');
1671                         $istoday = false;
1672                         foreach($r as $rr) {
1673                                 if(strlen($rr['name']))
1674                                         $total ++;
1675
1676                                 $strt = datetime_convert('UTC',$rr['convert'] ? $a->timezone : 'UTC',$rr['start'],'Y-m-d');
1677                                 if($strt === datetime_convert('UTC',$a->timezone,'now','Y-m-d'))
1678                                         $istoday = true;
1679                         }
1680                         $classtoday = (($istoday) ? 'event-today' : '');
1681
1682
1683                         foreach($r as &$rr) {
1684                                 if($rr['adjust'])
1685                                         $md = datetime_convert('UTC',$a->timezone,$rr['start'],'Y/m');
1686                                 else
1687                                         $md = datetime_convert('UTC','UTC',$rr['start'],'Y/m');
1688                                 $md .= "/#link-".$rr['id'];
1689
1690                                 $title = substr(strip_tags(bbcode($rr['desc'])),0,32) . '... ';
1691                                 if(! $title)
1692                                         $title = t('[No description]');
1693
1694                                 $strt = datetime_convert('UTC',$rr['convert'] ? $a->timezone : 'UTC',$rr['start']);
1695                                 $today = ((substr($strt,0,10) === datetime_convert('UTC',$a->timezone,'now','Y-m-d')) ? true : false);
1696                                 
1697                                 $rr['link'] = $md;
1698                                 $rr['title'] = $title;
1699                                 $rr['date'] = day_translate(datetime_convert('UTC', $rr['adjust'] ? $a->timezone : 'UTC', $rr['start'], $bd_format)) . (($today) ?  ' ' . t('[today]') : '');
1700                                 $rr['startime'] = $strt;
1701                                 $rr['today'] = $today;
1702                         }
1703                 }
1704
1705                 $tpl = get_markup_template("events_reminder.tpl");
1706                 return replace_macros($tpl, array(
1707                         '$baseurl' => $a->get_baseurl(),
1708                         '$classtoday' => $classtoday,
1709                         '$count' => count($r),
1710                         '$event_reminders' => t('Event Reminders'),
1711                         '$event_title' => t('Events this week:'),
1712                         '$events' => $r,
1713                 ));
1714         }
1715 }
1716
1717
1718 /**
1719  *
1720  * Wrap calls to proc_close(proc_open()) and call hook
1721  * so plugins can take part in process :)
1722  *
1723  * args:
1724  * $cmd program to run
1725  *  next args are passed as $cmd command line
1726  *
1727  * e.g.: proc_run("ls","-la","/tmp");
1728  *
1729  * $cmd and string args are surrounded with ""
1730  */
1731
1732 if(! function_exists('proc_run')) {
1733         function proc_run($cmd){
1734
1735                 $a = get_app();
1736
1737                 $args = func_get_args();
1738
1739                 $newargs = array();
1740                 if(! count($args))
1741                         return;
1742
1743                 // expand any arrays
1744
1745                 foreach($args as $arg) {
1746                         if(is_array($arg)) {
1747                                 foreach($arg as $n) {
1748                                         $newargs[] = $n;
1749                                 }
1750                         }
1751                         else
1752                                 $newargs[] = $arg;
1753                 }
1754
1755                 $args = $newargs;
1756                 
1757                 $arr = array('args' => $args, 'run_cmd' => true);
1758
1759                 call_hooks("proc_run", $arr);
1760                 if(! $arr['run_cmd'])
1761                         return;
1762
1763                 if(count($args) && $args[0] === 'php')
1764                         $args[0] = ((x($a->config,'php_path')) && (strlen($a->config['php_path'])) ? $a->config['php_path'] : 'php');
1765         
1766         // add baseurl to args. cli scripts can't construct it
1767         $args[] = $a->get_baseurl();
1768         
1769         for($x = 0; $x < count($args); $x ++)
1770                         $args[$x] = escapeshellarg($args[$x]);
1771
1772         
1773
1774                 $cmdline = implode($args," ");
1775                 if(get_config('system','proc_windows'))
1776                         proc_close(proc_open('cmd /c start /b ' . $cmdline,array(),$foo,dirname(__FILE__)));
1777                 else
1778                         proc_close(proc_open($cmdline." &",array(),$foo,dirname(__FILE__)));
1779         }
1780 }
1781
1782 if(! function_exists('current_theme')) {
1783         function current_theme(){
1784                 $app_base_themes = array('duepuntozero', 'dispy', 'quattro');
1785         
1786                 $a = get_app();
1787         
1788 //              $mobile_detect = new Mobile_Detect();
1789 //              $is_mobile = $mobile_detect->isMobile() || $mobile_detect->isTablet();
1790                 $is_mobile = $a->is_mobile || $a->is_tablet;
1791
1792                 if($is_mobile) {
1793                         if(isset($_SESSION['show-mobile']) && !$_SESSION['show-mobile']) {
1794                                 $system_theme = '';
1795                                 $theme_name = '';
1796                         }
1797                         else {
1798                                 $system_theme = ((isset($a->config['system']['mobile-theme'])) ? $a->config['system']['mobile-theme'] : '');
1799                                 $theme_name = ((isset($_SESSION) && x($_SESSION,'mobile-theme')) ? $_SESSION['mobile-theme'] : $system_theme);
1800
1801                                 if($theme_name === '---') {
1802                                         // user has selected to have the mobile theme be the same as the normal one
1803                                         $system_theme = '';
1804                                         $theme_name = '';
1805                                 }
1806                         }
1807                 }
1808                 if(!$is_mobile || ($system_theme === '' && $theme_name === '')) {
1809                         $system_theme = ((isset($a->config['system']['theme'])) ? $a->config['system']['theme'] : '');
1810                         $theme_name = ((isset($_SESSION) && x($_SESSION,'theme')) ? $_SESSION['theme'] : $system_theme);
1811                 }
1812
1813                 if($theme_name &&
1814                                 (file_exists('view/theme/' . $theme_name . '/style.css') ||
1815                                                 file_exists('view/theme/' . $theme_name . '/style.php')))
1816                         return($theme_name);
1817         
1818                 foreach($app_base_themes as $t) {
1819                         if(file_exists('view/theme/' . $t . '/style.css')||
1820                                         file_exists('view/theme/' . $t . '/style.php'))
1821                                 return($t);
1822                 }
1823         
1824                 $fallback = array_merge(glob('view/theme/*/style.css'),glob('view/theme/*/style.php'));
1825                 if(count($fallback))
1826                         return (str_replace('view/theme/','', substr($fallback[0],0,-10)));
1827         
1828         }
1829 }
1830
1831 /*
1832  * Return full URL to theme which is currently in effect.
1833 * Provide a sane default if nothing is chosen or the specified theme does not exist.
1834 */
1835 if(! function_exists('current_theme_url')) {
1836         function current_theme_url() {
1837                 global $a;
1838                 $t = current_theme();
1839                 if (file_exists('view/theme/' . $t . '/style.php'))
1840                         return($a->get_baseurl() . '/view/theme/' . $t . '/style.pcss');
1841                 return($a->get_baseurl() . '/view/theme/' . $t . '/style.css');
1842         }
1843 }
1844
1845 if(! function_exists('feed_birthday')) {
1846         function feed_birthday($uid,$tz) {
1847
1848                 /**
1849                  *
1850                  * Determine the next birthday, but only if the birthday is published
1851                  * in the default profile. We _could_ also look for a private profile that the
1852                  * recipient can see, but somebody could get mad at us if they start getting
1853                  * public birthday greetings when they haven't made this info public.
1854                  *
1855                  * Assuming we are able to publish this info, we are then going to convert
1856                  * the start time from the owner's timezone to UTC.
1857                  *
1858                  * This will potentially solve the problem found with some social networks
1859                  * where birthdays are converted to the viewer's timezone and salutations from
1860                  * elsewhere in the world show up on the wrong day. We will convert it to the
1861                  * viewer's timezone also, but first we are going to convert it from the birthday
1862                  * person's timezone to GMT - so the viewer may find the birthday starting at
1863                  * 6:00PM the day before, but that will correspond to midnight to the birthday person.
1864                  *
1865                  */
1866
1867         
1868                 $birthday = '';
1869
1870                 if(! strlen($tz))
1871                         $tz = 'UTC';
1872
1873                 $p = q("SELECT `dob` FROM `profile` WHERE `is-default` = 1 AND `uid` = %d LIMIT 1",
1874                                 intval($uid)
1875                 );
1876
1877                 if($p && count($p)) {
1878                         $tmp_dob = substr($p[0]['dob'],5);
1879                         if(intval($tmp_dob)) {
1880                                 $y = datetime_convert($tz,$tz,'now','Y');
1881                                 $bd = $y . '-' . $tmp_dob . ' 00:00';
1882                                 $t_dob = strtotime($bd);
1883                                 $now = strtotime(datetime_convert($tz,$tz,'now'));
1884                                 if($t_dob < $now)
1885                                         $bd = $y + 1 . '-' . $tmp_dob . ' 00:00';
1886                                 $birthday = datetime_convert($tz,'UTC',$bd,ATOM_TIME);
1887                         }
1888                 }
1889
1890                 return $birthday;
1891         }
1892 }
1893
1894 if(! function_exists('is_site_admin')) {
1895         function is_site_admin() {
1896                 $a = get_app();
1897                 if(local_user() && x($a->user,'email') && x($a->config,'admin_email') && ($a->user['email'] === $a->config['admin_email']))
1898                         return true;
1899                 return false;
1900         }
1901 }
1902
1903
1904 if(! function_exists('load_contact_links')) {
1905         function load_contact_links($uid) {
1906
1907                 $a = get_app();
1908
1909                 $ret = array();
1910
1911                 if(! $uid || x($a->contacts,'empty'))
1912                         return;
1913
1914                 $r = q("SELECT `id`,`network`,`url`,`thumb` FROM `contact` WHERE `uid` = %d AND `self` = 0 AND `blocked` = 0 ",
1915                                 intval($uid)
1916                 );
1917                 if(count($r)) {
1918                         foreach($r as $rr){
1919                                 $url = normalise_link($rr['url']);
1920                                 $ret[$url] = $rr;
1921                         }
1922                 }
1923                 else
1924                         $ret['empty'] = true;
1925                 $a->contacts = $ret;
1926                 return;
1927         }
1928 }
1929
1930 if(! function_exists('profile_tabs')){
1931         function profile_tabs($a, $is_owner=False, $nickname=Null){
1932                 //echo "<pre>"; var_dump($a->user); killme();
1933         
1934                 if (is_null($nickname))
1935                         $nickname  = $a->user['nickname'];
1936                 
1937                 if(x($_GET,'tab'))
1938                         $tab = notags(trim($_GET['tab']));
1939         
1940                 $url = $a->get_baseurl() . '/profile/' . $nickname;
1941
1942                 $tabs = array(
1943                         array(
1944                                 'label'=>t('Status'),
1945                                 'url' => $url,
1946                                 'sel' => ((!isset($tab)&&$a->argv[0]=='profile')?'active':''),
1947                                 'title' => t('Status Messages and Posts'),
1948                                 'id' => 'status-tab',
1949                         ),
1950                         array(
1951                                 'label' => t('Profile'),
1952                                 'url'   => $url.'/?tab=profile',
1953                                 'sel'   => ((isset($tab) && $tab=='profile')?'active':''),
1954                                 'title' => t('Profile Details'),
1955                                 'id' => 'profile-tab',
1956                         ),
1957                         array(
1958                                 'label' => t('Photos'),
1959                                 'url'   => $a->get_baseurl() . '/photos/' . $nickname,
1960                                 'sel'   => ((!isset($tab)&&$a->argv[0]=='photos')?'active':''),
1961                                 'title' => t('Photo Albums'),
1962                                 'id' => 'photo-tab',
1963                         ),
1964                         array(
1965                                 'label' => t('Videos'),
1966                                 'url'   => $a->get_baseurl() . '/videos/' . $nickname,
1967                                 'sel'   => ((!isset($tab)&&$a->argv[0]=='videos')?'active':''),
1968                                 'title' => t('Videos'),
1969                                 'id' => 'video-tab',
1970                         ),
1971                 );
1972         
1973                 if ($is_owner){
1974                         $tabs[] = array(
1975                                 'label' => t('Events'),
1976                                 'url'   => $a->get_baseurl() . '/events',
1977                                 'sel'   =>((!isset($tab)&&$a->argv[0]=='events')?'active':''),
1978                                 'title' => t('Events and Calendar'),
1979                                 'id' => 'events-tab',
1980                         );
1981                         $tabs[] = array(
1982                                 'label' => t('Personal Notes'),
1983                                 'url'   => $a->get_baseurl() . '/notes',
1984                                 'sel'   =>((!isset($tab)&&$a->argv[0]=='notes')?'active':''),
1985                                 'title' => t('Only You Can See This'),
1986                                 'id' => 'notes-tab',
1987                         );
1988                 }
1989
1990
1991                 $arr = array('is_owner' => $is_owner, 'nickname' => $nickname, 'tab' => (($tab) ? $tab : false), 'tabs' => $tabs);
1992                 call_hooks('profile_tabs', $arr);
1993         
1994                 $tpl = get_markup_template('common_tabs.tpl');
1995
1996                 return replace_macros($tpl,array('$tabs' => $arr['tabs']));
1997         }
1998 }
1999
2000 function get_my_url() {
2001         if(x($_SESSION,'my_url'))
2002                 return $_SESSION['my_url'];
2003         return false;
2004 }
2005
2006 function zrl_init(&$a) {
2007         $tmp_str = get_my_url();
2008         if(validate_url($tmp_str)) {
2009                 proc_run('php','include/gprobe.php',bin2hex($tmp_str));
2010                 $arr = array('zrl' => $tmp_str, 'url' => $a->cmd);
2011                 call_hooks('zrl_init',$arr);
2012         }
2013 }
2014
2015 function zrl($s,$force = false) {
2016         if(! strlen($s))
2017                 return $s;
2018         if((! strpos($s,'/profile/')) && (! $force))
2019                 return $s;
2020         if($force && substr($s,-1,1) !== '/')
2021                 $s = $s . '/';
2022         $achar = strpos($s,'?') ? '&' : '?';
2023         $mine = get_my_url();
2024         if($mine and ! link_compare($mine,$s))
2025                 return $s . $achar . 'zrl=' . urlencode($mine);
2026         return $s;
2027 }
2028
2029 /**
2030 * returns querystring as string from a mapped array
2031 *
2032 * @param params Array 
2033 * @return string
2034 */
2035 function build_querystring($params, $name=null) { 
2036     $ret = ""; 
2037     foreach($params as $key=>$val) {
2038         if(is_array($val)) { 
2039             if($name==null) {
2040                 $ret .= build_querystring($val, $key); 
2041             } else {
2042                 $ret .= build_querystring($val, $name."[$key]");    
2043             }
2044         } else {
2045             $val = urlencode($val);
2046             if($name!=null) {
2047                 $ret.=$name."[$key]"."=$val&"; 
2048             } else {
2049                 $ret.= "$key=$val&"; 
2050             }
2051         } 
2052     } 
2053     return $ret;    
2054 }
2055
2056 function explode_querystring($query) {
2057         $arg_st = strpos($query, '?');
2058         if($arg_st !== false) {
2059                 $base = substr($query, 0, $arg_st);
2060                 $arg_st += 1;
2061         }
2062         else {
2063                 $base = '';
2064                 $arg_st = 0;
2065         }
2066
2067         $args = explode('&', substr($query, $arg_st));
2068         foreach($args as $k=>$arg) {
2069                 if($arg === '')
2070                         unset($args[$k]);
2071         }
2072         $args = array_values($args);
2073
2074         if(!$base) {
2075                 $base = $args[0];
2076                 unset($args[0]);
2077                 $args = array_values($args);
2078         }
2079
2080         return array(
2081                 'base' => $base,
2082                 'args' => $args,
2083         );
2084 }
2085
2086 /**
2087 * Returns the complete URL of the current page, e.g.: http(s)://something.com/network
2088 *
2089 * Taken from http://webcheatsheet.com/php/get_current_page_url.php
2090 */
2091 function curPageURL() {
2092         $pageURL = 'http';
2093         if ($_SERVER["HTTPS"] == "on") {$pageURL .= "s";}
2094         $pageURL .= "://";
2095         if ($_SERVER["SERVER_PORT"] != "80" && $_SERVER["SERVER_PORT"] != "443") {
2096                 $pageURL .= $_SERVER["SERVER_NAME"].":".$_SERVER["SERVER_PORT"].$_SERVER["REQUEST_URI"];
2097         } else {
2098                 $pageURL .= $_SERVER["SERVER_NAME"].$_SERVER["REQUEST_URI"];
2099         }
2100         return $pageURL;
2101 }
2102
2103 function random_digits($digits) {
2104         $rn = '';
2105         for($i = 0; $i < $digits; $i++) {
2106                 $rn .= rand(0,9);
2107         }
2108         return $rn;
2109 }
2110
2111 function get_cachefile($file, $writemode = true) {
2112         $cache = get_config("system","itemcache");
2113
2114         if ((! $cache) || (! is_dir($cache)))
2115                 return("");
2116
2117         $subfolder = $cache."/".substr($file, 0, 2);
2118
2119         $cachepath = $subfolder."/".$file;
2120
2121         if ($writemode) {
2122                 if (!is_dir($subfolder)) {
2123                         mkdir($subfolder);
2124                         chmod($subfolder, 0777);
2125                 }
2126         }
2127
2128         return($cachepath);
2129 }
2130
2131 function clear_cache($basepath = "", $path = "") {
2132         if ($path == "") {
2133                 $basepath = get_config('system','itemcache');
2134                 $path = $basepath;
2135         }
2136
2137         if (($path == "") OR (!is_dir($path)))
2138                 return;
2139
2140         if (substr(realpath($path), 0, strlen($basepath)) != $basepath)
2141                 return;
2142
2143         $cachetime = (int)get_config('system','itemcache_duration');
2144         if ($cachetime == 0)
2145                 $cachetime = 86400;
2146
2147         if ($dh = opendir($path)) {
2148                 while (($file = readdir($dh)) !== false) {
2149                         $fullpath = $path."/".$file;
2150                         if ((filetype($fullpath) == "dir") and ($file != ".") and ($file != ".."))
2151                                 clear_cache($basepath, $fullpath);
2152                         if ((filetype($fullpath) == "file") and (filectime($fullpath) < (time() - $cachetime)))
2153                                 unlink($fullpath);
2154                 }
2155                 closedir($dh);
2156         }
2157 }
2158
2159 function set_template_engine(&$a, $engine = 'internal') {
2160 // This function is no longer necessary, but keep it as a wrapper to the class method
2161 // to avoid breaking themes again unnecessarily
2162
2163         $a->set_template_engine($engine);
2164 }
2165