]> git.mxchange.org Git - friendica.git/blobdiff - src/Worker/SearchDirectory.php
Merge pull request #8272 from MrPetovan/bug/8254-regex-url-img
[friendica.git] / src / Worker / SearchDirectory.php
index 3975fe1f7ae275a7c3083f73fec6ae5d7d7ca3c8..c099a5e28a3dad0f0b1b1e6057a5f86d9521ec6f 100644 (file)
@@ -1,11 +1,27 @@
 <?php
 /**
- * @file src/Worker/SearchDirectory.php
+ * @copyright Copyright (C) 2020, Friendica
+ *
+ * @license GNU AGPL version 3 or any later version
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
+ *
  */
+
 namespace Friendica\Worker;
 
-use Friendica\Core\Cache\Cache;
-use Friendica\Core\Config;
+use Friendica\Core\Cache\Duration;
 use Friendica\Core\Logger;
 use Friendica\Core\Protocol;
 use Friendica\Core\Search;
@@ -22,7 +38,7 @@ class SearchDirectory
        // <search pattern>: Searches for "search pattern" in the directory.
        public static function execute($search)
        {
-               if (!Config::get('system', 'poco_local_search')) {
+               if (!DI::config()->get('system', 'poco_local_search')) {
                        Logger::info('Local search is not enabled');
                        return;
                }
@@ -81,6 +97,6 @@ class SearchDirectory
                                }
                        }
                }
-               DI::cache()->set('SearchDirectory:' . $search, time(), Cache::DAY);
+               DI::cache()->set('SearchDirectory:' . $search, time(), Duration::DAY);
        }
 }