123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696 |
- <?php
- /* For licensing terms, see /license.txt */
- /**
- * Class ExtraFieldValue
- * Declaration for the ExtraFieldValue class, managing the values in extra
- * fields for any data type
- * @package chamilo.library
- *
- */
- class ExtraFieldValue extends Model
- {
- public $type = null;
- public $columns = array('id', 'field_id', 'field_value', 'tms', 'comment', 'c_id');
- /** @var string session_id, course_code, user_id, question id */
- public $handler_id = null;
- public $entityName;
- /**
- * Formats the necessary elements for the given datatype
- * @param string $type The type of data to which this extra field
- * applies (user, course, session, ...)
- * @return void (or false if unmanaged datatype)
- * @assert (-1) === false
- */
- public function __construct($type)
- {
- $this->type = $type;
- $extra_field = new ExtraField($this->type);
- $this->handler_id = $extra_field->handler_id;
- switch ($this->type) {
- case 'calendar_event':
- $this->table = Database::get_main_table(TABLE_MAIN_CALENDAR_EVENT_VALUES);
- $this->table_handler_field = Database::get_main_table(TABLE_MAIN_CALENDAR_EVENT_FIELD);
- $this->author_id = 'user_id';
- break;
- case 'course':
- $this->table = Database::get_main_table(TABLE_MAIN_COURSE_FIELD_VALUES);
- $this->table_handler_field = Database::get_main_table(TABLE_MAIN_COURSE_FIELD);
- $this->author_id = 'user_id';
- $this->entityName = 'ChamiloLMS\Entity\CourseFieldValues';
- break;
- case 'user':
- $this->table = Database::get_main_table(TABLE_MAIN_USER_FIELD_VALUES);
- $this->table_handler_field = Database::get_main_table(TABLE_MAIN_USER_FIELD);
- $this->author_id = 'author_id';
- $this->entityName = 'ChamiloLMS\Entity\UserFieldValues';
- break;
- case 'session':
- $this->table = Database::get_main_table(TABLE_MAIN_SESSION_FIELD_VALUES);
- $this->table_handler_field = Database::get_main_table(TABLE_MAIN_SESSION_FIELD);
- $this->author_id = 'user_id';
- $this->entityName = 'ChamiloLMS\Entity\SessionFieldValues';
- break;
- case 'question':
- $this->table = Database::get_main_table(TABLE_MAIN_QUESTION_FIELD_VALUES);
- $this->table_handler_field = Database::get_main_table(TABLE_MAIN_QUESTION_FIELD);
- $this->author_id = 'user_id';
- $this->entityName = 'ChamiloLMS\Entity\QuestionFieldValues';
- break;
- case 'lp':
- $this->table = Database::get_main_table(TABLE_MAIN_LP_FIELD_VALUES);
- $this->table_handler_field = Database::get_main_table(TABLE_MAIN_LP_FIELD);
- $this->author_id = 'lp_id';
- //$this->entityName = 'ChamiloLMS\Entity\QuestionFieldValues';
- break;
- default:
- //unmanaged datatype, return false to let the caller know it
- // didn't work
- return false;
- }
- $this->columns[] = $this->handler_id;
- $this->columns[] = $this->author_id;
- }
- /**
- * Gets the number of values stored in the table (all fields together)
- * for this type of resource
- * @return integer Number of rows in the table
- * @assert () !== false
- */
- public function get_count()
- {
- $row = Database::select('count(*) as count', $this->table, array(), 'first');
- return $row['count'];
- }
- /**
- * Saves a series of records given as parameter into the corresponding table
- * @param array $params array for the insertion into the *_field_values table
- *
- * @return mixed false on empty params, void otherwise
- * @assert (array()) === false
- */
- public function save_field_values($params)
- {
- $extra_field = new ExtraField($this->type);
- if (empty($params[$this->handler_id])) {
- return false;
- }
- foreach ($params as $key => $value) {
- $found = strpos($key, '__persist__');
- if ($found) {
- $tempKey = str_replace('__persist__', '', $key);
- if (!isset($params[$tempKey])) {
- $params[$tempKey] = array();
- }
- }
- }
- // Parse params.
- foreach ($params as $key => $value) {
- if (substr($key, 0, 6) == 'extra_') {
- // An extra field.
- $field_variable = substr($key, 6);
- $extra_field_info = $extra_field->get_handler_field_info_by_field_variable($field_variable);
- if ($extra_field_info) {
- $commentVariable = 'extra_'.$field_variable.'_comment';
- $comment = isset($params[$commentVariable]) ? $params[$commentVariable] : null;
- switch ($extra_field_info['field_type']) {
- case ExtraField::FIELD_TYPE_TAG :
- $old = self::getAllValuesByItemAndField(
- $params[$this->handler_id],
- $extra_field_info['id']
- );
- $deleteItems = array();
- if (!empty($old)) {
- $oldIds = array();
- foreach ($old as $oldItem) {
- $oldIds[] = $oldItem['field_value'];
- }
- $deleteItems = array_diff($oldIds, $value);
- }
- foreach ($value as $optionId) {
- $newParams = array(
- $this->handler_id => $params[$this->handler_id],
- 'field_id' => $extra_field_info['id'],
- 'field_value' => $optionId,
- 'comment' => $comment
- );
- self::save($newParams);
- }
- if (!empty($deleteItems)) {
- foreach ($deleteItems as $deleteFieldValue) {
- self::deleteValuesByHandlerAndFieldAndValue(
- $params[$this->handler_id],
- $extra_field_info['id'],
- $deleteFieldValue
- );
- }
- }
- break;
- default;
- $newParams = array(
- $this->handler_id => $params[$this->handler_id],
- 'field_id' => $extra_field_info['id'],
- 'field_value' => $value,
- 'comment' => $comment
- );
- self::save($newParams);
- }
- }
- }
- }
- }
- /**
- * Save values in the *_field_values table
- * @param array $params Structured array with the values to save
- * @param boolean $show_query Whether to show the insert query (passed to the parent save() method)
- * @result mixed The result sent from the parent method
- * @assert (array()) === false
- */
- public function save($params, $show_query = false)
- {
- $extra_field = new ExtraField($this->type);
- // Setting value to insert.
- $value = $params['field_value'];
- $value_to_insert = null;
- if (is_array($value)) {
- $value_to_insert = implode(';', $value);
- } else {
- $value_to_insert = Database::escape_string($value);
- }
- $params['field_value'] = $value_to_insert;
- //If field id exists
- $extra_field_info = $extra_field->get($params['field_id']);
- if ($extra_field_info) {
- switch ($extra_field_info['field_type']) {
- case ExtraField::FIELD_TYPE_RADIO:
- case ExtraField::FIELD_TYPE_SELECT:
- case ExtraField::FIELD_TYPE_SELECT_MULTIPLE:
- //$field_options = $session_field_option->get_field_options_by_field($params['field_id']);
- //$params['field_value'] = split(';', $value_to_insert);
- /*
- if ($field_options) {
- $check = false;
- foreach ($field_options as $option) {
- if (in_array($option['option_value'], $values)) {
- $check = true;
- break;
- }
- }
- if (!$check) {
- return false; //option value not found
- }
- } else {
- return false; //enumerated type but no option found
- }*/
- break;
- case ExtraField::FIELD_TYPE_TEXT:
- case ExtraField::FIELD_TYPE_TEXTAREA:
- break;
- case ExtraField::FIELD_TYPE_DOUBLE_SELECT:
- if (is_array($value)) {
- if (isset($value['extra_'.$extra_field_info['field_variable']]) &&
- isset($value['extra_'.$extra_field_info['field_variable'].'_second'])
- ) {
- $value_to_insert = $value['extra_'.$extra_field_info['field_variable']].'::'.$value['extra_'.$extra_field_info['field_variable'].'_second'];
- } else {
- $value_to_insert = null;
- }
- }
- break;
- default:
- break;
- }
- if ($extra_field_info['field_type'] == ExtraField::FIELD_TYPE_TAG) {
- $field_values = self::getAllValuesByItemAndFieldAndValue(
- $params[$this->handler_id],
- $params['field_id'],
- $value
- );
- } else {
- $field_values = self::get_values_by_handler_and_field_id(
- $params[$this->handler_id],
- $params['field_id']
- );
- if ($this->is_course_model) {
- if (isset($field_values['c_id']) && isset($params['c_id'])) {
- if ($field_values['c_id'] != $params['c_id']) {
- $field_values = null;
- }
- }
- }
- }
- $params['field_value'] = $value_to_insert;
- $params['tms'] = api_get_utc_datetime();
- $params[$this->author_id] = api_get_user_id();
- // Insert
- if (empty($field_values)) {
- if ($extra_field_info['field_loggeable'] == 1) {
- global $app;
- switch($this->type) {
- case 'question':
- $extraFieldValue = new ChamiloLMS\Entity\QuestionFieldValues();
- $extraFieldValue->setUserId(api_get_user_id());
- $extraFieldValue->setQuestionId($params[$this->handler_id]);
- break;
- case 'course':
- $extraFieldValue = new ChamiloLMS\Entity\CourseFieldValues();
- $extraFieldValue->setUserId(api_get_user_id());
- $extraFieldValue->setQuestionId($params[$this->handler_id]);
- break;
- case 'user':
- $extraFieldValue = new ChamiloLMS\Entity\UserFieldValues();
- $extraFieldValue->setUserId($params[$this->handler_id]);
- $extraFieldValue->setAuthorId(api_get_user_id());
- break;
- case 'session':
- $extraFieldValue = new ChamiloLMS\Entity\SessionFieldValues();
- $extraFieldValue->setUserId(api_get_user_id());
- $extraFieldValue->setSessionId($params[$this->handler_id]);
- break;
- }
- if (isset($extraFieldValue)) {
- if (!empty($params['field_value'])) {
- $extraFieldValue->setComment($params['comment']);
- $extraFieldValue->setFieldValue($params['field_value']);
- $extraFieldValue->setFieldId($params['field_id']);
- $extraFieldValue->setTms(api_get_utc_datetime(null, false, true));
- $app['orm.ems']['db_write']->persist($extraFieldValue);
- $app['orm.ems']['db_write']->flush();
- }
- }
- } else {
- if ($extra_field_info['field_type'] == ExtraField::FIELD_TYPE_TAG) {
- $option = new ExtraFieldOption($this->type);
- $optionExists = $option->get($params['field_value']);
- if (empty($optionExists)) {
- $optionParams = array(
- 'field_id' => $params['field_id'],
- 'option_value' => $params['field_value']
- );
- $optionId = $option->saveOptions($optionParams);
- } else {
- $optionId = $optionExists['id'];
- }
- $params['field_value'] = $optionId;
- if ($optionId) {
- return parent::save($params, $show_query);
- }
- } else {
- return parent::save($params, $show_query);
- }
- }
- } else {
- // Update
- if ($extra_field_info['field_loggeable'] == 1) {
- global $app;
- switch($this->type) {
- case 'question':
- $extraFieldValue = $app['orm.ems']['db_write']->getRepository('ChamiloLMS\Entity\QuestionFieldValues')->find($field_values['id']);
- $extraFieldValue->setUserId(api_get_user_id());
- $extraFieldValue->setQuestionId($params[$this->handler_id]);
- break;
- case 'course':
- $extraFieldValue = $app['orm.ems']['db_write']->getRepository('ChamiloLMS\Entity\CourseFieldValues')->find($field_values['id']);
- $extraFieldValue->setUserId(api_get_user_id());
- $extraFieldValue->setCourseCode($params[$this->handler_id]);
- break;
- case 'user':
- $extraFieldValue = $app['orm.ems']['db_write']->getRepository('ChamiloLMS\Entity\UserFieldValues')->find($field_values['id']);
- $extraFieldValue->setUserId(api_get_user_id());
- $extraFieldValue->setAuthorId(api_get_user_id());
- break;
- case 'session':
- $extraFieldValue = $app['orm.ems']['db_write']->getRepository('ChamiloLMS\Entity\SessionFieldValues')->find($field_values['id']);
- $extraFieldValue->setUserId(api_get_user_id());
- $extraFieldValue->setSessionId($params[$this->handler_id]);
- break;
- }
- if (isset($extraFieldValue)) {
- if (!empty($params['field_value'])) {
- /*
- * If the field value is similar to the previous value then the comment will be the same
- in order to no save in the log an empty record
- */
- if ($extraFieldValue->getFieldValue() == $params['field_value']) {
- if (empty($params['comment'])) {
- $params['comment'] = $extraFieldValue->getComment();
- }
- }
- $extraFieldValue->setComment($params['comment']);
- $extraFieldValue->setFieldValue($params['field_value']);
- $extraFieldValue->setFieldId($params['field_id']);
- $extraFieldValue->setTms(api_get_utc_datetime(null, false, true));
- $app['orm.ems']['db_write']->persist($extraFieldValue);
- $app['orm.ems']['db_write']->flush();
- }
- }
- } else {
- $params['id'] = $field_values['id'];
- return parent::update($params, $show_query);
- }
- }
- }
- }
- /**
- * Returns the value of the given extra field on the given resource
- * @param int $item_id Item ID (It could be a session_id, course_id or user_id)
- * @param int $field_id Field ID (the ID from the *_field table)
- * @param bool $transform Whether to transform the result to a human readable strings
- * @return mixed A structured array with the field_id and field_value, or false on error
- * @assert (-1,-1) === false
- */
- public function get_values_by_handler_and_field_id($item_id, $field_id, $transform = false)
- {
- $field_id = intval($field_id);
- $item_id = intval($item_id);
- $sql = "SELECT s.*, field_type FROM {$this->table} s
- INNER JOIN {$this->table_handler_field} sf ON (s.field_id = sf.id)
- WHERE {$this->handler_id} = '$item_id' AND
- field_id = '".$field_id."'
- ORDER BY id";
- $result = Database::query($sql);
- if (Database::num_rows($result)) {
- $result = Database::fetch_array($result, 'ASSOC');
- if ($transform) {
- if (!empty($result['field_value'])) {
- switch ($result['field_type']) {
- case ExtraField::FIELD_TYPE_DOUBLE_SELECT:
- $field_option = new ExtraFieldOption($this->type);
- $options = explode('::', $result['field_value']);
- // only available for PHP 5.4 :( $result['field_value'] = $field_option->get($options[0])['id'].' -> ';
- $result = $field_option->get($options[0]);
- $result_second = $field_option->get($options[1]);
- if (!empty($result)) {
- $result['field_value'] = $result['option_display_text'].' -> ';
- $result['field_value'] .= $result_second['option_display_text'];
- }
- break;
- case ExtraField::FIELD_TYPE_SELECT:
- $field_option = new ExtraFieldOption($this->type);
- $extra_field_option_result = $field_option->get_field_option_by_field_and_option(
- $result['field_id'],
- $result['field_value']
- );
- if (isset($extra_field_option_result[0])) {
- $result['field_value'] = $extra_field_option_result[0]['option_display_text'];
- }
- break;
- }
- }
- }
- return $result;
- } else {
- return false;
- }
- }
- /**
- * @param string $tag
- * @param int $field_id
- * @param int $limit
- * @return array
- */
- public function searchValuesByField($tag, $field_id, $limit = 10)
- {
- $field_id = intval($field_id);
- $limit = intval($limit);
- $tag = Database::escape_string($tag);
- $sql = "SELECT DISTINCT s.field_value, s.field_id
- FROM {$this->table} s
- INNER JOIN {$this->table_handler_field} sf ON (s.field_id = sf.id)
- WHERE
- field_id = '".$field_id."' AND
- field_value LIKE '%$tag%'
- ORDER BY field_value
- LIMIT 0, $limit
- ";
- $result = Database::query($sql);
- $values = array();
- if (Database::num_rows($result)) {
- $values = Database::store_result($result, 'ASSOC');
- }
- return $values;
- }
- /**
- * Gets a structured array of the original item and its extra values, using
- * a specific original item and a field name (like "branch", or "birthdate")
- * @param int $item_id Item ID from the original table
- * @param string $field_variable The name of the field we are looking for
- * @param bool $transform
- * @return mixed Array of results, or false on error or not found
- * @assert (-1,'') === false
- */
- public function get_values_by_handler_and_field_variable($item_id, $field_variable, $transform = false)
- {
- $item_id = intval($item_id);
- $field_variable = Database::escape_string($field_variable);
- $sql = "SELECT s.*, field_type FROM {$this->table} s
- INNER JOIN {$this->table_handler_field} sf
- ON (s.field_id = sf.id)
- WHERE
- {$this->handler_id} = '$item_id' AND
- field_variable = '".$field_variable."'
- ORDER BY id";
- $result = Database::query($sql);
- if (Database::num_rows($result)) {
- $result = Database::fetch_array($result, 'ASSOC');
- if ($transform) {
- if ($result['field_type'] == ExtraField::FIELD_TYPE_DOUBLE_SELECT) {
- if (!empty($result['field_value'])) {
- $field_option = new ExtraFieldOption($this->type);
- $options = explode('::', $result['field_value']);
- // only available for PHP 5.4 :( $result['field_value'] = $field_option->get($options[0])['id'].' -> ';
- $result = $field_option->get($options[0]);
- $result_second = $field_option->get($options[1]);
- if (!empty($result)) {
- $result['field_value'] = $result['option_display_text'].' -> ';
- $result['field_value'] .= $result_second['option_display_text'];
- }
- }
- }
- }
- return $result;
- } else {
- return false;
- }
- }
- /**
- * Gets the ID from the item (course, session, etc) for which
- * the given field is defined with the given value
- * @param string $field_variable Field (type of data) we want to check
- * @param string $field_value Data we are looking for in the given field
- * @param bool $transform Whether to transform the result to a human readable strings
- * @param bool $last Whether to return the last element or simply the first one we get
- * @param bool $all return all items
- * @return mixed Give the ID if found, or false on failure or not found
- * @assert (-1,-1) === false
- */
- public function get_item_id_from_field_variable_and_field_value(
- $field_variable,
- $field_value,
- $transform = false,
- $last = false,
- $all = false
- ) {
- $field_value = Database::escape_string($field_value);
- $field_variable = Database::escape_string($field_variable);
- $sql = "SELECT {$this->handler_id} ";
- if ($all) {
- $sql = "SELECT s.* ";
- }
- $sql .= "
- FROM {$this->table} s
- INNER JOIN {$this->table_handler_field} sf
- ON (s.field_id = sf.id)
- WHERE
- field_value = '$field_value' AND
- field_variable = '".$field_variable."'
- ORDER BY {$this->handler_id}
- ";
- if ($last) {
- // If we want the last element instead of the first
- // This is useful in special cases where there might
- // (erroneously) be more than one row for an item
- $sql .= ' DESC';
- }
- $result = Database::query($sql);
- if ($result !== false && Database::num_rows($result)) {
- if ($all) {
- $result = Database::store_result($result, 'ASSOC');
- } else {
- $result = Database::fetch_array($result, 'ASSOC');
- }
- return $result;
- } else {
- return false;
- }
- }
- /**
- * Get all values for a specific field id
- * @param int $field_id
- * @return mixed Array of values on success, false on failure or not found
- * @assert (-1) === false
- */
- public function get_values_by_field_id($field_id)
- {
- $field_id = intval($field_id);
- $sql = "SELECT s.*, field_type FROM {$this->table} s
- INNER JOIN {$this->table_handler_field} sf
- ON (s.field_id = sf.id)
- WHERE field_id = '".$field_id."' ORDER BY id";
- $result = Database::query($sql);
- if (Database::num_rows($result)) {
- return Database::store_result($result, 'ASSOC');
- }
- return false;
- }
- /**
- * @param int $itemId
- * @param int $fieldId
- * @return array
- */
- public function getAllValuesByItemAndField($itemId, $fieldId)
- {
- $fieldId = intval($fieldId);
- $itemId = intval($itemId);
- $sql = "SELECT s.* FROM {$this->table} s
- INNER JOIN {$this->table_handler_field} sf
- ON (s.field_id = sf.id)
- WHERE
- field_id = '".$fieldId."' AND
- {$this->handler_id} = '$itemId'
- ORDER BY field_value";
- $result = Database::query($sql);
- if (Database::num_rows($result)) {
- return Database::store_result($result, 'ASSOC');
- }
- return false;
- }
- /**
- * @param int $itemId
- * @param int $fieldId
- * @param string $fieldValue
- * @return array|bool
- */
- public function getAllValuesByItemAndFieldAndValue($itemId, $fieldId, $fieldValue)
- {
- $fieldId = intval($fieldId);
- $itemId = intval($itemId);
- $fieldValue = Database::escape_string($fieldValue);
- $sql = "SELECT s.* FROM {$this->table} s
- INNER JOIN {$this->table_handler_field} sf
- ON (s.field_id = sf.id)
- WHERE
- field_id = '".$fieldId."' AND
- {$this->handler_id} = '$itemId' AND
- field_value = $fieldValue
- ORDER BY field_value";
- $result = Database::query($sql);
- if (Database::num_rows($result)) {
- return Database::store_result($result, 'ASSOC');
- }
- return false;
- }
- /**
- * Deletes all the values related to a specific field ID
- * @param int $field_id
- * @return void
- * @assert ('a') == null
- */
- public function delete_all_values_by_field_id($field_id)
- {
- $field_id = intval($field_id);
- $sql = "DELETE FROM {$this->table} WHERE field_id = $field_id";
- Database::query($sql);
- }
- /**
- * Deletes values of a specific field for a specific item
- * @param int $item_id (session id, course id, etc)
- * @param int $field_id
- * @return void
- * @assert (-1,-1) == null
- */
- public function delete_values_by_handler_and_field_id($item_id, $field_id)
- {
- $field_id = intval($field_id);
- $item_id = intval($item_id);
- $sql = "DELETE FROM {$this->table}
- WHERE {$this->handler_id} = '$item_id' AND field_id = '".$field_id."' ";
- Database::query($sql);
- }
- /**
- * @param int $itemId
- * @param int $fieldId
- * @param int $fieldValue
- */
- public function deleteValuesByHandlerAndFieldAndValue($itemId, $fieldId, $fieldValue)
- {
- $itemId = intval($itemId);
- $fieldId = intval($fieldId);
- $fieldValue = Database::escape_string($fieldValue);
- $sql = "DELETE FROM {$this->table}
- WHERE
- {$this->handler_id} = '$itemId' AND
- field_id = '".$fieldId."' AND
- field_value = '$fieldValue'";
- Database::query($sql);
- }
- /**
- * Not yet implemented - Compares the field values of two items
- * @param int $item_id Item 1
- * @param int $item_to_compare Item 2
- * @return mixed Differential array generated from the comparison
- */
- public function compare_item_values($item_id, $item_to_compare)
- {
- }
- }
|