Replacing old D0kIndexer class with ChamiloIndexer class

skala
Julio Montoya 13 years ago
parent 01d34e83b0
commit e3ddea49f8
  1. 12
      main/exercice/exercise.class.php
  2. 4
      main/exercice/question.class.php
  3. 10
      main/inc/lib/document.lib.php
  4. 12
      main/inc/lib/link.lib.php
  5. 142
      main/inc/lib/search/ChamiloIndexer.class.php
  6. 74
      main/inc/lib/search/IndexableChunk.class.php
  7. 16
      main/inc/lib/search/get_terms.php
  8. 1
      main/inc/lib/search/search_widget.php
  9. 87
      main/inc/lib/search/tool_processors/document_processor.class.php
  10. 121
      main/inc/lib/search/tool_processors/learnpath_processor.class.php
  11. 66
      main/inc/lib/search/tool_processors/link_processor.class.php
  12. 63
      main/inc/lib/search/tool_processors/quiz_processor.class.php
  13. 3
      main/inc/lib/search/tool_processors/search_processor.class.php
  14. 2
      main/inc/lib/search/xapian/XapianIndexer.class.php
  15. 263
      main/inc/lib/search/xapian/XapianQuery.php
  16. 8
      main/newscorm/learnpathItem.class.php
  17. 7
      main/newscorm/openoffice_presentation.class.php
  18. 4
      main/newscorm/openoffice_text.class.php
  19. 4
      main/newscorm/openoffice_text_document.class.php
  20. 4
      main/newscorm/scorm.class.php

