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