openoffice_text.class.php 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371
  1. <?php
  2. /* For licensing terms, see /license.txt */
  3. /**
  4. * Defines the OpenofficeDocument class, which is meant as a conversion
  5. * tool from Office text documents (.doc, .sxw, .odt, .docx) to
  6. * learning paths
  7. * @package chamilo.learnpath
  8. * @author Eric Marguin <eric.marguin@dokeos.com>
  9. * @license GNU/GPL
  10. */
  11. /**
  12. * Defines the "OpenofficeText" child of class "learnpath"
  13. */
  14. require_once 'openoffice_document.class.php';
  15. if (api_get_setting('search_enabled') == 'true') {
  16. require_once api_get_path(LIBRARY_PATH).'specific_fields_manager.lib.php';
  17. require_once api_get_path(LIBRARY_PATH).'search/ChamiloIndexer.class.php';
  18. require_once api_get_path(LIBRARY_PATH).'search/IndexableChunk.class.php';
  19. }
  20. /**
  21. * @package chamilo.learnpath.OpenofficeDocument
  22. */
  23. class OpenofficeText extends OpenofficeDocument
  24. {
  25. public $split_steps;
  26. /**
  27. * Class constructor. Calls the parent class and initialises the local attribute split_steps
  28. * @param boolean Whether to split steps (true) or make one large page (false)
  29. * @param string Course code
  30. * @param integer Resource ID
  31. * @param integer Creator user id
  32. */
  33. public function __construct(
  34. $split_steps = false,
  35. $course_code = null,
  36. $resource_id = null,
  37. $user_id = null
  38. ) {
  39. $this -> split_steps = $split_steps;
  40. parent::__construct($course_code, $resource_id, $user_id);
  41. }
  42. /**
  43. * Gets html pages and compose them into a learning path
  44. * @param array The files that will compose the generated learning path. Unused so far.
  45. * @return boolean False if file does not exit. Nothing otherwise.
  46. */
  47. public function make_lp($files = array())
  48. {
  49. $_course = api_get_course_info();
  50. // We get a content where ||page_break|| indicates where the page is broken.
  51. if (!file_exists($this->base_work_dir.'/'.$this->created_dir.'/'.$this->file_name.'.html')) { return false; }
  52. $content = file_get_contents($this->base_work_dir.'/'.$this->created_dir.'/'.$this->file_name.'.html');
  53. unlink($this->base_work_dir.'/'.$this->file_path);
  54. unlink($this->base_work_dir.'/'.$this->created_dir.'/'.$this->file_name.'.html');
  55. // The file is utf8 encoded and it seems to make problems with special quotes.
  56. // Then we htmlentities that, we replace these quotes and html_entity_decode that in good charset.
  57. $charset = api_get_system_encoding();
  58. $content = api_htmlentities($content, ENT_COMPAT, $this->original_charset);
  59. $content = str_replace('&rsquo;', '\'', $content);
  60. $content = api_convert_encoding($content, $charset, $this->original_charset);
  61. $content = str_replace($this->original_charset, $charset, $content);
  62. $content = api_html_entity_decode($content, ENT_COMPAT, $charset);
  63. // Set the path to pictures to absolute (so that it can be modified in fckeditor).
  64. $content = preg_replace("|src=\"([^\"]*)|i", "src=\"".api_get_path(REL_COURSE_PATH).$_course['path'].'/document'.$this->created_dir."/\\1", $content);
  65. list($header, $body) = explode('<BODY', $content);
  66. $body = '<BODY'.$body;
  67. // Remove font-family styles.
  68. $header = preg_replace("|font\-family[^;]*;|i", '', $header);
  69. // Chamilo styles.
  70. $my_style = api_get_setting('stylesheets');
  71. if (empty($my_style)) {
  72. $my_style = 'chamilo';
  73. }
  74. $style_to_import = "<style type=\"text/css\">\r\n";
  75. $style_to_import .= '@import "'.api_get_path(WEB_CODE_PATH).'css/'.$my_style.'/default.css";'."\n";
  76. $style_to_import .= "</style>\r\n";
  77. $header = preg_replace("|</head>|i", "\r\n$style_to_import\r\n\\0", $header);
  78. // Line break before and after picture.
  79. $header = str_replace('p {', 'p {clear:both;', $header);
  80. $header = str_replace('absolute', 'relative', $header);
  81. switch ($this->split_steps) {
  82. case 'per_page':
  83. $this -> dealPerPage($header, $body);
  84. break;
  85. case 'per_chapter':
  86. $this -> dealPerChapter($header, $body);
  87. break;
  88. }
  89. }
  90. /**
  91. * Manages dir/chapter splitting
  92. * @param string Chapter header
  93. * @param string Content
  94. * @return void
  95. */
  96. public function dealPerChapter($header, $content)
  97. {
  98. $_course = api_get_course_info();
  99. $content = str_replace('||page_break||', '', $content);
  100. // Get all the h1.
  101. preg_match_all("|<h1[^>]*>([^(h1)+]*)</h1>|is", $content, $matches_temp);
  102. // Empty the fake chapters.
  103. $new_index = 0;
  104. for ($i = 0; $i < count($matches_temp[0]); $i++) {
  105. if (trim($matches_temp[1][$i]) !== '') {
  106. $matches[0][$new_index] = $matches_temp[0][$i];
  107. $matches[1][$new_index] = $matches_temp[1][$i];
  108. $new_index++;
  109. }
  110. }
  111. // Add intro item.
  112. $intro_content = substr($content, 0, strpos($content, $matches[0][0]));
  113. $items_to_create[get_lang('Introduction')] = $intro_content;
  114. for ($i = 0; $i < count($matches[0]); $i++) {
  115. if (empty($matches[1][$i])) {
  116. continue;
  117. }
  118. $content = strstr($content, $matches[0][$i]);
  119. if ($i + 1 !== count($matches[0])) {
  120. $dir_content = substr($content, 0, strpos($content, $matches[0][$i + 1]));
  121. } else {
  122. $dir_content = $content;
  123. }
  124. $items_to_create[$matches[1][$i]] = $dir_content;
  125. }
  126. $i = 0;
  127. foreach ($items_to_create as $item_title => $item_content) {
  128. $i++;
  129. $page_content = $this->format_page_content($header, $item_content);
  130. $html_file = $this->created_dir.'-'.$i.'.html';
  131. $handle = fopen($this->base_work_dir.$this->created_dir.'/'.$html_file, 'w+');
  132. fwrite($handle, $page_content);
  133. fclose($handle);
  134. $document_id = add_document(
  135. $_course,
  136. $this->created_dir.'/'.$html_file,
  137. 'file',
  138. filesize(
  139. $this->base_work_dir.$this->created_dir.'/'.$html_file
  140. ),
  141. $html_file
  142. );
  143. if ($document_id) {
  144. // Put the document in item_property update.
  145. api_item_property_update(
  146. $_course,
  147. TOOL_DOCUMENT,
  148. $document_id,
  149. 'DocumentAdded',
  150. api_get_user_id(),
  151. 0,
  152. 0,
  153. null,
  154. null,
  155. api_get_session_id()
  156. );
  157. $infos = pathinfo($this->filepath);
  158. $slide_name = strip_tags(nl2br($item_title));
  159. $slide_name = str_replace(array("\r\n", "\r", "\n"), '', $slide_name);
  160. $slide_name = html_entity_decode($slide_name);
  161. $previous = learnpath::add_item(
  162. 0,
  163. $previous,
  164. 'document',
  165. $document_id,
  166. $slide_name,
  167. ''
  168. );
  169. if ($this->first_item == 0) {
  170. $this->first_item = $previous;
  171. }
  172. }
  173. }
  174. }
  175. /**
  176. * Manages page splitting
  177. * @param string Page header
  178. * @param string Page body
  179. * @return void
  180. */
  181. public function dealPerPage($header, $body)
  182. {
  183. $_course = api_get_course_info();
  184. // Split document to pages.
  185. $pages = explode('||page_break||', $body);
  186. $first_item = 0;
  187. foreach ($pages as $key => $page_content) {
  188. // For every pages, we create a new file.
  189. $key += 1;
  190. $page_content = $this->format_page_content($header, $page_content, $this->base_work_dir.$this->created_dir);
  191. $html_file = $this->created_dir.'-'.$key.'.html';
  192. $handle = fopen($this->base_work_dir.$this->created_dir.'/'.$html_file, 'w+');
  193. fwrite($handle, $page_content);
  194. fclose($handle);
  195. $document_id = add_document(
  196. $_course,
  197. $this->created_dir.$html_file,
  198. 'file',
  199. filesize($this->base_work_dir.$this->created_dir.$html_file),
  200. $html_file
  201. );
  202. $slide_name = '';
  203. if ($document_id) {
  204. // Put the document in item_property update.
  205. api_item_property_update(
  206. $_course,
  207. TOOL_DOCUMENT,
  208. $document_id,
  209. 'DocumentAdded',
  210. api_get_user_id(),
  211. 0,
  212. 0,
  213. null,
  214. null,
  215. api_get_session_id()
  216. );
  217. $infos = pathinfo($this->filepath);
  218. $slide_name = 'Page '.str_repeat('0', 2 - strlen($key)).$key;
  219. $previous = learnpath::add_item(0, $previous, 'document', $document_id, $slide_name, '');
  220. if ($this->first_item == 0) {
  221. $this->first_item = $previous;
  222. }
  223. // Code for text indexing.
  224. if (api_get_setting('search_enabled') == 'true') {
  225. if (isset($_POST['index_document']) && $_POST['index_document']) {
  226. //echo Display::return_message(print_r($_POST));
  227. $di = new ChamiloIndexer();
  228. isset($_POST['language']) ? $lang = Database::escape_string($_POST['language']) : $lang = 'english';
  229. $di->connectDb(null, null, $lang);
  230. $ic_slide = new IndexableChunk();
  231. $ic_slide->addValue('title', $slide_name);
  232. $specific_fields = get_specific_field_list();
  233. $all_specific_terms = '';
  234. foreach ($specific_fields as $specific_field) {
  235. if (isset($_REQUEST[$specific_field['code']])) {
  236. $sterms = trim($_REQUEST[$specific_field['code']]);
  237. $all_specific_terms .= ' '.$sterms;
  238. if (!empty($sterms)) {
  239. $sterms = explode(',', $sterms);
  240. foreach ($sterms as $sterm) {
  241. $ic_slide->addTerm(trim($sterm), $specific_field['code']);
  242. }
  243. }
  244. }
  245. }
  246. $page_content = $all_specific_terms.' '.$page_content;
  247. $ic_slide->addValue('content', $page_content);
  248. // Add a comment to say terms separated by commas.
  249. $courseid = api_get_course_id();
  250. $ic_slide->addCourseId($courseid);
  251. $ic_slide->addToolId(TOOL_LEARNPATH);
  252. $lp_id = $this->lp_id;
  253. $xapian_data = array(
  254. SE_COURSE_ID => $courseid,
  255. SE_TOOL_ID => TOOL_LEARNPATH,
  256. SE_DATA => array('lp_id' => $lp_id, 'lp_item'=> $previous, 'document_id' => $document_id),
  257. SE_USER => (int) api_get_user_id(),
  258. );
  259. $ic_slide->xapian_data = serialize($xapian_data);
  260. $di->addChunk($ic_slide);
  261. // Index and return search engine document id.
  262. $did = $di->index();
  263. if ($did) {
  264. // Save it to db.
  265. $tbl_se_ref = Database::get_main_table(TABLE_MAIN_SEARCH_ENGINE_REF);
  266. $sql = 'INSERT INTO %s (id, course_code, tool_id, ref_id_high_level, ref_id_second_level, search_did)
  267. VALUES (NULL , \'%s\', \'%s\', %s, %s, %s)';
  268. $sql = sprintf($sql, $tbl_se_ref, api_get_course_id(), TOOL_LEARNPATH, $lp_id, $previous, $did);
  269. Database::query($sql);
  270. }
  271. }
  272. }
  273. }
  274. }
  275. }
  276. /**
  277. * Returns additional Java command parameters
  278. * @return string The additional parameters to be used in the Java call
  279. */
  280. public function add_command_parameters()
  281. {
  282. return ' -d woogie "'.$this->base_work_dir.'/'.$this->file_path.'" "'.$this->base_work_dir.$this->created_dir.'/'.$this->file_name.'.html"';
  283. }
  284. /**
  285. * Formats a page content by reorganising the HTML code a little
  286. * @param string Page header
  287. * @param string Page content
  288. * @return string Formatted page content
  289. */
  290. public function format_page_content($header, $content)
  291. {
  292. // Limit the width of the doc.
  293. list($max_width, $max_height) = explode('x', api_get_setting('service_ppt2lp', 'size'));
  294. $content = preg_replace("|<body[^>]*>|i", "\\0\r\n<div style=\"width:".$max_width."\">", $content, -1, $count);
  295. if ($count < 1) {
  296. $content = '<body><div style="width:'.$max_width.'">'.$content;
  297. }
  298. $content = preg_replace('|</body>|i', '</div>\\0', $content, -1, $count);
  299. if ($count < 1) {
  300. $content = $content.'</div></body>';
  301. }
  302. // Add the headers.
  303. $content = $header.$content;
  304. // Resize all the picture to the max_width-10
  305. preg_match_all("|<img[^src]*src=\"([^\"]*)\"[^>]*>|i", $content, $images);
  306. foreach ($images[1] as $key => $image) {
  307. // Check if the <img tag soon has a width attribute.
  308. $defined_width = preg_match("|width=([^\s]*)|i", $images[0][$key], $img_width);
  309. $img_width = $img_width[1];
  310. if (!$defined_width) {
  311. list($img_width, $img_height, $type) = getimagesize($this->base_work_dir.$this->created_dir.'/'.$image);
  312. $new_width = $max_width - 10;
  313. if ($img_width > $new_width) {
  314. $picture_resized = str_ireplace('<img', '<img width="'.$new_width.'" ', $images[0][$key]);
  315. $content = str_replace($images[0][$key], $picture_resized, $content);
  316. }
  317. } elseif ($img_width > $max_width - 10) {
  318. $picture_resized = str_ireplace('width='.$img_width, 'width="'.($max_width - 10).'"', $images[0][$key]);
  319. $content = str_replace($images[0][$key], $picture_resized, $content);
  320. }
  321. }
  322. return $content;
  323. }
  324. /**
  325. * Add documents to the visioconference (to be implemented)
  326. */
  327. public function add_docs_to_visio()
  328. {
  329. }
  330. }