]> git.mxchange.org Git - friendica.git/blobdiff - boot.php
Merge branch 'master' of git://github.com/friendika/friendika
[friendica.git] / boot.php
index 9f6f88d68903cf7643670f33d6bb407f9099dd7a..197b6d2381c98c9dd8927379f068d138f05b67c2 100644 (file)
--- a/boot.php
+++ b/boot.php
@@ -2,7 +2,7 @@
 
 set_time_limit(0);
 
-define ( 'BUILD_ID',               1026   );
+define ( 'BUILD_ID',               1030   );
 define ( 'DFRN_PROTOCOL_VERSION',  '2.0'  );
 
 define ( 'EOL',                    "<br />\r\n"     );
@@ -35,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);
 
 /**
  *
@@ -174,8 +181,10 @@ class App {
        public  $pager;
        public  $strings;   
        public  $path;
+       public  $hooks;
        public  $interactive = true;
 
+
        private $scheme;
        private $hostname;
        private $baseurl;
@@ -202,14 +211,14 @@ class App {
                if((x($_SERVER,'QUERY_STRING')) && substr($_SERVER['QUERY_STRING'],0,2) === "q=")
                        $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;
 
@@ -370,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) {
@@ -402,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;
 }}
 
@@ -1044,6 +1118,23 @@ function set_config($family,$key,$value) {
 }}
 
 
+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) {
 
@@ -1108,11 +1199,12 @@ function set_pconfig($uid,$family,$key,$value) {
                return $ret;
        }
        $ret = q("UPDATE `pconfig` SET `v` = '%s' WHERE `uid` = %d AND `cat` = '%s' AND `k` = '%s' LIMIT 1",
-               intval($uid),
                dbesc($value),
+               intval($uid),
                dbesc($family),
                dbesc($key)
        );
+
        if($ret)
                return $value;
        return $ret;
@@ -1650,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",
@@ -1662,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">';
@@ -1685,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;
 
 }}
@@ -1924,7 +2026,7 @@ function profile_sidebar($profile) {
 
        $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,'key') == 1) ? '<div class="key" style="display:none;">' . $profile['pubkey'] . '</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>' : '');
 
@@ -1944,5 +2046,69 @@ function profile_sidebar($profile) {
                '$homepage' => $homepage
        ));
 
+       call_hooks('profile_sidebar', $o);
+
        return $o;
-}}
\ No newline at end of file
+}}
+
+
+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);
+                               }
+                       }
+               }
+       }
+}}
+