123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367 |
- <?php
- /* For licensing terms, see /license.txt */
- /**
- * Class LegalManager
- *
- * @package chamilo.legal
- */
- class LegalManager
- {
- /**
- * Constructor
- */
- public function __construct()
- {
- }
- /**
- * Add a new Term and Condition
- * @param int $language language id
- * @param string $content content
- * @param int $type term and condition type (0 or 1)
- * @param string $changes explain changes
- * @return boolean success
- */
- public static function add($language, $content, $type, $changes)
- {
- $legal_table = Database::get_main_table(TABLE_MAIN_LEGAL);
- $last = self::get_last_condition($language);
- $type = intval($type);
- $time = time();
- if ($last['content'] != $content) {
- $version = intval(self::get_last_condition_version($language));
- $version++;
- $params = [
- 'language_id' => $language,
- 'content' => $content,
- 'changes' => $changes,
- 'type' => $type,
- 'version' => intval($version),
- 'date' => $time
- ];
- Database::insert($legal_table, $params);
- return true;
- } elseif ($last['type'] != $type && $language == $last['language_id']) {
- // Update
- $id = $last['id'];
- $params = [
- 'changes' => $changes,
- 'type' => $type,
- 'date' => $time
- ];
- Database::update($legal_table, $params, ['id => ?' => $id]);
- return true;
- } else {
- return false;
- }
- }
- /**
- * @param int $id
- */
- public static function delete($id)
- {
- /*
- $legal_table = Database::get_main_table(TABLE_MAIN_LEGAL);
- $id = intval($id);
- $sql = "DELETE FROM $legal_table WHERE id = '".$id."'";
- */
- }
- /**
- * Gets the last version of a Term and condition by language
- * @param int $language language id
- * @return array all the info of a Term and condition
- */
- public static function get_last_condition_version($language)
- {
- $legal_conditions_table = Database::get_main_table(TABLE_MAIN_LEGAL);
- $language = Database::escape_string($language);
- $sql = "SELECT version FROM $legal_conditions_table
- WHERE language_id = '".$language."'
- ORDER BY id DESC LIMIT 1 ";
- $result = Database::query($sql);
- $row = Database::fetch_array($result);
- if (Database::num_rows($result) > 0) {
- return $row['version'];
- } else {
- return 0;
- }
- }
- /**
- * Gets the data of a Term and condition by language
- * @param int $language language id
- * @return array all the info of a Term and condition
- */
- public static function get_last_condition($language)
- {
- $legal_conditions_table = Database::get_main_table(TABLE_MAIN_LEGAL);
- $language = Database::escape_string($language);
- $sql = "SELECT * FROM $legal_conditions_table
- WHERE language_id = '".$language."'
- ORDER BY version DESC
- LIMIT 1 ";
- $result = Database::query($sql);
- $result = Database::fetch_array($result, 'ASSOC');
- if (isset($result['content'])) {
- $result['content'] = self::replaceTags($result['content']);
- }
- return $result;
- }
- /**
- * Check if an specific version of an agreement exists
- *
- * @param int $language
- * @param int $version
- *
- * @return bool
- */
- public static function hasVersion($language, $version)
- {
- $table = Database::get_main_table(TABLE_MAIN_LEGAL);
- $language = intval($language);
- $version = intval($version);
- if (empty($language)) {
- return false;
- }
- $sql = "SELECT version FROM $table
- WHERE
- language_id = '$language' AND
- version = '$version'
- LIMIT 1 ";
- $result = Database::query($sql);
- if (Database::num_rows($result) > 0) {
- return true;
- } else {
- return false;
- }
- }
- /**
- * @param string $content
- * @return string
- */
- public static function replaceTags($content)
- {
- if (strpos($content, '{{sessions}}')) {
- $sessionListToString = '';
- $sessionList = SessionManager::get_sessions_by_user(api_get_user_id());
- if ($sessionList) {
- $sessionListToString = get_lang('SessionList').'<ul>';
- foreach ($sessionList as $session) {
- $sessionListToString .= '<li>'.$session['session_name'].'</li>';
- }
- $sessionListToString .= '<ul>';
- }
- $content = str_replace('{{sessions}}', $sessionListToString, $content);
- }
- return $content;
- }
- /**
- * Gets the last version of a Term and condition by language
- * @param int $language language id
- * @return boolean | int the version or false if does not exist
- */
- public static function get_last_version($language)
- {
- $legal_conditions_table = Database::get_main_table(TABLE_MAIN_LEGAL);
- $language = intval($language);
- $sql = "SELECT version FROM $legal_conditions_table
- WHERE language_id = '".$language."'
- ORDER BY version DESC
- LIMIT 1 ";
- $result = Database::query($sql);
- if (Database::num_rows($result) > 0) {
- $version = Database::fetch_array($result);
- $version = explode(':', $version[0]);
- return $version[0];
- } else {
- return false;
- }
- }
- /**
- * Show the last condition
- * @param array $term_preview with type and content i.e array('type'=>'1', 'content'=>'hola');
- *
- * @return string html preview
- */
- public static function show_last_condition($term_preview)
- {
- $preview = '';
- switch ($term_preview['type']) {
- case 0:
- if (!empty($term_preview['content'])) {
- $preview = '<div class="legal-terms">'.$term_preview['content'].'</div><br />';
- }
- $preview .= get_lang('ByClickingRegisterYouAgreeTermsAndConditions');
- $courseInfo = api_get_course_info();
- if (api_get_setting('load_term_conditions_section') === 'course' && empty($courseInfo)) {
- $preview = '';
- }
- break;
- // Page link
- case 1:
- $preview = '<fieldset>
- <legend>'.get_lang('TermsAndConditions').'</legend>';
- $preview .= '<div id="legal-accept-wrapper" class="form-item">
- <label class="option" for="legal-accept">
- <input id="legal-accept" type="checkbox" value="1" name="legal_accept"/>
- '.get_lang('IHaveReadAndAgree').'
- <a href="#">'.get_lang('TermsAndConditions').'</a>
- </label>
- </div>
- </fieldset>';
- break;
- default:
- break;
- }
- return $preview;
- }
- /**
- * Get the terms and condition table (only for maintenance)
- * @param int $from
- * @param int $number_of_items
- * @param int $column
- * @return array
- */
- public static function get_legal_data($from, $number_of_items, $column)
- {
- $legal_conditions_table = Database::get_main_table(TABLE_MAIN_LEGAL);
- $lang_table = Database::get_main_table(TABLE_MAIN_LANGUAGE);
- $from = intval($from);
- $number_of_items = intval($number_of_items);
- $column = intval($column);
- $sql = "SELECT version, original_name as language, content, changes, type, FROM_UNIXTIME(date)
- FROM $legal_conditions_table
- INNER JOIN $lang_table l
- ON (language_id = l.id)
- ORDER BY language, version ASC
- LIMIT $from, $number_of_items ";
- $result = Database::query($sql);
- $legals = array();
- while ($legal = Database::fetch_array($result)) {
- // max 2000 chars
- $languages[] = $legal[1];
- if (strlen($legal[2]) > 2000) {
- $legal[2] = substr($legal[2], 0, 2000).' ... ';
- }
- if ($legal[4] == 0) {
- $legal[4] = get_lang('HTMLText');
- } elseif ($legal[4] == 1) {
- $legal[4] = get_lang('PageLink');
- }
- $legals[] = $legal;
- }
- return $legals;
- }
- /**
- * Gets the number of terms and conditions available
- * @return int
- */
- public static function count()
- {
- $legal_conditions_table = Database::get_main_table(TABLE_MAIN_LEGAL);
- $sql = "SELECT count(*) as count_result
- FROM $legal_conditions_table
- ORDER BY id DESC ";
- $result = Database::query($sql);
- $url = Database::fetch_array($result, 'ASSOC');
- $result = $url['count_result'];
- return $result;
- }
- /**
- * Get type of terms and conditions
- * @param int $legal_id
- * @param int $language_id
- * @return int The current type of terms and conditions
- */
- public static function get_type_of_terms_and_conditions($legal_id, $language_id)
- {
- $legal_conditions_table = Database::get_main_table(TABLE_MAIN_LEGAL);
- $legal_id = intval($legal_id);
- $language_id = intval($language_id);
- $sql = 'SELECT type FROM '.$legal_conditions_table.'
- WHERE id = "'.$legal_id.'" AND language_id="'.$language_id.'"';
- $rs = Database::query($sql);
- return Database::result($rs, 0, 'type');
- }
- /**
- * @param int $userId
- */
- public static function sendLegal($userId)
- {
- $userInfo = api_get_user_info($userId);
- $subject = get_lang('SendTermsSubject');
- $webPath = api_get_path(WEB_PATH);
- $link = '<a href="'.$webPath.'courses/FORUMDAIDE/index.php">'.$webPath.'courses/FORUMDAIDE/index.php</a>';
- $content = sprintf(
- get_lang('SendTermsDescriptionToUrlX'),
- $userInfo['firstName'],
- $link
- );
- MessageManager::send_message_simple($userId, $subject, $content);
- Display::addFlash(Display::return_message(get_lang('Sent')));
- $extraFieldValue = new ExtraFieldValue('user');
- $value = $extraFieldValue->get_values_by_handler_and_field_variable($userId, 'termactivated');
- if ($value === false || $value[value]!=1) {
- $extraFieldInfo = $extraFieldValue->getExtraField()->get_handler_field_info_by_field_variable('termactivated');
- if ($extraFieldInfo) {
- $newParams = array(
- 'item_id' => $userId,
- 'field_id' => $extraFieldInfo['id'],
- 'value' => 1,
- 'comment' => ''
- );
- $extraFieldValue->save($newParams);
- }
- }
- }
- /**
- * @param int $userId
- */
- public static function deleteLegal($userId)
- {
- $extraFieldValue = new ExtraFieldValue('user');
- $value = $extraFieldValue->get_values_by_handler_and_field_variable(
- $userId,
- 'legal_accept'
- );
- $result = $extraFieldValue->delete($value['id']);
- if ($result) {
- Display::addFlash(Display::return_message(get_lang('Deleted')));
- }
- $value = $extraFieldValue->get_values_by_handler_and_field_variable(
- $userId,
- 'termactivated'
- );
- if ($value) {
- $extraFieldValue->delete($value['id']);
- }
- }
- }
|