openoffice_text_document.class.php 14 KB

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