123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438 |
- <?php
- /* For licensing terms, see /license.txt */
- use ChamiloSession as Session;
- /**
- * Responses to AJAX calls.
- */
- require_once __DIR__.'/../global.inc.php';
- api_protect_course_script(true);
- $debug = false;
- $action = isset($_REQUEST['a']) ? $_REQUEST['a'] : '';
- $courseId = api_get_course_int_id();
- $sessionId = api_get_session_id();
- if ($debug) {
- error_log('----------lp.ajax-------------- action '.$action);
- }
- switch ($action) {
- case 'get_documents':
- $courseInfo = api_get_course_info();
- $folderId = isset($_GET['folder_id']) ? $_GET['folder_id'] : null;
- if (empty($folderId)) {
- exit;
- }
- $lpId = isset($_GET['lp_id']) ? $_GET['lp_id'] : false;
- $url = isset($_GET['url']) ? $_GET['url'] : '';
- $addMove = isset($_GET['add_move_button']) && $_GET['add_move_button'] == 1 ? true : false;
- echo DocumentManager::get_document_preview(
- $courseInfo,
- $lpId,
- null,
- api_get_session_id(),
- $addMove,
- null,
- $url,
- true,
- false,
- $folderId,
- false
- );
- break;
- case 'add_lp_item':
- if (api_is_allowed_to_edit(null, true)) {
- /** @var learnpath $learningPath */
- $learningPath = Session::read('oLP');
- if ($learningPath) {
- // Updating the lp.modified_on
- $learningPath->set_modified_on();
- $title = $_REQUEST['title'];
- if ($_REQUEST['type'] == TOOL_QUIZ) {
- $title = Exercise::format_title_variable($title);
- }
- $parentId = isset($_REQUEST['parent_id']) ? $_REQUEST['parent_id'] : '';
- $previousId = isset($_REQUEST['previous_id']) ? $_REQUEST['previous_id'] : '';
- $itemId = $learningPath->add_item(
- $parentId,
- $previousId,
- $_REQUEST['type'],
- $_REQUEST['id'],
- $title,
- null
- );
- /** @var learnpath $learningPath */
- $learningPath = Session::read('oLP');
- if ($learningPath) {
- echo $learningPath->returnLpItemList(null);
- }
- }
- }
- break;
- case 'update_lp_item_order':
- if (api_is_allowed_to_edit(null, true)) {
- $new_order = $_POST['new_order'];
- $sections = explode('^', $new_order);
- // We have to update parent_item_id, previous_item_id, next_item_id, display_order in the database
- $itemList = new LpItemOrderList();
- foreach ($sections as $items) {
- if (!empty($items)) {
- list($id, $parent_id) = explode('|', $items);
- $item = new LpOrderItem($id, $parent_id);
- $itemList->add($item);
- }
- }
- $parents = $itemList->getListOfParents();
- foreach ($parents as $parentId) {
- $sameParentLpItemList = $itemList->getItemWithSameParent($parentId);
- $previous_item_id = 0;
- for ($i = 0; $i < count($sameParentLpItemList->list); $i++) {
- $item_id = $sameParentLpItemList->list[$i]->id;
- // display_order
- $display_order = $i + 1;
- $itemList->setParametersForId($item_id, $display_order, 'display_order');
- // previous_item_id
- $itemList->setParametersForId($item_id, $previous_item_id, 'previous_item_id');
- $previous_item_id = $item_id;
- // next_item_id
- $next_item_id = 0;
- if ($i < count($sameParentLpItemList->list) - 1) {
- $next_item_id = $sameParentLpItemList->list[$i + 1]->id;
- }
- $itemList->setParametersForId($item_id, $next_item_id, 'next_item_id');
- }
- }
- $table = Database::get_course_table(TABLE_LP_ITEM);
- foreach ($itemList->list as $item) {
- $params = [];
- $params['display_order'] = $item->display_order;
- $params['previous_item_id'] = $item->previous_item_id;
- $params['next_item_id'] = $item->next_item_id;
- $params['parent_item_id'] = $item->parent_item_id;
- Database::update(
- $table,
- $params,
- [
- 'iid = ? AND c_id = ? ' => [
- intval($item->id),
- $courseId,
- ],
- ]
- );
- }
- echo Display::return_message(get_lang('Saved.'), 'confirm');
- }
- break;
- case 'record_audio':
- if (api_is_allowed_to_edit(null, true) == false) {
- exit;
- }
- /** @var Learnpath $lp */
- $lp = Session::read('oLP');
- $course_info = api_get_course_info();
- $lpPathInfo = $lp->generate_lp_folder($course_info);
- if (empty($lpPathInfo)) {
- exit;
- }
- foreach (['video', 'audio'] as $type) {
- if (isset($_FILES["${type}-blob"])) {
- $fileName = $_POST["${type}-filename"];
- //$file = $_FILES["${type}-blob"]["tmp_name"];
- $file = $_FILES["${type}-blob"];
- $fileInfo = pathinfo($fileName);
- $file['name'] = 'rec_'.date('Y-m-d_His').'_'.uniqid().'.'.$fileInfo['extension'];
- $file['file'] = $file;
- $result = DocumentManager::upload_document(
- $file,
- '/audio',
- $file['name'],
- null,
- 0,
- 'overwrite',
- false,
- false
- );
- if (!empty($result) && is_array($result)) {
- $newDocId = $result['id'];
- $courseId = $result['c_id'];
- $lp->set_modified_on();
- $lpItem = new learnpathItem($_REQUEST['lp_item_id']);
- $lpItem->add_audio_from_documents($newDocId);
- $data = DocumentManager::get_document_data_by_id($newDocId, $course_info['code']);
- echo $data['document_url'];
- exit;
- }
- }
- }
- break;
- case 'get_forum_thread':
- $lpId = isset($_GET['lp']) ? intval($_GET['lp']) : 0;
- $lpItemId = isset($_GET['lp_item']) ? intval($_GET['lp_item']) : 0;
- $sessionId = api_get_session_id();
- if (empty($lpId) || empty($lpItemId)) {
- echo json_encode([
- 'error' => true,
- ]);
- break;
- }
- $learningPath = learnpath::getLpFromSession(
- api_get_course_id(),
- $lpId,
- api_get_user_id()
- );
- $lpItem = $learningPath->getItem($lpItemId);
- if (empty($lpItem)) {
- echo json_encode([
- 'error' => true,
- ]);
- break;
- }
- $lpHasForum = $learningPath->lpHasForum();
- if (!$lpHasForum) {
- echo json_encode([
- 'error' => true,
- ]);
- break;
- }
- $forum = $learningPath->getForum($sessionId);
- if (empty($forum)) {
- require_once '../../forum/forumfunction.inc.php';
- $forumCategory = getForumCategoryByTitle(
- get_lang('Learning paths'),
- $courseId,
- $sessionId
- );
- if (empty($forumCategory)) {
- $forumCategoryId = store_forumcategory(
- [
- 'lp_id' => 0,
- 'forum_category_title' => get_lang('Learning paths'),
- 'forum_category_comment' => null,
- ],
- [],
- false
- );
- } else {
- $forumCategoryId = $forumCategory['cat_id'];
- }
- $forumId = $learningPath->createForum($forumCategoryId);
- } else {
- $forumId = $forum['forum_id'];
- }
- $lpItemHasThread = $lpItem->lpItemHasThread($courseId);
- if (!$lpItemHasThread) {
- echo json_encode([
- 'error' => true,
- ]);
- break;
- }
- $forumThread = $lpItem->getForumThread($courseId, $sessionId);
- if (empty($forumThread)) {
- $lpItem->createForumThread($forumId);
- $forumThread = $lpItem->getForumThread($courseId, $sessionId);
- }
- $forumThreadId = $forumThread['thread_id'];
- echo json_encode([
- 'error' => false,
- 'forumId' => intval($forum['forum_id']),
- 'threadId' => intval($forumThreadId),
- ]);
- break;
- case 'update_gamification':
- $lp = Session::read('oLP');
- $jsonGamification = [
- 'stars' => 0,
- 'score' => 0,
- ];
- if ($lp) {
- $score = $lp->getCalculateScore($sessionId);
- $jsonGamification['stars'] = $lp->getCalculateStars($sessionId);
- $jsonGamification['score'] = sprintf(get_lang('%s points'), $score);
- }
- echo json_encode($jsonGamification);
- break;
- case 'check_item_position':
- $lp = Session::read('oLP');
- $lpItemId = isset($_GET['lp_item']) ? intval($_GET['lp_item']) : 0;
- if ($lp) {
- $position = $lp->isFirstOrLastItem($lpItemId);
- echo json_encode($position);
- }
- break;
- case 'get_parent_names':
- $newItemId = isset($_GET['new_item']) ? intval($_GET['new_item']) : 0;
- if (!$newItemId) {
- break;
- }
- /** @var \learnpath $lp */
- $lp = Session::read('oLP');
- $parentNames = $lp->getCurrentItemParentNames($newItemId);
- $response = '';
- foreach ($parentNames as $parentName) {
- $response .= '<p class="h5 hidden-xs hidden-md">'.$parentName.'</p>';
- }
- echo $response;
- break;
- case 'get_item_prerequisites':
- /** @var learnpath $lp */
- $lp = Session::read('oLP');
- $itemId = isset($_GET['item_id']) ? (int) $_GET['item_id'] : 0;
- if (empty($lp) || empty($itemId)) {
- exit;
- }
- $result = $lp->prerequisites_match($itemId);
- if ($result) {
- echo '1';
- } else {
- if (!empty($lp->error)) {
- echo $lp->error;
- } else {
- echo get_lang('This learning object cannot display because the course prerequisites are not completed. This happens when a course imposes that you follow it step by step or get a minimum score in tests before you reach the next steps.');
- }
- }
- $lp->error = '';
- exit;
- break;
- default:
- echo '';
- }
- exit;
- /**
- * Class LpItemOrderList
- * Classes to create a special data structure to manipulate LP Items
- * used only in this file.
- *
- * @todo move in a file
- * @todo use PSR
- */
- class LpItemOrderList
- {
- public $list = [];
- public function __construct()
- {
- $this->list = [];
- }
- /**
- * @param array $list
- */
- public function add($list)
- {
- $this->list[] = $list;
- }
- /**
- * @param int $parentId
- *
- * @return LpItemOrderList
- */
- public function getItemWithSameParent($parentId)
- {
- $list = new LpItemOrderList();
- for ($i = 0; $i < count($this->list); $i++) {
- if ($this->list[$i]->parent_item_id == $parentId) {
- $list->add($this->list[$i]);
- }
- }
- return $list;
- }
- /**
- * @return array
- */
- public function getListOfParents()
- {
- $result = [];
- foreach ($this->list as $item) {
- if (!in_array($item->parent_item_id, $result)) {
- $result[] = $item->parent_item_id;
- }
- }
- return $result;
- }
- /**
- * @param int $id
- * @param int $value
- * @param string $parameter
- */
- public function setParametersForId($id, $value, $parameter)
- {
- for ($i = 0; $i < count($this->list); $i++) {
- if ($this->list[$i]->id == $id) {
- $this->list[$i]->$parameter = $value;
- break;
- }
- }
- }
- }
- /**
- * Class LpOrderItem.
- */
- class LpOrderItem
- {
- public $id = 0;
- public $parent_item_id = 0;
- public $previous_item_id = 0;
- public $next_item_id = 0;
- public $display_order = 0;
- /**
- * LpOrderItem constructor.
- *
- * @param int $id
- * @param int $parentId
- */
- public function __construct($id = 0, $parentId = 0)
- {
- $this->id = $id;
- $this->parent_item_id = $parentId;
- }
- }
|