nextcloud/apps/files/ajax/newfile.php

54 lines
1.5 KiB
PHP
Raw Normal View History

2011-10-23 13:40:40 +04:00
<?php
// Init owncloud
2011-10-23 13:40:40 +04:00
2012-05-03 14:23:29 +04:00
OCP\JSON::checkLoggedIn();
2012-07-07 17:58:11 +04:00
OCP\JSON::callCheck();
2011-10-23 13:40:40 +04:00
// Get the params
2012-03-08 00:43:44 +04:00
$dir = isset( $_POST['dir'] ) ? stripslashes($_POST['dir']) : '';
$filename = isset( $_POST['filename'] ) ? stripslashes($_POST['filename']) : '';
$content = isset( $_POST['content'] ) ? $_POST['content'] : '';
$source = isset( $_POST['source'] ) ? stripslashes($_POST['source']) : '';
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-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();
}
$sourceStream=fopen($source,'rb');
$target=$dir.'/'.$filename;
$result=OC_Filesystem::file_put_contents($target,$sourceStream);
if($result){
$mime=OC_Filesystem::getMimetype($target);
2012-05-03 14:23:29 +04:00
OCP\JSON::success(array("data" => array('mime'=>$mime)));
2012-03-08 00:43:44 +04:00
exit();
}else{
2012-05-03 14:23:29 +04:00
OCP\JSON::error(array("data" => array( "message" => "Error while downloading ".$source. ' to '.$target )));
2012-03-08 00:43:44 +04:00
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" )));