]> git.mxchange.org Git - friendica.git/blobdiff - include/directory.php
Remove unrecommended leading backslash for fully qualified namespaces
[friendica.git] / include / directory.php
index cae78adb4e61564c161f390ed5959fe04c6f112c..e507a939f8cd36ef37e3ed7cceec44bd49253b99 100644 (file)
@@ -1,42 +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);
-       };
-
-       load_config('config');
-       load_config('system');
+use Friendica\Core\Config;
 
+function directory_run(&$argv, &$argc){
+       $dir = Config::get('system', 'directory');
 
-       if($argc != 2)
+       if (!strlen($dir)) {
                return;
+       }
 
-       load_config('system');
+       if ($argc < 2) {
+               directory_update_all();
+               return;
+       }
 
-       $a->set_baseurl(get_config('system','url'));
+       $dir .= "/submit";
 
-       $dir = get_config('system','directory_submit_url');
+       $arr = array('url' => $argv[1]);
 
-       if(! strlen($dir))
-               return;
+       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']);
+               }
+       }
 }