@ -1,58 +1,17 @@
<?php
/*
===============================================================================
Dokeos - elearning and course management software
Copyright (c) 2004-2007 Dokeos S.A.
Copyright (c) Arnaud Ligot
For a full list of contributors, see "credits.txt".
The full license can be read in "license.txt".
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
See the GNU General Public License for more details.
Contact address: Dokeos, 44 rue des palais, B-1030 Brussels, Belgium
Mail: info@dokeos.com
===============================================================================
*/
/* See license terms in /dokeos_license.txt */
/**
==============================================================================
* This is an interface between Dokeos and Videoconference application
*
==============================================================================
*/
/*
==============================================================================
DEBUG
==============================================================================
*/
/*==== DEBUG ====*/
$debug=0;
/*
==============================================================================
CONSTANTS
==============================================================================
*/
/*==== CONSTANTS ==== */
define('VIDEOCONF_UPLOAD_PATH', '/videoconf');
$PRESENTATION_EXTENSION = array('.ppt', '.odp');
$IMAGE_EXTENSION = array ('.png', '.jpg', '.gif', '.jpeg');
/*
==============================================================================
SETTING Session ID because flash do not send the cookie
==============================================================================
*/
if (!is_array($_COOKIE) || !isset($_COOKIE["dk_sid"])){
if ($debug>0) error_log("setting SID to:".$_REQUEST["sid"]);
session_id($_REQUEST["sid"]);
}
$presentation_extension = array('.ppt', '.odp');
$image_extension = array ('.png', '.jpg', '.gif', '.jpeg');
if ($debug>0)
{
@ -69,75 +28,70 @@ if ($debug>0)
}
/*
==============================================================================
INCLUDE
==============================================================================
*/
/*==== INCLUDE ====*/
require_once ('../inc/global.inc.php');
api_block_anonymous_users();
require_once (api_get_path(LIBRARY_PATH)."course.lib.php");
require_once (api_get_path(LIBRARY_PATH)."document.lib.php");
require_once (api_get_path(LIBRARY_PATH)."fileUpload.lib.php");
/*
==============================================================================
SETTING UP SOME VARIABLES
==============================================================================
*/
$debug=0;
$action = $_REQUEST["action"];
$cidReq = $_REQUEST["cidReq"];
/*==== Variables initialisation ====*/
$action = $_REQUEST["action"]; //safe as only used in if()'s
$seek = array('/','%2F','..');
$destroy = array('','','');
$cidReq = str_replace($seek,$destroy,$_REQUEST["cidReq"]);
$cidReq = Security::remove_XSS($cidReq);
$user_id = api_get_user_id();
$coursePath = api_get_path(SYS_COURSE_PATH).$cidReq.'/document';
$_course = CourseManager::get_course_information($cidReq);
// FIXME: this sound very strange !!! but add_document need this to works
// FIXME: add_document needs this to work
$_course['dbName'] = $_course['db_name'];
// FIXME: check if CourseManager::get_user_in_course_status return !=
// COURSEMANAGER when the code is not valid
// FIXME: There is no valid course code which contains things like ../
if ($debug>0) error_log($coursePath, 0);
if ($action == "uploadgui")
{
echo '< form enctype = "multipart/form-data" action = "api.php" method = "POST" >
< input type = "hidden" name = "MAX_FILE_SIZE" value = "100000000" / >
< input type = "hidden" name = "action" value = "upload" / >
< input type = "hidden" name = "cidReq" value = "'.$cidReq.'" / >
< input type = "hidden" name = "sid" value = "'.Security::remove_XSS($_REQUEST[" sid " ] ) . ' " / >
if ($action == "upload")
Choose a file to upload: < input name = "filedata" type = "file" / > < br / >
< input type = "submit" value = "Upload File" / >
< / form >
';
die();
}
else if ($action == "upload")
{
/*
==============================================================================
PERMISSION
==============================================================================
*/
/*==== PERMISSION ====*/
$permissions = CourseManager::get_user_in_course_status($user_id, $cidReq);
if ($permissions != COURSEMANAGER)
{
if ($debug >0) error_log("Upload from videoconf not allowed !!!",0);
die(); // this user is not allowed to add upload documents
die('Not allowed' ); // this user is not allowed to add upload documents
}
/*
==============================================================================
UPLOAD
==============================================================================
*/
/*==== UPLOAD ====*/
$destPath = $coursePath.VIDEOCONF_UPLOAD_PATH;
if (!is_dir($destPath)){
if (!is_dir($destPath))
{
$result = create_unexisting_directory($_course,$user_id,0,NULL,$coursePath,VIDEOCONF_UPLOAD_PATH);
if (!$result)
{
if ($debug>0) error_log("Can't create ".$destPath." folder",0);
}
}
$newPath = handle_uploaded_document($_course,$_FILES['F iledata'],$coursePath,VIDEOCONF_UPLOAD_PATH,$user_id,0,NULL,'',0,'rename',false);
$newPath = handle_uploaded_document($_course,$_FILES['f iledata'],$coursePath,VIDEOCONF_UPLOAD_PATH,$user_id,0,NULL,'',0,'rename',false);
// based on ../newscorm/presentation.class.php
$file_name = (strrpos($newPath,'.')>0 ? substr($newPath, 0, strrpos($newPath,'.')) : $newPath);
$file_extension = (strrpos($newPath,'.')>0 ? substr($newPath, strrpos($newPath,'.'),10) : '');
/* error_log($newPath,0);
error_log($file_name,0);
error_log($file_extension,0);
*/
if (in_array($file_extension, $PRESENTATION_EXTENSION))
$file_name = (strrpos($newPath,'.')>0 ? substr($newPath, 0, strrpos($newPath,'.')) : $newPath);
$file_extension = (strrpos($newPath,'.')>0 ? substr($newPath, strrpos($newPath,'.'),10) : '');
if (in_array($file_extension, $presentation_extension))
{
if ($debug > 0) error_log("converting $coursePath$newPath", 0);
/* creating output folder */
@ -188,19 +142,20 @@ if ($action == "upload")
api_item_property_update($_course, TOOL_DOCUMENT, $did, 'DocumentAdded', $user_id, 0, NULL);
}
}
} else if ($action == "service")
{/*
==============================================================================
LIST FILES
==============================================================================
*/
echo '< html > < body > < script language = "javascript" > setTimeout ( 1000 , window . close ( ) ) ; < / script > < / body > < / html > ';
}
else if ($action == "service")
{
/*==== List files ====*/
if ($debug>0) error_log("sending file list",0);
$subaction = $_REQUEST["subaction"];
$canDelete = (CourseManager::get_user_in_course_status($user_id, $cidReq) == COURSEMANAGER);
if ($subaction == "list") {
$can_delete = (CourseManager::get_user_in_course_status($user_id, $cidReq) == COURSEMANAGER);
if ($subaction == "list")
{
// FIXME: check security around $_REQUEST["cwd"]
$cwd = $_REQUEST["cwd"];
$is_bellow_videoconf_upload_path = Security::check_abs_path($cwd,api_get_path(SYS_PATH));
/*
// treat /..
$nParent = 0; // the number of /.. into the url
while (substr($cwd, -3, 3) == "/..")
@ -219,77 +174,63 @@ if ($action == "upload")
// check if user can delete files. He must be manager and be inside /videoconf
$isBellowVideoConfUploadPath = (substr($cwd,0,strlen(VIDEOCONF_UPLOAD_PATH)) == VIDEOCONF_UPLOAD_PATH);
$canDelete = ($canDelete & & $isBellowVideoConfUploadPath);
*/
$can_delete = ($can_delete & & $is_bellow_videoconf_upload_path);
// get files list
$files = DocumentManager::get_all_document_data($_course, $cwd, 0, NULL, false);
printf("< dokeosobject > < fileListMeta > < / fileListMeta > < fileList > ");
printf("< folders > ");
foreach($files as $i)
{
if ($i["filetype"] != "folder")
{
continue;
}
else
{
printf('< folder > < path > %s< / path > < title > %s< / title > < canDelete > %s< / canDelete > < / folder > ', $i['path'],$i['title'],($canDelete?"true":"false" ));
printf('< folder > < path > %s< / path > < title > %s< / title > < canDelete > %s< / canDelete > < / folder > ', $i['path'],$i['title'],($can_delete?'true':'false' ));
}
}
printf("< / folders > < files > ");
foreach($files as $i) {
$extension = (strrpos($i['path'],'.')>0 ? substr($i['path'], strrpos($i['path'],'.'),10) : '');
if ($i["filetype"] != "file" || !in_array($extension, $IMAGE_EXTENSION))
if ($i["filetype"] != "file" || !in_array($extension, $image_extension))
{
continue;
}
else
{
printf('< file > < path > %s< / path > < title > %s< / title > < canDelete > %s< / canDelete > < / file > ', $i['path'],$i['title'],($canDelete?"true":"false" ));
printf('< file > < path > %s< / path > < title > %s< / title > < canDelete > %s< / canDelete > < / file > ', $i['path'],$i['title'],($can_delete?'true':'false' ));
}
}
printf("< / files > < ppts > ");
// foreach($files as $i) {
// FIXME: Please optimise me !!!
// $extension = (strrpos($i['path'],'.')>0 ? substr($i['path'], strrpos($i['path'],'.'),10) : '');
// if ($i["filetype"] != "file" || !in_array($extension, $PRESENTATION_EXTENSION))
// continue;
// else
// {
// printf('< ppt > < path > %s< / path > < title > %s< / title > < canDelete > %s< / canDelete > < / ppt > ', $i['path'], $i['title'],($canDelete?"true":"false"));
// }
// }
// printf("< file > < realname > fr1< / realname > < name > fn1< / name > < / file > ");
printf("< / ppts > ");
printf("< / fileList > < / dokeosobject > ");
} else if ($subaction == "delete") {/*
==============================================================================
PERMISSION
==============================================================================
*/
$permissions = CourseManager::get_user_in_course_status($user_id, $cidReq);
if ($permissions != COURSEMANAGER)
}
else if ($subaction == "delete")
{
if ($debug > 0) error_log("Upload from videoconf not allowed !!!",0);
die(); // this user is not allowed to add upload documents
}
/*
==============================================================================
DELETE
==============================================================================
*/
$path = $_REQUEST["path"];
/*==== PERMISSION ====*/
$permissions = CourseManager::get_user_in_course_status($user_id, $cidReq);
if ($permissions != COURSEMANAGER)
{
if ($debug > 0) error_log("Upload from videoconf not allowed !!!",0);
die(); // this user is not allowed to add upload documents
}
/*==== DELETE ====*/
$path = str_replace('../','',$_REQUEST["path"]);
if ((substr($path,0,strlen(VIDEOCONF_UPLOAD_PATH)) != VIDEOCONF_UPLOAD_PATH))
{
if ($debug >0 ) error_log("Delete from videoconf for "+$path+" NOT ALLOWED",0);
die();
}
DocumentManager::delete_document($_course, $path, $coursePath);
echo "< result > OK< / result > "; // We have to returns something to OpenLaszlo
}
} else if ($action == "download")
}
else if ($action == "download")
{
/*
==============================================================================
DOWNLOAD
==============================================================================
*/
/*==== DOWNLOAD ====*/
//check if the document is in the database
if(!DocumentManager::get_document_id($_course,$_REQUEST['file']))
{
@ -307,11 +248,10 @@ if ($action == "upload")
echo($error404);
exit;
}
$doc_url=$_REQUEST['file'];
$doc_url = str_replace('../','', $_REQUEST['file']) ;
if ($debug >0) error_log($doc_url);
$full_file_name = $coursePath.$doc_url;
DocumentManager::file_send_for_download($full_file_name,false);
exit;
}
?>
?>