]> git.mxchange.org Git - friendica.git/blobdiff - src/Worker/CronJobs.php
Rename dbesc to DBA::escape
[friendica.git] / src / Worker / CronJobs.php
index 9e130d9ef0933d66245b62405f96508e1a863ffb..ca898f2b6285a3fb4dfd8776d1354059c0384a8d 100644 (file)
@@ -1,35 +1,29 @@
 <?php
-
 /**
  * @file src/worker/CronJobs.php
  */
-
 namespace Friendica\Worker;
 
 use Friendica\App;
+use Friendica\BaseObject;
 use Friendica\Core\Cache;
 use Friendica\Core\Config;
-use Friendica\Database\DBM;
+use Friendica\Database\DBA;
 use Friendica\Model\Contact;
 use Friendica\Model\GContact;
 use Friendica\Model\Photo;
+use Friendica\Model\User;
 use Friendica\Network\Probe;
 use Friendica\Protocol\PortableContact;
-use dba;
 
 require_once 'include/dba.php';
-require_once 'include/post_update.php';
 require_once 'mod/nodeinfo.php';
 
 class CronJobs
 {
        public static function execute($command = '')
        {
-               global $a;
-
-               require_once 'include/datetime.php';
-               require_once 'include/post_update.php';
-               require_once 'mod/nodeinfo.php';
+               $a = BaseObject::getApp();
 
                // No parameter set? So return
                if ($command == '') {
@@ -39,9 +33,10 @@ class CronJobs
                logger("Starting cronjob " . $command, LOGGER_DEBUG);
 
                // Call possible post update functions
-               // see include/post_update.php for more details
+               // see src/Database/PostUpdate.php for more details
                if ($command == 'post_update') {
-                       post_update();
+// Post updates will be reenabled (hopefully in a few days) when most item works are done
+//                     PostUpdate::update();
                        return;
                }
 
@@ -58,7 +53,7 @@ class CronJobs
                }
 
                if ($command == 'update_contact_birthdays') {
-                       update_contact_birthdays();
+                       Contact::updateBirthdays();
                        return;
                }
 
@@ -96,7 +91,7 @@ class CronJobs
        private static function updatePhotoAlbums()
        {
                $r = q("SELECT `uid` FROM `user` WHERE NOT `account_expired` AND NOT `account_removed`");
-               if (!DBM::is_result($r)) {
+               if (!DBA::isResult($r)) {
                        return;
                }
 
@@ -110,17 +105,20 @@ class CronJobs
         */
        private static function expireAndRemoveUsers()
        {
-               // expire any expired accounts
-               q("UPDATE user SET `account_expired` = 1 where `account_expired` = 0
-                       AND `account_expires_on` > '%s'
-                       AND `account_expires_on` < UTC_TIMESTAMP()", dbesc(NULL_DATE));
+               // expire any expired regular accounts. Don't expire forums.
+               $condition = ["NOT `account_expired` AND `account_expires_on` > ? AND `account_expires_on` < UTC_TIMESTAMP() AND `page-flags` = 0", NULL_DATE];
+               DBA::update('user', ['account_expired' => true], $condition);
+
+               // Remove any freshly expired account
+               $users = DBA::select('user', ['uid'], ['account_expired' => true, 'account_removed' => false]);
+               while ($user = DBA::fetch($users)) {
+                       User::remove($user['uid']);
+               }
 
                // delete user records for recently removed accounts
-               $r = q("SELECT * FROM `user` WHERE `account_removed` AND `account_expires_on` < UTC_TIMESTAMP() - INTERVAL 3 DAY");
-               if (DBM::is_result($r)) {
-                       foreach ($r as $user) {
-                               dba::delete('user', ['uid' => $user['uid']]);
-                       }
+               $users = DBA::select('user', ['uid'], ["`account_removed` AND `account_expires_on` < UTC_TIMESTAMP() - INTERVAL 3 DAY"]);
+               while ($user = DBA::fetch($users)) {
+                       DBA::delete('user', ['uid' => $user['uid']]);
                }
        }
 
@@ -165,14 +163,14 @@ class CronJobs
                                $cachetime = PROXY_DEFAULT_TIME;
                        }
                        $condition = ['`uid` = 0 AND `resource-id` LIKE "pic:%" AND `created` < NOW() - INTERVAL ? SECOND', $cachetime];
-                       dba::delete('photo', $condition);
+                       DBA::delete('photo', $condition);
                }
 
                // Delete the cached OEmbed entries that are older than three month
-               dba::delete('oembed', ["`created` < NOW() - INTERVAL 3 MONTH"]);
+               DBA::delete('oembed', ["`created` < NOW() - INTERVAL 3 MONTH"]);
 
                // Delete the cached "parse_url" entries that are older than three month
-               dba::delete('parsed_url', ["`created` < NOW() - INTERVAL 3 MONTH"]);
+               DBA::delete('parsed_url', ["`created` < NOW() - INTERVAL 3 MONTH"]);
 
                // Maximum table size in megabyte
                $max_tablesize = intval(Config::get('system', 'optimize_max_tablesize')) * 1000000;
@@ -212,7 +210,7 @@ class CronJobs
 
                                // So optimize it
                                logger("Optimize Table " . $table["Name"], LOGGER_DEBUG);
-                               q("OPTIMIZE TABLE `%s`", dbesc($table["Name"]));
+                               q("OPTIMIZE TABLE `%s`", DBA::escape($table["Name"]));
                        }
                }
 
@@ -230,8 +228,8 @@ class CronJobs
 
                $r = q("SELECT `id`, `url` FROM `contact`
                        WHERE `network` = '%s' AND (`batch` = '' OR `notify` = '' OR `poll` = '' OR pubkey = '')
-                               ORDER BY RAND() LIMIT 50", dbesc(NETWORK_DIASPORA));
-               if (!DBM::is_result($r)) {
+                               ORDER BY RAND() LIMIT 50", DBA::escape(NETWORK_DIASPORA));
+               if (!DBA::isResult($r)) {
                        return;
                }
 
@@ -252,7 +250,7 @@ class CronJobs
 
                        logger("Repair contact " . $contact["id"] . " " . $contact["url"], LOGGER_DEBUG);
                        q("UPDATE `contact` SET `batch` = '%s', `notify` = '%s', `poll` = '%s', pubkey = '%s' WHERE `id` = %d",
-                               dbesc($data["batch"]), dbesc($data["notify"]), dbesc($data["poll"]), dbesc($data["pubkey"]),
+                               DBA::escape($data["batch"]), DBA::escape($data["notify"]), DBA::escape($data["poll"]), DBA::escape($data["pubkey"]),
                                intval($contact["id"]));
                }
        }
@@ -266,7 +264,7 @@ class CronJobs
                // Sometimes there seem to be issues where the "self" contact vanishes.
                // We haven't found the origin of the problem by now.
                $r = q("SELECT `uid` FROM `user` WHERE NOT EXISTS (SELECT `uid` FROM `contact` WHERE `contact`.`uid` = `user`.`uid` AND `contact`.`self`)");
-               if (DBM::is_result($r)) {
+               if (DBA::isResult($r)) {
                        foreach ($r AS $user) {
                                logger('Create missing self contact for user ' . $user['uid']);
                                Contact::createSelfFromUserId($user['uid']);
@@ -282,7 +280,7 @@ class CronJobs
 
                // Update the global contacts for local users
                $r = q("SELECT `uid` FROM `user` WHERE `verified` AND NOT `blocked` AND NOT `account_removed` AND NOT `account_expired`");
-               if (DBM::is_result($r)) {
+               if (DBA::isResult($r)) {
                        foreach ($r AS $user) {
                                GContact::updateForUser($user["uid"]);
                        }