$id)); if ($start !== 0) { $url->param('start', $start); } if ($end !== 0) { $url->param('end', $end); } if ($deletesession !== 0) { $url->param('deletesession', $deletesession); } if ($confirmdelete !== 0) { $url->param('confirmdelete', $confirmdelete); } $PAGE->set_url($url); if (! $cm = get_coursemodule_from_id('chat', $id)) { print_error('invalidcoursemodule'); } if (! $chat = $DB->get_record('chat', array('id'=>$cm->instance))) { print_error('invalidcoursemodule'); } if (! $course = $DB->get_record('course', array('id'=>$chat->course))) { print_error('coursemisconf'); } $context = get_context_instance(CONTEXT_MODULE, $cm->id); $PAGE->set_context($context); $PAGE->set_heading($course->fullname); require_login($course->id, false, $cm); if (empty($chat->studentlogs) && !has_capability('mod/chat:readlog', $context)) { notice(get_string('nopermissiontoseethechatlog', 'chat')); } add_to_log($course->id, 'chat', 'report', "report.php?id=$cm->id", $chat->id, $cm->id); $strchats = get_string('modulenameplural', 'chat'); $strchat = get_string('modulename', 'chat'); $strchatreport = get_string('chatreport', 'chat'); $strseesession = get_string('seesession', 'chat'); $strdeletesession = get_string('deletesession', 'chat'); $navlinks = array(); $canexportsess = has_capability('mod/chat:exportsession', $context); /// Print a session if one has been specified if ($start and $end and !$confirmdelete) { // Show a full transcript $PAGE->navbar->add($strchatreport); $PAGE->set_title(format_string($chat->name).": $strchatreport"); echo $OUTPUT->header(); /// Check to see if groups are being used here $groupmode = groups_get_activity_groupmode($cm); $currentgroup = groups_get_activity_group($cm, true); groups_print_activity_menu($cm, $CFG->wwwroot . "/mod/chat/report.php?id=$cm->id"); $params = array('currentgroup'=>$currentgroup, 'chatid'=>$chat->id, 'start'=>$start, 'end'=>$end); // If the user is allocated to a group, only show messages from people // in the same group, or no group if ($currentgroup) { $groupselect = " AND (groupid = :currentgroup OR groupid = 0)"; } else { $groupselect = ""; } if ($deletesession and has_capability('mod/chat:deletelog', $context)) { echo $OUTPUT->confirm(get_string('deletesessionsure', 'chat'), "report.php?id=$cm->id&deletesession=1&confirmdelete=1&start=$start&end=$end", "report.php?id=$cm->id"); } if (!$messages = $DB->get_records_select('chat_messages', "chatid = :chatid AND timestamp >= :start AND timestamp <= :end $groupselect", $params, "timestamp ASC")) { echo $OUTPUT->heading(get_string('nomessages', 'chat')); } else { echo '

'.userdate($start).' --> '. userdate($end).'

