]> git.mxchange.org Git - friendica.git/blobdiff - boot.php
Merge branch 'master' of git://github.com/friendika/friendika
[friendica.git] / boot.php
index 6530973339e27a22a92744047339fb09a446ad75..197b6d2381c98c9dd8927379f068d138f05b67c2 100644 (file)
--- a/boot.php
+++ b/boot.php
@@ -2,12 +2,13 @@
 
 set_time_limit(0);
 
-define ( 'BUILD_ID',               1022   );
+define ( 'BUILD_ID',               1030   );
 define ( 'DFRN_PROTOCOL_VERSION',  '2.0'  );
 
 define ( 'EOL',                    "<br />\r\n"     );
 define ( 'ATOM_TIME',              'Y-m-d\TH:i:s\Z' );
-
+define ( 'DOWN_ARROW',             '&#x21e9;'       );
+         
 /**
  * log levels
  */
@@ -34,6 +35,13 @@ define ( 'REL_VIP',        1);
 define ( 'REL_FAN',        2);
 define ( 'REL_BUD',        3);
 
+/**
+ * Hook array order
+ */
+define ( 'HOOK_HOOK',      0);
+define ( 'HOOK_FILE',      1);
+define ( 'HOOK_FUNCTION',  2);
 
 /**
  *
@@ -156,6 +164,7 @@ if(! class_exists('App')) {
 class App {
 
        public  $module_loaded = false;
+       public  $query_string;
        public  $config;
        public  $page;
        public  $profile;
@@ -172,8 +181,10 @@ class App {
        public  $pager;
        public  $strings;   
        public  $path;
+       public  $hooks;
        public  $interactive = true;
 
+
        private $scheme;
        private $hostname;
        private $baseurl;
@@ -188,6 +199,8 @@ class App {
                $this->page = array();
                $this->pager= array();
 
+               $this->query_string = '';
+
                $this->scheme = ((isset($_SERVER['HTTPS']) && ($_SERVER['HTTPS']))      ?  'https' : 'http' );
 
                if(x($_SERVER,'SERVER_NAME'))
@@ -196,14 +209,35 @@ class App {
                set_include_path("include/$this->hostname" . PATH_SEPARATOR . 'include' . PATH_SEPARATOR . '.' );
 
                if((x($_SERVER,'QUERY_STRING')) && substr($_SERVER['QUERY_STRING'],0,2) === "q=")
-                       $_SERVER['QUERY_STRING'] = substr($_SERVER['QUERY_STRING'],2);
+                       $this->query_string = substr($_SERVER['QUERY_STRING'],2);
                if(x($_GET,'q'))
-                       $this->cmd = trim($_GET['q'],'/');
+                       $this->cmd = trim($_GET['q'],'/\\');
+
+               /** 
+                * Figure out if we are running at the top of a domain
+                * or in a sub-directory and adjust accordingly
+                */
 
-               $path = trim(dirname($_SERVER['SCRIPT_NAME']),'/');
+               $path = trim(dirname($_SERVER['SCRIPT_NAME']),'/\\');
                if(isset($path) && strlen($path) && ($path != $this->path))
                        $this->path = $path;
 
