]> git.mxchange.org Git - friendica.git/blobdiff - include/discover_poco.php
Without only the worker queue we don't need the deliverq anymore.
[friendica.git] / include / discover_poco.php
index 10c741ae5f10aa78b0510ecdc9d2bdfe9567bc14..0384483a40dd54e6fc89f6d4e37f39240ef150a7 100644 (file)
@@ -2,34 +2,12 @@
 
 use \Friendica\Core\Config;
 
-require_once("boot.php");
-require_once("include/socgraph.php");
+require_once('include/socgraph.php');
+require_once('include/datetime.php');
 
 function discover_poco_run(&$argv, &$argc){
-       global $a, $db;
 
-       if(is_null($a)) {
-               $a = new App;
-       }
-
-       if(is_null($db)) {
-           @include(".htconfig.php");
-       require_once("include/dba.php");
-           $db = new dba($db_host, $db_user, $db_pass, $db_data);
-       unset($db_host, $db_user, $db_pass, $db_data);
-       };
-
-       require_once('include/session.php');
-       require_once('include/datetime.php');
-
-       Config::load();
-
-       // Don't check this stuff if the function is called by the poller
-       if (App::callstack() != "poller_run")
-               if ($a->maxload_reached())
-                       return;
-
-       if(($argc > 2) && ($argv[1] == "dirsearch")) {
+       if (($argc > 2) && ($argv[1] == "dirsearch")) {
                $search = urldecode($argv[2]);
                $mode = 1;
        } elseif(($argc == 2) && ($argv[1] == "checkcontact")) {
@@ -42,15 +20,6 @@ function discover_poco_run(&$argv, &$argc){
        } else
                die("Unknown or missing parameter ".$argv[1]."\n");
 
-       // Don't check this stuff if the function is called by the poller
-       if (App::callstack() != "poller_run")
-               if (App::is_already_running('discover_poco'.$mode.urlencode($search), 'include/discover_poco.php', 1140))
-                       return;
-
-       $a->set_baseurl(get_config('system','url'));
-
-       load_hooks();
-
        logger('start '.$search);
 
        if ($mode==3)
@@ -211,9 +180,3 @@ function gs_search_user($search) {
                }
        }
 }
-
-
-if (array_search(__file__,get_included_files())===0){
-  discover_poco_run($_SERVER["argv"],$_SERVER["argc"]);
-  killme();
-}