123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202 |
- <?php
- /* For licensing terms, see /license.txt */
- /**
- * This file allows creating new svg and png documents with an online editor.
- *
- * @package chamilo.document
- *
- * @author Juan Carlos Raña Trabado herodoto@telefonica.net
- * @since 5/mar/2011
- */
- require_once '../inc/global.inc.php';
- $_SESSION['whereami'] = 'document/voicerecord';
- $this_section = SECTION_COURSES;
- $nameTools = get_lang('VoiceRecord');
- api_protect_course_script();
- api_block_anonymous_users();
- $groupId = api_get_group_id();
- $document_data = array();
- if (isset($_GET['id'])) {
- $document_data = DocumentManager::get_document_data_by_id(
- $_GET['id'],
- api_get_course_id(),
- true
- );
- }
- if (empty($document_data)) {
- if (api_is_in_group()) {
- $group_properties = GroupManager::get_group_properties($groupId);
- $document_id = DocumentManager::get_document_id(api_get_course_info(), $group_properties['directory']);
- $document_data = DocumentManager::get_document_data_by_id($document_id, api_get_course_id());
- }
- }
- $document_id = $document_data['id'];
- $dir = $document_data['path'];
- $is_allowed_to_edit = api_is_allowed_to_edit(null, true);
- // Please, do not modify this dirname formatting
- if (strstr($dir, '..')) {
- $dir = '/';
- }
- if ($dir[0] == '.') {
- $dir = substr($dir, 1);
- }
- if ($dir[0] != '/') {
- $dir = '/'.$dir;
- }
- if ($dir[strlen($dir) - 1] != '/') {
- $dir .= '/';
- }
- $filepath = api_get_path(SYS_COURSE_PATH).$_course['path'].'/document'.$dir;
- if (!is_dir($filepath)) {
- $filepath = api_get_path(SYS_COURSE_PATH).$_course['path'].'/document/';
- $dir = '/';
- }
- if (!empty($groupId)) {
- $interbreadcrumb[] = array ("url" => "../group/group_space.php?".api_get_cidreq(), "name" => get_lang('GroupSpace'));
- $group = GroupManager :: get_group_properties($groupId);
- $path = explode('/', $dir);
- if ('/'.$path[1] != $group['directory']) {
- api_not_allowed(true);
- }
- }
- $interbreadcrumb[] = array("url" => "./document.php?id=".$document_id.'&'.api_get_cidreq(), "name" => get_lang('Documents'));
- if (!$is_allowed_in_course) {
- api_not_allowed(true);
- }
- if (!($is_allowed_to_edit || $_SESSION['group_member_with_upload_rights'] ||
- DocumentManager::is_my_shared_folder(api_get_user_id(), Security::remove_XSS($dir),api_get_session_id()))) {
- api_not_allowed(true);
- }
- /* Header */
- Event::event_access_tool(TOOL_DOCUMENT);
- $display_dir = $dir;
- if (isset ($group)) {
- $display_dir = explode('/', $dir);
- unset ($display_dir[0]);
- unset ($display_dir[1]);
- $display_dir = implode('/', $display_dir);
- }
- // Interbreadcrumb for the current directory root path
- $counter = 0;
- if (isset($document_data['parents'])) {
- foreach($document_data['parents'] as $document_sub_data) {
- //fixing double group folder in breadcrumb
- if (api_get_group_id()) {
- if ($counter == 0) {
- $counter++;
- continue;
- }
- }
- $interbreadcrumb[] = array('url' => $document_sub_data['document_url'], 'name' => $document_sub_data['title']);
- $counter++;
- }
- }
- Display :: display_header($nameTools, 'Doc');
- echo '<div class="actions">';
- echo '<a href="document.php?'.api_get_cidreq().'&id='.$document_id.'">'.Display::return_icon('back.png',get_lang('BackTo').' '.get_lang('DocumentsOverview'),'',ICON_SIZE_MEDIUM).'</a>';
- echo '</div>';
- ?>
- <script type="text/javascript">
- function submitVoice() {
- //lang vars
- var lang_no_applet="<?php echo get_lang('NanogongNoApplet'); ?>";
- var lang_record_before_save="<?php echo get_lang('NanogongRecordBeforeSave'); ?>";
- var lang_give_a_title="<?php echo get_lang('NanogongGiveTitle'); ?>";
- var lang_failled_to_submit="<?php echo get_lang('NanogongFailledToSubmit'); ?>";
- var lang_submitted="<?php echo get_lang('NanogongSubmitted'); ?>";
- // user and group id
- var nano_user_id="<?php echo api_get_user_id(); ?>";
- var nano_group_id="<?php echo api_get_group_id(); ?>";
- var nano_session_id="<?php echo api_get_session_id(); ?>";
- //path, url and filename
- var filename = document.getElementById("audio_title").value+"_chnano_.wav";//adding name file, tag and extension
- var filename = filename.replace(/\s/g, "_");//replace spaces by _
- var filename = encodeURIComponent(filename);
- var filepath="<?php echo urlencode($filepath); ?>";
- var dir="<?php echo urlencode($dir); ?>";
- var course_code="<?php echo urlencode($course_code); ?>";
- //
- var urlnanogong="../inc/lib/nanogong/receiver.php?filename="+filename+"&filepath="+filepath+"&dir="+dir+"&course_code="+course_code+"&nano_group_id="+nano_group_id+"&nano_session_id="+nano_session_id+"&nano_user_id="+nano_user_id;
- var cookie="<?php echo 'ch_sid='.session_id(); ?>";
- //check
- var recorder
- if (!(recorder = document.getElementById("nanogong"))) {
- alert(lang_no_applet)
- return
- }
- var duration = parseInt(recorder.sendGongRequest("GetMediaDuration", "audio")) || 0
- if (duration <= 0) {
- alert(lang_record_before_save)
- return
- }
- if (!document.getElementById("audio_title").value) {
- alert(lang_give_a_title)
- return
- }
- //
- var applet = document.getElementById("nanogong");
- var ret = applet.sendGongRequest( "PostToForm", urlnanogong, "voicefile", cookie, "temp");//'PostToForm', postURL, inputname, cookie, filename
- if (ret == null) {
- alert(lang_failled_to_submit);
- } else {
- alert(lang_submitted+"\n"+ret);
- $("#status").attr('value', '1');
- }
- }
- </script>
- <?php
- echo '<div align="center">';
- Display::display_icon('microphone.png', get_lang('PressRecordButton'),'','128');
- echo '<br/>';
- echo '<applet id="nanogong" archive="'.api_get_path(WEB_LIBRARY_PATH).'nanogong/nanogong.jar" code="gong.NanoGong" width="250" height="95" ALIGN="middle">';
- //echo '<param name="ShowRecordButton" value="false" />'; // default true
- // echo '<param name="ShowSaveButton" value="false" />'; //you can save in local computer | (default true)
- //echo '<param name="ShowSpeedButton" value="false" />'; // default true
- //echo '<param name="ShowAudioLevel" value="false" />'; // it displays the audiometer | (default true)
- echo '<param name="ShowTime" value="true" />'; // default false
- //echo '<param name="Color" value="#C0E0FF" />'; // default #FFFFFF
- //echo '<param name="StartTime" value="10.5" />';
- //echo '<param name="EndTime" value="65" />';
- echo '<param name="AudioFormat" value="ImaADPCM" />';// ImaADPCM (more speed), Speex (more compression)|(default Speex)
- //echo '<param name="SamplingRate" value="32000" />';//Quality for ImaADPCM (low 8000, medium 11025, normal 22050, hight 44100) OR Quality for Speex (low 8000, medium 16000, normal 32000, hight 44100) | (default 44100)
- //echo '<param name="MaxDuration" value="60" />';
- //echo '<param name="SoundFileURL" value="http://somewhere.com/mysoundfile.wav" />';//load a file |(default "")
- echo '</applet>';
- echo '<form name="form_nanogong">';
- echo '<input placeholder="'.get_lang('InputNameHere').'" type="text" id="audio_title">';
- echo '<input id="status" type="hidden" name="status" value="0">';
- echo '<button class="upload" type="submit" value="'.get_lang('Send').'" onClick="submitVoice()" />'.get_lang('Send').'</button>';
- echo '</form>';
- echo '</div>';
- Display :: display_footer();
|