create_draw.php 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175
  1. <?php
  2. /* For licensing terms, see /license.txt */
  3. /**
  4. * This file allows creating new svg and png documents with an online editor.
  5. *
  6. * @package chamilo.document
  7. *
  8. * @author Juan Carlos Raña Trabado
  9. * @since 25/september/2010
  10. */
  11. /**
  12. * Code
  13. */
  14. /* INIT SECTION */
  15. // Name of the language file that needs to be included
  16. $language_file = array('document');
  17. require_once '../inc/global.inc.php';
  18. $_SESSION['whereami'] = 'document/createdraw';
  19. $this_section = SECTION_COURSES;
  20. require_once api_get_path(SYS_CODE_PATH).'document/document.inc.php';
  21. $nameTools = get_lang('Draw');
  22. api_protect_course_script();
  23. api_block_anonymous_users();
  24. $document_data = DocumentManager::get_document_data_by_id($_GET['id'], api_get_course_id(), true);
  25. if (empty($document_data)) {
  26. if (api_is_in_group()) {
  27. $group_properties = GroupManager::get_group_properties(api_get_group_id());
  28. $document_id = DocumentManager::get_document_id(api_get_course_info(), $group_properties['directory']);
  29. $document_data = DocumentManager::get_document_data_by_id($document_id, api_get_course_id());
  30. }
  31. }
  32. $document_id = $document_data['id'];
  33. $dir = $document_data['path'];
  34. /* Constants and variables */
  35. //path for svg-edit save
  36. $_SESSION['draw_dir'] = Security::remove_XSS($dir);
  37. if ($_SESSION['draw_dir']=='/'){
  38. $_SESSION['draw_dir']='';
  39. }
  40. $dir = isset($dir) ? Security::remove_XSS($dir) : Security::remove_XSS($_POST['dir']);
  41. $is_allowed_to_edit = api_is_allowed_to_edit(null, true);
  42. // Please, do not modify this dirname formatting
  43. if (strstr($dir, '..')) {
  44. $dir = '/';
  45. }
  46. if ($dir[0] == '.') {
  47. $dir = substr($dir, 1);
  48. }
  49. if ($dir[0] != '/') {
  50. $dir = '/'.$dir;
  51. }
  52. if ($dir[strlen($dir) - 1] != '/') {
  53. $dir .= '/';
  54. }
  55. $filepath = api_get_path(SYS_COURSE_PATH).$_course['path'].'/document'.$dir;
  56. if (!is_dir($filepath)) {
  57. $filepath = api_get_path(SYS_COURSE_PATH).$_course['path'].'/document/';
  58. $dir = '/';
  59. }
  60. //groups //TODO: clean
  61. if (isset ($_SESSION['_gid']) && $_SESSION['_gid'] != 0) {
  62. $req_gid = '&amp;gidReq='.$_SESSION['_gid'];
  63. $interbreadcrumb[] = array ("url" => "../group/group_space.php?gidReq=".$_SESSION['_gid'], "name" => get_lang('GroupSpace'));
  64. $noPHP_SELF = true;
  65. $to_group_id = $_SESSION['_gid'];
  66. $group = GroupManager :: get_group_properties($to_group_id);
  67. $path = explode('/', $dir);
  68. if ('/'.$path[1] != $group['directory']) {
  69. api_not_allowed(true);
  70. }
  71. }
  72. $interbreadcrumb[] = array ("url" => "./document.php?id=".$parent_id.$req_gid, "name" => get_lang('Documents'));
  73. if (!($is_allowed_to_edit || $_SESSION['group_member_with_upload_rights'] || is_my_shared_folder(api_get_user_id(), Security::remove_XSS($dir), api_get_session_id()))) {
  74. api_not_allowed(true);
  75. }
  76. /* Header */
  77. event_access_tool(TOOL_DOCUMENT);
  78. $display_dir = $dir;
  79. if (isset ($group)) {
  80. $display_dir = explode('/', $dir);
  81. unset ($display_dir[0]);
  82. unset ($display_dir[1]);
  83. $display_dir = implode('/', $display_dir);
  84. }
  85. // Interbreadcrumb for the current directory root path
  86. // Copied from document.php
  87. $dir_array = explode('/', $dir);
  88. $array_len = count($dir_array);
  89. /*
  90. TODO:check and delete this code
  91. if (!$is_certificate_mode) {
  92. if ($array_len > 1) {
  93. if (empty($_SESSION['_gid'])) {
  94. $url_dir = 'document.php?&curdirpath=/';
  95. $interbreadcrumb[] = array('url' => $url_dir, 'name' => get_lang('HomeDirectory'));
  96. }
  97. }
  98. }
  99. */
  100. // Interbreadcrumb for the current directory root path
  101. if (empty($document_data['parents'])) {
  102. $interbreadcrumb[] = array('url' => '#', 'name' => $document_data['title']);
  103. } else {
  104. foreach($document_data['parents'] as $document_sub_data) {
  105. $interbreadcrumb[] = array('url' => $document_sub_data['document_url'], 'name' => $document_sub_data['title']);
  106. }
  107. }
  108. Display :: display_header($nameTools, 'Doc');
  109. echo '<div class="actions">';
  110. echo '<a href="document.php?id='.$document_id.'">'.Display::return_icon('back.png',get_lang('BackTo').' '.get_lang('DocumentsOverview'),'',ICON_SIZE_MEDIUM).'</a>';
  111. echo '</div>';
  112. if (api_browser_support('svg')){
  113. //automatic loading the course language
  114. $svgedit_code_translation_table = array('' => 'en', 'pt' => 'pt-Pt', 'sr' => 'sr_latn');
  115. $langsvgedit = api_get_language_isocode();
  116. $langsvgedit = isset($svgedit_code_translation_table[$langsvgedit]) ? $svgedit_code_translation_table[$langsvgedit] : $langsvgedit;
  117. $langsvgedit = file_exists(api_get_path(LIBRARY_PATH).'svg-edit/locale/lang.'.$langsvgedit.'.js') ? $langsvgedit : 'en';
  118. $svg_url= api_get_path(WEB_LIBRARY_PATH).'svg-edit/svg-editor.php?lang='.$langsvgedit ;
  119. ?>
  120. <script type="text/javascript">
  121. document.write ('<iframe id="frame" frameborder="0" scrolling="no" src="<?php echo $svg_url; ?>" width="100%" height="100%"><noframes><p>Sorry, your browser does not handle frames</p></noframes></iframe>');
  122. function resizeIframe() {
  123. var height = window.innerHeight -50;
  124. //max lower size
  125. if (height<550) {
  126. height=550;
  127. }
  128. document.getElementById('frame').style.height = height +"px";
  129. };
  130. document.getElementById('frame').onload = resizeIframe;
  131. window.onresize = resizeIframe;
  132. </script>
  133. <?php
  134. echo '<noscript>';
  135. echo '<iframe style="height: 550px; width: 100%;" scrolling="no" frameborder="0" src="'.$svg_url.'"><noframes><p>Sorry, your browser does not handle frames</p></noframes></iframe>';
  136. echo '</noscript>';
  137. } else {
  138. Display::display_error_message(get_lang('BrowserDontSupportsSVG'));
  139. }
  140. Display :: display_footer();