PageRenderTime 48ms CodeModel.GetById 19ms RepoModel.GetById 0ms app.codeStats 0ms

/main/newscorm/openoffice_text_document.class.php

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