+
+               /**
+                *
+                * Break the URL path into C style argc/argv style arguments for our
+                * modules. Given "http://example.com/module/arg1/arg2", $this->argc
+                * will be 3 (integer) and $this->argv will contain:
+                *   [0] => 'module'
+                *   [1] => 'arg1'
+                *   [2] => 'arg2'
+                *
+                *
+                * There will always be one argument. If provided a naked domain
+                * URL, $this->argv[0] is set to "home".
+                *
+                */
+
                $this->argv = explode('/',$this->cmd);
                $this->argc = count($this->argv);
                if((array_key_exists('0',$this->argv)) && strlen($this->argv[0])) {
@@ -213,10 +247,20 @@ class App {
                        $this->module = 'home';
                }
 
+               /**
+                * Special handling for the webfinger/lrdd host XRD file
+                * Just spit out the contents and exit.
+                */
+
                if($this->cmd === '.well-known/host-meta')
                        require_once('include/hostxrd.php');
 
 
+               /**
+                * See if there is any page number information, and initialise 
+                * pagination
+                */
+
                $this->pager['page'] = ((x($_GET,'page')) ? $_GET['page'] : 1);
                $this->pager['itemspage'] = 50;
                $this->pager['start'] = ($this->pager['page'] * $this->pager['itemspage']) - $this->pager['itemspage'];
@@ -335,7 +379,8 @@ function system_unavailable() {
 
 // Primarily involved with database upgrade, but also sets the 
 // base url for use in cmdline programs which don't have
-// $_SERVER variables.
+// $_SERVER variables, and synchronising the state of installed plugins.
+
 
 if(! function_exists('check_config')) {
 function check_config(&$a) {
@@ -367,6 +412,70 @@ function check_config(&$a) {
                        set_config('system','build', BUILD_ID);
                }
        }
+
+       /**
+        *
+        * Synchronise plugins:
+        *
+        * $a->config['system']['addon'] contains a comma-separated list of names
+        * of plugins/addons which are used on this system. 
+        * Go through the database list of already installed addons, and if we have
+        * an entry, but it isn't in the config list, call the uninstall procedure
+        * and mark it uninstalled in the database (for now we'll remove it).
+        * Then go through the config list and if we have a plugin that isn't installed,
+        * call the install procedure and add it to the database.
+        *
+        */
+
+       $r = q("SELECT * FROM `addon` WHERE `installed` = 1");
+       if(count($r))
+               $installed = $r;
+       else
+               $installed = array();
+
+       $plugins = get_config('system','addon');
+       $plugins_arr = array();
+
+       if($plugins)
+               $plugins_arr = explode(',',str_replace(' ', '',$plugins));
+
+       $installed_arr = array();
+
+       if(count($installed)) {
+               foreach($installed as $i) {
+                       if(! in_array($i['name'],$plugins_arr)) {
+                               logger("Addons: uninstalling " . $i['name']);
+                               q("DELETE FROM `addon` WHERE `id` = %d LIMIT 1",
+                                       intval($i['id'])
+                               );
+
+                               @include_once('addon/' . $i['name'] . '/' . $i['name'] . '.php');
+                               if(function_exists($i['name'] . '_uninstall')) {
+                                       $func = $i['name'] . '_uninstall';
+                                       $func();
+                               }
+                       }
+                       else
+                               $installed_arr[] = $i['name'];
+               }
+       }
+
+       if(count($plugins_arr)) {
+               foreach($plugins_arr as $p) {
+                       if(! in_array($p,$installed_arr)) {
+                               logger("Addons: installing " . $p);
+                               @include_once('addon/' . $p . '/' . $p . '.php');
+                               if(function_exists($p . '_install')) {
+                                       $func = $p . '_install';
+                                       $func();
+                                       $r = q("INSERT INTO `addon` (`name`, `installed`) VALUES ( '%s', 1 ) ",
+                                               dbesc($p)
+                                       );
+                               }
+                       }
+               }
+       }
+
        return;
 }}
 
@@ -849,7 +958,7 @@ function hex2bin($s) {
 if(! function_exists('paginate')) {
 function paginate(&$a) {
        $o = '';
-       $stripped = preg_replace('/(&page=[0-9]*)/','',$_SERVER['QUERY_STRING']);
+       $stripped = preg_replace('/(&page=[0-9]*)/','',$a->query_string);
        $stripped = str_replace('q=','',$stripped);
        $stripped = trim($stripped,'/');
        $url = $a->get_baseurl() . '/' . $stripped;
@@ -1008,6 +1117,114 @@ function set_config($family,$key,$value) {
        return $ret;
 }}
 
+
+if(! function_exists('load_pconfig')) {
+function load_pconfig($uid,$family) {
+       global $a;
+       $r = q("SELECT * FROM `pconfig` WHERE `cat` = '%s' AND `uid` = %d",
+               dbesc($family),
+               intval($uid)
+       );
+       if(count($r)) {
+               foreach($r as $rr) {
+                       $k = $rr['k'];
+                       $a->config[$uid][$family][$k] = $rr['v'];
+               }
+       }
+}}
+
+
+
+if(! function_exists('get_pconfig')) {
+function get_pconfig($uid,$family, $key, $instore = false) {
+
+       global $a;
+
+       if(! $instore) {
+               if(isset($a->config[$uid][$family][$key])) {
+                       if($a->config[$uid][$family][$key] === '!<unset>!') {
+                               return false;
+                       }
+                       return $a->config[$uid][$family][$key];
+               }
+       }
+       $ret = q("SELECT `v` FROM `pconfig` WHERE `uid` = %d AND `cat` = '%s' AND `k` = '%s' LIMIT 1",
+               intval($uid),
+               dbesc($family),
+               dbesc($key)
+       );
+       if(count($ret)) {
+               $a->config[$uid][$family][$key] = $ret[0]['v'];
+               return $ret[0]['v'];
+       }
+       else {
+               $a->config[$uid][$family][$key] = '!<unset>!';
+       }
+       return false;
+}}
+
+if(! function_exists('del_config')) {
+function del_config($family,$key) {
+
+       global $a;
+       if(x($a->config[$family],$key))
+               unset($a->config[$family][$key]);
+       $ret = q("DELETE FROM `config` WHERE `cat` = '%s' AND `k` = '%s' LIMIT 1",
+               dbesc($cat),
+               dbesc($key)
+       );
+       return $ret;
+}}
+
+
+
+// Same as above functions except these are for personal config storage and take an
+// additional $uid argument.
+
+if(! function_exists('set_pconfig')) {
+function set_pconfig($uid,$family,$key,$value) {
+
+       global $a;
+       $a->config[$uid][$family][$key] = $value;
+
+       if(get_pconfig($uid,$family,$key,true) === false) {
+               $ret = q("INSERT INTO `pconfig` ( `uid`, `cat`, `k`, `v` ) VALUES ( %d, '%s', '%s', '%s' ) ",
+                       intval($uid),
+                       dbesc($family),
+                       dbesc($key),
+                       dbesc($value)
+               );
+               if($ret) 
+                       return $value;
+               return $ret;
+       }
+       $ret = q("UPDATE `pconfig` SET `v` = '%s' WHERE `uid` = %d AND `cat` = '%s' AND `k` = '%s' LIMIT 1",
+               dbesc($value),
+               intval($uid),
+               dbesc($family),
+               dbesc($key)
+       );
+
+       if($ret)
+               return $value;
+       return $ret;
+}}
+
+if(! function_exists('del_pconfig')) {
+function del_pconfig($uid,$family,$key) {
+
+       global $a;
+       if(x($a->config[$uid][$family],$key))
+               unset($a->config[$uid][$family][$key]);
+       $ret = q("DELETE FROM `pconfig` WHERE `uid` = %d AND `cat` = '%s' AND `k` = '%s' LIMIT 1",
+               intval($uid),
+               dbesc($cat),
+               dbesc($key)
+       );
+       return $ret;
+}}
+
+
 // convert an XML document to a normalised, case-corrected array
 // used by webfinger
 
@@ -1525,6 +1742,11 @@ if(! function_exists('contact_block')) {
 function contact_block() {
        $o = '';
        $a = get_app();
+
+       $shown = get_pconfig($a->profile['uid'],'system','display_friend_count');
+       if(! $shown)
+               $shown = 24;
+
        if((! is_array($a->profile)) || ($a->profile['hide-friends']))
                return $o;
        $r = q("SELECT COUNT(*) AS `total` FROM `contact` WHERE `uid` = %d AND `self` = 0 AND `blocked` = 0 and `pending` = 0",
@@ -1537,8 +1759,9 @@ function contact_block() {
                $o .= '<h4 class="contact-h4">' . t('No contacts') . '</h4>';
                return $o;
        }
-       $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `self` = 0 AND `blocked` = 0 and `pending` = 0 ORDER BY RAND() LIMIT 24",
-                       intval($a->profile['uid'])
+       $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `self` = 0 AND `blocked` = 0 and `pending` = 0 ORDER BY RAND() LIMIT %d",
+                       intval($a->profile['uid']),
+                       intval($shown)
        );
        if(count($r)) {
                $o .= '<h4 class="contact-h4">' . $total . ' ' . t('Contacts') . '</h4><div id="contact-block">';
@@ -1560,6 +1783,10 @@ function contact_block() {
                $o .=  '<div id="viewcontacts"><a id="viewcontacts-link" href="viewcontacts/' . $a->profile['nickname'] . '">' . t('View Contacts') . '</a></div>';
                
        }
+
+       $arr = array('contacts' => $r, 'output' => $o);
+
+       call_hooks('contact_block_end', $arr);
        return $o;
 
 }}
@@ -1622,12 +1849,34 @@ function aes_encrypt($val,$ky)
     return mcrypt_encrypt($enc, $key, $val, $mode, mcrypt_create_iv( mcrypt_get_iv_size($enc, $mode), MCRYPT_DEV_URANDOM));
 }} 
 
+
+/**
+ *
+ * Function: linkify
+ *
+ * Replace naked text hyperlink with HTML formatted hyperlink
+ *
+ */
+
 if(! function_exists('linkify')) {
 function linkify($s) {
        $s = preg_replace("/(https?\:\/\/[a-zA-Z0-9\:\/\-\?\&\.\=\_\~\#\'\%]*)/", ' <a href="$1" >$1</a>', $s);
        return($s);
 }}
 
+
+/**
+ * 
+ * Function: smilies
+ *
+ * Description:
+ * Replaces text emoticons with graphical images
+ *
+ * @Parameter: string $s
+ *
+ * Returns string
+ */
+
 if(! function_exists('smilies')) {
 function smilies($s) {
        $a = get_app();
@@ -1647,4 +1896,219 @@ function smilies($s) {
                '<img src="' . $a->get_baseurl() . '/images/smiley-surprised.gif" alt="8-|" />',
                '<img src="' . $a->get_baseurl() . '/images/smiley-surprised.gif" alt="8-O" />'
        ), $s);
-}}
\ No newline at end of file
+}}
+
+
+/**
+ *
+ * Function : profile_load
+ * @parameter App    $a
+ * @parameter string $nickname
+ * @parameter int    $profile
+ *
+ * Summary: Loads a profile into the page sidebar. 
+ * The function requires a writeable copy of the main App structure, and the nickname
+ * of a registered local account.
+ *
+ * If the viewer is an authenticated remote viewer, the profile displayed is the
+ * one that has been configured for his/her viewing in the Contact manager.
+ * Passing a non-zero profile ID can also allow a preview of a selected profile
+ * by the owner.
+ *
+ * Profile information is placed in the App structure for later retrieval.
+ * Honours the owner's chosen theme for display. 
+ *
+ */
+
+if(! function_exists('profile_load')) {
+function profile_load(&$a, $nickname, $profile = 0) {
+       if(remote_user()) {
+               $r = q("SELECT `profile-id` FROM `contact` WHERE `id` = %d LIMIT 1",
+                       intval($_SESSION['visitor_id']));
+               if(count($r))
+                       $profile = $r[0]['profile-id'];
+       } 
+
+       $r = null;
+
+       if($profile) {
+               $profile_int = intval($profile);
+               $r = q("SELECT `profile`.`uid` AS `profile_uid`, `profile`.* , `user`.* FROM `profile` 
+                       LEFT JOIN `user` ON `profile`.`uid` = `user`.`uid`
+                       WHERE `user`.`nickname` = '%s' AND `profile`.`id` = %d LIMIT 1",
+                       dbesc($nickname),
+                       intval($profile_int)
+               );
+       }
+       if(! count($r)) {       
+               $r = q("SELECT `profile`.`uid` AS `profile_uid`, `profile`.* , `user`.* FROM `profile` 
+                       LEFT JOIN `user` ON `profile`.`uid` = `user`.`uid`
+                       WHERE `user`.`nickname` = '%s' AND `profile`.`is-default` = 1 LIMIT 1",
+                       dbesc($nickname)
+               );
+       }
+
+       if(($r === false) || (! count($r))) {
+               notice( t('No profile') . EOL );
+               $a->error = 404;
+               return;
+       }
+
+       $a->profile = $r[0];
+
+
+       $a->page['title'] = $a->profile['name'];
+       $_SESSION['theme'] = $a->profile['theme'];
+
+       if(! (x($a->page,'aside')))
+               $a->page['aside'] = '';
+
+       $a->page['aside'] .= profile_sidebar($a->profile);
+       $a->page['aside'] .= contact_block();
+
+       return;
+}}
+
+
+/**
+ *
+ * Function: profile_sidebar
+ *
+ * Formats a profile for display in the sidebar.
+ * It is very difficult to templatise the HTML completely
+ * because of all the conditional logic.
+ *
+ * @parameter: array $profile
+ *
+ * Returns HTML string stuitable for sidebar inclusion
+ * Exceptions: Returns empty string if passed $profile is wrong type or not populated
+ *
+ */
+
+
+if(! function_exists('profile_sidebar')) {
+function profile_sidebar($profile) {
+
+       $o = '';
+       $location = '';
+       $address = false;
+
+       if((! is_array($profile)) && (! count($profile)))
+               return $o;
+
+       $fullname = '<div class="fn">' . $profile['name'] . '</div>';
+
+       $tabs = '';
+
+       $photo = '<div id="profile=photo-wrapper"><img class="photo" src="' . $profile['photo'] . '" alt="' . $profile['name'] . '" /></div>';
+
+       $connect = (($profile['uid'] != local_user()) ? '<li><a id="dfrn-request-link" href="dfrn_request/' . $profile['nickname'] . '">' . t('Connect') . '</a></li>' : '');
+       if((x($profile,'address') == 1) 
+               || (x($profile,'locality') == 1) 
+               || (x($profile,'region') == 1) 
+               || (x($profile,'postal-code') == 1) 
+               || (x($profile,'country-name') == 1))
+               $address = true;
+
+       if($address) {
+               $location .= '<div class="location"><span class="location-label">' . t('Location:') . '</span> <div class="adr">';
+               $location .= ((x($profile,'address') == 1) ? '<div class="street-address">' . $profile['address'] . '</div>' : '');
+               $location .= (((x($profile,'locality') == 1) || (x($profile,'region') == 1) || (x($profile,'postal-code') == 1)) 
+                       ? '<span class="city-state-zip"><span class="locality">' . $profile['locality'] . '</span>' 
+                       . ((x($profile['locality']) == 1) ? t(', ') : '') 
+                       . '<span class="region">' . $profile['region'] . '</span>'
+                       . ' <span class="postal-code">' . $profile['postal-code'] . '</span></span>' : '');
+               $location .= ((x($profile,'country-name') == 1) ? ' <span class="country-name">' . $profile['country-name'] . '</span>' : '');  
+               $location .= '</div></div><div class="profile-clear"></div>';
+
+       }
+
+       $gender = ((x($profile,'gender') == 1) ? '<div class="mf"><span class="gender-label">' . t('Gender:') . '</span> <span class="x-gender">' . $profile['gender'] . '</span></div><div class="profile-clear"></div>' : '');
+
+       $pubkey = ((x($profile,'pubkey') == 1) ? '<div class="key" style="display:none;">' . $profile['pubkey'] . '</div>' : '');
+
+       $marital = ((x($profile,'marital') == 1) ? '<div class="marital"><span class="marital-label"><span class="heart">&hearts;</span> ' . t('Status:') . ' </span><span class="marital-text">' . $profile['marital'] . '</span></div></div><div class="profile-clear"></div>' : '');
+
+       $homepage = ((x($profile,'homepage') == 1) ? '<div class="homepage"><span class="homepage-label">' . t('Homepage:') . ' </span><span class="homepage-url">' . linkify($profile['homepage']) . '</span></div></div><div class="profile-clear"></div>' : '');
+
+       $tpl = load_view_file('view/profile_vcard.tpl');
+
+       $o .= replace_macros($tpl, array(
+               '$fullname' => $fullname,
+               '$tabs'     => $tabs,
+               '$photo'    => $photo,
+               '$connect'  => $connect,                
+               '$location' => $location,
+               '$gender'   => $gender,
+               '$pubkey'   => $pubkey,
+               '$marital'  => $marital,
+               '$homepage' => $homepage
+       ));
+
+       call_hooks('profile_sidebar', $o);
+
+       return $o;
+}}
+
+
+if(! function_exists('register_hook')) {
+function register_hook($hook,$file,$function) {
+
+       $r = q("SELECT * FROM `hook` WHERE `hook` = '%s' AND `file` = '%s' AND `function` = '%s' LIMIT 1",
+               dbesc($hook),
+               dbesc($file),
+               dbesc($function)
+       );
+       if(count($r))
+               return true;
+
+       $r = q("INSERT INTO `hook` (`hook`, `file`, `function`) VALUES ( '%s', '%s', '%s' ) ",
+               dbesc($hook),
+               dbesc($file),
+               dbesc($function)
+       );
+       return $r;
+}}
+
+if(! function_exists('unregister_hook')) {
+function unregister_hook($hook,$file,$function) {
+
+       $r = q("DELETE FROM `hook` WHERE `hook` = '%s' AND `file` = '%s' AND `function` = '%s' LIMIT 1",
+               dbesc($hook),
+               dbesc($file),
+               dbesc($function)
+       );
+       return $r;
+}}
+
+
+if(! function_exists('load_hooks')) {
+function load_hooks() {
+       $a = get_app();
+       $r = q("SELECT * FROM `hook` WHERE 1");
+       if(count($r)) {
+               foreach($r as $rr) {
+                       $a->hooks[] = array($rr['hook'], $rr['file'], $rr['function']);
+               }
+       }
+}}
+
+
+if(! function_exists('call_hooks')) {
+function call_hooks($name, &$data = null) {
+       $a = get_app();
+
+       if(count($a->hooks)) {
+               foreach($a->hooks as $hook) {
+                       if($hook[HOOK_HOOK] === $name) {
+                               @include_once($hook[HOOK_FILE]);
+                               if(function_exists($hook[HOOK_FUNCTION])) {
+                                       $func = $hook[HOOK_FUNCTION];
+                                       $func($a,$data);
+                               }
+                       }
+               }
+       }
+}}
+