X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=scripts%2Ffixup_conversations.php;h=80890fe98d8ec82fc07b95aa945dc18636b6d0db;hb=384a50a7800abde62e040ea57872dc06c0519047;hp=d4a47cfeeff03b481ac36f1d6a732c14d4f08e60;hpb=f21cecbfbd3f641d3ad259db8c3883cd9a0382df;p=quix0rs-gnu-social.git diff --git a/scripts/fixup_conversations.php b/scripts/fixup_conversations.php index d4a47cfeef..80890fe98d 100755 --- a/scripts/fixup_conversations.php +++ b/scripts/fixup_conversations.php @@ -1,8 +1,8 @@ #!/usr/bin/env php . */ -# Abort if called from a web server -if (isset($_SERVER) && array_key_exists('REQUEST_METHOD', $_SERVER)) { - print "This script must be run from the command line\n"; - exit(); -} - define('INSTALLDIR', realpath(dirname(__FILE__) . '/..')); -define('LACONICA', true); -require_once(INSTALLDIR . '/lib/common.php'); +require_once INSTALLDIR.'/scripts/commandline.inc'; common_log(LOG_INFO, 'Fixing up conversations.'); $notice = new Notice(); -$notice->whereAdd('conversation is null'); -$notice->orderBy('id'); - -$cnt = $notice->find(); - -print "Found $cnt notices.\n"; +$notice->query('select id, reply_to from notice where conversation is null'); while ($notice->fetch()) { - print "$notice->id =>"; - + $cid = null; + $orig = clone($notice); - + if (empty($notice->reply_to)) { $notice->conversation = $notice->id; } else { @@ -59,6 +47,9 @@ while ($notice->fetch()) { } else { $notice->conversation = $reply->conversation; } + + unset($reply); + $reply = null; } print "$notice->conversation"; @@ -70,10 +61,8 @@ while ($notice->fetch()) { continue; } + $orig = null; + unset($orig); + print ".\n"; } - -ini_set("max_execution_time", "0"); -ini_set("max_input_time", "0"); -set_time_limit(0); -mb_internal_encoding('UTF-8');