MDL-40908 core_tag: created an 'item_untagged' event
authorMark Nelson <markn@moodle.com>
Wed, 5 Feb 2014 01:02:56 +0000 (17:02 -0800)
committerMark Nelson <markn@moodle.com>
Fri, 4 Apr 2014 03:26:22 +0000 (20:26 -0700)
course/lib.php
lang/en/tag.php
lib/adminlib.php
lib/classes/event/item_untagged.php [new file with mode: 0644]
tag/coursetagslib.php
tag/lib.php
tag/tests/events_test.php

index 6d54403..1de2059 100644 (file)
@@ -1637,6 +1637,7 @@ function course_delete_module($cmid) {
     require_once($CFG->libdir.'/gradelib.php');
     require_once($CFG->dirroot.'/blog/lib.php');
     require_once($CFG->dirroot.'/calendar/lib.php');
+    require_once($CFG->dirroot . '/tag/lib.php');
 
     // Get the course module.
     if (!$cm = $DB->get_record('course_modules', array('id' => $cmid))) {
@@ -1703,8 +1704,8 @@ function course_delete_module($cmid) {
     $DB->delete_records('course_completion_criteria', array('moduleinstance' => $cm->id,
                                                             'criteriatype' => COMPLETION_CRITERIA_TYPE_ACTIVITY));
 
-    // Delete the tag instances.
-    $DB->delete_records('tag_instance', array('component' => 'mod_' . $modulename, 'contextid' => $modcontext->id));
+    // Delete all tag instances associated with the instance of this module.
+    tag_delete_instances('mod_' . $modulename, $modcontext->id);
 
     // Delete the context.
     context_helper::delete_instance(CONTEXT_MODULE, $cm->id);
index ae644b1..11c1651 100644 (file)
@@ -34,10 +34,10 @@ $string['deletedcoursetags'] = 'Deleted - Course tags';
 $string['description'] = 'Description';
 $string['edittag'] = 'Edit this tag';
 $string['entertags'] = 'Enter tags separated by commas';
-$string['errordeleting'] = 'Error deleting tag with id {$a}, please report to your system administrator.';
 $string['errortagfrontpage'] = 'Tagging the site main page is not allowed';
 $string['errorupdatingrecord'] = 'Error updating tag record';
 $string['eventitemtagged'] = 'Item tagged';
+$string['eventitemuntagged'] = 'Item untagged';
 $string['eventtagcreated'] = 'Tag created';
 $string['eventtagdeleted'] = 'Tag deleted';
 $string['eventtagflagged'] = 'Tag flagged';
index 9ce6ad2..dbc5e49 100644 (file)
@@ -166,6 +166,10 @@ function uninstall_plugin($type, $name) {
 
     echo $OUTPUT->heading($pluginname);
 
+    // Delete all tag instances associated with this plugin.
+    require_once($CFG->dirroot . '/tag/lib.php');
+    tag_delete_instances($component);
+
     // Custom plugin uninstall.
     $plugindirectory = core_component::get_plugin_directory($type, $name);
     $uninstalllib = $plugindirectory . '/db/uninstall.php';
@@ -231,9 +235,6 @@ function uninstall_plugin($type, $name) {
     $fs = get_file_storage();
     $fs->delete_component_files($component);
 
-    // Delete all tag instances for this component.
-    $DB->delete_records('tag_instance', array('component' => $component));
-
     // Finally purge all caches.
     purge_all_caches();
 
diff --git a/lib/classes/event/item_untagged.php b/lib/classes/event/item_untagged.php
new file mode 100644 (file)
index 0000000..4967536
--- /dev/null
@@ -0,0 +1,98 @@
+<?php
+// This file is part of Moodle - http://moodle.org/
+//
+// Moodle 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 3 of the License, or
+// (at your option) any later version.
+//
+// Moodle 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 Moodle.  If not, see <http://www.gnu.org/licenses/>.
+
+/**
+ * Item untagged event.
+ *
+ * @property-read array $other {
+ *      Extra information about event.
+ *
+ *      - int tagid: the id of the tag.
+ *      - string tagname: the name of the tag.
+ *      - string tagrawname: the raw name of the tag.
+ *      - int itemid: the id of the item tagged.
+ *      - string itemtype: the type of item tagged.
+ * }
+ *
+ * @package    core
+ * @copyright  2014 Mark Nelson <markn@moodle.com>
+ * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
+ */
+
+namespace core\event;
+
+defined('MOODLE_INTERNAL') || die();
+
+class item_untagged extends base {
+
+    /**
+     * Initialise the event data.
+     */
+    protected function init() {
+        $this->data['objecttable'] = 'tag_instance';
+        $this->data['crud'] = 'd';
+        $this->data['edulevel'] = self::LEVEL_OTHER;
+    }
+
+    /**
+     * Returns localised general event name.
+     *
+     * @return string
+     */
+    public static function get_name() {
+        return get_string('eventitemuntagged', 'tag');
+    }
+
+    /**
+     * Returns non-localised description of what happened.
+     *
+     * @return string
+     */
+    public function get_description() {
+        return 'The tag with the id ' . $this->other['tagid'] . ' was removed from the item type \'' . s($this->other['itemtype']) .
+            '\' with the id ' . $this->other['itemid'] . ' by the user with the id ' . $this->userid;
+    }
+
+    /**
+     * Custom validation.
+     *
+     * @throws \coding_exception when validation does not pass.
+     * @return void
+     */
+    protected function validate_data() {
+        parent::validate_data();
+
+        if (!isset($this->other['tagid'])) {
+            throw new \coding_exception('The tagid must be set in $other.');
+        }
+
+        if (!isset($this->other['itemid'])) {
+            throw new \coding_exception('The itemid must be set in $other.');
+        }
+
+        if (!isset($this->other['itemtype'])) {
+            throw new \coding_exception('The itemtype must be set in $other.');
+        }
+
+        if (!isset($this->other['tagname'])) {
+            throw new \coding_exception('The tagname must be set in $other.');
+        }
+
+        if (!isset($this->other['tagrawname'])) {
+            throw new \coding_exception('The tagrawname must be set in $other.');
+        }
+    }
+}
index 272c2f8..76e98fa 100644 (file)
@@ -267,30 +267,7 @@ function coursetag_store_keywords($tags, $courseid, $userid=0, $tagtype='officia
  * @param    int      $courseid the course that the tag is associated with
  */
 function coursetag_delete_keyword($tagid, $userid, $courseid) {
-    global $DB;
-
-    $sql = "SELECT *
-              FROM {tag_instance}
-             WHERE tagid = :tagid
-               AND tiuserid = :userid
-               AND itemtype = 'course'
-               AND itemid = :courseid";
-    if ($DB->record_exists_sql($sql, array('tagid' => $tagid, 'userid' => $userid, 'courseid' => $courseid))) {
-        $sql = "tagid = :tagid
-                AND tiuserid = :userid
-                AND itemtype = 'course'
-                AND itemid = :courseid";
-        $DB->delete_records_select('tag_instance', $sql, array('tagid' => $tagid, 'userid' => $userid, 'courseid' => $courseid));
-        // If there are no other instances of the tag then consider deleting the tag as well.
-        if (!$DB->record_exists('tag_instance', array('tagid' => $tagid))) {
-            // If the tag is a personal tag then delete it - don't do official tags.
-            if ($tag = $DB->get_record('tag', array('id' => $tagid, 'tagtype' => 'default'))) {
-                tag_delete($tagid);
-            }
-        }
-    } else {
-        print_error("errordeleting", 'tag', '', $tagid);
-    }
+    tag_delete_instance('course', $courseid, $tagid, $userid);
 }
 
 /**
index 58cdbed..cd02df9 100644 (file)
@@ -656,8 +656,9 @@ function tag_delete($tagids) {
     // Use the tagids to create a select statement to be used later.
     list($tagsql, $tagparams) = $DB->get_in_or_equal($tagids);
 
-    // Store the tags we are going to delete.
+    // Store the tags and tag instances we are going to delete.
     $tags = $DB->get_records_select('tag', 'id ' . $tagsql, $tagparams);
+    $taginstances = $DB->get_records_select('tag_instance', 'tagid ' . $tagsql, $tagparams);
 
     // Delete all the tag instances.
     $select = 'WHERE tagid ' . $tagsql;
@@ -673,6 +674,34 @@ function tag_delete($tagids) {
     $sql = "DELETE FROM {tag} $select";
     $DB->execute($sql, $tagparams);
 
+    // Fire an event that these items were untagged.
+    if ($taginstances) {
+        // Save the system context in case the 'contextid' column in the 'tag_instance' table is null.
+        $syscontextid = context_system::instance()->id;
+        // Loop through the tag instances and fire an 'item_untagged' event.
+        foreach ($taginstances as $taginstance) {
+            // We can not fire an event with 'null' as the contextid.
+            if (is_null($taginstance->contextid)) {
+                $taginstance->contextid = $syscontextid;
+            }
+
+            // Trigger item untagged event.
+            $event = \core\event\item_untagged::create(array(
+                'objectid' => $taginstance->id,
+                'contextid' => $taginstance->contextid,
+                'other' => array(
+                    'tagid' => $taginstance->tagid,
+                    'tagname' => $tags[$taginstance->tagid]->name,
+                    'tagrawname' => $tags[$taginstance->tagid]->rawname,
+                    'itemid' => $taginstance->itemid,
+                    'itemtype' => $taginstance->itemtype
+                )
+            ));
+            $event->add_record_snapshot('tag_instance', $taginstance);
+            $event->trigger();
+        }
+    }
+
     // Fire an event that these tags were deleted.
     if ($tags) {
         $context = context_system::instance();
@@ -702,6 +731,57 @@ function tag_delete($tagids) {
     return true;
 }
 
+/**
+ * Deletes all the tag instances given a component and an optional contextid.
+ *
+ * @param string $component
+ * @param int $contextid if null, then we delete all tag instances for the $component
+ */
+function tag_delete_instances($component, $contextid = null) {
+    global $DB;
+
+    $sql = "SELECT ti.*, t.name, t.rawname
+              FROM {tag_instance} ti
+              JOIN {tag} t
+                ON ti.tagid = t.id ";
+    if (is_null($contextid)) {
+        $params = array('component' => $component);
+        $sql .= "WHERE ti.component = :component";
+    } else {
+        $params = array('component' => $component, 'contextid' => $contextid);
+        $sql .= "WHERE ti.component = :component
+                   AND ti.contextid = :contextid";
+    }
+    if ($taginstances = $DB->get_records_sql($sql, $params)) {
+        // Now remove all the tag instances.
+        $DB->delete_records('tag_instance',$params);
+        // Save the system context in case the 'contextid' column in the 'tag_instance' table is null.
+        $syscontextid = context_system::instance()->id;
+        // Loop through the tag instances and fire an 'item_untagged' event.
+        foreach ($taginstances as $taginstance) {
+            // We can not fire an event with 'null' as the contextid.
+            if (is_null($taginstance->contextid)) {
+                $taginstance->contextid = $syscontextid;
+            }
+
+            // Trigger item untagged event.
+            $event = \core\event\item_untagged::create(array(
+                'objectid' => $taginstance->id,
+                'contextid' => $taginstance->contextid,
+                'other' => array(
+                    'tagid' => $taginstance->tagid,
+                    'tagname' => $taginstance->name,
+                    'tagrawname' => $taginstance->rawname,
+                    'itemid' => $taginstance->itemid,
+                    'itemtype' => $taginstance->itemtype
+                )
+            ));
+            $event->add_record_snapshot('tag_instance', $taginstance);
+            $event->trigger();
+        }
+    }
+}
+
 /**
  * Delete one instance of a tag.  If the last instance was deleted, it will also delete the tag, unless its type is 'official'.
  *
@@ -711,20 +791,50 @@ function tag_delete($tagids) {
  * @param    string $record_type the type of the record for which to remove the instance
  * @param    int    $record_id   the id of the record for which to remove the instance
  * @param    int    $tagid       the tagid that needs to be removed
+ * @param    int    $userid      (optional) the userid
  * @return   bool   true on success, false otherwise
  */
-function tag_delete_instance($record_type, $record_id, $tagid) {
-    global $CFG, $DB;
+function tag_delete_instance($record_type, $record_id, $tagid, $userid = null) {
+    global $DB;
 
-    if ($DB->delete_records('tag_instance', array('tagid'=>$tagid, 'itemtype'=>$record_type, 'itemid'=>$record_id))) {
-        if (!$DB->record_exists_sql("SELECT * ".
-                                      "FROM {tag} tg ".
-                                     "WHERE tg.id = ? AND ( tg.tagtype = 'official' OR ".
-                                        "EXISTS (SELECT 1
-                                                   FROM {tag_instance} ti
-                                                  WHERE ti.tagid = ?) )",
-                                     array($tagid, $tagid))) {
-            return tag_delete($tagid);
+    if (is_null($userid)) {
+        $taginstance = $DB->get_record('tag_instance', array('tagid' => $tagid, 'itemtype' => $record_type, 'itemid' => $record_id));
+    } else {
+        $taginstance = $DB->get_record('tag_instance', array('tagid' => $tagid, 'itemtype' => $record_type, 'itemid' => $record_id,
+            'tiuserid' => $userid));
+    }
+    if ($taginstance) {
+        // Get the tag.
+        $tag = $DB->get_record('tag', array('id' => $tagid));
+
+        $DB->delete_records('tag_instance', array('id' => $taginstance->id));
+
+        // We can not fire an event with 'null' as the contextid.
+        if (is_null($taginstance->contextid)) {
+            $taginstance->contextid = context_system::instance()->id;
+        }
+
+        // Trigger item untagged event.
+        $event = \core\event\item_untagged::create(array(
+            'objectid' => $taginstance->id,
+            'contextid' => $taginstance->contextid,
+            'other' => array(
+                'tagid' => $tag->id,
+                'tagname' => $tag->name,
+                'tagrawname' => $tag->rawname,
+                'itemid' => $taginstance->itemid,
+                'itemtype' => $taginstance->itemtype
+            )
+        ));
+        $event->add_record_snapshot('tag_instance', $taginstance);
+        $event->trigger();
+
+        // If there are no other instances of the tag then consider deleting the tag as well.
+        if (!$DB->record_exists('tag_instance', array('tagid' => $tagid))) {
+            // If the tag is a personal tag then delete it - don't delete official tags.
+            if ($tag->tagtype == 'default') {
+                tag_delete($tagid);
+            }
         }
     } else {
         return false;
index cc4edcc..1aa915b 100644 (file)
@@ -30,6 +30,9 @@ global $CFG;
 require_once($CFG->dirroot . '/tag/lib.php');
 require_once($CFG->dirroot . '/tag/coursetagslib.php');
 
+// Used to create a wiki page to tag.
+require_once($CFG->dirroot . '/mod/wiki/locallib.php');
+
 class core_tag_events_testcase extends advanced_testcase {
 
     /**
@@ -137,6 +140,122 @@ class core_tag_events_testcase extends advanced_testcase {
         $this->assertEventLegacyLogData($expected, $event);
     }
 
+    /**
+     * Test the item untagged event.
+     */
+    public function test_item_untagged() {
+        global $DB;
+
+        $this->setAdminUser();
+
+        // Create a course to tag.
+        $course = $this->getDataGenerator()->create_course();
+
+        // Create a wiki page to tag.
+        $wikigenerator = $this->getDataGenerator()->get_plugin_generator('mod_wiki');
+        $wiki = $wikigenerator->create_instance(array('course' => $course->id));
+        $subwikiid = wiki_add_subwiki($wiki->id, 0);
+        $wikipageid = wiki_create_page($subwikiid, 'Title', FORMAT_HTML, '2');
+
+        // Create the tag.
+        $tag = $this->getDataGenerator()->create_tag();
+
+        // Assign a tag to a course.
+        tag_assign('course', $course->id, $tag->id, 1, 2, 'core', context_course::instance($course->id)->id);
+
+        // Trigger and capture the event for untagging a course.
+        $sink = $this->redirectEvents();
+        coursetag_delete_keyword($tag->id, 2, $course->id);
+        $events = $sink->get_events();
+        $event = reset($events);
+
+        // Check that the course was untagged and the event data is valid.
+        $this->assertEquals(0, $DB->count_records('tag_instance'));
+        $this->assertInstanceOf('\core\event\item_untagged', $event);
+        $this->assertEquals(context_course::instance($course->id), $event->get_context());
+
+        // Create the tag.
+        $tag = $this->getDataGenerator()->create_tag();
+
+        // Assign a tag to a wiki this time.
+        tag_assign('wiki_pages', $wikipageid, $tag->id, 1, 2, 'mod_wiki', context_module::instance($wiki->cmid)->id);
+
+        // Trigger and capture the event for deleting this tag instance.
+        $sink = $this->redirectEvents();
+        tag_delete_instance('wiki_pages', $wikipageid, $tag->id);
+        $events = $sink->get_events();
+        $event = reset($events);
+
+        // Check that wiki page was untagged and the event data is valid.
+        $this->assertEquals(0, $DB->count_records('tag_instance'));
+        $this->assertInstanceOf('\core\event\item_untagged', $event);
+        $this->assertEquals(context_module::instance($wiki->cmid), $event->get_context());
+
+        // Create a tag again - the other would have been deleted since there were no more instances associated with it.
+        $tag = $this->getDataGenerator()->create_tag();
+
+        // Assign a tag to the wiki again.
+        tag_assign('wiki_pages', $wikipageid, $tag->id, 1, 2, 'mod_wiki', context_module::instance($wiki->cmid)->id);
+
+        // Now we want to delete this tag, and because there is only one tag instance
+        // associated with it, it should get deleted as well.
+        $sink = $this->redirectEvents();
+        tag_delete($tag->id);
+        $events = $sink->get_events();
+        $event = reset($events);
+
+        // Check that wiki page was untagged and the event data is valid.
+        $this->assertEquals(0, $DB->count_records('tag_instance'));
+        $this->assertInstanceOf('\core\event\item_untagged', $event);
+        $this->assertEquals(context_module::instance($wiki->cmid), $event->get_context());
+
+        // Create a tag again - the other would have been deleted since there were no more instances associated with it.
+        $tag = $this->getDataGenerator()->create_tag();
+
+        // Assign a tag to the wiki again.
+        tag_assign('wiki_pages', $wikipageid, $tag->id, 1, 2, 'mod_wiki', context_module::instance($wiki->cmid)->id);
+
+        // Delete all tag instances for this wiki instance.
+        $sink = $this->redirectEvents();
+        tag_delete_instances('mod_wiki', context_module::instance($wiki->cmid)->id);
+        $events = $sink->get_events();
+        $event = reset($events);
+
+        // Check that wiki page was untagged and the event data is valid.
+        $this->assertEquals(0, $DB->count_records('tag_instance'));
+        $this->assertInstanceOf('\core\event\item_untagged', $event);
+        $this->assertEquals(context_module::instance($wiki->cmid), $event->get_context());
+
+        // Create another wiki.
+        $wiki2 = $wikigenerator->create_instance(array('course' => $course->id));
+        $subwikiid2 = wiki_add_subwiki($wiki2->id, 0);
+        $wikipageid2 = wiki_create_page($subwikiid2, 'Title', FORMAT_HTML, '2');
+
+        // Assign a tag to both wiki pages.
+        tag_assign('wiki_pages', $wikipageid, $tag->id, 1, 2, 'mod_wiki', context_module::instance($wiki->cmid)->id);
+        tag_assign('wiki_pages', $wikipageid2, $tag->id, 1, 2, 'mod_wiki', context_module::instance($wiki2->cmid)->id);
+
+        // Now remove all tag_instances associated with all wikis.
+        $sink = $this->redirectEvents();
+        tag_delete_instances('mod_wiki');
+        $events = $sink->get_events();
+
+        // There will be two events - one for each wiki instance removed.
+        $event1 = reset($events);
+        $event2 = $events[1];
+
+        // Check that wiki pages were untagged.
+        $this->assertEquals(0, $DB->count_records('tag_instance'));
+
+        // Check the first event data is valid.
+        $this->assertInstanceOf('\core\event\item_untagged', $event1);
+        $this->assertEquals(context_module::instance($wiki->cmid), $event1->get_context());
+
+        // Check that the second event data is valid.
+        $this->assertInstanceOf('\core\event\item_untagged', $event2);
+        $this->assertEquals(context_module::instance($wiki2->cmid), $event2->get_context());
+    }
+
     /**
      * Test the tag flagged event.
      */
@@ -297,7 +416,7 @@ class core_tag_events_testcase extends advanced_testcase {
         $sink = $this->redirectEvents();
         coursetag_delete_keyword($tag->id, 2, $course->id);
         $events = $sink->get_events();
-        $event = reset($events);
+        $event = $events[1];
 
         // Check that the tag was deleted and the event data is valid.
         $this->assertEquals(0, $DB->count_records('tag'));
@@ -314,7 +433,7 @@ class core_tag_events_testcase extends advanced_testcase {
         $sink = $this->redirectEvents();
         coursetag_delete_course_tags($course->id);
         $events = $sink->get_events();
-        $event = reset($events);
+        $event = $events[1];
 
         // Check that the tag was deleted and the event data is valid.
         $this->assertEquals(0, $DB->count_records('tag'));
@@ -333,6 +452,7 @@ class core_tag_events_testcase extends advanced_testcase {
         $sink = $this->redirectEvents();
         coursetag_delete_course_tags($course->id);
         $events = $sink->get_events();
+        $events = array($events[2], $events[3]);
 
         // Check that the tags were deleted and the events data is valid.
         $this->assertEquals(0, $DB->count_records('tag'));