]> git.mxchange.org Git - friendica.git/blobdiff - include/directory.php
Remove unrecommended leading backslash for fully qualified namespaces
[friendica.git] / include / directory.php
index 2c9daa5ea6f3b025241a0a2d65f79bc734c417c1..e507a939f8cd36ef37e3ed7cceec44bd49253b99 100644 (file)
@@ -1,38 +1,43 @@
 <?php
-require_once("boot.php");
-
-function directory_run($argv, $argc){
-  global $a, $db;
-
-  if(is_null($a)){
-    $a = new App;
-  }
-  
-  if(is_null($db)){
-    @include(".htconfig.php");
-    require_once("dba.php");
-    $db = new dba($db_host, $db_user, $db_pass, $db_data);
-    unset($db_host, $db_user, $db_pass, $db_data);
-  };
-
-       if($argc != 2)
-               return;
 
-       load_config('system');
+use Friendica\Core\Config;
 
-       $a->set_baseurl(get_config('system','url'));
+function directory_run(&$argv, &$argc){
+       $dir = Config::get('system', 'directory');
 
-       $dir = get_config('system','directory_submit_url');
+       if (!strlen($dir)) {
+               return;
+       }
 
-       if(! strlen($dir))
+       if ($argc < 2) {
+               directory_update_all();
                return;
+       }
+
+       $dir .= "/submit";
+
+       $arr = array('url' => $argv[1]);
+
+       call_hooks('globaldir_update', $arr);
 
-       fetch_url($dir . '?url=' . bin2hex($argv[1]));
+       logger('Updating directory: ' . $arr['url'], LOGGER_DEBUG);
+       if (strlen($arr['url'])) {
+               fetch_url($dir . '?url=' . bin2hex($arr['url']));
+       }
 
        return;
 }
 
-if (array_search(__file__,get_included_files())===0){
-  directory_run($argv,$argc);
-  killme();
+function directory_update_all() {
+       $r = q("SELECT `url` FROM `contact`
+               INNER JOIN `profile` ON `profile`.`uid` = `contact`.`uid`
+               INNER JOIN `user` ON `user`.`uid` = `contact`.`uid`
+                       WHERE `contact`.`self` AND `profile`.`net-publish` AND `profile`.`is-default` AND
+                               NOT `user`.`account_expired` AND `user`.`verified`");
+
+       if (dbm::is_result($r)) {
+               foreach ($r AS $user) {
+                       proc_run(PRIORITY_LOW, 'include/directory.php', $user['url']);
+               }
+       }
 }