You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
150 lines
3.9 KiB
150 lines
3.9 KiB
<?php
|
|
|
|
/* For licensing terms, see /license.txt */
|
|
|
|
use ChamiloSession as Session;
|
|
|
|
/**
|
|
* This file allows record wav files.
|
|
*
|
|
* @author Juan Carlos Raña Trabado herodoto@telefonica.net
|
|
*
|
|
* @since 7/jun/2012
|
|
* @Updated 04/09/2015 Upgrade to WebCamJS
|
|
*/
|
|
require_once __DIR__.'/../inc/global.inc.php';
|
|
|
|
$_SESSION['whereami'] = 'document/webcamclip';
|
|
$this_section = SECTION_COURSES;
|
|
$nameTools = get_lang('WebCamClip');
|
|
$htmlHeadXtra[] = api_get_js_simple(api_get_path(WEB_PATH).'web/assets/webcamjs/webcam.js');
|
|
$htmlHeadXtra[] = api_get_js('webcam_recorder.js');
|
|
$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()) {
|
|
$documentId = DocumentManager::get_document_id(
|
|
$courseInfo,
|
|
$groupProperties['directory']
|
|
);
|
|
$documentData = DocumentManager::get_document_data_by_id($documentId, $courseCode);
|
|
$dir = $documentData['path'];
|
|
}
|
|
} else {
|
|
$documentId = $documentData['id'];
|
|
$dir = $documentData['path'];
|
|
}
|
|
|
|
$webcamdir = $dir;
|
|
if ($webcamdir === '/') {
|
|
$webcamdir = '';
|
|
}
|
|
|
|
$isAllowedToEdit = 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).$courseInfo['path'].'/document'.$dir;
|
|
|
|
if (!is_dir($filepath)) {
|
|
$filepath = api_get_path(SYS_COURSE_PATH).$courseInfo['path'].'/document/';
|
|
$dir = '/';
|
|
}
|
|
|
|
if (!empty($groupId)) {
|
|
$interbreadcrumb[] = [
|
|
'url' => api_get_path(WEB_CODE_PATH).'group/group_space.php?'.api_get_cidreq(),
|
|
'name' => get_lang('GroupSpace').' '.$groupProperties['name'],
|
|
];
|
|
}
|
|
|
|
$interbreadcrumb[] = [
|
|
'url' => "./document.php?id=".$documentId."&".api_get_cidreq(),
|
|
'name' => get_lang('Documents'),
|
|
];
|
|
|
|
if (!api_is_allowed_in_course()) {
|
|
api_not_allowed(true);
|
|
}
|
|
|
|
$isMySharedFolder = DocumentManager::is_my_shared_folder($userId, Security::remove_XSS($dir), $sessionId);
|
|
|
|
if (!($isAllowedToEdit || $groupRights || $isMySharedFolder)) {
|
|
api_not_allowed(true);
|
|
}
|
|
|
|
Event::event_access_tool(TOOL_DOCUMENT);
|
|
|
|
$counter = 0;
|
|
if (isset($documentData['parents'])) {
|
|
foreach ($documentData['parents'] as $documentSubData) {
|
|
//fixing double group folder in breadcrumb
|
|
if ($groupId) {
|
|
if ($counter == 0) {
|
|
$counter++;
|
|
continue;
|
|
}
|
|
}
|
|
$interbreadcrumb[] = [
|
|
'url' => $documentSubData['document_url'],
|
|
'name' => $documentSubData['title'],
|
|
];
|
|
$counter++;
|
|
}
|
|
}
|
|
|
|
$actions = Display::toolbarAction(
|
|
'webcam_toolbar',
|
|
[
|
|
Display::url(
|
|
Display::return_icon(
|
|
'back.png',
|
|
get_lang('BackTo').' '.get_lang('DocumentsOverview'),
|
|
[],
|
|
ICON_SIZE_MEDIUM
|
|
),
|
|
'document.php?id='.$documentId.'&'.api_get_cidreq()
|
|
),
|
|
]
|
|
);
|
|
|
|
$template = new Template($nameTools);
|
|
$template->assign('webcam_dir', $webcamdir);
|
|
$template->assign('user_id', $userId);
|
|
$template->assign('filename', 'video_clip.jpg');
|
|
$content = $template->fetch($template->get_template('document/webcam.tpl'));
|
|
$template->assign('header', get_lang('TakeYourPhotos'));
|
|
$template->assign('actions', $actions);
|
|
$template->assign('content', $content);
|
|
$template->display_one_col_template();
|
|
|