nextcloud/apps/files/ajax/newfile.php

90 lines
2.3 KiB
PHP
Raw Normal View History

2011-10-23 13:40:40 +04:00
<?php
// Init owncloud
2012-07-22 05:56:51 +04:00
global $eventSource;
2012-07-22 05:56:51 +04:00
if(!OC_User::isLoggedIn()){
exit;
}
2011-10-23 13:40:40 +04:00
2012-07-22 05:56:51 +04:00
session_write_close();
2011-10-23 13:40:40 +04:00
// Get the params
2012-07-22 05:56:51 +04:00
$dir = isset( $_REQUEST['dir'] ) ? stripslashes($_REQUEST['dir']) : '';
$filename = isset( $_REQUEST['filename'] ) ? stripslashes($_REQUEST['filename']) : '';
$content = isset( $_REQUEST['content'] ) ? $_REQUEST['content'] : '';
$source = isset( $_REQUEST['source'] ) ? stripslashes($_REQUEST['source']) : '';
if($source){
$eventSource=new OC_EventSource();
2012-07-22 18:36:09 +04:00
}else{
OC_JSON::callCheck();
2012-07-22 05:56:51 +04:00
}
2011-10-23 13:40:40 +04:00
if($filename == '') {
2012-05-03 14:23:29 +04:00
OCP\JSON::error(array("data" => array( "message" => "Empty Filename" )));
2011-10-23 13:40:40 +04:00
exit();
}
if(strpos($filename,'/')!==false){
OCP\JSON::error(array("data" => array( "message" => "Invalid Filename" )));
exit();
}
2011-10-23 13:40:40 +04:00
2012-07-22 05:56:51 +04:00
function progress($notification_code, $severity, $message, $message_code, $bytes_transferred, $bytes_max){
static $filesize = 0;
static $lastsize = 0;
global $eventSource;
switch($notification_code) {
case STREAM_NOTIFY_FILE_SIZE_IS:
$filesize = $bytes_max;
break;
case STREAM_NOTIFY_PROGRESS:
if ($bytes_transferred > 0) {
if (!isset($filesize)) {
} else {
$progress = (int)(($bytes_transferred/$filesize)*100);
if($progress>$lastsize){//limit the number or messages send
$eventSource->send('progress',$progress);
}
$lastsize=$progress;
}
}
break;
}
}
2012-03-08 00:43:44 +04:00
if($source){
if(substr($source,0,8)!='https://' and substr($source,0,7)!='http://'){
2012-05-03 14:23:29 +04:00
OCP\JSON::error(array("data" => array( "message" => "Not a valid source" )));
2012-03-08 00:43:44 +04:00
exit();
}
2012-07-22 05:56:51 +04:00
$ctx = stream_context_create(null, array('notification' =>'progress'));
$sourceStream=fopen($source,'rb', false, $ctx);
2012-03-08 00:43:44 +04:00
$target=$dir.'/'.$filename;
$result=OC_Filesystem::file_put_contents($target,$sourceStream);
if($result){
$mime=OC_Filesystem::getMimetype($target);
2012-07-22 05:56:51 +04:00
$eventSource->send('success',$mime);
2012-03-08 00:43:44 +04:00
}else{
2012-07-22 05:56:51 +04:00
$eventSource->send('error',"Error while downloading ".$source. ' to '.$target);
2012-03-08 00:43:44 +04:00
}
2012-07-22 05:56:51 +04:00
$eventSource->close();
exit();
}else{
2011-10-23 13:40:40 +04:00
if($content){
if(OC_Filesystem::file_put_contents($dir.'/'.$filename,$content)){
OCP\JSON::success(array("data" => array('content'=>$content)));
exit();
}
}elseif(OC_Files::newFile($dir, $filename, 'file')){
OCP\JSON::success(array("data" => array('content'=>$content)));
exit();
2011-10-23 13:40:40 +04:00
}
}
2012-05-03 14:23:29 +04:00
OCP\JSON::error(array("data" => array( "message" => "Error when creating the file" )));