From e85f15088e1fd2513c1d53db0e063849d8e2d746 Mon Sep 17 00:00:00 2001 From: Julio Montoya Date: Thu, 8 Dec 2011 19:39:17 +0100 Subject: [PATCH] Some fixes added in the "Convert your text to speech" page --- main/document/create_audio.php | 206 ++++++++++++++++++++------------- 1 file changed, 127 insertions(+), 79 deletions(-) diff --git a/main/document/create_audio.php b/main/document/create_audio.php index d25370150d..99a3955c44 100644 --- a/main/document/create_audio.php +++ b/main/document/create_audio.php @@ -93,15 +93,15 @@ if (!is_dir($filepath)) { //groups //TODO: clean if (isset ($_SESSION['_gid']) && $_SESSION['_gid'] != 0) { - $req_gid = '&gidReq='.$_SESSION['_gid']; - $interbreadcrumb[] = array ("url" => "../group/group_space.php?gidReq=".$_SESSION['_gid'], "name" => get_lang('GroupSpace')); - $noPHP_SELF = true; - $to_group_id = $_SESSION['_gid']; - $group = GroupManager :: get_group_properties($to_group_id); - $path = explode('/', $dir); - if ('/'.$path[1] != $group['directory']) { - api_not_allowed(true); - } + $req_gid = '&gidReq='.$_SESSION['_gid']; + $interbreadcrumb[] = array ("url" => "../group/group_space.php?gidReq=".$_SESSION['_gid'], "name" => get_lang('GroupSpace')); + $noPHP_SELF = true; + $to_group_id = $_SESSION['_gid']; + $group = GroupManager :: get_group_properties($to_group_id); + $path = explode('/', $dir); + if ('/'.$path[1] != $group['directory']) { + api_not_allowed(true); + } } $interbreadcrumb[] = array ("url" => "./document.php?curdirpath=".urlencode($dir).$req_gid, "name" => get_lang('Documents')); @@ -164,9 +164,10 @@ $(document).ready(function(){ 'displayFormat' : '#input/#max' }; $('#textarea').textareaCount(options, function(data){ - $('#textareaCallBack').html(result); - }); + $('#textareaCallBack').html(data); + }); }); + - +
'; - Display::display_icon('sound.gif', get_lang('CreateAudio')); echo get_lang('HelpText2Audio'); + downloadMP3_google($filepath, $dir); + + downloadMP3_pediaphone($filepath, $dir); + + + + $lang_html = '
'; + $lang_html .= '
'.get_lang('Language').':
'; + $lang_html .= '
'; + + $tbl_admin_languages = Database :: get_main_table(TABLE_MAIN_LANGUAGE); + $sql_select = "SELECT * FROM $tbl_admin_languages"; + $result_select = Database::query($sql_select); + $lang_html .= ''; + $lang_html .= '
'; + $lang_html .= '
'; + + $icon = Display::return_icon('sound.gif', get_lang('CreateAudio')); + echo Display::tag('h2', $icon.get_lang('HelpText2Audio')); //Google services - echo '
 
 '.get_lang('GoogleAudio').' '.get_lang('GoogleAudio').''; + echo '  + '.get_lang('GoogleAudio').''; echo '   '; + + + + //Pediaphon services + echo '  + '.get_lang('Pediaphon').' '; + echo '   '; + + + echo ''; - //Pediaphon services - echo '
 
 '.get_lang('Pediaphon').' '.get_lang('Pediaphon').''; - echo '   '; + + echo ''; + ?> @@ -384,9 +430,9 @@ Display :: display_footer(); * @author Juan Carlos RaƱa Trabado * @version january 2011, chamilo 1.8.8 */ -function downloadMP3_google($filepath, $dir){ +function downloadMP3_google($filepath, $dir) { //security - if(!isset($_POST['lang']) && !isset($_POST['text']) && !isset($_POST['title']) && !isset($filepath) && !isset($dir)) { + if (!isset($_POST['lang']) && !isset($_POST['text']) && !isset($_POST['title']) && !isset($filepath) && !isset($dir)) { return; } global $_course, $_user; @@ -420,7 +466,7 @@ function downloadMP3_google($filepath, $dir){ $clean_text = str_replace($search, $replace, $filename); //adding the file - if (!file_exists($documentPath)){ + if (!file_exists($documentPath)) { //add new file to disk file_put_contents($documentPath, file_get_contents("http://translate.google.com/translate_tts?tl=".$clean_lang."&q=".urlencode($clean_text)."")); //add document to database @@ -430,6 +476,7 @@ function downloadMP3_google($filepath, $dir){ $relativeUrlPath=$dir; $doc_id = add_document($_course, $relativeUrlPath.$AudioFilename, 'file', filesize($documentPath), $AudioFilename); api_item_property_update($_course, TOOL_DOCUMENT, $doc_id, 'DocumentAdded', $_user['user_id'], $groupId, null, null, null, $current_session_id); + Display::display_confirmation_message(get_lang('DocumentCreated')); } } @@ -501,6 +548,7 @@ function downloadMP3_pediaphone($filepath, $dir){ $relativeUrlPath=$dir; $doc_id = add_document($_course, $relativeUrlPath.$AudioFilename, 'file', filesize($documentPath), $AudioFilename); api_item_property_update($_course, TOOL_DOCUMENT, $doc_id, 'DocumentAdded', $_user['user_id'], $groupId, null, null, null, $current_session_id); + Display::display_confirmation_message(get_lang('DocumentCreated')); } }