]> git.mxchange.org Git - friendica.git/commitdiff
Converting timezone in admin queues
authorUnknown <me@jeroened.be>
Mon, 6 Aug 2018 07:30:17 +0000 (09:30 +0200)
committerUnknown <me@jeroened.be>
Mon, 6 Aug 2018 07:30:17 +0000 (09:30 +0200)
mod/admin.php

index 09a04ae02cec2706c5e6f97f488cd33bdcbdcc10..9ef4c31aed6b0d57ebfa31af7fcd4dfe2827c27b 100644 (file)
@@ -746,11 +746,21 @@ function admin_page_federation(App $a)
 function admin_page_queue(App $a)
 {
        // get content from the queue table
+       // PLEASE REVIEW (not 100% sure about my code)
+       $statement = DBA::Select('`queue` AS `q`, `contact` AS `c`',
+               [ '`c`.`name`', '`c`.`nurl`', '`q`.`id`', '`q`.`network`', "CONVERT_TZ(`q`.`created`, 'UTC' " . Config::get('system', 'default_timezone') . ') as created', "CONVERT_TZ(`q`.`last`, 'UTC', " . Config::get('system', 'default_timezone') . "') as last" ],
+               '`c`.`id`' => '`q`.`cid`',
+               ['order'=> ['`q`.`cid`, `q`.`created`']]
+       );
+       $r = DBA::toArray($statement);
+
+       /*
+       // Leaving this one here for the code review as well as backup
        $r = q("SELECT `c`.`name`, `c`.`nurl`, `q`.`id`, `q`.`network`, `q`.`created`, `q`.`last`
                        FROM `queue` AS `q`, `contact` AS `c`
                        WHERE `c`.`id` = `q`.`cid`
                        ORDER BY `q`.`cid`, `q`.`created`;");
-
+       */
        $t = get_markup_template('admin/queue.tpl');
        return replace_macros($t, [
                '$title' => L10n::t('Administration'),
@@ -781,7 +791,7 @@ function admin_page_queue(App $a)
 function admin_page_workerqueue(App $a)
 {
        // get jobs from the workerqueue table
-       $statement = DBA::select('workerqueue', ['id', 'parameter', 'created', 'priority'], ['done' => 0], ['order'=> ['priority']]);
+       $statement = DBA::select('workerqueue', ['id', 'parameter', "CONVERT_TZ(created', 'UTC', " . Config::get('system', 'default_timezone') . "') as created", 'priority'], ['done' => 0], ['order'=> ['priority']]);
        $r = DBA::toArray($statement);
 
        foreach ($r as $key => $rr) {