2 //This php script contains all the stuff to backup/restore
5 //This is the "graphical" structure of the chat mod:
13 // (UL,pk->id, fk->chatid)
15 // Meaning: pk->primary key field of the table
16 // fk->foreign key to link with parent
17 // nt->nested field (recursive data)
18 // CL->course level info
19 // UL->user level info
20 // files->table may have files)
22 //-----------------------------------------------------------
24 //This function executes all the restore procedure about this mod
25 function chat_restore_mods($mod,$restore) {
31 //Get record from backup_ids
32 $data = backup_getid($restore->backup_unique_code
,$mod->modtype
,$mod->id
);
35 //Now get completed xmlized object
38 //traverse_xmlize($info); //Debug
39 //print_object ($GLOBALS['traverse_array']); //Debug
40 //$GLOBALS['traverse_array']=""; //Debug
41 // if necessary, write to restorelog and adjust date/time fields
42 if ($restore->course_startdateoffset
) {
43 restore_log_date_changes('Chat', $restore, $info['MOD']['#'], array('CHATTIME'));
45 //Now, build the CHAT record structure
46 $chat->course
= $restore->course_id
;
47 $chat->name
= backup_todb($info['MOD']['#']['NAME']['0']['#']);
48 $chat->intro
= backup_todb($info['MOD']['#']['INTRO']['0']['#']);
49 $chat->keepdays
= backup_todb($info['MOD']['#']['KEEPDAYS']['0']['#']);
50 $chat->studentlogs
= backup_todb($info['MOD']['#']['STUDENTLOGS']['0']['#']);
51 $chat->schedule
= backup_todb($info['MOD']['#']['SCHEDULE']['0']['#']);
52 $chat->chattime
= backup_todb($info['MOD']['#']['CHATTIME']['0']['#']);
53 $chat->timemodified
= backup_todb($info['MOD']['#']['TIMEMODIFIED']['0']['#']);
55 //The structure is equal to the db, so insert the chat
56 $newid = insert_record ("chat",$chat);
59 if (!defined('RESTORE_SILENTLY')) {
60 echo "<li>".get_string("modulename","chat")." \"".format_string(stripslashes($chat->name
),true)."\"</li>";
65 //We have the newid, update backup_ids
66 backup_putid($restore->backup_unique_code
,$mod->modtype
,
68 //Now check if want to restore user data and do it.
69 if (restore_userdata_selected($restore,'chat',$mod->id
)) {
70 //Restore chat_messages
71 $status = chat_messages_restore_mods ($mod->id
, $newid,$info,$restore);
83 //This function restores the chat_messages
84 function chat_messages_restore_mods($old_chat_id, $new_chat_id,$info,$restore) {
90 //Get the messages array
91 $messages = $info['MOD']['#']['MESSAGES']['0']['#']['MESSAGE'];
93 //Iterate over messages
94 for($i = 0; $i < sizeof($messages); $i++
) {
95 $mes_info = $messages[$i];
96 //traverse_xmlize($mes_info); //Debug
97 //print_object ($GLOBALS['traverse_array']); //Debug
98 //$GLOBALS['traverse_array']=""; //Debug
100 //We'll need this later!!
101 $oldid = backup_todb($mes_info['#']['ID']['0']['#']);
102 $olduserid = backup_todb($mes_info['#']['USERID']['0']['#']);
104 //Now, build the CHAT_MESSAGES record structure
105 $message = new object();
106 $message->chatid
= $new_chat_id;
107 $message->userid
= backup_todb($mes_info['#']['USERID']['0']['#']);
108 $message->groupid
= backup_todb($mes_info['#']['GROUPID']['0']['#']);
109 $message->system
= backup_todb($mes_info['#']['SYSTEM']['0']['#']);
110 $message->message
= backup_todb($mes_info['#']['MESSAGE_TEXT']['0']['#']);
111 $message->timestamp
= backup_todb($mes_info['#']['TIMESTAMP']['0']['#']);
113 //We have to recode the userid field
114 $user = backup_getid($restore->backup_unique_code
,"user",$message->userid
);
116 $message->userid
= $user->new_id
;
119 //We have to recode the groupid field
120 $group = restore_group_getid($restore, $message->groupid
);
122 $message->groupid
= $group->new_id
;
125 //The structure is equal to the db, so insert the chat_message
126 $newid = insert_record ("chat_messages",$message);
129 if (($i+
1) %
50 == 0) {
130 if (!defined('RESTORE_SILENTLY')) {
132 if (($i+
1) %
1000 == 0) {
142 //Return a content decoded to support interactivities linking. Every module
143 //should have its own. They are called automatically from
144 //chat_decode_content_links_caller() function in each module
145 //in the restore process
146 function chat_decode_content_links ($content,$restore) {
152 //Link to the list of chats
154 $searchstring='/\$@(CHATINDEX)\*([0-9]+)@\$/';
156 preg_match_all($searchstring,$content,$foundset);
157 //If found, then we are going to look for its new id (in backup tables)
159 //print_object($foundset); //Debug
160 //Iterate over foundset[2]. They are the old_ids
161 foreach($foundset[2] as $old_id) {
162 //We get the needed variables here (course id)
163 $rec = backup_getid($restore->backup_unique_code
,"course",$old_id);
164 //Personalize the searchstring
165 $searchstring='/\$@(CHATINDEX)\*('.$old_id.')@\$/';
166 //If it is a link to this course, update the link to its new location
169 $result= preg_replace($searchstring,$CFG->wwwroot
.'/mod/chat/index.php?id='.$rec->new_id
,$result);
171 //It's a foreign link so leave it as original
172 $result= preg_replace($searchstring,$restore->original_wwwroot
.'/mod/chat/index.php?id='.$old_id,$result);
177 //Link to chat view by moduleid
179 $searchstring='/\$@(CHATVIEWBYID)\*([0-9]+)@\$/';
181 preg_match_all($searchstring,$result,$foundset);
182 //If found, then we are going to look for its new id (in backup tables)
184 //print_object($foundset); //Debug
185 //Iterate over foundset[2]. They are the old_ids
186 foreach($foundset[2] as $old_id) {
187 //We get the needed variables here (course_modules id)
188 $rec = backup_getid($restore->backup_unique_code
,"course_modules",$old_id);
189 //Personalize the searchstring
190 $searchstring='/\$@(CHATVIEWBYID)\*('.$old_id.')@\$/';
191 //If it is a link to this course, update the link to its new location
194 $result= preg_replace($searchstring,$CFG->wwwroot
.'/mod/chat/view.php?id='.$rec->new_id
,$result);
196 //It's a foreign link so leave it as original
197 $result= preg_replace($searchstring,$restore->original_wwwroot
.'/mod/chat/view.php?id='.$old_id,$result);
205 //This function makes all the necessary calls to xxxx_decode_content_links()
206 //function in each module, passing them the desired contents to be decoded
207 //from backup format to destination site/course in order to mantain inter-activities
208 //working in the backup/restore process. It's called from restore_decode_content_links()
209 //function in restore process
210 function chat_decode_content_links_caller($restore) {
214 if ($chats = get_records_sql ("SELECT c.id, c.intro
215 FROM {$CFG->prefix}chat c
216 WHERE c.course = $restore->course_id")) {
217 //Iterate over each chat->intro
218 $i = 0; //Counter to send some output to the browser to avoid timeouts
219 foreach ($chats as $chat) {
222 $content = $chat->intro
;
223 $result = restore_decode_content_links_worker($content,$restore);
224 if ($result != $content) {
226 $chat->intro
= addslashes($result);
227 $status = update_record("chat",$chat);
229 if (!defined('RESTORE_SILENTLY')) {
230 echo '<br /><hr />'.s($content).'<br />changed to<br />'.s($result).'<hr /><br />';
235 if (($i+
1) %
5 == 0) {
236 if (!defined('RESTORE_SILENTLY')) {
238 if (($i+
1) %
100 == 0) {
250 //This function returns a log record with all the necessay transformations
251 //done. It's used by restore_log_module() to restore modules log.
252 function chat_restore_logs($restore,$log) {
256 //Depending of the action, we recode different things
257 switch ($log->action
) {
260 //Get the new_id of the module (to recode the info field)
261 $mod = backup_getid($restore->backup_unique_code
,$log->module
,$log->info
);
263 $log->url
= "view.php?id=".$log->cmid
;
264 $log->info
= $mod->new_id
;
271 //Get the new_id of the module (to recode the info field)
272 $mod = backup_getid($restore->backup_unique_code
,$log->module
,$log->info
);
274 $log->url
= "view.php?id=".$log->cmid
;
275 $log->info
= $mod->new_id
;
282 //Get the new_id of the module (to recode the info field)
283 $mod = backup_getid($restore->backup_unique_code
,$log->module
,$log->info
);
285 $log->url
= "view.php?id=".$log->cmid
;
286 $log->info
= $mod->new_id
;
293 //Get the new_id of the module (to recode the info field)
294 $mod = backup_getid($restore->backup_unique_code
,$log->module
,$log->info
);
296 $log->url
= "view.php?id=".$log->cmid
;
297 $log->info
= $mod->new_id
;
303 $log->url
= "index.php?id=".$log->course
;
308 //Get the new_id of the module (to recode the info field)
309 $mod = backup_getid($restore->backup_unique_code
,$log->module
,$log->info
);
311 $log->url
= "report.php?id=".$log->cmid
;
312 $log->info
= $mod->new_id
;
318 if (!defined('RESTORE_SILENTLY')) {
319 echo "action (".$log->module
."-".$log->action
.") unknown. Not restored<br />"; //Debug