@ -1244,7 +1244,7 @@ class Exercise {
}
$course_id = api_get_course_id();
require_once api_get_path(LIBRARY_PATH) . 'search/DokeosIndexer.class.php';
require_once api_get_path(LIBRARY_PATH) . 'search/ChamiloIndexer.class.php';
require_once api_get_path(LIBRARY_PATH) . 'search/IndexableChunk.class.php';
require_once api_get_path(LIBRARY_PATH) . 'specific_fields_manager.lib.php';
@ -1280,7 +1280,7 @@ class Exercise {
$exercise_description = $all_specific_terms .' '. $this->description;
$ic_slide->addValue("content", $exercise_description);
$di = new DokeosIndexer();
$di = new ChamiloIndexer();
isset($_POST['language'])? $lang=Database::escape_string($_POST['language']): $lang = 'english';
$di->connectDb(NULL, NULL, $lang);
$di->addChunk($ic_slide);
@ -1310,7 +1310,7 @@ class Exercise {
$res = Database::query($sql);
if (Database::num_rows($res) > 0) {
require_once(api_get_path(LIBRARY_PATH) . 'search/DokeosIndexer.class.php');
require_once(api_get_path(LIBRARY_PATH) . 'search/ChamiloIndexer.class.php');
require_once(api_get_path(LIBRARY_PATH) . 'search/IndexableChunk.class.php');
require_once(api_get_path(LIBRARY_PATH) . 'specific_fields_manager.lib.php');
@ -1346,7 +1346,7 @@ class Exercise {
$exercise_description = $all_specific_terms .' '. $this->description;
$ic_slide->addValue("content", $exercise_description);
$di = new DokeosIndexer();
$di = new ChamiloIndexer();
isset($_POST['language'])? $lang=Database::escape_string($_POST['language']): $lang = 'english';
$di->connectDb(NULL, NULL, $lang);
$di->remove_document((int)$se_ref['search_did']);
@ -1381,8 +1381,8 @@ class Exercise {
$res = Database::query($sql);
if (Database::num_rows($res) > 0) {
$row = Database::fetch_array($res);
require_once(api_get_path(LIBRARY_PATH) .'search/DokeosIndexer.class.php');
$di = new DokeosIndexer();
require_once(api_get_path(LIBRARY_PATH) .'search/ChamiloIndexer.class.php');
$di = new ChamiloIndexer();
$di->remove_document((int)$row['search_did']);
unset($di);
$tbl_quiz_question = Database::get_course_table(TABLE_QUIZ_QUESTION);

@ -781,10 +781,10 @@ abstract class Question
$res = Database::query($sql);
if (Database::num_rows($res) > 0 || $addQs) {
require_once(api_get_path(LIBRARY_PATH) . 'search/DokeosIndexer.class.php');
require_once(api_get_path(LIBRARY_PATH) . 'search/ChamiloIndexer.class.php');
require_once(api_get_path(LIBRARY_PATH) . 'search/IndexableChunk.class.php');
$di = new DokeosIndexer();
$di = new ChamiloIndexer();
if ($addQs) {
$question_exercises = array((int)$exerciseId);
} else {

@ -979,8 +979,8 @@ class DocumentManager {
$res = Database::query($sql);
if (Database::num_rows($res) > 0) {
$row2 = Database::fetch_array($res);
require_once api_get_path(LIBRARY_PATH) .'search/DokeosIndexer.class.php';
$di = new DokeosIndexer();
require_once api_get_path(LIBRARY_PATH) .'search/ChamiloIndexer.class.php';
$di = new ChamiloIndexer();
$di->remove_document((int)$row2['search_did']);
}
$sql = 'DELETE FROM %s WHERE course_code=\'%s\' AND tool_id=\'%s\' AND ref_id_high_level=%s LIMIT 1';
@ -2273,7 +2273,7 @@ class DocumentManager {
// TODO: review w$ compatibility
// Use usual exec output lines array to store stdout instead of a temp file
// because we need to store it at RAM anyway before index on DokeosIndexer object
// because we need to store it at RAM anyway before index on ChamiloIndexer object
$ret_val = null;
switch ($doc_mime) {
case 'text/plain':
@ -3002,7 +3002,7 @@ class DocumentManager {
$file_content = self::get_text_content($doc_path, $doc_mime);
$course_code = Database::escape_string($course_code);
require_once api_get_path(LIBRARY_PATH).'search/DokeosIndexer.class.php';
require_once api_get_path(LIBRARY_PATH).'search/ChamiloIndexer.class.php';
require_once api_get_path(LIBRARY_PATH).'search/IndexableChunk.class.php';
$ic_slide = new IndexableChunk();
@ -3017,7 +3017,7 @@ class DocumentManager {
);
$ic_slide->xapian_data = serialize($xapian_data);
$di = new DokeosIndexer();
$di = new ChamiloIndexer();
$return = $di->connectDb(null, null, $lang);
require_once api_get_path(LIBRARY_PATH).'specific_fields_manager.lib.php';

@ -121,7 +121,7 @@ function addlinkcategory($type) {
}
if ((api_get_setting('search_enabled') == 'true') && $link_id && extension_loaded('xapian')) {
require_once api_get_path(LIBRARY_PATH) . 'search/DokeosIndexer.class.php';
require_once api_get_path(LIBRARY_PATH) . 'search/ChamiloIndexer.class.php';
require_once api_get_path(LIBRARY_PATH) . 'search/IndexableChunk.class.php';
require_once api_get_path(LIBRARY_PATH) . 'specific_fields_manager.lib.php';
@ -174,7 +174,7 @@ function addlinkcategory($type) {
}
}
$di = new DokeosIndexer();
$di = new ChamiloIndexer();
isset ($_POST['language']) ? $lang = Database :: escape_string($_POST['language']) : $lang = 'english';
$di->connectDb(NULL, NULL, $lang);
$di->addChunk($ic_slide);
@ -288,8 +288,8 @@ function delete_link_from_search_engine($course_id, $link_id) {
$res = Database :: query($sql);
if (Database :: num_rows($res) > 0) {
$row = Database :: fetch_array($res);
require_once api_get_path(LIBRARY_PATH) . 'search/DokeosIndexer.class.php';
$di = new DokeosIndexer();
require_once api_get_path(LIBRARY_PATH) . 'search/ChamiloIndexer.class.php';
$di = new ChamiloIndexer();
$di->remove_document((int) $row['search_did']);
}
$sql = 'DELETE FROM %s WHERE course_code=\'%s\' AND tool_id=\'%s\' AND ref_id_high_level=%s LIMIT 1';
@ -451,7 +451,7 @@ function editlinkcategory($type) {
$res = Database :: query($sql);
if (Database :: num_rows($res) > 0) {
require_once api_get_path(LIBRARY_PATH) . 'search/DokeosIndexer.class.php';
require_once api_get_path(LIBRARY_PATH) . 'search/ChamiloIndexer.class.php';
require_once api_get_path(LIBRARY_PATH) . 'search/IndexableChunk.class.php';
require_once api_get_path(LIBRARY_PATH) . 'specific_fields_manager.lib.php';
@ -504,7 +504,7 @@ function editlinkcategory($type) {
}
}
$di = new DokeosIndexer();
$di = new ChamiloIndexer();
isset ($_POST['language']) ? $lang = Database :: escape_string($_POST['language']) : $lang = 'english';
$di->connectDb(NULL, NULL, $lang);
$di->remove_document((int) $se_ref['search_did']);

@ -1,4 +1,5 @@
<?php
/* For licensing terms, see /license.txt */
/**
* @package chamilo.include.search
@ -15,78 +16,79 @@ include_once 'xapian/XapianIndexer.class.php';
*/
class ChamiloIndexer extends XapianIndexer {
/**
* Set terms on search_did given
*
* @param string $terms_string Comma-separated list of terms from input form
* @param string $prefix Search engine prefix
* @param string $course_code Course code
* @param string $tool_id Tool id from mainapi.lib.php
* @param int $ref_id_high_level Main id of the entity to index (Ex. lp_id)
* @param int $ref_id_second_level Secondary id of the entity to index (Ex. lp_item)
* @param int $search_did Search engine document id from search_engine_ref table
* @return boolean False on error or nothing to do, true otherwise
*/
function set_terms($terms_string, $prefix, $course_code, $tool_id, $ref_id_high_level, $ref_id_second_level, $search_did) {
$terms_string = trim($terms_string);
$terms = explode(',', $terms_string);
array_walk($terms, 'trim_value');
$stored_terms = $this->get_terms_on_db($prefix, $course_code, $tool_id, $ref_id_high_level);
// don't do anything if no change, verify only at DB, not the search engine
if ( (count(array_diff($terms, $stored_terms))==0) && (count(array_diff($stored_terms, $terms))==0) )
return FALSE;
require_once api_get_path(LIBRARY_PATH).'search/xapian/XapianQuery.php';
// compare terms
$doc = $this->get_document($search_did);
$xapian_terms = xapian_get_doc_terms($doc, $prefix);
$xterms = array();
foreach ($xapian_terms as $xapian_term) $xterms[] = substr($xapian_term['name'],1);
$dterms = $terms;
$missing_terms = array_diff($dterms, $xterms);
$deprecated_terms = array_diff($xterms, $dterms);
// save it to search engine
foreach ($missing_terms as $term)
{
$this->add_term_to_doc($prefix. $term, $doc);
}
foreach ($deprecated_terms as $term)
{
$this->remove_term_from_doc($prefix.$term, $doc);
}
// don't do anything if no change
if ( (count($missing_terms) > 0) || (count($deprecated_terms) > 0)) {
$this->replace_document($doc, (int)$search_did);
}
return TRUE;
}
/**
* Get the terms stored at database
* @return array Array of terms
*/
function get_terms_on_db($prefix, $course_code, $tool_id, $ref_id) {
require_once api_get_path(LIBRARY_PATH) . 'specific_fields_manager.lib.php';
$terms = get_specific_field_values_list_by_prefix($prefix, $course_code, $tool_id, $ref_id);
$prefix_terms = array();
foreach($terms as $term) {
$prefix_terms[] = $term['value'];
}
return $prefix_terms;
}
/**
* Set terms on search_did given
*
* @param string $terms_string Comma-separated list of terms from input form
* @param string $prefix Search engine prefix
* @param string $course_code Course code
* @param string $tool_id Tool id from mainapi.lib.php
* @param int $ref_id_high_level Main id of the entity to index (Ex. lp_id)
* @param int $ref_id_second_level Secondary id of the entity to index (Ex. lp_item)
* @param int $search_did Search engine document id from search_engine_ref table
* @return boolean False on error or nothing to do, true otherwise
*/
function set_terms($terms_string, $prefix, $course_code, $tool_id, $ref_id_high_level, $ref_id_second_level, $search_did) {
$terms_string = trim($terms_string);
$terms = explode(',', $terms_string);
array_walk($terms, 'trim_value');
$stored_terms = $this->get_terms_on_db($prefix, $course_code, $tool_id, $ref_id_high_level);
// don't do anything if no change, verify only at DB, not the search engine
if ((count(array_diff($terms, $stored_terms)) == 0) && (count(array_diff($stored_terms, $terms)) == 0))
return FALSE;
require_once api_get_path(LIBRARY_PATH) . 'search/xapian/XapianQuery.php';
// compare terms
$doc = $this->get_document($search_did);
$xapian_terms = xapian_get_doc_terms($doc, $prefix);
$xterms = array();
foreach ($xapian_terms as $xapian_term)
$xterms[] = substr($xapian_term['name'], 1);
$dterms = $terms;
$missing_terms = array_diff($dterms, $xterms);
$deprecated_terms = array_diff($xterms, $dterms);
// save it to search engine
foreach ($missing_terms as $term) {
$this->add_term_to_doc($prefix . $term, $doc);
}
foreach ($deprecated_terms as $term) {
$this->remove_term_from_doc($prefix . $term, $doc);
}
// don't do anything if no change
if ((count($missing_terms) > 0) || (count($deprecated_terms) > 0)) {
$this->replace_document($doc, (int) $search_did);
}
return TRUE;
}
/**
* Get the terms stored at database
* @return array Array of terms
*/
function get_terms_on_db($prefix, $course_code, $tool_id, $ref_id) {
require_once api_get_path(LIBRARY_PATH) . 'specific_fields_manager.lib.php';
$terms = get_specific_field_values_list_by_prefix($prefix, $course_code, $tool_id, $ref_id);
$prefix_terms = array();
foreach ($terms as $term) {
$prefix_terms[] = $term['value'];
}
return $prefix_terms;
}
}
if (!function_exists('trim_value')) {
function trim_value(&$value) {
$value = trim($value);
}
function trim_value(&$value) {
$value = trim($value);
}
}

@ -1,4 +1,5 @@
<?php
/* For licensing terms, see /license.txt */
/**
* @package chamilo.include.search
@ -17,15 +18,14 @@ define('SE_DOCTYPE_EXERCISE_EXERCISE', 0);
define('SE_DOCTYPE_EXERCISE_QUESTION', 1);
// xapian prefixes
define('XAPIAN_PREFIX_COURSEID','C');
define('XAPIAN_PREFIX_TOOLID', 'O');
define('XAPIAN_PREFIX_COURSEID', 'C');
define('XAPIAN_PREFIX_TOOLID', 'O');
/**
* Class
* @package chamilo.include.search
*/
abstract class _IndexableChunk
{
abstract class _IndexableChunk {
/* struct (array)
* {
* string title; <- nombre de archivo/elemento
@ -33,6 +33,7 @@ abstract class _IndexableChunk
* string ids; <- los flags a guardar "cidReq:lp_id:path"
* }
*/
public $data;
/**
@ -53,12 +54,12 @@ abstract class _IndexableChunk
*/
public $terms;
/**
* Add a value to the indexed item
* @param string Key
* @param string Value
* @return void
*/
/**
* Add a value to the indexed item
* @param string Key
* @param string Value
* @return void
*/
function addValue($key, $value) {
$this->data[$key] = $value;
}
@ -69,46 +70,47 @@ abstract class _IndexableChunk
* @param string Flag (one character)
*/
public function addTerm($term, $flag) {
global $charset;
if (strlen($flag) == 1) {
$this->terms[] = array('name' => api_convert_encoding(stripslashes($term),'UTF-8',$charset), 'flag' => $flag);
}
global $charset;
if (strlen($flag) == 1) {
$this->terms[] = array('name' => api_convert_encoding(stripslashes($term), 'UTF-8', $charset), 'flag' => $flag);
}
}
/**
* Class constructor. Just generates an empty 'data' array attribute
*/
/**
* Class constructor. Just generates an empty 'data' array attribute
*/
function __construct() {
$this->data = array();
}
/**
* Class desctructor. Unsets attributes.
*/
/**
* Class desctructor. Unsets attributes.
*/
function __destruct() {
unset($this->data);
unset($this->terms);
}
}
/**
* Extension of the _IndexableChunk class to make IndexableChunk extensible.
* @package chamilo.include.search
*/
class IndexableChunk extends _IndexableChunk
{
/**
* Let add course id term
*/
public function addCourseId($course_id) {
$this->addTerm($course_id, XAPIAN_PREFIX_COURSEID);
}
/**
* Let add tool id term
*/
public function addToolId($tool_id) {
$this->addTerm($tool_id, XAPIAN_PREFIX_TOOLID);
}
class IndexableChunk extends _IndexableChunk {
/**
* Let add course id term
*/
public function addCourseId($course_id) {
$this->addTerm($course_id, XAPIAN_PREFIX_COURSEID);
}
/**
* Let add tool id term
*/
public function addToolId($tool_id) {
$this->addTerm($tool_id, XAPIAN_PREFIX_TOOLID);
}
}

@ -1,4 +1,5 @@
<?php
/* For licensing terms, see /license.txt */
/**
* This script retrieves a list of terms that have xapian documents
@ -17,7 +18,7 @@ if (empty($_GET['term']) || empty($_GET['prefix']) || !in_array($_GET['operator'
}
require_once dirname(__FILE__) . '../../../global.inc.php';
require_once api_get_path(LIBRARY_PATH).'search/ChamiloQuery.php';
require_once api_get_path(LIBRARY_PATH) . 'search/ChamiloQuery.php';
/**
* search with filter and build base array avoding repeated terms
@ -31,8 +32,8 @@ function get_usual_sf_terms($filter, $specific_fields) {
if (is_array($dkterms) && is_array($dkterms[1])) {
foreach ($specific_fields as $specific_field) {
foreach($dkterms[1] as $obj) {
foreach ($obj['sf-'.$specific_field['code']] as $raw_term) {
foreach ($dkterms[1] as $obj) {
foreach ($obj['sf-' . $specific_field['code']] as $raw_term) {
if (count($raw_term['name']) > 1) {
$normal_term = substr($raw_term['name'], 1);
$sf_terms[$specific_field['code']][$normal_term] = $normal_term;
@ -51,7 +52,7 @@ $operator = $_GET['operator'];
$specific_fields = get_specific_field_list();
$sf_terms = array();
if ( ($cid=api_get_course_id()) != -1) { // with cid
if (($cid = api_get_course_id()) != -1) { // with cid
// course filter
$filter[] = chamilo_get_boolean_query(XAPIAN_PREFIX_COURSEID . $cid);
// term filter
@ -62,16 +63,14 @@ if ( ($cid=api_get_course_id()) != -1) { // with cid
}
$sf_terms = get_usual_sf_terms($filter, $specific_fields);
} else { // without cid
if ($term != '__all__') {
$filter[] = chamilo_get_boolean_query($prefix . $term);
$sf_terms = get_usual_sf_terms($filter, $specific_fields);
} else { // no cid and all/any terms
foreach ($specific_fields as $specific_field) {
foreach(xapian_get_all_terms(1000, $specific_field['code']) as $raw_term) {
foreach (xapian_get_all_terms(1000, $specific_field['code']) as $raw_term) {
if (count($raw_term['name']) > 1) {
$normal_term = substr($raw_term['name'], 1);
$sf_terms[$specific_field['code']][$normal_term] = $normal_term;
@ -79,13 +78,12 @@ if ( ($cid=api_get_course_id()) != -1) { // with cid
}
}
}
}
// build array to return
foreach ($sf_terms as $sf_prefix => $term_group) {
//if (count($tem_group) > 0) {
$first_term = array('__all__' => ($operator=='or'? '-- Any --': '-- All -- '));
$first_term = array('__all__' => ($operator == 'or' ? '-- Any --' : '-- All -- '));
//}
if ($sf_prefix != $prefix) {
$terms_list[] = array(

@ -9,7 +9,6 @@
*/
require_once dirname(__FILE__) . '/IndexableChunk.class.php';
require_once api_get_path(LIBRARY_PATH).'specific_fields_manager.lib.php';
//require_once (api_get_path(LIBRARY_PATH).'formvalidator/FormValidator.class.php');
/**
* Add some required CSS and JS to html's head.

@ -1,4 +1,5 @@
<?php
/* For licensing terms, see /license.txt */
/**
*
@ -9,6 +10,7 @@
*/
include_once dirname(__FILE__) . '/../../../global.inc.php';
require_once dirname(__FILE__) . '/search_processor.class.php';
/**
* Process documents before pass it to search listing scripts
* @package chamilo.include.search
@ -22,38 +24,38 @@ class document_processor extends search_processor {
public function process() {
$results = array();
foreach ($this->rows as $row_val) {
$search_show_unlinked_results = (api_get_setting('search_show_unlinked_results') == 'true');
$course_visible_for_user = api_is_course_visible_for_user(NULL, $row_val['courseid']);
// can view course?
if ($course_visible_for_user || $search_show_unlinked_results) {
// is visible?
$visibility = api_get_item_visibility(api_get_course_info($row_val['courseid']), TOOL_DOCUMENT, $row_val['xapian_data'][SE_DATA]['doc_id']);
if ($visibility) {
list($thumbnail, $image, $name, $author, $url) = $this->get_information($row_val['courseid'], $row_val['xapian_data'][SE_DATA]['doc_id']);
$result = array(
'toolid' => TOOL_DOCUMENT,
'score' => $row_val['score'],
'url' => $url,
'thumbnail' => $thumbnail,
'image' => $image,
'title' => $name,
'author' => $author,
);
if ($course_visible_for_user) {
$results[] = $result;
} else { // course not visible for user
if ($search_show_unlinked_results) {
$result['url'] = '';
$results[] = $result;
}
}
$search_show_unlinked_results = (api_get_setting('search_show_unlinked_results') == 'true');
$course_visible_for_user = api_is_course_visible_for_user(NULL, $row_val['courseid']);
// can view course?
if ($course_visible_for_user || $search_show_unlinked_results) {
// is visible?
$visibility = api_get_item_visibility(api_get_course_info($row_val['courseid']), TOOL_DOCUMENT, $row_val['xapian_data'][SE_DATA]['doc_id']);
if ($visibility) {
list($thumbnail, $image, $name, $author, $url) = $this->get_information($row_val['courseid'], $row_val['xapian_data'][SE_DATA]['doc_id']);
$result = array(
'toolid' => TOOL_DOCUMENT,
'score' => $row_val['score'],
'url' => $url,
'thumbnail' => $thumbnail,
'image' => $image,
'title' => $name,
'author' => $author,
);
if ($course_visible_for_user) {
$results[] = $result;
} else { // course not visible for user
if ($search_show_unlinked_results) {
$result['url'] = '';
$results[] = $result;
}
}
}
}
}
}
// get information to sort
foreach ($results as $key => $row) {
$score[$key] = $row['score'];
$score[$key] = $row['score'];
}
// Sort results with score descending
@ -66,44 +68,45 @@ class document_processor extends search_processor {
* Get document information
*/
private function get_information($course_id, $doc_id) {
$course_information = api_get_course_info($course_id);
$course_information = api_get_course_info($course_id);
$course_id = $course_information['real_id'];
$course_path = $course_information['path'];
if (!empty($course_information)) {
$item_property_table = Database::get_course_table(TABLE_ITEM_PROPERTY);
$doc_table = Database::get_course_table(TABLE_DOCUMENT);
$doc_id = Database::escape_string($doc_id);
$item_property_table = Database::get_course_table(TABLE_ITEM_PROPERTY);
$doc_table = Database::get_course_table(TABLE_DOCUMENT);
$doc_id = Database::escape_string($doc_id);
$sql = "SELECT * FROM $doc_table
WHERE $doc_table.id = $doc_id AND c_id = $course_id
LIMIT 1";
$dk_result = Database::query ($sql);
$dk_result = Database::query($sql);
$sql = "SELECT insert_user_id FROM $item_property_table
WHERE ref = $doc_id AND tool = '". TOOL_DOCUMENT ."' AND c_id = $course_id
LIMIT 1";
WHERE ref = $doc_id AND tool = '" . TOOL_DOCUMENT . "' AND c_id = $course_id
LIMIT 1";
$name = '';
if ($row = Database::fetch_array ($dk_result)) {
if ($row = Database::fetch_array($dk_result)) {
$name = $row['title'];
$url = api_get_path(WEB_PATH) . 'courses/%s/document%s';
$url = sprintf($url, $course_path, $row['path']);
// Get the image path
include_once api_get_path(LIBRARY_PATH). 'fileDisplay.lib.php';
include_once api_get_path(LIBRARY_PATH) . 'fileDisplay.lib.php';
$icon = choose_image(basename($row['path']));
$thumbnail = api_get_path(WEB_CODE_PATH) .'img/'. $icon;
$thumbnail = api_get_path(WEB_CODE_PATH) . 'img/' . $icon;
$image = $thumbnail;
//FIXME: use big images
// get author
$author = '';
$item_result = Database::query ($sql);
if ($row = Database::fetch_array ($item_result)) {
$item_result = Database::query($sql);
if ($row = Database::fetch_array($item_result)) {
$user_data = api_get_user_info($row['insert_user_id']);
$author = api_get_person_name($user_data['firstName'], $user_data['lastName']);
}
}
}
return array($thumbnail, $image, $name, $author, $url); // FIXME: is it posible to get an author here?
} else {
return array();
}
}
}

@ -1,4 +1,5 @@
<?php
/* For licensing terms, see /license.txt */
/**
*
@ -16,6 +17,7 @@ require_once dirname(__FILE__) . '/../IndexableChunk.class.php';
* @package chamilo.include.search
*/
class learnpath_processor extends search_processor {
public $learnpaths = array();
function learnpath_processor($rows) {
@ -27,11 +29,11 @@ class learnpath_processor extends search_processor {
$document_id = $row_val['xapian_data'][SE_DATA]['document_id'];
$courseid = $row_val['courseid'];
$item = array(
'courseid' => $courseid,
'lp_item' => $lp_item,
'score' => $row_val['score'],
'row_id' => $row_id,
);
'courseid' => $courseid,
'lp_item' => $lp_item,
'score' => $row_val['score'],
'row_id' => $row_id,
);
$this->learnpaths[$courseid][$lp_id][] = $item;
$this->learnpaths[$courseid][$lp_id]['total_score'] += $row_val['score'];
$this->learnpaths[$courseid][$lp_id]['has_document_id'] = is_numeric($document_id);
@ -41,65 +43,65 @@ class learnpath_processor extends search_processor {
public function process() {
$results = array();
foreach ($this->learnpaths as $courseid => $learnpaths) {
$search_show_unlinked_results = (api_get_setting('search_show_unlinked_results') == 'true');
$course_visible_for_user = api_is_course_visible_for_user(NULL, $courseid);
// can view course?
if ($course_visible_for_user || $search_show_unlinked_results) {
foreach ($learnpaths as $lp_id => $lp) {
// is visible?
$visibility = api_get_item_visibility(api_get_course_info($courseid), TOOL_LEARNPATH, $lp_id);
if($visibility) {
list($thumbnail, $image, $name, $author) = $this->get_information($courseid, $lp_id, $lp['has_document_id']);
$url = api_get_path(WEB_PATH) . 'main/newscorm/lp_controller.php?cidReq=%s&action=view&lp_id=%s';
$url = sprintf($url, $courseid, $lp_id);
$result = array(
'toolid' => TOOL_LEARNPATH,
'score' => $lp['total_score']/(count($lp)-1), // not count total_score array item
'url' => $url,
'thumbnail' => $thumbnail,
'image' => $image,
'title' => $name,
'author' => $author,
);
if ($course_visible_for_user) {
$results[] = $result;
} else { // course not visible for user
if ($search_show_unlinked_results) {
$result['url'] = '';
$results[] = $result;
}
}
}
$search_show_unlinked_results = (api_get_setting('search_show_unlinked_results') == 'true');
$course_visible_for_user = api_is_course_visible_for_user(NULL, $courseid);
// can view course?
if ($course_visible_for_user || $search_show_unlinked_results) {
foreach ($learnpaths as $lp_id => $lp) {
// is visible?
$visibility = api_get_item_visibility(api_get_course_info($courseid), TOOL_LEARNPATH, $lp_id);
if ($visibility) {
list($thumbnail, $image, $name, $author) = $this->get_information($courseid, $lp_id, $lp['has_document_id']);
$url = api_get_path(WEB_PATH) . 'main/newscorm/lp_controller.php?cidReq=%s&action=view&lp_id=%s';
$url = sprintf($url, $courseid, $lp_id);
$result = array(
'toolid' => TOOL_LEARNPATH,
'score' => $lp['total_score'] / (count($lp) - 1), // not count total_score array item
'url' => $url,
'thumbnail' => $thumbnail,
'image' => $image,
'title' => $name,
'author' => $author,
);
if ($course_visible_for_user) {
$results[] = $result;
} else { // course not visible for user
if ($search_show_unlinked_results) {
$result['url'] = '';
$results[] = $result;
}
}
}
}
}
}
}
// get information to sort
foreach ($results as $key => $row) {
$score[$key] = $row['score'];
}
// Sort results with score descending
array_multisort($score, SORT_DESC, $results);
return $results;
$score[$key] = $row['score'];
}
// Sort results with score descending
array_multisort($score, SORT_DESC, $results);
return $results;
}
/**
* Get learning path information
*/
private function get_information($course_id, $lp_id, $has_document_id=TRUE) {
$course_information = api_get_course_info($course_id);
private function get_information($course_id, $lp_id, $has_document_id = TRUE) {
$course_information = api_get_course_info($course_id);
$course_id = $course_information['real_id'];
$course_path = $course_information['path'];
if (!empty($course_information)) {
$lpi_table = Database::get_course_table(TABLE_LP_ITEM);
$lp_table = Database::get_course_table(TABLE_LP_MAIN);
$doc_table = Database::get_course_table(TABLE_DOCUMENT);
$lpi_table = Database::get_course_table(TABLE_LP_ITEM);
$lp_table = Database::get_course_table(TABLE_LP_MAIN);
$doc_table = Database::get_course_table(TABLE_DOCUMENT);
$lp_id = Database::escape_string($lp_id);
if ($has_document_id) {
$sql = "SELECT $lpi_table.id, $lp_table.name, $lp_table.author, $doc_table.path
$sql = "SELECT $lpi_table.id, $lp_table.name, $lp_table.author, $doc_table.path
FROM $lp_table, $lpi_table
INNER JOIN $doc_table ON $lpi_table.path = $doc_table.id AND $lpi_table.c_id = $course_id
WHERE $lpi_table.c_id = $course_id AND
@ -109,7 +111,7 @@ class learnpath_processor extends search_processor {
$lp_table.id = $lpi_table.lp_id
LIMIT 1";
} else {
$sql = "SELECT $lpi_table.id, $lp_table.name, $lp_table.author
$sql = "SELECT $lpi_table.id, $lp_table.name, $lp_table.author
FROM $lp_table, $lpi_table
WHERE
$lpi_table.c_id = $course_id AND
@ -119,29 +121,30 @@ class learnpath_processor extends search_processor {
$lp_table.id = $lpi_table.lp_id
LIMIT 1";
}
$dk_result = Database::query ($sql);
$dk_result = Database::query($sql);
$path = '';
$name = '';
if ($row = Database::fetch_array ($dk_result)) {
if ($row = Database::fetch_array($dk_result)) {
// Get the image path
$img_location = api_get_path(WEB_COURSE_PATH).$course_path."/document/";
$thumbnail_path = str_replace ('.png.html', '_thumb.png', $row['path']);
$big_img_path = str_replace ('.png.html', '.png', $row['path']);
$img_location = api_get_path(WEB_COURSE_PATH) . $course_path . "/document/";
$thumbnail_path = str_replace('.png.html', '_thumb.png', $row['path']);
$big_img_path = str_replace('.png.html', '.png', $row['path']);
$thumbnail = '';
if (!empty($thumbnail_path)) {
$thumbnail = $img_location . $thumbnail_path;
$thumbnail = $img_location . $thumbnail_path;
}
$image = '';
if (!empty($big_img_path)) {
$image = $img_location . $big_img_path;
$image = $img_location . $big_img_path;
}
$name = $row['name'];
}
}
return array($thumbnail, $image, $name, $row['author']);
} else {
return array();
}
}
}

@ -1,4 +1,5 @@
<?php
/* For licensing terms, see /license.txt */
/**
*
@ -15,7 +16,8 @@ require_once dirname(__FILE__) . '/search_processor.class.php';
* @package chamilo.include.search
*/
class link_processor extends search_processor {
public $links = array();
public $links = array();
function link_processor($rows) {
$this->rows = $rows;
@ -25,37 +27,36 @@ class link_processor extends search_processor {
$link_id = $row_val['xapian_data'][SE_DATA]['link_id'];
$courseid = $row_val['courseid'];
$item = array(
'courseid' => $courseid,
'score' => $row_val['score'],
'link_id' => $link_id,
'row_id' => $row_id,
);
'courseid' => $courseid,
'score' => $row_val['score'],
'link_id' => $link_id,
'row_id' => $row_id,
);
$this->links[$courseid]['links'][] = $item;
$this->links[$courseid]['total_score'] += $row_val['score'];
}
}
public function process() {
$results = array();
foreach ($this->links as $courseid => $one_course_links) {
$course_info = api_get_course_info($courseid);
$course_info = api_get_course_info($courseid);
$search_show_unlinked_results = (api_get_setting('search_show_unlinked_results') == 'true');
$course_visible_for_user = api_is_course_visible_for_user(NULL, $courseid);
// can view course?
if ($course_visible_for_user || $search_show_unlinked_results) {
$result = NULL;
foreach ($one_course_links['links'] as $one_link) {
// is visible?
$visibility = api_get_item_visibility($course_info, TOOL_LINK, $one_link['link_id']);
if ($visibility) {
// if one is visible let show the result for a course
// also asume all data of this item like the data of the whole group of links(Ex. author)
// can view course?
if ($course_visible_for_user || $search_show_unlinked_results) {
$result = NULL;
foreach ($one_course_links['links'] as $one_link) {
// is visible?
$visibility = api_get_item_visibility($course_info, TOOL_LINK, $one_link['link_id']);
if ($visibility) {
// if one is visible let show the result for a course
// also asume all data of this item like the data of the whole group of links(Ex. author)
list($thumbnail, $image, $name, $author, $url) = $this->get_information($courseid, $one_link['link_id']);
$result_tmp = array(
'toolid' => TOOL_LINK,
'score' => $one_course_links['total_score']/(count($one_course_links)-1), // not count total_score array item
'score' => $one_course_links['total_score'] / (count($one_course_links) - 1), // not count total_score array item
'url' => $url,
'thumbnail' => $thumbnail,
'image' => $image,
@ -82,7 +83,7 @@ class link_processor extends search_processor {
// get information to sort
foreach ($results as $key => $row) {
$score[$key] = $row['score'];
$score[$key] = $row['score'];
}
// Sort results with score descending
@ -95,34 +96,35 @@ class link_processor extends search_processor {
* Get document information
*/
private function get_information($course_id, $link_id) {
$course_information = api_get_course_info($course_id);
$course_information = api_get_course_info($course_id);
$course_id = $course_information['real_id'];
$course_id_alpha = $course_information['id'];
if (!empty($course_information)) {
$item_property_table = Database::get_course_table(TABLE_ITEM_PROPERTY);
$link_id = Database::escape_string($link_id);
if (!empty($course_information)) {
$item_property_table = Database::get_course_table(TABLE_ITEM_PROPERTY);
$link_id = Database::escape_string($link_id);
$sql = "SELECT insert_user_id FROM $item_property_table
WHERE ref = $link_id AND tool = '". TOOL_LINK ."' AND c_id = $course_id
WHERE ref = $link_id AND tool = '" . TOOL_LINK . "' AND c_id = $course_id
LIMIT 1";
$name = get_lang('Links');
$url = api_get_path(WEB_PATH) . 'main/link/link.php?cidReq=%s';
$url = sprintf($url, $course_id_alpha);
// Get the image path
$thumbnail = api_get_path(WEB_CODE_PATH) .'img/link.gif';
$thumbnail = api_get_path(WEB_CODE_PATH) . 'img/link.gif';
$image = $thumbnail; //FIXME: use big images
// get author
$author = '';
$item_result = Database::query ($sql);
if ($row = Database::fetch_array ($item_result)) {
$user_data = api_get_user_info($row['insert_user_id']);
$author = api_get_person_name($user_data['firstName'], $user_data['lastName']);
$item_result = Database::query($sql);
if ($row = Database::fetch_array($item_result)) {
$user_data = api_get_user_info($row['insert_user_id']);
$author = api_get_person_name($user_data['firstName'], $user_data['lastName']);
}
return array($thumbnail, $image, $name, $author, $url);
} else {
return array();
}
}
}

@ -1,4 +1,5 @@
<?php
/* For licensing terms, see /license.txt */
/**
*
@ -15,6 +16,7 @@ require_once dirname(__FILE__) . '/search_processor.class.php';
* @package chamilo.include.search
*/
class quiz_processor extends search_processor {
public $exercices = array();
function quiz_processor($rows) {
@ -28,11 +30,11 @@ class quiz_processor extends search_processor {
$exercise_id = $se_data['exercise_id'];
$question = NULL;
$item = array(
'courseid' => $courseid,
'question' => $question,
'score' => $row_val['score'],
'row_id' => $row_id,
);
'courseid' => $courseid,
'question' => $question,
'score' => $row_val['score'],
'row_id' => $row_id,
);
$this->exercises[$courseid][$exercise_id][] = $item;
$this->exercises[$courseid][$exercise_id]['total_score'] += $row_val['score'];
break;
@ -61,18 +63,18 @@ class quiz_processor extends search_processor {
foreach ($this->exercises as $courseid => $exercises) {
$search_show_unlinked_results = (api_get_setting('search_show_unlinked_results') == 'true');
$course_visible_for_user = api_is_course_visible_for_user(NULL, $courseid);
// can view course?
if ($course_visible_for_user || $search_show_unlinked_results) {
foreach ($exercises as $exercise_id => $exercise) {
// is visible?
$visibility = api_get_item_visibility(api_get_course_info($courseid), TOOL_QUIZ, $exercise_id);
if($visibility) {
list($thumbnail, $image, $name, $author) = $this->get_information($courseid, $exercise_id);
$url = api_get_path(WEB_PATH) . 'main/exercice/exercise_submit.php?cidReq=%s&exerciseId=%s';
// can view course?
if ($course_visible_for_user || $search_show_unlinked_results) {
foreach ($exercises as $exercise_id => $exercise) {
// is visible?
$visibility = api_get_item_visibility(api_get_course_info($courseid), TOOL_QUIZ, $exercise_id);
if ($visibility) {
list($thumbnail, $image, $name, $author) = $this->get_information($courseid, $exercise_id);
$url = api_get_path(WEB_PATH) . 'main/exercice/exercise_submit.php?cidReq=%s&exerciseId=%s';
$url = sprintf($url, $courseid, $exercise_id);
$result = array(
'toolid' => TOOL_QUIZ,
'score' => $exercise['total_score']/(count($exercise)-1), // not count total_score array item
'score' => $exercise['total_score'] / (count($exercise) - 1), // not count total_score array item
'url' => $url,
'thumbnail' => $thumbnail,
'image' => $image,
@ -87,14 +89,14 @@ class quiz_processor extends search_processor {
$results[] = $result;
}
}
}
}
}
}
}
}
}
// get information to sort
foreach ($results as $key => $row) {
$score[$key] = $row['score'];
$score[$key] = $row['score'];
}
// Sort results with score descending
array_multisort($score, SORT_DESC, $results);
@ -105,23 +107,23 @@ class quiz_processor extends search_processor {
* Get learning path information
*/
private function get_information($course_id, $exercise_id) {
$course_information = api_get_course_info($course_id);
$course_information = api_get_course_info($course_id);
$course_id = $course_information['real_id'];
if (!empty($course_information)) {
$exercise_table = Database::get_course_table(TABLE_QUIZ_TEST);
$item_property_table = Database::get_course_table(TABLE_ITEM_PROPERTY);
$exercise_id = intval($exercise_id);
$sql = "SELECT * FROM $exercise_table WHERE id = $exercise_id AND c_id = $course_id LIMIT 1";
$dk_result = Database::query($sql);
$exercise_table = Database::get_course_table(TABLE_QUIZ_TEST);
$item_property_table = Database::get_course_table(TABLE_ITEM_PROPERTY);
$exercise_id = intval($exercise_id);
$sql = "SELECT * FROM $exercise_table WHERE id = $exercise_id AND c_id = $course_id LIMIT 1";
$dk_result = Database::query($sql);
//actually author isn't saved on exercise tool, but prepare for when it's ready
$sql = "SELECT insert_user_id FROM $item_property_table
WHERE ref = $doc_id AND tool = '". TOOL_DOCUMENT ."' AND c_id = $course_id
WHERE ref = $doc_id AND tool = '" . TOOL_DOCUMENT . "' AND c_id = $course_id
LIMIT 1";
$name = '';
if ($row = Database::fetch_array ($dk_result)) {
if ($row = Database::fetch_array($dk_result)) {
// Get the image path
$thumbnail = api_get_path(WEB_PATH) . 'main/img/quiz.gif';
$image = $thumbnail; //FIXME: use big images
@ -129,7 +131,7 @@ class quiz_processor extends search_processor {
// get author
$author = '';
$item_result = Database::query($sql);
if ($item_result !== FALSE && $row = Database::fetch_array ($item_result)) {
if ($item_result !== FALSE && $row = Database::fetch_array($item_result)) {
$user_data = api_get_user_info($row['insert_user_id']);
$author = api_get_person_name($user_data['firstName'], $user_data['lastName']);
}
@ -139,4 +141,5 @@ class quiz_processor extends search_processor {
return array();
}
}
}

@ -1,8 +1,10 @@
<?php
/* For licensing terms, see /license.txt */
/**
* @package chamilo.include.search
*/
/**
* Base class to make tool processors
*
@ -16,6 +18,7 @@
* @package chamilo.include.search
*/
abstract class search_processor {
/**
* Search engine api results
*/

@ -7,6 +7,7 @@
/**
* Code
*/
require_once 'xapian.php';
require_once dirname(__FILE__) . '/../IndexableChunk.class.php';
@ -297,4 +298,5 @@ abstract class XapianIndexer {
unset($this->db);
unset($this->stemmer);
}
}

@ -1,4 +1,5 @@
<?php
/* For licensing terms, see /license.txt */
/**
* @package chamilo.include.search
@ -9,9 +10,9 @@
require_once 'xapian.php';
require_once dirname(__FILE__) . '/../IndexableChunk.class.php';
//TODO: think another way without including specific fields here
require_once api_get_path(LIBRARY_PATH).'specific_fields_manager.lib.php';
require_once api_get_path(LIBRARY_PATH) . 'specific_fields_manager.lib.php';
define('XAPIAN_DB', api_get_path(SYS_PATH).'searchdb/');
define('XAPIAN_DB', api_get_path(SYS_PATH) . 'searchdb/');
/**
* Queries the database.
@ -32,7 +33,7 @@ define('XAPIAN_DB', api_get_path(SYS_PATH).'searchdb/');
function xapian_query($query_string, $db = NULL, $start = 0, $length = 10, $extra = array(), $count_type = 0) {
try {
if (!is_object($db)) {
if (!is_object($db)) {
$db = new XapianDatabase(XAPIAN_DB);
}
@ -43,60 +44,60 @@ function xapian_query($query_string, $db = NULL, $start = 0, $length = 10, $extr
$subqueries[] = new XapianQuery($subquery);
}
}
$query = NULL;
$enquire = new XapianEnquire($db);
if (!empty($query_string)) {
$query_parser = new XapianQueryParser();
//TODO: choose stemmer
$stemmer = new XapianStem("english");
$query_parser->set_stemmer($stemmer);
$query_parser->set_database($db);
$query_parser->set_stemming_strategy(XapianQueryParser::STEM_SOME);
$query_parser->add_boolean_prefix('courseid', XAPIAN_PREFIX_COURSEID);
$query_parser->add_boolean_prefix('toolid', XAPIAN_PREFIX_TOOLID);
$query = $query_parser->parse_query($query_string);
$final_array = array_merge($subqueries, array($query));
$query = new XapianQuery(XapianQuery::OP_AND, $final_array);
$query_parser = new XapianQueryParser();
//TODO: choose stemmer
$stemmer = new XapianStem("english");
$query_parser->set_stemmer($stemmer);
$query_parser->set_database($db);
$query_parser->set_stemming_strategy(XapianQueryParser::STEM_SOME);
$query_parser->add_boolean_prefix('courseid', XAPIAN_PREFIX_COURSEID);
$query_parser->add_boolean_prefix('toolid', XAPIAN_PREFIX_TOOLID);
$query = $query_parser->parse_query($query_string);
$final_array = array_merge($subqueries, array($query));
$query = new XapianQuery(XapianQuery::OP_AND, $final_array);
} else {
$query = new XapianQuery(XapianQuery::OP_OR, $subqueries);
}
$enquire->set_query($query);
$matches = $enquire->get_mset((int)$start, (int)$length);
$matches = $enquire->get_mset((int) $start, (int) $length);
$specific_fields = get_specific_field_list();
$results = array();
$i = $matches->begin();
// Display the results.
// Display the results.
//echo $matches->get_matches_estimated().'results found';
$count = 0;
while (!$i->equals($matches->end())) {
$count++;
while (!$i->equals($matches->end())) {
$count++;
$document = $i->get_document();
if (is_object($document)) {
// process one item terms
$courseid_terms = xapian_get_doc_terms($document, XAPIAN_PREFIX_COURSEID);
$results[$count]['courseid'] = substr($courseid_terms[0]['name'], 1);
$toolid_terms = xapian_get_doc_terms($document, XAPIAN_PREFIX_TOOLID);
$results[$count]['toolid'] = substr($toolid_terms[0]['name'], 1);
// process each specific field prefix
foreach ($specific_fields as $specific_field) {
$results[$count]['sf-'.$specific_field['code']] = xapian_get_doc_terms($document, $specific_field['code']);
$results[$count]['sf-' . $specific_field['code']] = xapian_get_doc_terms($document, $specific_field['code']);
}
// rest of data
$results[$count]['xapian_data'] = unserialize($document->get_data());
$results[$count]['score'] = ($i->get_percent());
@ -105,21 +106,21 @@ function xapian_query($query_string, $db = NULL, $start = 0, $length = 10, $extr
}
switch ($count_type) {
case 1: // Lower bound
$count = $matches->get_matches_lower_bound();
break;
case 1: // Lower bound
$count = $matches->get_matches_lower_bound();
break;
case 2: // Upper bound
$count = $matches->get_matches_upper_bound();
break;
case 2: // Upper bound
$count = $matches->get_matches_upper_bound();
break;
case 0: // Best estimate
default:
$count = $matches->get_matches_estimated();
break;
case 0: // Best estimate
default:
$count = $matches->get_matches_estimated();
break;
}
return array($count, $results);
} catch (Exception $e) {
} catch (Exception $e) {
display_xapian_error($e->getMessage());
return NULL;
}
@ -131,6 +132,7 @@ function xapian_query($query_string, $db = NULL, $start = 0, $length = 10, $extr
function xapian_get_boolean_query($term) {
return new XapianQuery($term);
}
/**
* Retrieve a list db terms
*
@ -139,34 +141,32 @@ function xapian_get_boolean_query($term) {
* @param XapianDatabase $db Xapian database to connect
* @return array
*/
function xapian_get_all_terms($count=0, $prefix, $db=NULL) {
try {
if (!is_object($db)) {
$db = new XapianDatabase(XAPIAN_DB);
}
function xapian_get_all_terms($count = 0, $prefix, $db = NULL) {
try {
if (!is_object($db)) {
$db = new XapianDatabase(XAPIAN_DB);
}
if (!empty($prefix)) {
$termi= $db->allterms_begin($prefix);
}
else {
$termi= $db->allterms_begin();
}
if (!empty($prefix)) {
$termi = $db->allterms_begin($prefix);
} else {
$termi = $db->allterms_begin();
}
$terms = array();
$i = 0;
for ( ; !$termi->equals($db->allterms_end()) && (++$i<=$count || $count==0) ; $termi->next() ) {
$terms[] = array(
'frequency' => $termi->get_termfreq(),
'name' => $termi->get_term(),
);
}
$terms = array();
$i = 0;
for (; !$termi->equals($db->allterms_end()) && (++$i <= $count || $count == 0); $termi->next()) {
$terms[] = array(
'frequency' => $termi->get_termfreq(),
'name' => $termi->get_term(),
);
}
return $terms;
}
catch (Exception $e) {
display_xapian_error($e->getMessage());
return NULL;
}
return $terms;
} catch (Exception $e) {
display_xapian_error($e->getMessage());
return NULL;
}
}
/**
@ -175,32 +175,31 @@ function xapian_get_all_terms($count=0, $prefix, $db=NULL) {
* @param XapianDocument document searched
* @return array
*/
function xapian_get_doc_terms($doc=NULL, $prefix) {
try {
if (!is_a($doc, 'XapianDocument')) {
return;
}
function xapian_get_doc_terms($doc = NULL, $prefix) {
try {
if (!is_a($doc, 'XapianDocument')) {
return;
}
//TODO: make the filter by prefix on xapian if possible
//ojwb marvil07: use Document::termlist_begin() and then skip_to(prefix) on the TermIterator
//ojwb you'll need to check the end condition by hand though
$terms = array();
for ($termi=$doc->termlist_begin() ; !$termi->equals($doc->termlist_end()); $termi->next() ) {
$term = array(
'frequency' => $termi->get_termfreq(),
'name' => $termi->get_term(),
);
if ($term['name'][0] === $prefix) {
$terms[] = $term;
}
}
//TODO: make the filter by prefix on xapian if possible
//ojwb marvil07: use Document::termlist_begin() and then skip_to(prefix) on the TermIterator
//ojwb you'll need to check the end condition by hand though
$terms = array();
for ($termi = $doc->termlist_begin(); !$termi->equals($doc->termlist_end()); $termi->next()) {
$term = array(
'frequency' => $termi->get_termfreq(),
'name' => $termi->get_term(),
);
if ($term['name'][0] === $prefix) {
$terms[] = $term;
}
}
return $terms;
}
catch (Exception $e) {
display_xapian_error($e->getMessage());
return NULL;
}
return $terms;
} catch (Exception $e) {
display_xapian_error($e->getMessage());
return NULL;
}
}
/**
@ -211,53 +210,57 @@ function xapian_get_doc_terms($doc=NULL, $prefix) {
* @param string $op
* @return XapianQuery query joined
*/
function xapian_join_queries($query1, $query2=NULL, $op='or') {
// let decide how to join, avoiding include xapian.php outside
switch ($op) {
case 'or': $op = XapianQuery::OP_OR; break;
case 'and': $op = XapianQuery::OP_AND; break;
default: $op = XapianQuery::OP_OR; break;
}
// review parameters to decide how to join
if (!is_array($query1)) {
$query1 = array($query1);
}
if (is_null($query2)) {
// join an array of queries with $op
return new XapianQuery($op, $query1);
}
if (!is_array($query2)) {
$query2 = array($query2);
}
return new XapianQuery($op, array_merge($query1, $query2));
function xapian_join_queries($query1, $query2 = NULL, $op = 'or') {
// let decide how to join, avoiding include xapian.php outside
switch ($op) {
case 'or': $op = XapianQuery::OP_OR;
break;
case 'and': $op = XapianQuery::OP_AND;
break;
default: $op = XapianQuery::OP_OR;
break;
}
// review parameters to decide how to join
if (!is_array($query1)) {
$query1 = array($query1);
}
if (is_null($query2)) {
// join an array of queries with $op
return new XapianQuery($op, $query1);
}
if (!is_array($query2)) {
$query2 = array($query2);
}
return new XapianQuery($op, array_merge($query1, $query2));
}
/**
* @author Isaac flores paz <florespaz@bidsoftperu.com>
* @param String The xapian error message
* @return String The chamilo error message
*/
function display_xapian_error($xapian_error_message) {
$message=explode(':',$xapian_error_message);
$type_error_message=$message[0];
if ($type_error_message=='DatabaseOpeningError') {
$message_error=get_lang('SearchDatabaseOpeningError');
} elseif ($type_error_message=='DatabaseVersionError') {
$message_error=get_lang('SearchDatabaseVersionError');
} elseif ($type_error_message=='DatabaseModifiedError') {
$message_error=get_lang('SearchDatabaseModifiedError');
} elseif ($type_error_message=='DatabaseLockError') {
$message_error=get_lang('SearchDatabaseLockError');
} elseif ($type_error_message=='DatabaseCreateError') {
$message_error=get_lang('SearchDatabaseCreateError');
} elseif ($type_error_message=='DatabaseCorruptError') {
$message_error=get_lang('SearchDatabaseCorruptError');
} elseif ($type_error_message=='NetworkTimeoutError') {
$message_error=get_lang('SearchNetworkTimeoutError');
function display_xapian_error($xapian_error_message) {
$message = explode(':', $xapian_error_message);
$type_error_message = $message[0];
if ($type_error_message == 'DatabaseOpeningError') {
$message_error = get_lang('SearchDatabaseOpeningError');
} elseif ($type_error_message == 'DatabaseVersionError') {
$message_error = get_lang('SearchDatabaseVersionError');
} elseif ($type_error_message == 'DatabaseModifiedError') {
$message_error = get_lang('SearchDatabaseModifiedError');
} elseif ($type_error_message == 'DatabaseLockError') {
$message_error = get_lang('SearchDatabaseLockError');
} elseif ($type_error_message == 'DatabaseCreateError') {
$message_error = get_lang('SearchDatabaseCreateError');
} elseif ($type_error_message == 'DatabaseCorruptError') {
$message_error = get_lang('SearchDatabaseCorruptError');
} elseif ($type_error_message == 'NetworkTimeoutError') {
$message_error = get_lang('SearchNetworkTimeoutError');
} else {
$message_error=get_lang('SearchOtherXapianError');
$message_error = get_lang('SearchOtherXapianError');
}
$display_message=get_lang('Error').' : '. $message_error;
$display_message = get_lang('Error') . ' : ' . $message_error;
Display::display_error_message($display_message);
}

@ -240,8 +240,8 @@ class learnpathItem {
if (api_get_setting('search_enabled') == 'true') {
if (!is_null($this->search_did)) {
require_once api_get_path(LIBRARY_PATH).'search/DokeosIndexer.class.php';
$di = new DokeosIndexer();
require_once api_get_path(LIBRARY_PATH).'search/ChamiloIndexer.class.php';
$di = new ChamiloIndexer();
$di->remove_document($this->search_did);
}
}
@ -2032,7 +2032,7 @@ class learnpathItem {
global $charset;
$course_id = api_get_course_int_id();
$lp_item = Database::get_course_table(TABLE_LP_ITEM);
require_once api_get_path(LIBRARY_PATH).'search/DokeosIndexer.class.php';
require_once api_get_path(LIBRARY_PATH).'search/ChamiloIndexer.class.php';
$a_terms = split(',', $terms);
$i_terms = split(',', $this->get_terms());
foreach ($i_terms as $term) {
@ -2047,7 +2047,7 @@ class learnpathItem {
$res = Database::query($terms_update_sql);
// Save it to search engine.
if (api_get_setting('search_enabled') == 'true') {
$di = new DokeosIndexer();
$di = new ChamiloIndexer();
$di->update_terms($this->get_search_did(), $new_terms);
}
return true;

@ -15,7 +15,7 @@
*/
require_once 'openoffice_document.class.php';
if (api_get_setting('search_enabled') == 'true') {
require_once api_get_path(LIBRARY_PATH).'search/DokeosIndexer.class.php';
require_once api_get_path(LIBRARY_PATH).'search/ChamiloIndexer.class.php';
require_once api_get_path(LIBRARY_PATH).'search/IndexableChunk.class.php';
require_once api_get_path(LIBRARY_PATH).'specific_fields_manager.lib.php';
}
@ -114,9 +114,8 @@ class OpenofficePresentation extends OpenofficeDocument {
// Code for text indexing.
if (api_get_setting('search_enabled') == 'true') {
if (isset($_POST['index_document']) && $_POST['index_document']) {
//Display::display_normal_message(print_r($_POST));
$di = new DokeosIndexer();
if (isset($_POST['index_document']) && $_POST['index_document']) {
$di = new ChamiloIndexer();
isset($_POST['language']) ? $lang = Database::escape_string($_POST['language']) : $lang = 'english';
$di->connectDb(NULL, NULL, $lang);
$ic_slide = new IndexableChunk();

@ -16,7 +16,7 @@
require_once 'openoffice_document.class.php';
if (api_get_setting('search_enabled') == 'true') {
require_once api_get_path(LIBRARY_PATH).'specific_fields_manager.lib.php';
require_once api_get_path(LIBRARY_PATH).'search/DokeosIndexer.class.php';
require_once api_get_path(LIBRARY_PATH).'search/ChamiloIndexer.class.php';
require_once api_get_path(LIBRARY_PATH).'search/IndexableChunk.class.php';
}
/**
@ -211,7 +211,7 @@ class OpenofficeText extends OpenofficeDocument {
if (api_get_setting('search_enabled') == 'true') {
if (isset($_POST['index_document']) && $_POST['index_document']) {
//Display::display_normal_message(print_r($_POST));
$di = new DokeosIndexer();
$di = new ChamiloIndexer();
isset($_POST['language']) ? $lang = Database::escape_string($_POST['language']) : $lang = 'english';
$di->connectDb(NULL, NULL, $lang);
$ic_slide = new IndexableChunk();

@ -13,7 +13,7 @@
*/
require_once 'openoffice_document.class.php';
require_once api_get_path(LIBRARY_PATH).'specific_fields_manager.lib.php';
require_once api_get_path(LIBRARY_PATH).'search/DokeosIndexer.class.php';
require_once api_get_path(LIBRARY_PATH).'search/ChamiloIndexer.class.php';
require_once api_get_path(LIBRARY_PATH).'search/IndexableChunk.class.php';
/**
* @package chamilo.learnpath.openofficedocument
@ -202,7 +202,7 @@ class OpenOfficeTextDocument extends OpenofficeDocument {
// Code for text indexing.
if (isset($_POST['index_document']) && $_POST['index_document']) {
//Display::display_normal_message(print_r($_POST));
$di = new DokeosIndexer();
$di = new ChamiloIndexer();
isset($_POST['language']) ? $lang = Database::escape_string($_POST['language']) : $lang = 'english';
$di->connectDb(NULL, NULL, $lang);
$ic_slide = new IndexableChunk();

@ -386,11 +386,11 @@ class scorm extends learnpath {
// Code for indexing, now only index specific fields like terms and the title.
if (!empty($_POST['index_document'])) {
require_once api_get_path(LIBRARY_PATH).'search/DokeosIndexer.class.php';
require_once api_get_path(LIBRARY_PATH).'search/ChamiloIndexer.class.php';
require_once api_get_path(LIBRARY_PATH).'search/IndexableChunk.class.php';
require_once api_get_path(LIBRARY_PATH).'specific_fields_manager.lib.php';
$di = new DokeosIndexer();
$di = new ChamiloIndexer();
isset($_POST['language']) ? $lang = Database::escape_string($_POST['language']) : $lang = 'english';
$di->connectDb(NULL, NULL, $lang);
$ic_slide = new IndexableChunk();

Loading…
Cancel
Save