MDL-23479 wiki restore code - Still some files not included in backup/restore and...
[moodle.git] / mod / wiki / backup / moodle2 / restore_wiki_stepslib.php
CommitLineData
36ee2cae
DM
1<?php
2
3// This file is part of Moodle - http://moodle.org/
4//
5// Moodle is free software: you can redistribute it and/or modify
6// it under the terms of the GNU General Public License as published by
7// the Free Software Foundation, either version 3 of the License, or
8// (at your option) any later version.
9//
10// Moodle is distributed in the hope that it will be useful,
11// but WITHOUT ANY WARRANTY; without even the implied warranty of
12// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13// GNU General Public License for more details.
14//
15// You should have received a copy of the GNU General Public License
16// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
17
18/**
19 * @package moodlecore
20 * @subpackage backup-moodle2
21 * @copyright 2010 onwards Eloy Lafuente (stronk7) {@link http://stronk7.com}
22 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
23 */
24
25/**
26 * Define all the restore steps that will be used by the restore_wiki_activity_task
27 */
28
29/**
30 * Structure step to restore one wiki activity
31 */
32class restore_wiki_activity_structure_step extends restore_activity_structure_step {
33
34 protected function define_structure() {
35
36 $paths = array();
37 $userinfo = $this->get_setting_value('userinfo');
38
39 $paths[] = new restore_path_element('wiki', '/activity/wiki');
40 if ($userinfo) {
41 $paths[] = new restore_path_element('wiki_subwiki', '/activity/wiki/subwikis/subwiki');
42 $paths[] = new restore_path_element('wiki_page', '/activity/wiki/subwikis/subwiki/pages/page');
43 $paths[] = new restore_path_element('wiki_version', '/activity/wiki/subwikis/subwiki/pages/page/versions/version');
44 $paths[] = new restore_path_element('wiki_synonym', '/activity/wiki/subwikis/subwiki/synonyms/synonym');
45 $paths[] = new restore_path_element('wiki_link', '/activity/wiki/subwikis/subwiki/links/link');
46 $paths[] = new restore_path_element('wiki_comment', '/activity/wiki/subwikis/subwiki/pages/page/comments/comment');
47 }
48
49 // Return the paths wrapped into standard activity structure
50 return $this->prepare_activity_structure($paths);
51 }
52
53 protected function process_wiki($data) {
54 global $DB;
55
56 $data = (object)$data;
57 $oldid = $data->id;
58 $data->course = $this->get_courseid();
59
60 $data->editbegin = $this->apply_date_offset($data->editbegin);
61 $data->editend = $this->apply_date_offset($data->editend);
62
63 // insert the wiki record
64 $newitemid = $DB->insert_record('wiki', $data);
65 // inmediately after inserting "activity" record, call this
66 $this->apply_activity_instance($newitemid);
67 }
68
69 protected function process_wiki_subwiki($data) {
70 global $DB;
71
72
73 $data = (object)$data;
74 $oldid = $data->id;
75 $data->wikiid = $this->get_new_parentid('wiki');
76 $data->groupid = $this->get_mappingid('group', $data->groupid);
77 $data->userid = $this->get_mappingid('user', $data->userid);
78
79 $newitemid = $DB->insert_record('wiki_subwikis', $data);
80 $this->set_mapping('wiki_subwiki', $oldid, $newitemid);
81 }
82 protected function process_wiki_page($data) {
83 global $DB;
84
85 $data = (object)$data;
86 $oldid = $data->id;
87 $data->subwikiid = $this->get_new_parentid('wiki_subwiki');
88 $data->userid = $this->get_mappingid('user', $data->userid);
89
90 $newitemid = $DB->insert_record('wiki_pages', $data);
91 $this->set_mapping('wiki_page', $oldid, $newitemid);
92 }
93 protected function process_wiki_version($data) {
94 global $DB;
95
96 $data = (object)$data;
97 $oldid = $data->id;
98 $data->pageid = $this->get_new_parentid('wiki_page');
99 $data->userid = $this->get_mappingid('user', $data->userid);
100
101 $newitemid = $DB->insert_record('wiki_versions', $data);
102 // No need to save this mapping as far as nothing depend on it
103 // (child paths, file areas nor links decoder)
104 }
105 protected function process_wiki_synonym($data) {
106 global $DB;
107
108 $data = (object)$data;
109 $oldid = $data->id;
110 $data->subwikiid = $this->get_new_parentid('wiki_subwiki');
111 $data->pageid = $this->get_mappingid('wiki_page', $data->pageid);
112
113 $newitemid = $DB->insert_record('wiki_synonyms', $data);
114 // No need to save this mapping as far as nothing depend on it
115 // (child paths, file areas nor links decoder)
116 }
117 protected function process_wiki_link($data) {
118 global $DB;
119
120 $data = (object)$data;
121 $oldid = $data->id;
122 $data->subwikiid = $this->get_new_parentid('wiki_subwiki');
123 $data->frompageid = $this->get_mappingid('wiki_page', $data->frompageid);
124 $data->topageid = $this->get_mappingid('wiki_page', $data->topageid);
125
126 $newitemid = $DB->insert_record('wiki_links', $data);
127 // No need to save this mapping as far as nothing depend on it
128 // (child paths, file areas nor links decoder)
129 }
130
131 protected function process_wiki_comment($data) {
132 global $DB;
133
134 $data = (object)$data;
135 $oldid = $data->id;
136 $data->contextid = $this->get_mappingid('context', $data->contextid);
137 $data->userid = $this->get_mappingid('user', $data->userid);
138
139 $newitemid = $DB->insert_record('comments', $data);
140 // No need to save this mapping as far as nothing depend on it
141 // (child paths, file areas nor links decoder)
142 }
143
144
145 protected function after_execute() {
146 // Add wiki related files, no need to match by itemname (just internally handled context)
147 $this->add_related_files('mod_wiki', 'intro', null);
148 }
149}