summaryrefslogtreecommitdiff
path: root/fixup_notices_rendered.php
diff options
context:
space:
mode:
authorEvan Prodromou <evan@prodromou.name>2008-07-09 15:52:38 -0400
committerEvan Prodromou <evan@prodromou.name>2008-07-09 15:52:38 -0400
commit63f1fb4259402bf2b53097d2525878a2f6daa8c4 (patch)
tree6a9741199819612f2c39e351d98a5b3e8926b351 /fixup_notices_rendered.php
parent5793bbc8fd0d963547c15fc4f398660d445f5a5a (diff)
store rendered content on save; display pre-rendered content
darcs-hash:20080709195238-84dde-a5df98439faaf7058571b5e345f165adece9c7b8.gz
Diffstat (limited to 'fixup_notices_rendered.php')
-rwxr-xr-xfixup_notices_rendered.php47
1 files changed, 47 insertions, 0 deletions
diff --git a/fixup_notices_rendered.php b/fixup_notices_rendered.php
new file mode 100755
index 000000000..546eef37e
--- /dev/null
+++ b/fixup_notices_rendered.php
@@ -0,0 +1,47 @@
+#!/usr/bin/env php
+<?php
+/*
+ * Laconica - a distributed open-source microblogging tool
+ * Copyright (C) 2008, Controlez-Vous, Inc.
+ *
+ * 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 <http://www.gnu.org/licenses/>.
+ */
+
+# 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', dirname(__FILE__));
+define('LACONICA', true);
+
+require_once(INSTALLDIR . '/lib/common.php');
+
+common_log(LOG_INFO, 'Starting to render old notices.');
+
+$notice = new Notice();
+$cnt = $notice->find();
+
+while ($notice->fetch()) {
+ if (!$notice->rendered) {
+ common_log(LOG_INFO, 'Pre-rendering notice #' . $notice->id);
+ $original = clone($notice);
+ $notice->rendered = common_render_content($notice->content, $notice);
+ $result = $notice->update($original);
+ if (!$result) {
+ common_log_db_error($notice, 'UPDATE', __FILE__);
+ }
+ }
+}