|
|
|
@ -1,4 +1,5 @@ |
|
|
|
|
<?php |
|
|
|
|
|
|
|
|
|
/* For licensing terms, see /license.txt */ |
|
|
|
|
|
|
|
|
|
use ChamiloSession as Session; |
|
|
|
@ -6,8 +7,6 @@ use ChamiloSession as Session; |
|
|
|
|
/** |
|
|
|
|
* This file allows record wav files. |
|
|
|
|
* |
|
|
|
|
* @package chamilo.document |
|
|
|
|
* |
|
|
|
|
* @author Juan Carlos Raña Trabado herodoto@telefonica.net |
|
|
|
|
* |
|
|
|
|
* @since 7/jun/2012 |
|
|
|
@ -25,75 +24,74 @@ $groupRights = Session::read('group_member_with_upload_rights'); |
|
|
|
|
api_protect_course_script(); |
|
|
|
|
api_block_anonymous_users(); |
|
|
|
|
|
|
|
|
|
$courseInfo = api_get_course_info(); |
|
|
|
|
$userId = api_get_user_id(); |
|
|
|
|
$courseCode = api_get_course_id(); |
|
|
|
|
$groupId = api_get_group_id(); |
|
|
|
|
$sessionId = api_get_session_id(); |
|
|
|
|
|
|
|
|
|
$documentData = DocumentManager::get_document_data_by_id($_GET['id'], $courseCode, true); |
|
|
|
|
|
|
|
|
|
$groupProperties = null; |
|
|
|
|
if (!empty($groupId)) { |
|
|
|
|
$groupProperties = GroupManager::get_group_properties($groupId); |
|
|
|
|
} |
|
|
|
|
$documentId = 0; |
|
|
|
|
$dir = '/'; |
|
|
|
|
if (empty($documentData)) { |
|
|
|
|
if (api_is_in_group()) { |
|
|
|
|
$groupProperties = GroupManager::get_group_properties($groupId); |
|
|
|
|
$documentId = DocumentManager::get_document_id( |
|
|
|
|
api_get_course_info(), |
|
|
|
|
$courseInfo, |
|
|
|
|
$groupProperties['directory'] |
|
|
|
|
); |
|
|
|
|
$documentData = DocumentManager::get_document_data_by_id($documentId, $courseCode); |
|
|
|
|
$dir = $documentData['path']; |
|
|
|
|
} |
|
|
|
|
} else { |
|
|
|
|
$documentId = $documentData['id']; |
|
|
|
|
$dir = $documentData['path']; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
$documentId = $documentData['id']; |
|
|
|
|
$dir = $documentData['path']; |
|
|
|
|
|
|
|
|
|
//make some vars |
|
|
|
|
$webcamdir = $dir; |
|
|
|
|
if ($webcamdir == "/") { |
|
|
|
|
if ($webcamdir === '/') { |
|
|
|
|
$webcamdir = ''; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
$isAllowedToEdit = api_is_allowed_to_edit(null, true); |
|
|
|
|
|
|
|
|
|
// Please, do not modify this dirname formatting |
|
|
|
|
// Please, do not modify this dirname formatting. |
|
|
|
|
if (strstr($dir, '..')) { |
|
|
|
|
$dir = '/'; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if ($dir[0] == '.') { |
|
|
|
|
if ($dir[0] === '.') { |
|
|
|
|
$dir = substr($dir, 1); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if ($dir[0] != '/') { |
|
|
|
|
if ($dir[0] !== '/') { |
|
|
|
|
$dir = '/'.$dir; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if ($dir[strlen($dir) - 1] != '/') { |
|
|
|
|
if ($dir[strlen($dir) - 1] !== '/') { |
|
|
|
|
$dir .= '/'; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
$filepath = api_get_path(SYS_COURSE_PATH).$_course['path'].'/document'.$dir; |
|
|
|
|
$filepath = api_get_path(SYS_COURSE_PATH).$courseInfo['path'].'/document'.$dir; |
|
|
|
|
|
|
|
|
|
if (!is_dir($filepath)) { |
|
|
|
|
$filepath = api_get_path(SYS_COURSE_PATH).$_course['path'].'/document/'; |
|
|
|
|
$filepath = api_get_path(SYS_COURSE_PATH).$courseInfo['path'].'/document/'; |
|
|
|
|
$dir = '/'; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if (!empty($groupId)) { |
|
|
|
|
$interbreadcrumb[] = [ |
|
|
|
|
"url" => "../group/group_space.php?".api_get_cidreq(), |
|
|
|
|
"name" => get_lang('GroupSpace'), |
|
|
|
|
'url' => api_get_path(WEB_CODE_PATH).'group/group_space.php?'.api_get_cidreq(), |
|
|
|
|
'name' => get_lang('GroupSpace').' '.$groupProperties['name'], |
|
|
|
|
]; |
|
|
|
|
$noPHP_SELF = true; |
|
|
|
|
$group = GroupManager::get_group_properties($groupId); |
|
|
|
|
$path = explode('/', $dir); |
|
|
|
|
if ('/'.$path[1] != $group['directory']) { |
|
|
|
|
api_not_allowed(true); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
$interbreadcrumb[] = [ |
|
|
|
|
"url" => "./document.php?id=".$documentId."&".api_get_cidreq(), |
|
|
|
|
"name" => get_lang('Documents'), |
|
|
|
|
'url' => "./document.php?id=".$documentId."&".api_get_cidreq(), |
|
|
|
|
'name' => get_lang('Documents'), |
|
|
|
|
]; |
|
|
|
|
|
|
|
|
|
if (!api_is_allowed_in_course()) { |
|
|
|
@ -106,18 +104,8 @@ if (!($isAllowedToEdit || $groupRights || $isMySharedFolder)) { |
|
|
|
|
api_not_allowed(true); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/* Header */ |
|
|
|
|
Event::event_access_tool(TOOL_DOCUMENT); |
|
|
|
|
|
|
|
|
|
$displayDir = $dir; |
|
|
|
|
if (isset($group)) { |
|
|
|
|
$displayDir = explode('/', $dir); |
|
|
|
|
unset($displayDir[0]); |
|
|
|
|
unset($displayDir[1]); |
|
|
|
|
$displayDir = implode('/', $displayDir); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// Interbreadcrumb for the current directory root path |
|
|
|
|
$counter = 0; |
|
|
|
|
if (isset($documentData['parents'])) { |
|
|
|
|
foreach ($documentData['parents'] as $documentSubData) { |
|
|
|
@ -155,10 +143,7 @@ $template = new Template($nameTools); |
|
|
|
|
$template->assign('webcam_dir', $webcamdir); |
|
|
|
|
$template->assign('user_id', $userId); |
|
|
|
|
$template->assign('filename', 'video_clip.jpg'); |
|
|
|
|
|
|
|
|
|
$layout = $template->get_template('document/webcam.tpl'); |
|
|
|
|
$content = $template->fetch($layout); |
|
|
|
|
|
|
|
|
|
$content = $template->fetch($template->get_template('document/webcam.tpl')); |
|
|
|
|
$template->assign('header', get_lang('TakeYourPhotos')); |
|
|
|
|
$template->assign('actions', $actions); |
|
|
|
|
$template->assign('content', $content); |
|
|
|
|