'; echo $OUTPUT->box_start('center'); $participates = array(); foreach ($messages as $message) { // We are walking FORWARDS through messages if (!isset($participates[$message->userid])) { $participates[$message->userid] = true; } $formatmessage = chat_format_message($message, $course->id, $USER); if (isset($formatmessage->html)) { echo $formatmessage->html; } } $participatedcap = array_key_exists($USER->id, $participates) && has_capability('mod/chat:exportparticipatedsession', $context); if (!empty($CFG->enableportfolios) && ($canexportsess || $participatedcap)) { require_once($CFG->libdir . '/portfoliolib.php'); $buttonoptions = array( 'id' => $cm->id, 'start' => $start, 'end' => $end, ); $button = new portfolio_add_button(); $button->set_callback_options('chat_portfolio_caller', $buttonoptions, '/mod/chat/locallib.php'); $button->render(); } echo $OUTPUT->box_end(); } if (!$deletesession or !has_capability('mod/chat:deletelog', $context)) { echo $OUTPUT->continue_button("report.php?id=$cm->id"); } echo $OUTPUT->footer(); exit; } /// Print the Sessions display $PAGE->navbar->add($strchatreport); $PAGE->set_title(format_string($chat->name).": $strchatreport"); echo $OUTPUT->header(); echo $OUTPUT->heading(format_string($chat->name).': '.get_string('sessions', 'chat')); /// Check to see if groups are being used here if ($groupmode = groups_get_activity_groupmode($cm)) { // Groups are being used $currentgroup = groups_get_activity_group($cm, true); groups_print_activity_menu($cm, $CFG->wwwroot . "/mod/chat/report.php?id=$cm->id"); } else { $currentgroup = false; } $params = array('currentgroup'=>$currentgroup, 'chatid'=>$chat->id, 'start'=>$start, 'end'=>$end); // If the user is allocated to a group, only show discussions with people in // the same group, or no group if (!empty($currentgroup)) { $groupselect = " AND (groupid = :currentgroup OR groupid = 0)"; } else { $groupselect = ""; } /// Delete a session if one has been specified if ($deletesession and has_capability('mod/chat:deletelog', $context) and $confirmdelete and $start and $end and confirm_sesskey()) { $DB->delete_records_select('chat_messages', "chatid = :chatid AND timestamp >= :start AND timestamp <= :end $groupselect", $params); $strdeleted = get_string('deleted'); echo $OUTPUT->notification("$strdeleted: ".userdate($start).' --> '. userdate($end)); unset($deletesession); } /// Get the messages if (empty($messages)) { /// May have already got them above if (!$messages = $DB->get_records_select('chat_messages', "chatid = :chatid $groupselect", $params, "timestamp DESC")) { echo $OUTPUT->heading(get_string('nomessages', 'chat')); echo $OUTPUT->footer(); exit; } } if ($show_all) { echo $OUTPUT->heading(get_string('listing_all_sessions', 'chat') . ' ' . get_string('list_complete_sessions', 'chat') . ''); } /// Show all the sessions $sessiongap = 5 * 60; // 5 minutes silence means a new session $sessionend = 0; $sessionstart = 0; $sessionusers = array(); $lasttime = 0; $complete_sessions = 0; $messagesleft = count($messages); foreach ($messages as $message) { // We are walking BACKWARDS through the messages $messagesleft --; // Countdown if (!$lasttime) { $lasttime = $message->timestamp; } if (!$sessionend) { $sessionend = $message->timestamp; } if ((($lasttime - $message->timestamp) < $sessiongap) and $messagesleft) { // Same session if ($message->userid and !$message->system) { // Remember user and count messages if (empty($sessionusers[$message->userid])) { $sessionusers[$message->userid] = 1; } else { $sessionusers[$message->userid] ++; } } } else { $sessionstart = $lasttime; $is_complete = ($sessionend - $sessionstart > 60 and count($sessionusers) > 1); if ($show_all or $is_complete) { echo '

'.userdate($sessionstart).' --> '. userdate($sessionend).'

'; echo $OUTPUT->box_start(); arsort($sessionusers); foreach ($sessionusers as $sessionuser => $usermessagecount) { if ($user = $DB->get_record('user', array('id'=>$sessionuser))) { $OUTPUT->user_picture($user, array('courseid'=>$course->id)); echo ' '.fullname($user, true); // XXX TODO use capability instead of true echo " ($usermessagecount)
"; } } echo '

'; echo "id&start=$sessionstart&end=$sessionend\">$strseesession"; $participatedcap = (array_key_exists($USER->id, $sessionusers) && has_capability('mod/chat:exportparticipatedsession', $context)); if (!empty($CFG->enableportfolios) && ($canexportsess || $participatedcap)) { require_once($CFG->libdir . '/portfoliolib.php'); $buttonoptions = array( 'id' => $cm->id, 'start' => $sessionstart, 'end' => $sessionend, ); $button = new portfolio_add_button(); $button->set_callback_options('chat_portfolio_caller', $buttonoptions, '/mod/chat/locallib.php'); $portfoliobutton = $button->to_html(PORTFOLIO_ADD_TEXT_LINK); if (!empty($portfoliobutton)) { echo '
' . $portfoliobutton; } } if (has_capability('mod/chat:deletelog', $context)) { echo "
id&start=$sessionstart&end=$sessionend&deletesession=1\">$strdeletesession"; } echo '

'; echo $OUTPUT->box_end(); } if ($is_complete) { $complete_sessions++; } $sessionend = $message->timestamp; $sessionusers = array(); $sessionusers[$message->userid] = 1; } $lasttime = $message->timestamp; } if (!empty($CFG->enableportfolios) && $canexportsess) { require_once($CFG->libdir . '/portfoliolib.php'); $button = new portfolio_add_button(); $button->set_callback_options('chat_portfolio_caller', array('id' => $cm->id), '/mod/chat/locallib.php'); $button->render(null, get_string('addalltoportfolio', 'portfolio')); } if (!$show_all and $complete_sessions == 0) { echo $OUTPUT->heading(get_string('no_complete_sessions_found', 'chat') . ' ' . get_string('list_all_sessions', 'chat') . ''); } /// Finish the page echo $OUTPUT->footer();