link.lib.php 68 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001
  1. <?php
  2. /* For licensing terms, see /license.txt */
  3. use Chamilo\CourseBundle\Entity\CLink;
  4. /**
  5. * Function library for the links tool.
  6. *
  7. * This is a complete remake of the original link tool.
  8. * New features:
  9. * - Organize links into categories;
  10. * - favorites/bookmarks interface;
  11. * - move links up/down within a category;
  12. * - move categories up/down;
  13. * - expand/collapse all categories;
  14. * - add link to 'root' category => category-less link is always visible.
  15. *
  16. * @author Patrick Cool, complete remake (December 2003 - January 2004)
  17. * @author René Haentjens, CSV file import (October 2004)
  18. *
  19. * @package chamilo.link
  20. */
  21. class Link extends Model
  22. {
  23. public $table;
  24. public $is_course_model = true;
  25. public $columns = [
  26. 'id',
  27. 'c_id',
  28. 'url',
  29. 'title',
  30. 'description',
  31. 'category_id',
  32. 'display_order',
  33. 'on_homepage',
  34. 'target',
  35. 'session_id',
  36. ];
  37. public $required = ['url', 'title'];
  38. private $course;
  39. /**
  40. * Link constructor.
  41. */
  42. public function __construct()
  43. {
  44. $this->table = Database::get_course_table(TABLE_LINK);
  45. }
  46. /**
  47. * @param array $course
  48. */
  49. public function setCourse($course)
  50. {
  51. $this->course = $course;
  52. }
  53. /**
  54. * @return array
  55. */
  56. public function getCourse()
  57. {
  58. return !empty($this->course) ? $this->course : api_get_course_info();
  59. }
  60. /**
  61. * Organize the saving of a link, using the parent's save method and
  62. * updating the item_property table.
  63. *
  64. * @param array $params
  65. * @param bool $show_query Whether to show the query in logs when
  66. * calling parent's save method
  67. *
  68. * @return bool True if link could be saved, false otherwise
  69. */
  70. public function save($params, $show_query = null)
  71. {
  72. $course_info = $this->getCourse();
  73. $courseId = $course_info['real_id'];
  74. $params['session_id'] = api_get_session_id();
  75. $params['category_id'] = isset($params['category_id']) ? $params['category_id'] : 0;
  76. $sql = "SELECT MAX(display_order)
  77. FROM ".$this->table."
  78. WHERE
  79. c_id = $courseId AND
  80. category_id = '".intval($params['category_id'])."'";
  81. $result = Database:: query($sql);
  82. list($orderMax) = Database:: fetch_row($result);
  83. $order = $orderMax + 1;
  84. $params['display_order'] = $order;
  85. $id = parent::save($params, $show_query);
  86. if (!empty($id)) {
  87. // iid
  88. $sql = "UPDATE ".$this->table." SET id = iid WHERE iid = $id";
  89. Database::query($sql);
  90. api_item_property_update(
  91. $course_info,
  92. TOOL_LINK,
  93. $id,
  94. 'LinkAdded',
  95. api_get_user_id()
  96. );
  97. api_set_default_visibility($id, TOOL_LINK);
  98. }
  99. return $id;
  100. }
  101. /**
  102. * Update a link in the database.
  103. *
  104. * @param int $linkId The ID of the link to update
  105. * @param string $linkUrl The new URL to be saved
  106. * @param int $courseId
  107. * @param int $sessionId
  108. *
  109. * @return bool
  110. */
  111. public function updateLink(
  112. $linkId,
  113. $linkUrl,
  114. $courseId = null,
  115. $sessionId = null
  116. ) {
  117. $tblLink = Database::get_course_table(TABLE_LINK);
  118. $linkUrl = Database::escape_string($linkUrl);
  119. $linkId = intval($linkId);
  120. if (is_null($courseId)) {
  121. $courseId = api_get_course_int_id();
  122. }
  123. $courseId = intval($courseId);
  124. if (is_null($sessionId)) {
  125. $sessionId = api_get_session_id();
  126. }
  127. $sessionId = intval($sessionId);
  128. if ($linkUrl != '') {
  129. $sql = "UPDATE $tblLink SET
  130. url = '$linkUrl'
  131. WHERE id = $linkId AND c_id = $courseId AND session_id = $sessionId";
  132. $resLink = Database::query($sql);
  133. return $resLink;
  134. }
  135. return false;
  136. }
  137. /**
  138. * Used to add a link or a category.
  139. *
  140. * @param string $type , "link" or "category"
  141. *
  142. * @todo replace strings by constants
  143. *
  144. * @author Patrick Cool <patrick.cool@UGent.be>, Ghent University
  145. *
  146. * @return bool True on success, false on failure
  147. */
  148. public static function addlinkcategory($type)
  149. {
  150. $ok = true;
  151. $_course = api_get_course_info();
  152. $course_id = $_course['real_id'];
  153. $session_id = api_get_session_id();
  154. if ($type == 'link') {
  155. $title = Security::remove_XSS(stripslashes($_POST['title']));
  156. $urllink = Security::remove_XSS($_POST['url']);
  157. $description = Security::remove_XSS($_POST['description']);
  158. $selectcategory = Security::remove_XSS($_POST['category_id']);
  159. $onhomepage = 0;
  160. if (isset($_POST['on_homepage'])) {
  161. $onhomepage = Security::remove_XSS($_POST['on_homepage']);
  162. }
  163. $target = '_self'; // Default target.
  164. if (!empty($_POST['target'])) {
  165. $target = Security::remove_XSS($_POST['target']);
  166. }
  167. $urllink = trim($urllink);
  168. $title = trim($title);
  169. $description = trim($description);
  170. // We ensure URL to be absolute.
  171. if (strpos($urllink, '://') === false) {
  172. $urllink = 'http://'.$urllink;
  173. }
  174. // If the title is empty, we use the URL as title.
  175. if ($title == '') {
  176. $title = $urllink;
  177. }
  178. // If the URL is invalid, an error occurs.
  179. if (!api_valid_url($urllink, true)) {
  180. // A check against an absolute URL
  181. Display::addFlash(Display::return_message(get_lang('GiveURL'), 'error'));
  182. return false;
  183. } else {
  184. // Looking for the largest order number for this category.
  185. $link = new Link();
  186. $params = [
  187. 'c_id' => $course_id,
  188. 'url' => $urllink,
  189. 'title' => $title,
  190. 'description' => $description,
  191. 'category_id' => $selectcategory,
  192. 'on_homepage' => $onhomepage,
  193. 'target' => $target,
  194. 'session_id' => $session_id,
  195. ];
  196. $link_id = $link->save($params);
  197. if ((api_get_setting('search_enabled') == 'true') &&
  198. $link_id && extension_loaded('xapian')
  199. ) {
  200. require_once api_get_path(LIBRARY_PATH).'specific_fields_manager.lib.php';
  201. $course_int_id = $_course['real_id'];
  202. $courseCode = $_course['code'];
  203. $specific_fields = get_specific_field_list();
  204. $ic_slide = new IndexableChunk();
  205. // Add all terms to db.
  206. $all_specific_terms = '';
  207. foreach ($specific_fields as $specific_field) {
  208. if (isset($_REQUEST[$specific_field['code']])) {
  209. $sterms = trim($_REQUEST[$specific_field['code']]);
  210. if (!empty($sterms)) {
  211. $all_specific_terms .= ' '.$sterms;
  212. $sterms = explode(',', $sterms);
  213. foreach ($sterms as $sterm) {
  214. $ic_slide->addTerm(
  215. trim($sterm),
  216. $specific_field['code']
  217. );
  218. add_specific_field_value(
  219. $specific_field['id'],
  220. $courseCode,
  221. TOOL_LINK,
  222. $link_id,
  223. $sterm
  224. );
  225. }
  226. }
  227. }
  228. }
  229. // Build the chunk to index.
  230. $ic_slide->addValue('title', $title);
  231. $ic_slide->addCourseId($courseCode);
  232. $ic_slide->addToolId(TOOL_LINK);
  233. $xapian_data = [
  234. SE_COURSE_ID => $courseCode,
  235. SE_TOOL_ID => TOOL_LINK,
  236. SE_DATA => [
  237. 'link_id' => (int) $link_id,
  238. ],
  239. SE_USER => (int) api_get_user_id(),
  240. ];
  241. $ic_slide->xapian_data = serialize($xapian_data);
  242. $description = $all_specific_terms.' '.$description;
  243. $ic_slide->addValue('content', $description);
  244. // Add category name if set.
  245. if (isset($selectcategory) && $selectcategory > 0) {
  246. $table_link_category = Database::get_course_table(
  247. TABLE_LINK_CATEGORY
  248. );
  249. $sql_cat = 'SELECT * FROM %s WHERE id=%d AND c_id = %d LIMIT 1';
  250. $sql_cat = sprintf(
  251. $sql_cat,
  252. $table_link_category,
  253. (int) $selectcategory,
  254. $course_int_id
  255. );
  256. $result = Database:: query($sql_cat);
  257. if (Database:: num_rows($result) == 1) {
  258. $row = Database:: fetch_array($result);
  259. $ic_slide->addValue(
  260. 'category',
  261. $row['category_title']
  262. );
  263. }
  264. }
  265. $di = new ChamiloIndexer();
  266. isset($_POST['language']) ? $lang = Database:: escape_string(
  267. $_POST['language']
  268. ) : $lang = 'english';
  269. $di->connectDb(null, null, $lang);
  270. $di->addChunk($ic_slide);
  271. // Index and return search engine document id.
  272. $did = $di->index();
  273. if ($did) {
  274. // Save it to db.
  275. $tbl_se_ref = Database::get_main_table(
  276. TABLE_MAIN_SEARCH_ENGINE_REF
  277. );
  278. $sql = 'INSERT INTO %s (id, course_code, tool_id, ref_id_high_level, search_did)
  279. VALUES (NULL , \'%s\', \'%s\', %s, %s)';
  280. $sql = sprintf(
  281. $sql,
  282. $tbl_se_ref,
  283. $course_int_id,
  284. $courseCode,
  285. TOOL_LINK,
  286. $link_id,
  287. $did
  288. );
  289. Database:: query($sql);
  290. }
  291. }
  292. Display::addFlash(Display::return_message(get_lang('LinkAdded')));
  293. return $link_id;
  294. }
  295. } elseif ($type == 'category') {
  296. $tbl_categories = Database::get_course_table(TABLE_LINK_CATEGORY);
  297. $category_title = trim($_POST['category_title']);
  298. $description = trim($_POST['description']);
  299. if (empty($category_title)) {
  300. echo Display::return_message(get_lang('GiveCategoryName'), 'error');
  301. $ok = false;
  302. } else {
  303. // Looking for the largest order number for this category.
  304. $result = Database:: query(
  305. "SELECT MAX(display_order) FROM $tbl_categories
  306. WHERE c_id = $course_id "
  307. );
  308. list($orderMax) = Database:: fetch_row($result);
  309. $order = $orderMax + 1;
  310. $order = intval($order);
  311. $session_id = api_get_session_id();
  312. $params = [
  313. 'c_id' => $course_id,
  314. 'category_title' => $category_title,
  315. 'description' => $description,
  316. 'display_order' => $order,
  317. 'session_id' => $session_id,
  318. ];
  319. $linkId = Database::insert($tbl_categories, $params);
  320. if ($linkId) {
  321. // iid
  322. $sql = "UPDATE $tbl_categories SET id = iid WHERE iid = $linkId";
  323. Database:: query($sql);
  324. // add link_category visibility
  325. // course ID is taken from context in api_set_default_visibility
  326. //api_set_default_visibility($linkId, TOOL_LINK_CATEGORY);
  327. api_item_property_update(
  328. $_course,
  329. TOOL_LINK_CATEGORY,
  330. $linkId,
  331. 'LinkCategoryAdded',
  332. api_get_user_id()
  333. );
  334. api_set_default_visibility($linkId, TOOL_LINK_CATEGORY);
  335. }
  336. Display::addFlash(Display::return_message(get_lang('CategoryAdded')));
  337. return $linkId;
  338. }
  339. }
  340. return $ok;
  341. }
  342. /**
  343. * Used to delete a link or a category.
  344. *
  345. * @author Patrick Cool <patrick.cool@UGent.be>, Ghent University
  346. *
  347. * @param int $id
  348. * @param string $type The type of item to delete
  349. *
  350. * @return bool
  351. */
  352. public static function deletelinkcategory($id, $type)
  353. {
  354. $courseInfo = api_get_course_info();
  355. $tbl_link = Database::get_course_table(TABLE_LINK);
  356. $tbl_categories = Database::get_course_table(TABLE_LINK_CATEGORY);
  357. $course_id = $courseInfo['real_id'];
  358. $id = intval($id);
  359. if (empty($id)) {
  360. return false;
  361. }
  362. $result = false;
  363. switch ($type) {
  364. case 'link':
  365. // -> Items are no longer physically deleted,
  366. // but the visibility is set to 2 (in item_property).
  367. // This will make a restore function possible for the platform administrator.
  368. $sql = "UPDATE $tbl_link SET on_homepage='0'
  369. WHERE c_id = $course_id AND id='".$id."'";
  370. Database:: query($sql);
  371. api_item_property_update(
  372. $courseInfo,
  373. TOOL_LINK,
  374. $id,
  375. 'delete',
  376. api_get_user_id()
  377. );
  378. self::delete_link_from_search_engine(api_get_course_id(), $id);
  379. Skill::deleteSkillsFromItem($id, ITEM_TYPE_LINK);
  380. Display::addFlash(Display::return_message(get_lang('LinkDeleted')));
  381. $result = true;
  382. break;
  383. case 'category':
  384. // First we delete the category itself and afterwards all the links of this category.
  385. $sql = "DELETE FROM ".$tbl_categories."
  386. WHERE c_id = $course_id AND id='".$id."'";
  387. Database:: query($sql);
  388. $sql = "DELETE FROM ".$tbl_link."
  389. WHERE c_id = $course_id AND category_id='".$id."'";
  390. Database:: query($sql);
  391. api_item_property_update(
  392. $courseInfo,
  393. TOOL_LINK_CATEGORY,
  394. $id,
  395. 'delete',
  396. api_get_user_id()
  397. );
  398. Display::addFlash(Display::return_message(get_lang('CategoryDeleted')));
  399. $result = true;
  400. break;
  401. }
  402. return $result;
  403. }
  404. /**
  405. * Removes a link from search engine database.
  406. *
  407. * @param string $course_id Course code
  408. * @param int $link_id Document id to delete
  409. */
  410. public static function delete_link_from_search_engine($course_id, $link_id)
  411. {
  412. // Remove from search engine if enabled.
  413. if (api_get_setting('search_enabled') === 'true') {
  414. $tbl_se_ref = Database::get_main_table(
  415. TABLE_MAIN_SEARCH_ENGINE_REF
  416. );
  417. $sql = 'SELECT * FROM %s WHERE course_code=\'%s\' AND tool_id=\'%s\' AND ref_id_high_level=%s LIMIT 1';
  418. $sql = sprintf($sql, $tbl_se_ref, $course_id, TOOL_LINK, $link_id);
  419. $res = Database:: query($sql);
  420. if (Database:: num_rows($res) > 0) {
  421. $row = Database::fetch_array($res);
  422. $di = new ChamiloIndexer();
  423. $di->remove_document($row['search_did']);
  424. }
  425. $sql = 'DELETE FROM %s WHERE course_code=\'%s\' AND tool_id=\'%s\' AND ref_id_high_level=%s LIMIT 1';
  426. $sql = sprintf($sql, $tbl_se_ref, $course_id, TOOL_LINK, $link_id);
  427. Database:: query($sql);
  428. // Remove terms from db.
  429. require_once api_get_path(LIBRARY_PATH).'specific_fields_manager.lib.php';
  430. delete_all_values_for_item($course_id, TOOL_DOCUMENT, $link_id);
  431. }
  432. }
  433. /**
  434. * Get link info.
  435. *
  436. * @param int $id
  437. *
  438. * @return array link info
  439. */
  440. public static function getLinkInfo($id)
  441. {
  442. $tbl_link = Database::get_course_table(TABLE_LINK);
  443. $course_id = api_get_course_int_id();
  444. if (empty($id) || empty($course_id)) {
  445. return [];
  446. }
  447. $sql = "SELECT * FROM $tbl_link
  448. WHERE c_id = $course_id AND id='".intval($id)."' ";
  449. $result = Database::query($sql);
  450. $data = [];
  451. if (Database::num_rows($result)) {
  452. $data = Database::fetch_array($result);
  453. }
  454. return $data;
  455. }
  456. /**
  457. * @param int $id
  458. * @param array $values
  459. */
  460. public static function editLink($id, $values = [])
  461. {
  462. $tbl_link = Database::get_course_table(TABLE_LINK);
  463. $_course = api_get_course_info();
  464. $course_id = $_course['real_id'];
  465. $id = intval($id);
  466. $values['url'] = trim($values['url']);
  467. $values['title'] = trim($values['title']);
  468. $values['description'] = trim($values['description']);
  469. $values['target'] = empty($values['target']) ? '_self' : $values['target'];
  470. $values['on_homepage'] = isset($values['on_homepage']) ? $values['on_homepage'] : '';
  471. $categoryId = intval($values['category_id']);
  472. // We ensure URL to be absolute.
  473. if (strpos($values['url'], '://') === false) {
  474. $values['url'] = 'http://'.$_POST['url'];
  475. }
  476. // If the title is empty, we use the URL as title.
  477. if ($values['title'] == '') {
  478. $values['title'] = $values['url'];
  479. }
  480. // If the URL is invalid, an error occurs.
  481. if (!api_valid_url($values['url'], true)) {
  482. Display::addFlash(
  483. Display::return_message(get_lang('GiveURL'), 'error')
  484. );
  485. return false;
  486. }
  487. if (empty($id) || empty($course_id)) {
  488. return false;
  489. }
  490. // Finding the old category_id.
  491. $sql = "SELECT * FROM $tbl_link
  492. WHERE c_id = $course_id AND id='".$id."'";
  493. $result = Database:: query($sql);
  494. $row = Database:: fetch_array($result);
  495. $category_id = $row['category_id'];
  496. if ($category_id != $values['category_id']) {
  497. $sql = "SELECT MAX(display_order)
  498. FROM $tbl_link
  499. WHERE
  500. c_id = $course_id AND
  501. category_id='".intval($values['category_id'])."'";
  502. $result = Database:: query($sql);
  503. list($max_display_order) = Database:: fetch_row($result);
  504. $max_display_order++;
  505. } else {
  506. $max_display_order = $row['display_order'];
  507. }
  508. $params = [
  509. 'url' => $values['url'],
  510. 'title' => $values['title'],
  511. 'description' => $values['description'],
  512. 'category_id' => $values['category_id'],
  513. 'display_order' => $max_display_order,
  514. 'on_homepage' => $values['on_homepage'],
  515. 'target' => $values['target'],
  516. ];
  517. Database::update(
  518. $tbl_link,
  519. $params,
  520. ['c_id = ? AND id = ?' => [$course_id, $id]]
  521. );
  522. // Update search enchine and its values table if enabled.
  523. if (api_get_setting('search_enabled') == 'true') {
  524. $course_int_id = api_get_course_int_id();
  525. $course_id = api_get_course_id();
  526. $link_title = Database:: escape_string($values['title']);
  527. $link_description = Database:: escape_string($values['description']);
  528. // Actually, it consists on delete terms from db,
  529. // insert new ones, create a new search engine document, and remove the old one.
  530. // Get search_did.
  531. $tbl_se_ref = Database::get_main_table(
  532. TABLE_MAIN_SEARCH_ENGINE_REF
  533. );
  534. $sql = 'SELECT * FROM %s WHERE course_code=\'%s\' AND tool_id=\'%s\' AND ref_id_high_level=%s LIMIT 1';
  535. $sql = sprintf(
  536. $sql,
  537. $tbl_se_ref,
  538. $course_id,
  539. TOOL_LINK,
  540. $id
  541. );
  542. $res = Database:: query($sql);
  543. if (Database:: num_rows($res) > 0) {
  544. require_once api_get_path(LIBRARY_PATH).'specific_fields_manager.lib.php';
  545. $se_ref = Database:: fetch_array($res);
  546. $specific_fields = get_specific_field_list();
  547. $ic_slide = new IndexableChunk();
  548. $all_specific_terms = '';
  549. foreach ($specific_fields as $specific_field) {
  550. delete_all_specific_field_value(
  551. $course_id,
  552. $specific_field['id'],
  553. TOOL_LINK,
  554. $id
  555. );
  556. if (isset($_REQUEST[$specific_field['code']])) {
  557. $sterms = trim(
  558. $_REQUEST[$specific_field['code']]
  559. );
  560. if (!empty($sterms)) {
  561. $all_specific_terms .= ' '.$sterms;
  562. $sterms = explode(',', $sterms);
  563. foreach ($sterms as $sterm) {
  564. $ic_slide->addTerm(
  565. trim($sterm),
  566. $specific_field['code']
  567. );
  568. add_specific_field_value(
  569. $specific_field['id'],
  570. $course_id,
  571. TOOL_LINK,
  572. $id,
  573. $sterm
  574. );
  575. }
  576. }
  577. }
  578. }
  579. // Build the chunk to index.
  580. $ic_slide->addValue("title", $link_title);
  581. $ic_slide->addCourseId($course_id);
  582. $ic_slide->addToolId(TOOL_LINK);
  583. $xapian_data = [
  584. SE_COURSE_ID => $course_id,
  585. SE_TOOL_ID => TOOL_LINK,
  586. SE_DATA => [
  587. 'link_id' => (int) $id,
  588. ],
  589. SE_USER => (int) api_get_user_id(),
  590. ];
  591. $ic_slide->xapian_data = serialize($xapian_data);
  592. $link_description = $all_specific_terms.' '.$link_description;
  593. $ic_slide->addValue('content', $link_description);
  594. // Add category name if set.
  595. if (isset($categoryId) && $categoryId > 0) {
  596. $table_link_category = Database::get_course_table(
  597. TABLE_LINK_CATEGORY
  598. );
  599. $sql_cat = 'SELECT * FROM %s WHERE id=%d and c_id = %d LIMIT 1';
  600. $sql_cat = sprintf(
  601. $sql_cat,
  602. $table_link_category,
  603. $categoryId,
  604. $course_int_id
  605. );
  606. $result = Database:: query($sql_cat);
  607. if (Database:: num_rows($result) == 1) {
  608. $row = Database:: fetch_array($result);
  609. $ic_slide->addValue(
  610. 'category',
  611. $row['category_title']
  612. );
  613. }
  614. }
  615. $di = new ChamiloIndexer();
  616. isset($_POST['language']) ? $lang = Database:: escape_string($_POST['language']) : $lang = 'english';
  617. $di->connectDb(null, null, $lang);
  618. $di->remove_document($se_ref['search_did']);
  619. $di->addChunk($ic_slide);
  620. // Index and return search engine document id.
  621. $did = $di->index();
  622. if ($did) {
  623. // Save it to db.
  624. $sql = 'DELETE FROM %s
  625. WHERE course_code=\'%s\'
  626. AND tool_id=\'%s\'
  627. AND ref_id_high_level=\'%s\'';
  628. $sql = sprintf(
  629. $sql,
  630. $tbl_se_ref,
  631. $course_id,
  632. TOOL_LINK,
  633. $id
  634. );
  635. Database:: query($sql);
  636. $sql = 'INSERT INTO %s (c_id, id, course_code, tool_id, ref_id_high_level, search_did)
  637. VALUES (NULL , \'%s\', \'%s\', %s, %s)';
  638. $sql = sprintf(
  639. $sql,
  640. $tbl_se_ref,
  641. $course_int_id,
  642. $course_id,
  643. TOOL_LINK,
  644. $id,
  645. $did
  646. );
  647. Database:: query($sql);
  648. }
  649. }
  650. }
  651. // "WHAT'S NEW" notification: update table last_toolEdit.
  652. api_item_property_update(
  653. $_course,
  654. TOOL_LINK,
  655. $id,
  656. 'LinkUpdated',
  657. api_get_user_id()
  658. );
  659. Display::addFlash(Display::return_message(get_lang('LinkModded')));
  660. }
  661. /**
  662. * @param int $id
  663. * @param array $values
  664. *
  665. * @return bool
  666. */
  667. public static function editCategory($id, $values)
  668. {
  669. $table = Database::get_course_table(TABLE_LINK_CATEGORY);
  670. $course_id = api_get_course_int_id();
  671. $id = intval($id);
  672. // This is used to put the modified info of the category-form into the database.
  673. $params = [
  674. 'category_title' => $values['category_title'],
  675. 'description' => $values['description'],
  676. ];
  677. Database::update(
  678. $table,
  679. $params,
  680. ['c_id = ? AND id = ?' => [$course_id, $id]]
  681. );
  682. Display::addFlash(Display::return_message(get_lang('CategoryModded')));
  683. return true;
  684. }
  685. /**
  686. * Changes the visibility of a link.
  687. *
  688. * @todo add the changing of the visibility of a course
  689. *
  690. * @author Patrick Cool <patrick.cool@UGent.be>, Ghent University
  691. */
  692. public static function change_visibility_link($id, $scope)
  693. {
  694. $_course = api_get_course_info();
  695. $_user = api_get_user_info();
  696. if ($scope == TOOL_LINK) {
  697. api_item_property_update(
  698. $_course,
  699. TOOL_LINK,
  700. $id,
  701. $_GET['action'],
  702. $_user['user_id']
  703. );
  704. Display::addFlash(Display::return_message(get_lang('VisibilityChanged')));
  705. } elseif ($scope == TOOL_LINK_CATEGORY) {
  706. api_item_property_update(
  707. $_course,
  708. TOOL_LINK_CATEGORY,
  709. $id,
  710. $_GET['action'],
  711. $_user['user_id']
  712. );
  713. Display::addFlash(Display::return_message(get_lang('VisibilityChanged')));
  714. }
  715. }
  716. /**
  717. * Generate SQL to select all the links categories in the current course and
  718. * session.
  719. *
  720. * @param int $courseId
  721. * @param int $sessionId
  722. * @param bool $withBaseContent
  723. *
  724. * @return array
  725. */
  726. public static function getLinkCategories($courseId, $sessionId, $withBaseContent = true)
  727. {
  728. $tblLinkCategory = Database::get_course_table(TABLE_LINK_CATEGORY);
  729. $tblItemProperty = Database::get_course_table(TABLE_ITEM_PROPERTY);
  730. $courseId = intval($courseId);
  731. $courseInfo = api_get_course_info_by_id($courseId);
  732. // Condition for the session.
  733. $sessionCondition = api_get_session_condition(
  734. $sessionId,
  735. true,
  736. $withBaseContent,
  737. 'linkcat.session_id'
  738. );
  739. // Getting links
  740. $sql = "SELECT *, linkcat.id
  741. FROM $tblLinkCategory linkcat
  742. WHERE
  743. linkcat.c_id = $courseId
  744. $sessionCondition
  745. ORDER BY linkcat.display_order DESC";
  746. $result = Database::query($sql);
  747. $categories = Database::store_result($result);
  748. $sql = "SELECT *, linkcat.id
  749. FROM $tblLinkCategory linkcat
  750. INNER JOIN $tblItemProperty ip
  751. ON (linkcat.id = ip.ref AND linkcat.c_id = ip.c_id)
  752. WHERE
  753. ip.tool = '".TOOL_LINK_CATEGORY."' AND
  754. (ip.visibility = '0' OR ip.visibility = '1')
  755. $sessionCondition AND
  756. linkcat.c_id = ".$courseId."
  757. ORDER BY linkcat.display_order DESC";
  758. $result = Database::query($sql);
  759. $categoryInItemProperty = [];
  760. if (Database::num_rows($result)) {
  761. while ($row = Database::fetch_array($result, 'ASSOC')) {
  762. $categoryInItemProperty[$row['id']] = $row;
  763. }
  764. }
  765. foreach ($categories as &$category) {
  766. if (!isset($categoryInItemProperty[$category['id']])) {
  767. api_item_property_update(
  768. $courseInfo,
  769. TOOL_LINK_CATEGORY,
  770. $category['id'],
  771. 'LinkCategoryAdded',
  772. api_get_user_id()
  773. );
  774. }
  775. }
  776. $sql = "SELECT DISTINCT linkcat.*, visibility
  777. FROM $tblLinkCategory linkcat
  778. INNER JOIN $tblItemProperty ip
  779. ON (linkcat.id = ip.ref AND linkcat.c_id = ip.c_id)
  780. WHERE
  781. ip.tool = '".TOOL_LINK_CATEGORY."' AND
  782. (ip.visibility = '0' OR ip.visibility = '1')
  783. $sessionCondition AND
  784. linkcat.c_id = ".$courseId."
  785. ORDER BY linkcat.display_order DESC
  786. ";
  787. $result = Database::query($sql);
  788. return Database::store_result($result, 'ASSOC');
  789. }
  790. /**
  791. * @param int $categoryId
  792. * @param $courseId
  793. * @param $sessionId
  794. * @param bool $withBaseContent
  795. *
  796. * @return array
  797. */
  798. public static function getLinksPerCategory(
  799. $categoryId,
  800. $courseId,
  801. $sessionId,
  802. $withBaseContent = true
  803. ) {
  804. $tbl_link = Database::get_course_table(TABLE_LINK);
  805. $TABLE_ITEM_PROPERTY = Database::get_course_table(TABLE_ITEM_PROPERTY);
  806. $courseId = (int) $courseId;
  807. $sessionId = (int) $sessionId;
  808. $categoryId = (int) $categoryId;
  809. // Condition for the session.
  810. $condition_session = api_get_session_condition(
  811. $sessionId,
  812. true,
  813. false,
  814. 'ip.session_id'
  815. );
  816. if (!empty($sessionId)) {
  817. $conditionBaseSession = api_get_session_condition(
  818. 0,
  819. true,
  820. $withBaseContent,
  821. 'ip.session_id'
  822. );
  823. $condition = " AND
  824. (
  825. (ip.visibility = '1' $conditionBaseSession) OR
  826. (
  827. (ip.visibility = '0' OR ip.visibility = '1')
  828. $condition_session
  829. )
  830. )
  831. ";
  832. } else {
  833. $condition = api_get_session_condition(
  834. 0,
  835. true,
  836. false,
  837. 'ip.session_id'
  838. );
  839. $condition .= " AND (ip.visibility = '0' OR ip.visibility = '1') $condition ";
  840. }
  841. $sql = "SELECT
  842. link.id,
  843. ip.session_id,
  844. link.session_id link_session_id,
  845. url,
  846. category_id,
  847. visibility,
  848. description,
  849. title,
  850. target,
  851. on_homepage
  852. FROM $tbl_link link
  853. INNER JOIN $TABLE_ITEM_PROPERTY ip
  854. ON (link.id = ip.ref AND link.c_id = ip.c_id)
  855. WHERE
  856. ip.tool = '".TOOL_LINK."' AND
  857. link.category_id = '".$categoryId."' AND
  858. link.c_id = $courseId AND
  859. ip.c_id = $courseId
  860. $condition
  861. ORDER BY link.display_order ASC, ip.session_id DESC";
  862. $result = Database:: query($sql);
  863. return Database::store_result($result);
  864. }
  865. /**
  866. * Displays all the links of a given category.
  867. *
  868. * @param int $catid
  869. * @param int $courseId
  870. * @param int $session_id
  871. * @param bool $showActionLinks
  872. *
  873. * @return string
  874. *
  875. * @author Julio Montoya
  876. * @author Patrick Cool <patrick.cool@UGent.be>, Ghent University
  877. */
  878. public static function showLinksPerCategory($catid, $courseId, $session_id, $showActionLinks = true)
  879. {
  880. global $token;
  881. $_user = api_get_user_info();
  882. $catid = (int) $catid;
  883. $links = self::getLinksPerCategory($catid, $courseId, $session_id);
  884. $content = '';
  885. $numberOfLinks = count($links);
  886. if (!empty($links)) {
  887. $content .= '<div class="link list-group">';
  888. $i = 1;
  889. $linksAdded = [];
  890. foreach ($links as $myrow) {
  891. $linkId = $myrow['id'];
  892. if (in_array($linkId, $linksAdded)) {
  893. continue;
  894. }
  895. $linksAdded[] = $linkId;
  896. $categoryId = $myrow['category_id'];
  897. // Validation when belongs to a session.
  898. $session_img = api_get_session_image(
  899. $myrow['link_session_id'],
  900. $_user['status']
  901. );
  902. $toolbar = '';
  903. $link_validator = '';
  904. if (api_is_allowed_to_edit(null, true)) {
  905. $toolbar .= Display::toolbarButton(
  906. '',
  907. 'javascript:void(0);',
  908. 'check-circle-o',
  909. 'default btn-sm',
  910. [
  911. 'onclick' => "check_url('".$linkId."', '".addslashes($myrow['url'])."');",
  912. 'title' => get_lang('CheckURL'),
  913. ]
  914. );
  915. $link_validator .= Display::span(
  916. '',
  917. [
  918. 'id' => 'url_id_'.$linkId,
  919. 'class' => 'check-link',
  920. ]
  921. );
  922. if ($session_id == $myrow['link_session_id']) {
  923. $url = api_get_self().'?'.api_get_cidreq().'&action=editlink&id='.$linkId;
  924. $title = get_lang('Edit');
  925. $toolbar .= Display::toolbarButton(
  926. '',
  927. $url,
  928. 'pencil',
  929. 'default btn-sm',
  930. [
  931. 'title' => $title,
  932. ]
  933. );
  934. }
  935. $urlVisibility = api_get_self().'?'.api_get_cidreq().
  936. '&sec_token='.$token.
  937. '&id='.$linkId.
  938. '&scope=link&category_id='.$categoryId;
  939. switch ($myrow['visibility']) {
  940. case '1':
  941. $urlVisibility .= '&action=invisible';
  942. $title = get_lang('MakeInvisible');
  943. $toolbar .= Display::toolbarButton(
  944. '',
  945. $urlVisibility,
  946. 'eye',
  947. 'default btn-sm',
  948. [
  949. 'title' => $title,
  950. ]
  951. );
  952. break;
  953. case '0':
  954. $urlVisibility .= '&action=visible';
  955. $title = get_lang('MakeVisible');
  956. $toolbar .= Display::toolbarButton(
  957. '',
  958. $urlVisibility,
  959. 'eye-slash',
  960. 'primary btn-sm',
  961. [
  962. 'title' => $title,
  963. ]
  964. );
  965. break;
  966. }
  967. if ($session_id == $myrow['link_session_id']) {
  968. $moveLinkParams = [
  969. 'id' => $linkId,
  970. 'scope' => 'category',
  971. 'category_id' => $categoryId,
  972. 'action' => 'move_link_up',
  973. ];
  974. $toolbar .= Display::toolbarButton(
  975. get_lang('MoveUp'),
  976. api_get_self().'?'.api_get_cidreq().'&'.http_build_query($moveLinkParams),
  977. 'level-up',
  978. 'default',
  979. ['class' => 'btn-sm '.($i === 1 ? 'disabled' : '')],
  980. false
  981. );
  982. $moveLinkParams['action'] = 'move_link_down';
  983. $toolbar .= Display::toolbarButton(
  984. get_lang('MoveDown'),
  985. api_get_self().'?'.api_get_cidreq().'&'.http_build_query($moveLinkParams),
  986. 'level-down',
  987. 'default',
  988. ['class' => 'btn-sm '.($i === $numberOfLinks ? 'disabled' : '')],
  989. false
  990. );
  991. $url = api_get_self().'?'.api_get_cidreq().'&sec_token='.$token.'&action=deletelink&id='.$linkId.'&category_id='.$categoryId;
  992. $event = "javascript: if(!confirm('".get_lang('LinkDelconfirm')."'))return false;";
  993. $title = get_lang('Delete');
  994. $toolbar .= Display::toolbarButton(
  995. '',
  996. $url,
  997. 'trash',
  998. 'default btn-sm',
  999. [
  1000. 'onclick' => $event,
  1001. 'title' => $title,
  1002. ]
  1003. );
  1004. }
  1005. }
  1006. $showLink = false;
  1007. $titleClass = '';
  1008. if ($myrow['visibility'] == '1') {
  1009. $showLink = true;
  1010. } else {
  1011. if (api_is_allowed_to_edit(null, true)) {
  1012. $showLink = true;
  1013. $titleClass = 'text-muted';
  1014. }
  1015. }
  1016. if ($showLink) {
  1017. $iconLink = Display::return_icon(
  1018. 'url.png',
  1019. get_lang('Link'),
  1020. null,
  1021. ICON_SIZE_SMALL
  1022. );
  1023. $url = api_get_path(WEB_CODE_PATH).'link/link_goto.php?'.api_get_cidreq().'&link_id='.$linkId.'&link_url='.urlencode($myrow['url']);
  1024. $content .= '<div class="list-group-item">';
  1025. if ($showActionLinks) {
  1026. $content .= '<div class="pull-right"><div class="btn-group">'.$toolbar.'</div></div>';
  1027. }
  1028. $content .= '<h4 class="list-group-item-heading">';
  1029. $content .= $iconLink;
  1030. $content .= Display::tag(
  1031. 'a',
  1032. Security::remove_XSS($myrow['title']),
  1033. [
  1034. 'href' => $url,
  1035. 'target' => $myrow['target'],
  1036. 'class' => $titleClass,
  1037. ]
  1038. );
  1039. $content .= $link_validator;
  1040. $content .= $session_img;
  1041. $content .= '</h4>';
  1042. $content .= '<p class="list-group-item-text">'.$myrow['description'].'</p>';
  1043. $content .= '</div>';
  1044. }
  1045. $i++;
  1046. }
  1047. $content .= '</div>';
  1048. }
  1049. return $content;
  1050. }
  1051. /**
  1052. * Displays the edit, delete and move icons.
  1053. *
  1054. * @param int Category ID
  1055. * @param int $currentCategory
  1056. * @param int $countCategories
  1057. *
  1058. * @return string
  1059. *
  1060. * @author Patrick Cool <patrick.cool@UGent.be>, Ghent University
  1061. */
  1062. public static function showCategoryAdminTools($category, $currentCategory, $countCategories)
  1063. {
  1064. $categoryId = $category['id'];
  1065. $token = null;
  1066. $tools = '<a href="'.api_get_self().'?'.api_get_cidreq().'&sec_token='.$token.'&action=editcategory&id='.$categoryId.'&category_id='.$categoryId.'" title='.get_lang('Modify').'">'.
  1067. Display:: return_icon(
  1068. 'edit.png',
  1069. get_lang('Modify'),
  1070. [],
  1071. ICON_SIZE_SMALL
  1072. ).'</a>';
  1073. // DISPLAY MOVE UP COMMAND only if it is not the top link.
  1074. if ($currentCategory != 0) {
  1075. $tools .= '<a href="'.api_get_self().'?'.api_get_cidreq().'&sec_token='.$token.'&action=up&up='.$categoryId.'&category_id='.$categoryId.'" title="'.get_lang('Up').'">'.
  1076. Display:: return_icon(
  1077. 'up.png',
  1078. get_lang('Up'),
  1079. [],
  1080. ICON_SIZE_SMALL
  1081. ).'</a>';
  1082. } else {
  1083. $tools .= Display:: return_icon(
  1084. 'up_na.png',
  1085. get_lang('Up'),
  1086. [],
  1087. ICON_SIZE_SMALL
  1088. ).'</a>';
  1089. }
  1090. // DISPLAY MOVE DOWN COMMAND only if it is not the bottom link.
  1091. if ($currentCategory < $countCategories - 1) {
  1092. $tools .= '<a href="'.api_get_self().'?'.api_get_cidreq().'&sec_token='.$token.'&action=down&down='.$categoryId.'&category_id='.$categoryId.'">'.
  1093. Display:: return_icon(
  1094. 'down.png',
  1095. get_lang('Down'),
  1096. [],
  1097. ICON_SIZE_SMALL
  1098. ).'</a>';
  1099. } else {
  1100. $tools .= Display:: return_icon(
  1101. 'down_na.png',
  1102. get_lang('Down'),
  1103. [],
  1104. ICON_SIZE_SMALL
  1105. ).'</a>';
  1106. }
  1107. $tools .= '<a href="'.api_get_self().'?'.api_get_cidreq().'&sec_token='.$token.'&action=deletecategory&id='.$categoryId."&category_id=$categoryId\"
  1108. onclick=\"javascript: if(!confirm('".get_lang('CategoryDelconfirm')."')) return false;\">".
  1109. Display:: return_icon(
  1110. 'delete.png',
  1111. get_lang('Delete'),
  1112. [],
  1113. ICON_SIZE_SMALL
  1114. ).'</a>';
  1115. return $tools;
  1116. }
  1117. /**
  1118. * move a link or a linkcategory up or down.
  1119. *
  1120. * @param int Category ID
  1121. * @param int Course ID
  1122. * @param int Session ID
  1123. *
  1124. * @author Patrick Cool <patrick.cool@UGent.be>, Ghent University
  1125. *
  1126. * @todo support sessions
  1127. */
  1128. public static function movecatlink($action, $catlinkid, $courseId = null, $sessionId = null)
  1129. {
  1130. $tbl_categories = Database::get_course_table(TABLE_LINK_CATEGORY);
  1131. if (is_null($courseId)) {
  1132. $courseId = api_get_course_int_id();
  1133. }
  1134. $courseId = intval($courseId);
  1135. if (is_null($sessionId)) {
  1136. $sessionId = api_get_session_id();
  1137. }
  1138. $sessionId = intval($sessionId);
  1139. $thiscatlinkId = intval($catlinkid);
  1140. if ($action == 'down') {
  1141. $sortDirection = 'DESC';
  1142. }
  1143. if ($action == 'up') {
  1144. $sortDirection = 'ASC';
  1145. }
  1146. $movetable = $tbl_categories;
  1147. if (!empty($sortDirection)) {
  1148. if (!in_array(trim(strtoupper($sortDirection)), ['ASC', 'DESC'])) {
  1149. $sortDirection = 'ASC';
  1150. }
  1151. $sql = "SELECT id, display_order FROM $movetable
  1152. WHERE c_id = $courseId
  1153. ORDER BY display_order $sortDirection";
  1154. $linkresult = Database:: query($sql);
  1155. $thislinkOrder = 1;
  1156. while ($sortrow = Database:: fetch_array($linkresult)) {
  1157. // STEP 2 : FOUND THE NEXT LINK ID AND ORDER, COMMIT SWAP
  1158. // This part seems unlogic, but it isn't . We first look for the current link with the querystring ID
  1159. // and we know the next iteration of the while loop is the next one. These should be swapped.
  1160. if (isset($thislinkFound) && $thislinkFound) {
  1161. $nextlinkId = $sortrow['id'];
  1162. $nextlinkOrder = $sortrow['display_order'];
  1163. Database:: query(
  1164. "UPDATE ".$movetable."
  1165. SET display_order = '$nextlinkOrder'
  1166. WHERE c_id = $courseId AND id = '$thiscatlinkId'"
  1167. );
  1168. Database:: query(
  1169. "UPDATE ".$movetable."
  1170. SET display_order = '$thislinkOrder'
  1171. WHERE c_id = $courseId AND id = '$nextlinkId'"
  1172. );
  1173. break;
  1174. }
  1175. if ($sortrow['id'] == $thiscatlinkId) {
  1176. $thislinkOrder = $sortrow['display_order'];
  1177. $thislinkFound = true;
  1178. }
  1179. }
  1180. }
  1181. Display::addFlash(Display::return_message(get_lang('LinkMoved')));
  1182. }
  1183. /**
  1184. * CSV file import functions.
  1185. *
  1186. * @author René Haentjens , Ghent University
  1187. *
  1188. * @param string $catname
  1189. *
  1190. * @return int
  1191. */
  1192. public static function get_cat($catname)
  1193. {
  1194. // Get category id (existing or make new).
  1195. $tbl_categories = Database::get_course_table(TABLE_LINK_CATEGORY);
  1196. $course_id = api_get_course_int_id();
  1197. $result = Database:: query(
  1198. "SELECT id FROM ".$tbl_categories."
  1199. WHERE c_id = $course_id AND category_title='".Database::escape_string($catname)."'"
  1200. );
  1201. if (Database:: num_rows($result) >= 1 && ($row = Database:: fetch_array($result))) {
  1202. return $row['id']; // Several categories with same name: take the first.
  1203. }
  1204. $result = Database:: query(
  1205. "SELECT MAX(display_order) FROM ".$tbl_categories." WHERE c_id = $course_id "
  1206. );
  1207. list($max_order) = Database:: fetch_row($result);
  1208. $params = [
  1209. 'c_id' => $course_id,
  1210. 'category_title' => $catname,
  1211. 'description' => '',
  1212. 'display_order' => $max_order + 1,
  1213. ];
  1214. $id = Database::insert($tbl_categories, $params);
  1215. return $id;
  1216. }
  1217. /**
  1218. * CSV file import functions.
  1219. *
  1220. * @author René Haentjens , Ghent University
  1221. *
  1222. * @param string $url
  1223. * @param string $title
  1224. * @param string $description
  1225. * @param string $on_homepage
  1226. * @param string $hidden
  1227. */
  1228. public static function put_link($url, $cat, $title, $description, $on_homepage, $hidden)
  1229. {
  1230. $_course = api_get_course_info();
  1231. $_user = api_get_user_info();
  1232. $tbl_link = Database::get_course_table(TABLE_LINK);
  1233. $course_id = api_get_course_int_id();
  1234. $urleq = "url='".Database:: escape_string($url)."'";
  1235. $cateq = "category_id=".intval($cat);
  1236. $result = Database:: query(
  1237. "
  1238. SELECT id FROM $tbl_link
  1239. WHERE c_id = $course_id AND ".$urleq.' AND '.$cateq
  1240. );
  1241. if (Database:: num_rows($result) >= 1 && ($row = Database:: fetch_array($result))) {
  1242. $sql = "UPDATE $tbl_link SET
  1243. title = '".Database:: escape_string($title)."',
  1244. description = '".Database:: escape_string($description)."'
  1245. WHERE c_id = $course_id AND id='".Database:: escape_string($row['id'])."'";
  1246. Database:: query($sql);
  1247. $ipu = 'LinkUpdated';
  1248. $rv = 1; // 1 = upd
  1249. } else {
  1250. // Add new link
  1251. $result = Database:: query(
  1252. "SELECT MAX(display_order) FROM $tbl_link
  1253. WHERE c_id = $course_id AND category_id='".intval($cat)."'"
  1254. );
  1255. list($max_order) = Database:: fetch_row($result);
  1256. Database:: query(
  1257. "INSERT INTO $tbl_link (c_id, url, title, description, category_id, display_order, on_homepage)
  1258. VALUES (".api_get_course_int_id().",
  1259. '".Database:: escape_string($url)."',
  1260. '".Database:: escape_string($title)."',
  1261. '".Database:: escape_string($description)."',
  1262. '".intval($cat)."','".(intval($max_order) + 1)."',
  1263. '".intval($on_homepage).
  1264. "')"
  1265. );
  1266. $id = Database:: insert_id();
  1267. $ipu = 'LinkAdded';
  1268. $rv = 2; // 2 = new
  1269. }
  1270. api_item_property_update(
  1271. $_course,
  1272. TOOL_LINK,
  1273. $id,
  1274. $ipu,
  1275. $_user['user_id']
  1276. );
  1277. if ($hidden && $ipu == 'LinkAdded') {
  1278. api_item_property_update(
  1279. $_course,
  1280. TOOL_LINK,
  1281. $id,
  1282. 'invisible',
  1283. $_user['user_id']
  1284. );
  1285. }
  1286. return $rv;
  1287. }
  1288. /**
  1289. * This function checks if the url is a vimeo link.
  1290. *
  1291. * @author Julio Montoya
  1292. *
  1293. * @version 1.0
  1294. */
  1295. public static function isVimeoLink($url)
  1296. {
  1297. $isLink = strrpos($url, 'vimeo.com');
  1298. return $isLink;
  1299. }
  1300. /**
  1301. * Get vimeo id from URL.
  1302. *
  1303. * @param string $url
  1304. *
  1305. * @return bool|mixed
  1306. */
  1307. public static function getVimeoLinkId($url)
  1308. {
  1309. $possibleUrls = [
  1310. 'http://www.vimeo.com/',
  1311. 'http://vimeo.com/',
  1312. 'https://www.vimeo.com/',
  1313. 'https://vimeo.com/',
  1314. ];
  1315. $url = str_replace($possibleUrls, '', $url);
  1316. if (is_numeric($url)) {
  1317. return $url;
  1318. }
  1319. return false;
  1320. }
  1321. /**
  1322. * This function checks if the url is a youtube link.
  1323. *
  1324. * @author Jorge Frisancho
  1325. * @author Julio Montoya - Fixing code
  1326. *
  1327. * @version 1.0
  1328. */
  1329. public static function is_youtube_link($url)
  1330. {
  1331. $is_youtube_link = strrpos($url, 'youtube') || strrpos(
  1332. $url,
  1333. 'youtu.be'
  1334. );
  1335. return $is_youtube_link;
  1336. }
  1337. /**
  1338. * This function checks if the url is a PDF File link.
  1339. *
  1340. * @author Jorge Frisancho
  1341. * @author Alex Aragón - Fixing code
  1342. *
  1343. * @version 1.0
  1344. */
  1345. public static function isPdfLink($url)
  1346. {
  1347. $isPdfLink = strrpos(strtolower($url), '.pdf');
  1348. return $isPdfLink;
  1349. }
  1350. /**
  1351. * Get youtube id from an URL.
  1352. *
  1353. * @param string $url
  1354. *
  1355. * @return string
  1356. */
  1357. public static function get_youtube_video_id($url)
  1358. {
  1359. // This is the length of YouTube's video IDs
  1360. $len = 11;
  1361. // The ID string starts after "v=", which is usually right after
  1362. // "youtube.com/watch?" in the URL
  1363. $pos = strpos($url, "v=");
  1364. $id = '';
  1365. //If false try other options
  1366. if ($pos === false) {
  1367. $url_parsed = parse_url($url);
  1368. //Youtube shortener
  1369. //http://youtu.be/ID
  1370. $pos = strpos($url, "youtu.be");
  1371. if ($pos == false) {
  1372. $id = '';
  1373. } else {
  1374. return substr($url_parsed['path'], 1);
  1375. }
  1376. //if empty try the youtube.com/embed/ID
  1377. if (empty($id)) {
  1378. $pos = strpos($url, "embed");
  1379. if ($pos === false) {
  1380. return '';
  1381. } else {
  1382. return substr($url_parsed['path'], 7);
  1383. }
  1384. }
  1385. } else {
  1386. // Offset the start location to match the beginning of the ID string
  1387. $pos += 2;
  1388. // Get the ID string and return it
  1389. $id = substr($url, $pos, $len);
  1390. return $id;
  1391. }
  1392. }
  1393. /**
  1394. * @param int $course_id
  1395. * @param int $session_id
  1396. * @param int $categoryId
  1397. * @param string $show
  1398. * @param null $token
  1399. * @param bool $showActionLinks
  1400. *
  1401. * @return string
  1402. */
  1403. public static function listLinksAndCategories(
  1404. $course_id,
  1405. $session_id,
  1406. $categoryId,
  1407. $show = 'none',
  1408. $token = null,
  1409. $showActionLinks = true
  1410. ) {
  1411. $categoryId = (int) $categoryId;
  1412. $content = '';
  1413. $categories = self::getLinkCategories($course_id, $session_id);
  1414. $countCategories = count($categories);
  1415. $linksPerCategory = self::showLinksPerCategory(0, $course_id, $session_id, $showActionLinks);
  1416. if ($showActionLinks) {
  1417. /* Action Links */
  1418. $content = '<div class="actions">';
  1419. if (api_is_allowed_to_edit(null, true)) {
  1420. $content .= '<a href="'.api_get_self().'?'.api_get_cidreq(
  1421. ).'&action=addlink&category_id='.$categoryId.'">'.
  1422. Display::return_icon('new_link.png', get_lang('LinkAdd'), '', ICON_SIZE_MEDIUM).'</a>';
  1423. $content .= '<a href="'.api_get_self().'?'.api_get_cidreq(
  1424. ).'&action=addcategory&category_id='.$categoryId.'">'.
  1425. Display::return_icon('new_folder.png', get_lang('CategoryAdd'), '', ICON_SIZE_MEDIUM).'</a>';
  1426. }
  1427. if (!empty($countCategories)) {
  1428. $content .= '<a href="'.api_get_self().'?'.api_get_cidreq().'&action=list&show=none">';
  1429. $content .= Display::return_icon(
  1430. 'forum_listview.png',
  1431. get_lang('FlatView'),
  1432. '',
  1433. ICON_SIZE_MEDIUM
  1434. ).' </a>';
  1435. $content .= '<a href="'.api_get_self().'?'.api_get_cidreq().'&action=list&show=all">';
  1436. $content .= Display::return_icon(
  1437. 'forum_nestedview.png',
  1438. get_lang('NestedView'),
  1439. '',
  1440. ICON_SIZE_MEDIUM
  1441. ).'</a>';
  1442. }
  1443. $content .= Display::url(
  1444. Display::return_icon('pdf.png', get_lang('ExportToPdf'), '', ICON_SIZE_MEDIUM),
  1445. api_get_self().'?'.api_get_cidreq().'&action=export'
  1446. );
  1447. $content .= '</div>';
  1448. }
  1449. if (empty($countCategories)) {
  1450. $content .= $linksPerCategory;
  1451. } else {
  1452. if (!empty($linksPerCategory)) {
  1453. $content .= Display::panel($linksPerCategory, get_lang('NoCategory'));
  1454. }
  1455. }
  1456. $counter = 0;
  1457. foreach ($categories as $myrow) {
  1458. // Student don't see invisible categories.
  1459. if (!api_is_allowed_to_edit(null, true)) {
  1460. if ($myrow['visibility'] == 0) {
  1461. continue;
  1462. }
  1463. }
  1464. // Validation when belongs to a session
  1465. $showChildren = $categoryId == $myrow['id'] || $show == 'all';
  1466. $myrow['description'] = $myrow['description'];
  1467. $strVisibility = '';
  1468. $visibilityClass = null;
  1469. if ($myrow['visibility'] == '1') {
  1470. $strVisibility = '<a href="link.php?'.api_get_cidreq().'&sec_token='.$token.'&action=invisible&id='.$myrow['id'].'&scope='.TOOL_LINK_CATEGORY.'" title="'.get_lang('Hide').'">'.
  1471. Display::return_icon('visible.png', get_lang('Hide'), [], ICON_SIZE_SMALL).'</a>';
  1472. } elseif ($myrow['visibility'] == '0') {
  1473. $visibilityClass = 'text-muted';
  1474. $strVisibility = ' <a href="link.php?'.api_get_cidreq().'&sec_token='.$token.'&action=visible&id='.$myrow['id'].'&scope='.TOOL_LINK_CATEGORY.'" title="'.get_lang('Show').'">'.
  1475. Display::return_icon('invisible.png', get_lang('Show'), [], ICON_SIZE_SMALL).'</a>';
  1476. }
  1477. $header = '';
  1478. if ($showChildren) {
  1479. $header .= '<a class="'.$visibilityClass.'" href="'.api_get_self().'?'.api_get_cidreq().'&category_id=">';
  1480. $header .= Display::return_icon('forum_nestedview.png');
  1481. } else {
  1482. $header .= '<a class="'.$visibilityClass.'" href="'.api_get_self().'?'.api_get_cidreq().'&category_id='.$myrow['id'].'">';
  1483. $header .= Display::return_icon('forum_listview.png');
  1484. }
  1485. $header .= Security::remove_XSS($myrow['category_title']).'</a>';
  1486. if ($showActionLinks) {
  1487. if (api_is_allowed_to_edit(null, true)) {
  1488. if ($session_id == $myrow['session_id']) {
  1489. $header .= $strVisibility;
  1490. $header .= self::showCategoryAdminTools($myrow, $counter, count($categories));
  1491. } else {
  1492. $header .= get_lang('EditionNotAvailableFromSession');
  1493. }
  1494. }
  1495. }
  1496. $childrenContent = '';
  1497. if ($showChildren) {
  1498. $childrenContent = self::showLinksPerCategory(
  1499. $myrow['id'],
  1500. api_get_course_int_id(),
  1501. api_get_session_id()
  1502. );
  1503. }
  1504. $content .= Display::panel($myrow['description'].$childrenContent, $header);
  1505. $counter++;
  1506. }
  1507. return $content;
  1508. }
  1509. /**
  1510. * @param int $linkId
  1511. * @param string $action
  1512. * @param null $token
  1513. *
  1514. * @return FormValidator
  1515. */
  1516. public static function getLinkForm($linkId, $action, $token = null)
  1517. {
  1518. $course_id = api_get_course_int_id();
  1519. $session_id = api_get_session_id();
  1520. $linkInfo = self::getLinkInfo($linkId);
  1521. $categoryId = isset($linkInfo['category_id']) ? $linkInfo['category_id'] : '';
  1522. $lpId = isset($_GET['lp_id']) ? Security::remove_XSS($_GET['lp_id']) : null;
  1523. $form = new FormValidator(
  1524. 'link',
  1525. 'post',
  1526. api_get_self().'?action='.$action.
  1527. '&category_id='.$categoryId.
  1528. '&'.api_get_cidreq().
  1529. '&id='.$linkId.
  1530. '&sec_token='.$token
  1531. );
  1532. if ($action == 'addlink') {
  1533. $form->addHeader(get_lang('LinkAdd'));
  1534. } else {
  1535. $form->addHeader(get_lang('LinkMod'));
  1536. }
  1537. $target_link = '_blank';
  1538. $title = '';
  1539. $category = '';
  1540. $onhomepage = '';
  1541. $description = '';
  1542. if (!empty($linkInfo)) {
  1543. $urllink = $linkInfo['url'];
  1544. $title = $linkInfo['title'];
  1545. $description = $linkInfo['description'];
  1546. $category = $linkInfo['category_id'];
  1547. if ($linkInfo['on_homepage'] != 0) {
  1548. $onhomepage = 1;
  1549. }
  1550. $target_link = $linkInfo['target'];
  1551. }
  1552. $form->addHidden('id', $linkId);
  1553. $form->addText('url', 'URL');
  1554. $form->addRule('url', get_lang('GiveURL'), 'url');
  1555. $form->addText('title', get_lang('LinkName'));
  1556. $form->addTextarea('description', get_lang('Description'));
  1557. $resultcategories = self::getLinkCategories($course_id, $session_id);
  1558. $options = ['0' => '--'];
  1559. if (!empty($resultcategories)) {
  1560. foreach ($resultcategories as $myrow) {
  1561. $options[$myrow['id']] = $myrow['category_title'];
  1562. }
  1563. }
  1564. $form->addSelect('category_id', get_lang('Category'), $options);
  1565. $form->addCheckBox('on_homepage', null, get_lang('OnHomepage'));
  1566. $targets = [
  1567. '_self' => get_lang('LinkOpenSelf'),
  1568. '_blank' => get_lang('LinkOpenBlank'),
  1569. '_parent' => get_lang('LinkOpenParent'),
  1570. '_top' => get_lang('LinkOpenTop'),
  1571. ];
  1572. $form->addSelect(
  1573. 'target',
  1574. [
  1575. get_lang('LinkTarget'),
  1576. get_lang('AddTargetOfLinkOnHomepage'),
  1577. ],
  1578. $targets
  1579. );
  1580. $defaults = [
  1581. 'url' => empty($urllink) ? 'http://' : Security::remove_XSS($urllink),
  1582. 'title' => Security::remove_XSS($title),
  1583. 'category_id' => $category,
  1584. 'on_homepage' => $onhomepage,
  1585. 'description' => $description,
  1586. 'target' => $target_link,
  1587. ];
  1588. if (api_get_setting('search_enabled') == 'true') {
  1589. require_once api_get_path(LIBRARY_PATH).'specific_fields_manager.lib.php';
  1590. $specific_fields = get_specific_field_list();
  1591. $form->addCheckBox('index_document', get_lang('SearchFeatureDoIndexLink'), get_lang('Yes'));
  1592. foreach ($specific_fields as $specific_field) {
  1593. $default_values = '';
  1594. if ($action == 'editlink') {
  1595. $filter = [
  1596. 'field_id' => $specific_field['id'],
  1597. 'ref_id' => intval($_GET['id']),
  1598. 'tool_id' => '\''.TOOL_LINK.'\'',
  1599. ];
  1600. $values = get_specific_field_values_list($filter, ['value']);
  1601. if (!empty($values)) {
  1602. $arr_str_values = [];
  1603. foreach ($values as $value) {
  1604. $arr_str_values[] = $value['value'];
  1605. }
  1606. $default_values = implode(', ', $arr_str_values);
  1607. }
  1608. }
  1609. $form->addText($specific_field['name'], $specific_field['code']);
  1610. $defaults[$specific_field['name']] = $default_values;
  1611. }
  1612. }
  1613. $skillList = Skill::addSkillsToForm($form, ITEM_TYPE_LINK, $linkId);
  1614. $form->addHidden('lp_id', $lpId);
  1615. $form->addButtonSave(get_lang('SaveLink'), 'submitLink');
  1616. $defaults['skills'] = array_keys($skillList);
  1617. $form->setDefaults($defaults);
  1618. return $form;
  1619. }
  1620. /**
  1621. * @param int $id
  1622. * @param string $action
  1623. *
  1624. * @return FormValidator
  1625. */
  1626. public static function getCategoryForm($id, $action)
  1627. {
  1628. $id = (int) $id;
  1629. $action = Security::remove_XSS($action);
  1630. $form = new FormValidator(
  1631. 'category',
  1632. 'post',
  1633. api_get_self().'?action='.$action.'&'.api_get_cidreq()
  1634. );
  1635. $defaults = [];
  1636. if ($action == 'addcategory') {
  1637. $form->addHeader(get_lang('CategoryAdd'));
  1638. $my_cat_title = get_lang('CategoryAdd');
  1639. } else {
  1640. $form->addHeader(get_lang('CategoryMod'));
  1641. $my_cat_title = get_lang('CategoryMod');
  1642. $defaults = self::getCategory($id);
  1643. }
  1644. $form->addHidden('id', $id);
  1645. $form->addText('category_title', get_lang('CategoryName'));
  1646. $form->addTextarea('description', get_lang('Description'));
  1647. $form->addButtonSave($my_cat_title, 'submitCategory');
  1648. $form->setDefaults($defaults);
  1649. return $form;
  1650. }
  1651. /**
  1652. * @param int $id
  1653. *
  1654. * @return array
  1655. */
  1656. public static function getCategory($id)
  1657. {
  1658. $table = Database::get_course_table(TABLE_LINK_CATEGORY);
  1659. $id = (int) $id;
  1660. $courseId = api_get_course_int_id();
  1661. if (empty($id) || empty($courseId)) {
  1662. return [];
  1663. }
  1664. $sql = "SELECT * FROM $table
  1665. WHERE id = $id AND c_id = $courseId";
  1666. $result = Database::query($sql);
  1667. $category = Database::fetch_array($result, 'ASSOC');
  1668. return $category;
  1669. }
  1670. /**
  1671. * Move a link up in its category.
  1672. *
  1673. * @param int $id
  1674. *
  1675. * @return bool
  1676. */
  1677. public static function moveLinkUp($id)
  1678. {
  1679. return self::moveLinkDisplayOrder($id, 'ASC');
  1680. }
  1681. /**
  1682. * Move a link down in its category.
  1683. *
  1684. * @param int $id
  1685. *
  1686. * @return bool
  1687. */
  1688. public static function moveLinkDown($id)
  1689. {
  1690. return self::moveLinkDisplayOrder($id, 'DESC');
  1691. }
  1692. /**
  1693. * @param string $url
  1694. *
  1695. * @return bool
  1696. */
  1697. public static function checkUrl($url)
  1698. {
  1699. // Check if curl is available.
  1700. if (!in_array('curl', get_loaded_extensions())) {
  1701. return false;
  1702. }
  1703. // set URL and other appropriate options
  1704. $defaults = [
  1705. CURLOPT_URL => $url,
  1706. CURLOPT_FOLLOWLOCATION => true, // follow redirects accept youtube.com
  1707. CURLOPT_HEADER => 0,
  1708. CURLOPT_RETURNTRANSFER => true,
  1709. CURLOPT_TIMEOUT => 4,
  1710. ];
  1711. $proxySettings = api_get_configuration_value('proxy_settings');
  1712. if (!empty($proxySettings) &&
  1713. isset($proxySettings['curl_setopt_array'])
  1714. ) {
  1715. $defaults[CURLOPT_PROXY] = $proxySettings['curl_setopt_array']['CURLOPT_PROXY'];
  1716. $defaults[CURLOPT_PROXYPORT] = $proxySettings['curl_setopt_array']['CURLOPT_PROXYPORT'];
  1717. }
  1718. // Create a new cURL resource
  1719. $ch = curl_init();
  1720. curl_setopt_array($ch, $defaults);
  1721. // grab URL and pass it to the browser
  1722. ob_start();
  1723. $result = curl_exec($ch);
  1724. ob_get_clean();
  1725. // close cURL resource, and free up system resources
  1726. curl_close($ch);
  1727. return $result;
  1728. }
  1729. /**
  1730. * Move a link inside its category (display_order field).
  1731. *
  1732. * @param int $id The link ID
  1733. * @param string $direction The direction to sort the links
  1734. *
  1735. * @return bool
  1736. */
  1737. private static function moveLinkDisplayOrder($id, $direction)
  1738. {
  1739. $em = Database::getManager();
  1740. /** @var CLink $link */
  1741. $link = $em->find('ChamiloCourseBundle:CLink', $id);
  1742. if (!$link) {
  1743. return false;
  1744. }
  1745. $compareLinks = $em
  1746. ->getRepository('ChamiloCourseBundle:CLink')
  1747. ->findBy(
  1748. [
  1749. 'cId' => $link->getCId(),
  1750. 'categoryId' => $link->getCategoryId(),
  1751. ],
  1752. ['displayOrder' => $direction]
  1753. );
  1754. /** @var CLink $prevLink */
  1755. $prevLink = null;
  1756. /** @var CLink $compareLink */
  1757. foreach ($compareLinks as $compareLink) {
  1758. if ($compareLink->getId() !== $link->getId()) {
  1759. $prevLink = $compareLink;
  1760. continue;
  1761. }
  1762. if (!$prevLink) {
  1763. return false;
  1764. }
  1765. $newPrevLinkDisplayOrder = $link->getDisplayOrder();
  1766. $newLinkDisplayOrder = $prevLink->getDisplayOrder();
  1767. $link->setDisplayOrder($newLinkDisplayOrder);
  1768. $prevLink->setDisplayOrder($newPrevLinkDisplayOrder);
  1769. $em->merge($prevLink);
  1770. $em->merge($link);
  1771. break;
  1772. }
  1773. $em->flush();
  1774. return true;
  1775. }
  1776. }