/modules/tag/models/tag.php
https://github.com/zcopley/gallery3 · PHP · 141 lines · 82 code · 14 blank · 45 comment · 8 complexity · ce149ff354ac1cee5c213cd644e49a33 MD5 · raw file
- <?php defined("SYSPATH") or die("No direct script access.");
- /**
- * Gallery - a web based photo album viewer and editor
- * Copyright (C) 2000-2010 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 Tag_Model_Core extends ORM {
- protected $has_and_belongs_to_many = array("items");
- public function __construct($id=null) {
- parent::__construct($id);
- if (!$this->loaded()) {
- // Set reasonable defaults
- $this->count = 0;
- }
- }
- /**
- * Return all viewable items associated with this tag.
- * @param integer $limit number of rows to limit result to
- * @param integer $offset offset in result to start returning rows from
- * @param string $type the type of item (album, photo)
- * @return ORM_Iterator
- */
- public function items($limit=null, $offset=null, $type=null) {
- $model = ORM::factory("item")
- ->viewable()
- ->join("items_tags", "items.id", "items_tags.item_id")
- ->where("items_tags.tag_id", "=", $this->id);
- if ($type) {
- $model->where("items.type", "=", $type);
- }
- return $model->find_all($limit, $offset);
- }
- /**
- * Return the count of all viewable items associated with this tag.
- * @param string $type the type of item (album, photo)
- * @return integer
- */
- public function items_count($type=null) {
- $model = ORM::factory("item")
- ->viewable()
- ->join("items_tags", "items.id", "items_tags.item_id")
- ->where("items_tags.tag_id", "=", $this->id);
- if ($type) {
- $model->where("items.type", "=", $type);
- }
- return $model->count_all();
- }
- /**
- * Overload ORM::save() to trigger an item_related_update event for all items that are related
- * to this tag.
- */
- public function save() {
- $related_item_ids = array();
- foreach (db::build()
- ->select("item_id")
- ->from("items_tags")
- ->where("tag_id", "=", $this->id)
- ->execute() as $row) {
- $related_item_ids[$row->item_id] = 1;
- }
- if (isset($this->object_relations["items"])) {
- $added = array_diff($this->changed_relations["items"], $this->object_relations["items"]);
- $removed = array_diff($this->object_relations["items"], $this->changed_relations["items"]);
- if (isset($this->changed_relations["items"])) {
- $changed = array_merge($added, $removed);
- }
- $this->count = count($this->object_relations["items"]) + count($added) - count($removed);
- }
- $result = parent::save();
- if (!empty($changed)) {
- foreach (ORM::factory("item")->where("id", "IN", $changed)->find_all() as $item) {
- module::event("item_related_update", $item);
- }
- }
- return $result;
- }
- /**
- * Overload ORM::delete() to trigger an item_related_update event for all items that are
- * related to this tag, and delete all items_tags relationships.
- */
- public function delete($ignored_id=null) {
- $related_item_ids = array();
- foreach (db::build()
- ->select("item_id")
- ->from("items_tags")
- ->where("tag_id", "=", $this->id)
- ->execute() as $row) {
- $related_item_ids[$row->item_id] = 1;
- }
- db::build()->delete("items_tags")->where("tag_id", "=", $this->id)->execute();
- $result = parent::delete();
- if ($related_item_ids) {
- foreach (ORM::factory("item")
- ->where("id", "IN", array_keys($related_item_ids))
- ->find_all() as $item) {
- module::event("item_related_update", $item);
- }
- }
- return $result;
- }
- /**
- * Return the server-relative url to this item, eg:
- * /gallery3/index.php/tags/35
- *
- * @param string $query the query string (eg "page=3")
- */
- public function url($query=null) {
- $url = url::site("tag/{$this->name}");
- if ($query) {
- $url .= "?$query";
- }
- return $url;
- }
- }