mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 06:18:28 +01:00
370 lines
14 KiB
PHP
370 lines
14 KiB
PHP
<?php
|
|
/**
|
|
* Global Search Engine for Moodle
|
|
* add-on 1.8+ : Valery Fremaux [valery.fremaux@club-internet.fr]
|
|
* 2007/08/02
|
|
*
|
|
* document handling for data activity module
|
|
* This file contains the mapping between a database object and it's indexable counterpart,
|
|
*
|
|
* Functions for iterating and retrieving the necessary records are now also included
|
|
* in this file, rather than mod/data/lib.php
|
|
**/
|
|
|
|
require_once("$CFG->dirroot/search/documents/document.php");
|
|
require_once("$CFG->dirroot/mod/data/lib.php");
|
|
|
|
/*
|
|
* a class for representing searchable information (data records)
|
|
*
|
|
**/
|
|
class DataSearchDocument extends SearchDocument {
|
|
|
|
/**
|
|
* constructor
|
|
*
|
|
*/
|
|
public function __construct(&$record, $course_id, $context_id) {
|
|
// generic information; required
|
|
$doc->docid = $record['id'];
|
|
$doc->documenttype = SEARCH_TYPE_DATA;
|
|
$doc->itemtype = 'record';
|
|
$doc->contextid = $context_id;
|
|
|
|
$doc->title = $record['title'];
|
|
$doc->date = $record['timemodified'];
|
|
//remove '(ip.ip.ip.ip)' from data record author field
|
|
if ($record['userid']){
|
|
$user = get_record('user', 'id', $record['userid']);
|
|
}
|
|
$doc->author = (isset($user)) ? $user->firstname.' '.$user->lastname : '' ;
|
|
$doc->contents = $record['content'];
|
|
$doc->url = data_make_link($record['dataid'], $record['id']);
|
|
|
|
// module specific information; optional
|
|
// $data->params = serialize(@$record['params']); may be useful
|
|
$data->database = $record['dataid'];
|
|
|
|
// construct the parent class
|
|
parent::__construct($doc, $data, $course_id, $record['groupid'], $record['userid'], PATH_FOR_SEARCH_TYPE_DATA);
|
|
} //constructor
|
|
} //ChatSearchDocument
|
|
|
|
/*
|
|
* a class for representing searchable information (comments on data records)
|
|
*
|
|
**/
|
|
class DataCommentSearchDocument extends SearchDocument {
|
|
|
|
/**
|
|
* constructor
|
|
*
|
|
*/
|
|
public function __construct(&$comment, $course_id, $context_id) {
|
|
// generic information; required
|
|
$doc->docid = $comment['id'];
|
|
$doc->documenttype = SEARCH_TYPE_DATA;
|
|
$doc->itemtype = 'comment';
|
|
$doc->contextid = $context_id;
|
|
|
|
$doc->title = get_string('commenton', 'search').' '.$comment['title'];
|
|
$doc->date = $comment['modified'];
|
|
//remove '(ip.ip.ip.ip)' from data record author field
|
|
$doc->author = preg_replace('/\(.*?\)/', '', $comment['author']);
|
|
$doc->contents = $comment['content'];
|
|
$doc->url = data_make_link($data_id, $comment['recordid']);
|
|
|
|
// module specific information; optional
|
|
$data->database = $comment['dataid'];
|
|
|
|
// construct the parent class
|
|
parent::__construct($doc, $data, $course_id, $comment['groupid'], $comment['userid'], PATH_FOR_SEARCH_TYPE_DATA);
|
|
} //constructor
|
|
} //ChatCommentSearchDocument
|
|
|
|
/**
|
|
* constructs a valid link to a data record content
|
|
* @param database_id the database reference
|
|
* @param record_id the record reference
|
|
* @return a valid url top access the information as a string
|
|
*/
|
|
function data_make_link($database_id, $record_id) {
|
|
global $CFG;
|
|
|
|
return $CFG->wwwroot.'/mod/data/view.php?d='.$database_id.'&rid='.$record_id;
|
|
} //data_make_link
|
|
|
|
/**
|
|
* fetches all the records for a given database
|
|
* @param database_id the database
|
|
* @param typematch a comma separated list of types that should be considered for searching or *
|
|
* @return an array of objects representing the data records.
|
|
*/
|
|
function data_get_records($database_id, $typematch = '*') {
|
|
global $CFG;
|
|
|
|
$fieldset = get_records('data_fields', 'dataid', $database_id);
|
|
$query = "
|
|
SELECT
|
|
c.*
|
|
FROM
|
|
{$CFG->prefix}data_content as c,
|
|
{$CFG->prefix}data_records as r
|
|
WHERE
|
|
c.recordid = r.id AND
|
|
r.dataid = {$database_id}
|
|
ORDER BY
|
|
c.fieldid
|
|
";
|
|
$data = get_records_sql($query);
|
|
$records = array();
|
|
if ($data){
|
|
foreach($data as $aDatum){
|
|
if($typematch == '*' || preg_match("/\\b{$fieldset[$aDatum->fieldid]->type}\\b/", $typematch)){
|
|
if (!isset($records[$aDatum->recordid])){
|
|
$records[$aDatum->recordid]['_first'] = $aDatum->content.' '.$aDatum->content1.' '.$aDatum->content2.' '.$aDatum->content3.' '.$aDatum->content4.' ';
|
|
}
|
|
else{
|
|
$records[$aDatum->recordid][$fieldset[$aDatum->fieldid]->name] = $aDatum->content.' '.$aDatum->content1.' '.$aDatum->content2.' '.$aDatum->content3.' '.$aDatum->content4.' ';
|
|
}
|
|
}
|
|
}
|
|
}
|
|
return $records;
|
|
} //data_get_records
|
|
|
|
/**
|
|
* fetches all the comments for a given database
|
|
* @param database_id the database
|
|
* @return an array of objects representing the data record comments.
|
|
*/
|
|
function data_get_comments($database_id) {
|
|
global $CFG;
|
|
|
|
$query = "
|
|
SELECT
|
|
c.id,
|
|
r.groupid,
|
|
c.userid,
|
|
c.recordid,
|
|
c.content,
|
|
c.created,
|
|
c.modified,
|
|
r.dataid
|
|
FROM
|
|
{$CFG->prefix}data_comments as c,
|
|
{$CFG->prefix}data_records as r
|
|
WHERE
|
|
c.recordid = r.id
|
|
";
|
|
$comments = get_records_sql($query);
|
|
return $comments;
|
|
} //data_get_comments
|
|
|
|
|
|
/**
|
|
* part of search engine API
|
|
*
|
|
*/
|
|
function data_iterator() {
|
|
$databases = get_records('data');
|
|
return $databases;
|
|
} //data_iterator
|
|
|
|
/**
|
|
* part of search engine API
|
|
* @param database the database instance
|
|
* @return an array of searchable documents
|
|
*/
|
|
function data_get_content_for_index(&$database) {
|
|
|
|
$documents = array();
|
|
$recordTitles = array();
|
|
$coursemodule = get_field('modules', 'id', 'name', 'data');
|
|
$cm = get_record('course_modules', 'course', $database->course, 'module', $coursemodule, 'instance', $database->id);
|
|
$context = get_context_instance(CONTEXT_MODULE, $cm->id);
|
|
|
|
// getting records for indexing
|
|
$records_content = data_get_records($database->id, 'text');
|
|
if ($records_content){
|
|
foreach(array_keys($records_content) as $aRecordId) {
|
|
|
|
// extract title as first record in order
|
|
$first = $records_content[$aRecordId]['_first'];
|
|
unset($records_content[$aRecordId]['_first']);
|
|
|
|
// concatenates all other texts
|
|
foreach($records_content[$aRecordId] as $aField){
|
|
$content = @$content.' '.$aField;
|
|
}
|
|
if (strlen($content) > 0) {
|
|
unset($recordMetaData);
|
|
$recordMetaData = get_record('data_records', 'id', $aRecordId);
|
|
$recordMetaData->title = $first;
|
|
$recordTitles[$aRecordId] = $first;
|
|
$recordMetaData->content = $content;
|
|
$documents[] = new DataSearchDocument(get_object_vars($recordMetaData), $database->course, $context->id);
|
|
}
|
|
}
|
|
}
|
|
|
|
// getting comments for indexing
|
|
$records_comments = data_get_comments($database->id);
|
|
if ($records_comments){
|
|
foreach($records_comments as $aComment){
|
|
$aComment->title = $recordsTitle[$aComment->recordid];
|
|
$documents[] = new DataCommentSearchDocument(get_object_vars($aComment), $database->course, $context->id);
|
|
}
|
|
}
|
|
return $documents;
|
|
} //data_get_content_for_index
|
|
|
|
/**
|
|
* returns a single data search document based on a data entry id
|
|
* @param id the id of the record
|
|
* @param the type of the information
|
|
* @return a single searchable document
|
|
*/
|
|
function data_single_document($id, $itemtype) {
|
|
|
|
if ($itemtype == 'record'){
|
|
// get main record
|
|
$recordMetaData = get_record('data_records', 'id', $id);
|
|
// get context
|
|
$record_course = get_field('data', 'course', 'id', $recordMetaData->dataid);
|
|
$coursemodule = get_field('modules', 'id', 'name', 'data');
|
|
$cm = get_record('course_modules', 'course', $record_course, 'module', $coursemodule, 'instance', $recordMetaData->dataid);
|
|
$context = get_context_instance(CONTEXT_MODULE, $cm->id);
|
|
// compute text
|
|
$recordData = get_records_select('data_content', "recordid = $id AND type = 'text'", 'recordid');
|
|
$accumulator = '';
|
|
if ($recordData){
|
|
$first = $recordData[0];
|
|
if (count($recordData) > 1){
|
|
$others = array_splice($recordData, 0, 1);
|
|
foreach($others as $aDatum){
|
|
$accumulator .= $data->content.' '.$data->content1.' '.$data->content2.' '.$data->content3.' '.$data->content4.' ';
|
|
}
|
|
}
|
|
}
|
|
// add extra fields
|
|
$recordMetaData->title = $first;
|
|
$recordMetaData->content = $accumulator;
|
|
// make document
|
|
$documents[] = new DataSearchDocument(get_object_vars($recordMetaData), $record_course, $context->id);
|
|
}
|
|
elseif($itemtype == 'comment'){
|
|
// get main records
|
|
$comment = get_record('data_comments', 'id', $id);
|
|
$record = get_record('data_records', 'id', $comment->recordid);
|
|
// get context
|
|
$record_course = get_field('data', 'course', 'id', $record->dataid);
|
|
$coursemodule = get_field('modules', 'id', 'name', 'data');
|
|
$cm = get_record('course_modules', 'course', $record_course, 'module', $coursemodule, 'instance', $recordMetaData->dataid);
|
|
$context = get_context_instance(CONTEXT_MODULE, $cm->id);
|
|
// add extra fields
|
|
$comment->title = get_field('search_document', 'title', 'docid', $record->id, 'itemtype', 'record');
|
|
$comment->dataid = $record->dataid;
|
|
$comment->groupid = $record->groupid;
|
|
// make document
|
|
$documents[] = new DataCommentSearchDocument(get_object_vars($comment), $record_course, $context->id);
|
|
}
|
|
else{
|
|
mtrace('Error : bad or missing item type');
|
|
}
|
|
} //data_single_document
|
|
|
|
/**
|
|
* dummy delete function that packs id with itemtype.
|
|
* this was here for a reason, but I can't remember it at the moment.
|
|
*
|
|
*/
|
|
function data_delete($info, $itemtype) {
|
|
$object->id = $info;
|
|
$object->itemtype = $itemtype;
|
|
return $object;
|
|
} //data_delete
|
|
|
|
/**
|
|
* returns the var names needed to build a sql query for addition/deletions
|
|
*
|
|
*/
|
|
function data_db_names() {
|
|
//[primary id], [table name], [time created field name], [time modified field name]
|
|
return array(
|
|
array('id', 'data_records', 'timecreated', 'timemodified', 'record'),
|
|
array('id', 'data_comments', 'created', 'modified', 'comment')
|
|
);
|
|
} //data_db_names
|
|
|
|
/**
|
|
* this function handles the access policy to contents indexed as searchable documents. If this
|
|
* function does not exist, the search engine assumes access is allowed.
|
|
* When this point is reached, we already know that :
|
|
* - user is legitimate in the surrounding context
|
|
* - user may be guest and guest access is allowed to the module
|
|
* - the function may perform local checks within the module information logic
|
|
* @param path the access path to the module script code
|
|
* @param itemtype the information subclassing (usefull for complex modules, defaults to 'standard')
|
|
* @param this_id the item id within the information class denoted by itemtype. In databases, this id
|
|
* points out an indexed data record page.
|
|
* @param user the user record denoting the user who searches
|
|
* @param group_id the current group used by the user when searching
|
|
* @return true if access is allowed, false elsewhere
|
|
*/
|
|
function data_check_text_access($path, $itemtype, $this_id, $user, $group_id, $context_id){
|
|
global $CFG;
|
|
|
|
// get the database object and all related stuff
|
|
if ($itemtype == 'record'){
|
|
$record = get_record('data_records', 'id', $this_id);
|
|
}
|
|
elseif($itemtype == 'comment'){
|
|
$comment = get_record('data_comments', 'id', $this_id);
|
|
$record = get_record('data_records', 'id', $comment->recordid);
|
|
}
|
|
else{
|
|
// we do not know what type of information is required
|
|
return false;
|
|
}
|
|
$data = get_record('data', 'id', $record->dataid);
|
|
$course = get_record('course', 'id', $data->course);
|
|
$module_context = get_record('context', 'id', $context_id);
|
|
$cm = get_record('course_modules', 'id', $module_context->instance);
|
|
if (!$cm->visible and !has_capability('moodle/course:viewhiddenactivities', $module_context)) return false;
|
|
|
|
//group consistency check : checks the following situations about groups
|
|
// trap if user is not same group and groups are separated
|
|
$current_group = get_current_group($course->id);
|
|
if ((groupmode($course) == SEPARATEGROUPS) && !groups_is_member($group_id) && !has_capability('moodle/site:accessallgroups', $module_context)) return false;
|
|
|
|
//ownership check : checks the following situations about user
|
|
// trap if user is not owner and has cannot see other's entries
|
|
if ($itemtype == 'record'){
|
|
if ($user->id != $record->userid && !has_capability('mod/data:viewentry', $module_context) && !has_capability('mod/data:manageentries', $module_context)) return false;
|
|
}
|
|
|
|
//approval check
|
|
// trap if unapproved and has not approval capabilities
|
|
// TODO : report a potential capability lack of : mod/data:approve
|
|
$approval = get_field('data_records', 'approved', 'id', $record->id);
|
|
if (!$approval && !isteacher($data->course) && !has_capability('mod/data:manageentries', $module_context)) return false;
|
|
|
|
//minimum records to view check
|
|
// trap if too few records
|
|
// TODO : report a potential capability lack of : mod/data:viewhiddenentries
|
|
$recordsAmount = count_records('data_records', 'dataid', $data->id);
|
|
if ($data->requiredentriestoview > $recordsAmount && !isteacher($data->course) && !has_capability('mod/data:manageentries', $module_context)) return false;
|
|
|
|
//opening periods check
|
|
// trap if user has not capability to see hidden records and date is out of opening range
|
|
// TODO : report a potential capability lack of : mod/data:viewhiddenentries
|
|
$now = usertime(time());
|
|
if ($data->timeviewfrom > 0)
|
|
if ($now < $data->timeviewfrom && !isteacher($data->course) && !has_capability('mod/data:manageentries', $module_context)) return false;
|
|
if ($data->timeviewto > 0)
|
|
if ($now > $data->timeviewto && !isteacher($data->course) && !has_capability('mod/data:manageentries', $module_context)) return false;
|
|
|
|
return true;
|
|
} // data_check_text_access
|
|
?>
|