libdir.'/adminlib.php'); // Configuration $autokeywords = array( "id)) { if (isset($SESSION->users_result[$id])) { $user = $SESSION->users_result[$id]; if (delete_user($user)) { unset($SESSION->users_result[$id]); echo json_encode(true); } else { echo json_encode(false); } } else { echo json_encode(false); } exit; } // Delete lots of users if (!empty($delall) && confirm_sesskey()) { if (!empty($SESSION->users_result)) { foreach ($SESSION->users_result as $userid => $user) { if ($userid != $USER->id) { if (delete_user($user)) { unset($SESSION->users_result[$userid]); } } } } echo json_encode(true); exit; } if (!empty($ignore)) { unset($SESSION->users_result[$id]); echo json_encode(true); exit; } $PAGE->requires->js_init_call('M.tool_spamcleaner.init', array(me()), true); $strings = Array('spaminvalidresult','spamdeleteallconfirm','spamcannotdelete','spamdeleteconfirm'); $PAGE->requires->strings_for_js($strings, 'tool_spamcleaner'); echo $OUTPUT->header(); // Print headers and things echo $OUTPUT->box(get_string('spamcleanerintro', 'tool_spamcleaner')); echo $OUTPUT->box_start(); // The forms section at the top ?>


box_end(); echo '
'; // Print list of resulting profiles if (!empty($keyword)) { // Use the keyword(s) supplied by the user $keywords = explode(',', $keyword); foreach ($keywords as $key => $keyword) { $keywords[$key] = trim($keyword); } search_spammers($keywords); } else if (!empty($autodetect)) { // Use the inbuilt keyword list to detect users search_spammers($autokeywords); } echo '
'; ///////////////////////////////////////////////////////////////////////////////// /// Functions function search_spammers($keywords) { global $CFG, $USER, $DB, $OUTPUT; if (!is_array($keywords)) { $keywords = array($keywords); // Make it into an array } $params = array('userid'=>$USER->id); $keywordfull = array(); $i = 0; foreach ($keywords as $keyword) { $keywordfull[] = $DB->sql_like('description', ':descpat'.$i, false); $params['descpat'.$i] = "%$keyword%"; $keywordfull2[] = $DB->sql_like('p.summary', ':sumpat'.$i, false); $params['sumpat'.$i] = "%$keyword%"; $i++; } $conditions = '( '.implode(' OR ', $keywordfull).' )'; $conditions2 = '( '.implode(' OR ', $keywordfull2).' )'; $sql = "SELECT * FROM {user} WHERE deleted = 0 AND id <> :userid AND $conditions"; // Exclude oneself $sql2 = "SELECT u.*, p.summary FROM {user} AS u, {post} AS p WHERE $conditions2 AND u.deleted = 0 AND u.id=p.userid AND u.id <> :userid"; $spamusers_desc = $DB->get_recordset_sql($sql, $params); $spamusers_blog = $DB->get_recordset_sql($sql2, $params); $keywordlist = implode(', ', $keywords); echo $OUTPUT->box(get_string('spamresult', 'tool_spamcleaner').s($keywordlist)).' ...'; print_user_list(array($spamusers_desc, $spamusers_blog), $keywords); } function print_user_list($users_rs, $keywords) { global $CFG, $SESSION; // reset session everytime this function is called $SESSION->users_result = array(); $count = 0; foreach ($users_rs as $rs){ foreach ($rs as $user) { if (!$count) { echo ''; } $count++; filter_user($user, $keywords, $count); } } if (!$count) { echo get_string('spamcannotfinduser', 'tool_spamcleaner'); } else { echo '
 '.get_string('user','admin').''.get_string('spamdesc', 'tool_spamcleaner').''.get_string('spamoperation', 'tool_spamcleaner').'
'; echo '
'; } } function filter_user($user, $keywords, $count) { global $CFG; $image_search = false; if (in_array('summary)) { $user->description = '

'.get_string('spamfromblog', 'tool_spamcleaner').'

'.$user->summary; unset($user->summary); } if (preg_match('#wwwroot.')#', $user->description, $matches) && $image_search) { $result = false; foreach ($keywords as $keyword) { if (preg_match('#'.$keyword.'#', $user->description) && ($keyword != 'id = $user->id; $smalluserobject->email = $user->email; $smalluserobject->auth = $user->auth; $smalluserobject->firstname = $user->firstname; $smalluserobject->lastname = $user->lastname; $smalluserobject->username = $user->username; if (empty($SESSION->users_result[$user->id])) { $SESSION->users_result[$user->id] = $smalluserobject; $html = ''; $html .= ''.$count.''; $html .= 'id.'" title="'.s($user->username).'">'.fullname($user).''; $html .= "
    "; $profile_set = array('city'=>true, 'country'=>true, 'email'=>true); foreach ($profile_set as $key=>$value) { if (isset($user->$key)){ $html .= '
  • '.$user->$key.'
  • '; } } $html .= "
"; $html .= ''; foreach ($keywords as $keyword) { $user->description = highlight($keyword, $user->description); } if (!isset($user->descriptionformat)) { $user->descriptionformat = FORMAT_MOODLE; } $html .= ''.format_text($user->description, $user->descriptionformat, array('overflowdiv'=>true)).''; $html .= ''; $html .= '
'; $html .= ''; $html .= ''; $html .= ''; return $html; } else { return null; } } echo $OUTPUT->footer();