]> git.mxchange.org Git - friendica.git/blobdiff - src/Worker/Expire.php
Merge remote-tracking branch 'upstream/develop' into reduce-update-contacts
[friendica.git] / src / Worker / Expire.php
index 11f12df0305af858ee52899c094812c610b43ed7..875e60e25d5425ce1b36fb11ecc50386dbc88fb0 100644 (file)
@@ -1,84 +1,80 @@
 <?php
 /**
- * @file src/Worker/Expire.php
- * @brief Expires old item entries
+ * @copyright Copyright (C) 2010-2022, the Friendica project
+ *
+ * @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\Config;
+use Friendica\Core\Hook;
+use Friendica\Core\Logger;
 use Friendica\Core\Worker;
-use Friendica\Database\DBM;
-use dba;
+use Friendica\Database\DBA;
+use Friendica\DI;
+use Friendica\Model\Item;
 
-class Expire {
-       public static function execute($param = '', $hook_name = '') {
-               global $a;
-
-               require_once('include/datetime.php');
-               require_once('include/items.php');
-               require_once('include/Contact.php');
-
-               load_hooks();
-
-               if ($param == 'delete') {
-                       logger('Delete expired items', LOGGER_DEBUG);
-                       // physically remove anything that has been deleted for more than two months
-                       $r = dba::p("SELECT `id` FROM `item` WHERE `deleted` AND `changed` < UTC_TIMESTAMP() - INTERVAL 60 DAY");
-                       while ($row = dba::fetch($r)) {
-                               dba::delete('item', array('id' => $row['id']));
-                       }
-                       dba::close($r);
+/**
+ * Expires old item entries
+ */
+class Expire
+{
+       public static function execute($param = '', $hook_function = '')
+       {
+               $a = DI::app();
 
-                       logger('Delete expired items - done', LOGGER_DEBUG);
+               Hook::loadHooks();
 
-                       // make this optional as it could have a performance impact on large sites
-                       if (intval(Config::get('system', 'optimize_items'))) {
-                               dba::e("OPTIMIZE TABLE `item`");
+               if (intval($param) > 0) {
+                       $user = DBA::selectFirst('user', ['uid', 'username', 'expire'], ['uid' => $param]);
+                       if (DBA::isResult($user)) {
+                               Logger::info('Expire items', ['user' => $user['uid'], 'username' => $user['username'], 'interval' => $user['expire']]);
+                               Item::expire($user['uid'], $user['expire']);
+                               Logger::info('Expire items done', ['user' => $user['uid'], 'username' => $user['username'], 'interval' => $user['expire']]);
                        }
                        return;
-               } elseif (intval($param) > 0) {
-                       $user = dba::select('user', array('uid', 'username', 'expire'), array('uid' => $param), array('limit' => 1));
-                       if (DBM::is_result($user)) {
-                               logger('Expire items for user '.$user['uid'].' ('.$user['username'].') - interval: '.$user['expire'], LOGGER_DEBUG);
-                               item_expire($user['uid'], $user['expire']);
-                               logger('Expire items for user '.$user['uid'].' ('.$user['username'].') - done ', LOGGER_DEBUG);
-                       }
-                       return;
-               } elseif (!empty($hook_name) && ($param == 'hook') && is_array($a->hooks) && array_key_exists("expire", $a->hooks)) {
-                       foreach ($a->hooks["expire"] as $hook) {
-                               if ($hook[1] == $hook_name) {
-                                       logger("Calling expire hook '" . $hook[1] . "'", LOGGER_DEBUG);
-                                       call_single_hook($a, $name, $hook, $data);
+               } elseif ($param == 'hook' && !empty($hook_function)) {
+                       foreach (Hook::getByName('expire') as $hook) {
+                               if ($hook[1] == $hook_function) {
+                                       Logger::info('Calling expire hook', ['hook' => $hook[1]]);
+                                       Hook::callSingle($a, 'expire', $hook, $data);
                                }
                        }
                        return;
                }
 
-               logger('expire: start');
-
-               Worker::add(array('priority' => $a->queue['priority'], 'created' => $a->queue['created'], 'dont_fork' => true),
-                               'Expire', 'delete');
+               Logger::notice('start expiry');
 
-               $r = dba::p("SELECT `uid`, `username` FROM `user` WHERE `expire` != 0");
-               while ($row = dba::fetch($r)) {
-                       logger('Calling expiry for user '.$row['uid'].' ('.$row['username'].')', LOGGER_DEBUG);
-                       Worker::add(array('priority' => $a->queue['priority'], 'created' => $a->queue['created'], 'dont_fork' => true),
-                                       'Expire', (int)$row['uid']);
+               $r = DBA::select('user', ['uid', 'username'], ["`expire` != ?", 0]);
+               while ($row = DBA::fetch($r)) {
+                       Logger::info('Calling expiry', ['user' => $row['uid'], 'username' => $row['username']]);
+                       Worker::add(['priority' => $a->getQueueValue('priority'), 'created' => $a->getQueueValue('created'), 'dont_fork' => true],
+                               'Expire', (int)$row['uid']);
                }
-               dba::close($r);
+               DBA::close($r);
 
-               logger('expire: calling hooks');
-
-               if (is_array($a->hooks) && array_key_exists('expire', $a->hooks)) {
-                       foreach ($a->hooks['expire'] as $hook) {
-                               logger("Calling expire hook for '" . $hook[1] . "'", LOGGER_DEBUG);
-                               Worker::add(array('priority' => $a->queue['priority'], 'created' => $a->queue['created'], 'dont_fork' => true),
-                                               'Expire', 'hook', $hook[1]);
-                       }
+               Logger::notice('calling hooks');
+               foreach (Hook::getByName('expire') as $hook) {
+                       Logger::info('Calling expire', ['hook' => $hook[1]]);
+                       Worker::add(['priority' => $a->getQueueValue('priority'), 'created' => $a->getQueueValue('created'), 'dont_fork' => true],
+                               'Expire', 'hook', $hook[1]);
                }
 
-               logger('expire: end');
+               Logger::notice('calling hooks done');
 
                return;
        }