summaryrefslogtreecommitdiff
path: root/modules/comment/controllers/admin_manage_comments.php
diff options
context:
space:
mode:
authorTristan Zur <tzur@webserver.ccwn.org>2015-06-10 20:55:53 +0200
committerTristan Zur <tzur@webserver.ccwn.org>2015-06-10 20:55:53 +0200
commit406abd7c4df1ace2cd3e4e17159e8941a2e8c0c4 (patch)
treea324be16021f44f2fd6d55e609f47024e945b1db /modules/comment/controllers/admin_manage_comments.php
Initial import
Diffstat (limited to 'modules/comment/controllers/admin_manage_comments.php')
-rw-r--r--modules/comment/controllers/admin_manage_comments.php144
1 files changed, 144 insertions, 0 deletions
diff --git a/modules/comment/controllers/admin_manage_comments.php b/modules/comment/controllers/admin_manage_comments.php
new file mode 100644
index 0000000..ef31c95
--- /dev/null
+++ b/modules/comment/controllers/admin_manage_comments.php
@@ -0,0 +1,144 @@
+<?php defined("SYSPATH") or die("No direct script access.");
+/**
+ * Gallery - a web based photo album viewer and editor
+ * Copyright (C) 2000-2013 Bharat Mediratta
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 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
+ * General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
+ */
+class Admin_Manage_Comments_Controller extends Admin_Controller {
+ private static $items_per_page = 20;
+
+ public function index() {
+ // Get rid of old deleted/spam comments once in a while
+ db::build()
+ ->delete("comments")
+ ->where("state", "IN", array("deleted", "spam"))
+ ->where("updated", "<", db::expr("UNIX_TIMESTAMP() - 86400 * 7"))
+ ->execute();
+
+ $view = new Admin_View("admin.html");
+ $view->content = new View("admin_manage_comments.html");
+ $view->content->menu = $this->_menu($this->_counts());
+ print $view;
+ }
+
+ public function menu_labels() {
+ $menu = $this->_menu($this->_counts());
+ json::reply(array((string) $menu->get("unpublished")->label,
+ (string) $menu->get("published")->label,
+ (string) $menu->get("spam")->label,
+ (string) $menu->get("deleted")->label));
+ }
+
+ public function queue($state) {
+ $page = max(Input::instance()->get("page"), 1);
+
+ $view = new Gallery_View("admin_manage_comments_queue.html");
+ $view->counts = $this->_counts();
+ $view->menu = $this->_menu($view->counts);
+ $view->state = $state;
+ $view->comments = ORM::factory("comment")
+ ->order_by("created", "DESC")
+ ->order_by("id", "DESC")
+ ->where("state", "=", $state)
+ ->limit(self::$items_per_page)
+ ->offset(($page - 1) * self::$items_per_page)
+ ->find_all();
+
+ // This view is not themed so we can't use $theme->url() in the view and have to
+ // reproduce Gallery_View::url() logic here.
+ $atn = theme::$admin_theme_name;
+ $view->fallback_avatar_url = url::abs_file("themes/$atn/images/avatar.jpg");
+
+ $view->page = $page;
+ $view->page_type = "collection";
+ $view->page_subtype = "admin_comments";
+ $view->page_size = self::$items_per_page;
+ $view->children_count = $this->_counts()->$state;
+ $view->max_pages = ceil($view->children_count / $view->page_size);
+
+ // Also we want to use $theme->paginator() so we need a dummy theme
+ $view->theme = $view;
+
+ print $view;
+ }
+
+ private function _menu($counts) {
+ return Menu::factory("root")
+ ->append(Menu::factory("link")
+ ->id("unpublished")
+ ->label(t2("Awaiting Moderation (%count)",
+ "Awaiting Moderation (%count)",
+ $counts->unpublished))
+ ->url(url::site("admin/manage_comments/queue/unpublished")))
+ ->append(Menu::factory("link")
+ ->id("published")
+ ->label(t2("Approved (%count)",
+ "Approved (%count)",
+ $counts->published))
+ ->url(url::site("admin/manage_comments/queue/published")))
+ ->append(Menu::factory("link")
+ ->id("spam")
+ ->label(t2("Spam (%count)",
+ "Spam (%count)",
+ $counts->spam))
+ ->url(url::site("admin/manage_comments/queue/spam")))
+ ->append(Menu::factory("link")
+ ->id("deleted")
+ ->label(t2("Recently Deleted (%count)",
+ "Recently Deleted (%count)",
+ $counts->deleted))
+ ->url(url::site("admin/manage_comments/queue/deleted")));
+ }
+
+ private function _counts() {
+ $counts = new stdClass();
+ $counts->unpublished = 0;
+ $counts->published = 0;
+ $counts->spam = 0;
+ $counts->deleted = 0;
+ foreach (db::build()
+ ->select("state")
+ ->select(array("c" => 'COUNT("*")'))
+ ->from("comments")
+ ->group_by("state")
+ ->execute() as $row) {
+ $counts->{$row->state} = $row->c;
+ }
+ return $counts;
+ }
+
+ public function set_state($id, $state) {
+ access::verify_csrf();
+
+ $comment = ORM::factory("comment", $id);
+ $orig = clone $comment;
+ if ($comment->loaded()) {
+ $comment->state = $state;
+ $comment->save();
+ }
+ }
+
+ public function delete_all_spam() {
+ access::verify_csrf();
+
+ db::build()
+ ->delete("comments")
+ ->where("state", "=", "spam")
+ ->execute();
+ url::redirect("admin/manage_comments/queue/spam");
+ }
+}
+