2011-10-23 13:40:40 +04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
// Init owncloud
|
2012-07-22 05:56:51 +04:00
|
|
|
global $eventSource;
|
2012-04-17 21:31:29 +04:00
|
|
|
|
2012-08-29 02:50:12 +04:00
|
|
|
if(!OC_User::isLoggedIn()) {
|
2012-07-22 05:56:51 +04:00
|
|
|
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-10-24 19:31:22 +04:00
|
|
|
$dir = isset( $_REQUEST['dir'] ) ? '/'.trim($_REQUEST['dir'], '/\\') : '';
|
2012-10-05 13:15:32 +04:00
|
|
|
$filename = isset( $_REQUEST['filename'] ) ? trim($_REQUEST['filename'], '/\\') : '';
|
2012-07-22 05:56:51 +04:00
|
|
|
$content = isset( $_REQUEST['content'] ) ? $_REQUEST['content'] : '';
|
2012-10-05 13:15:32 +04:00
|
|
|
$source = isset( $_REQUEST['source'] ) ? trim($_REQUEST['source'], '/\\') : '';
|
2012-07-22 05:56:51 +04:00
|
|
|
|
2012-08-29 02:50:12 +04:00
|
|
|
if($source) {
|
2012-07-22 05:56:51 +04:00
|
|
|
$eventSource=new OC_EventSource();
|
2012-08-29 02:50:12 +04:00
|
|
|
} else {
|
2012-07-22 18:36:09 +04:00
|
|
|
OC_JSON::callCheck();
|
2012-07-22 05:56:51 +04:00
|
|
|
}
|
2011-10-23 13:40:40 +04:00
|
|
|
|
2012-08-29 02:50:12 +04:00
|
|
|
function progress($notification_code, $severity, $message, $message_code, $bytes_transferred, $bytes_max) {
|
2012-07-22 05:56:51 +04:00
|
|
|
static $filesize = 0;
|
|
|
|
static $lastsize = 0;
|
|
|
|
global $eventSource;
|
|
|
|
|
|
|
|
switch($notification_code) {
|
|
|
|
case STREAM_NOTIFY_FILE_SIZE_IS:
|
|
|
|
$filesize = $bytes_max;
|
|
|
|
break;
|
2012-08-29 10:42:49 +04:00
|
|
|
|
2012-07-22 05:56:51 +04:00
|
|
|
case STREAM_NOTIFY_PROGRESS:
|
|
|
|
if ($bytes_transferred > 0) {
|
|
|
|
if (!isset($filesize)) {
|
|
|
|
} else {
|
|
|
|
$progress = (int)(($bytes_transferred/$filesize)*100);
|
2013-10-23 19:02:41 +04:00
|
|
|
if($progress>$lastsize) { //limit the number or messages send
|
2012-08-29 02:50:12 +04:00
|
|
|
$eventSource->send('progress', $progress);
|
2012-07-22 05:56:51 +04:00
|
|
|
}
|
|
|
|
$lastsize=$progress;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-10-22 20:11:03 +04:00
|
|
|
$l10n = \OC_L10n::get('files');
|
|
|
|
|
2013-10-23 12:49:43 +04:00
|
|
|
$result = array(
|
|
|
|
'success' => false,
|
|
|
|
'data' => NULL
|
|
|
|
);
|
|
|
|
|
|
|
|
if(trim($filename) === '') {
|
2013-10-27 14:53:14 +04:00
|
|
|
$result['data'] = array('message' => $l10n->t('File name cannot be empty.'));
|
2013-10-23 12:49:43 +04:00
|
|
|
OCP\JSON::error($result);
|
|
|
|
exit();
|
|
|
|
}
|
|
|
|
|
|
|
|
if(strpos($filename, '/') !== false) {
|
2013-10-23 19:02:41 +04:00
|
|
|
$result['data'] = array('message' => $l10n->t('File name must not contain "/". Please choose a different name.'));
|
2013-10-23 12:49:43 +04:00
|
|
|
OCP\JSON::error($result);
|
|
|
|
exit();
|
|
|
|
}
|
|
|
|
|
|
|
|
//TODO why is stripslashes used on foldername in newfolder.php but not here?
|
|
|
|
$target = $dir.'/'.$filename;
|
|
|
|
|
2013-10-22 20:11:03 +04:00
|
|
|
if (\OC\Files\Filesystem::file_exists($target)) {
|
2013-10-23 13:01:05 +04:00
|
|
|
$result['data'] = array('message' => $l10n->t(
|
2013-10-23 19:02:41 +04:00
|
|
|
'The name %s is already used in the folder %s. Please choose a different name.',
|
2013-10-23 13:01:05 +04:00
|
|
|
array($filename, $dir))
|
|
|
|
);
|
2013-10-22 20:11:03 +04:00
|
|
|
OCP\JSON::error($result);
|
|
|
|
exit();
|
|
|
|
}
|
|
|
|
|
2012-08-29 03:38:34 +04:00
|
|
|
if($source) {
|
2012-08-29 02:50:12 +04:00
|
|
|
if(substr($source, 0, 8)!='https://' and substr($source, 0, 7)!='http://') {
|
2013-10-23 19:02:41 +04:00
|
|
|
OCP\JSON::error(array('data' => array( 'message' => $l10n->t('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'));
|
2012-08-29 02:50:12 +04:00
|
|
|
$sourceStream=fopen($source, 'rb', false, $ctx);
|
2012-10-10 15:18:36 +04:00
|
|
|
$result=\OC\Files\Filesystem::file_put_contents($target, $sourceStream);
|
2012-08-29 02:50:12 +04:00
|
|
|
if($result) {
|
2012-10-27 01:05:02 +04:00
|
|
|
$meta = \OC\Files\Filesystem::getFileInfo($target);
|
2012-09-26 15:24:41 +04:00
|
|
|
$mime=$meta['mimetype'];
|
2012-10-27 01:05:02 +04:00
|
|
|
$id = $meta['fileid'];
|
2013-10-28 14:22:34 +04:00
|
|
|
$eventSource->send('success', array('mime'=>$mime, 'size'=>\OC\Files\Filesystem::filesize($target), 'id' => $id, 'etag' => $meta['etag']));
|
2012-08-29 02:50:12 +04:00
|
|
|
} else {
|
2013-10-23 19:02:41 +04:00
|
|
|
$eventSource->send('error', $l10n->t('Error while downloading %s to %s', array($source, $target)));
|
2012-03-08 00:43:44 +04:00
|
|
|
}
|
2012-07-22 05:56:51 +04:00
|
|
|
$eventSource->close();
|
|
|
|
exit();
|
2012-08-29 02:50:12 +04:00
|
|
|
} else {
|
2013-08-08 23:27:59 +04:00
|
|
|
$success = false;
|
2013-08-16 02:13:10 +04:00
|
|
|
if (!$content) {
|
2013-08-07 18:53:09 +04:00
|
|
|
$templateManager = OC_Helper::getFileTemplateManager();
|
2013-08-30 20:07:49 +04:00
|
|
|
$mimeType = OC_Helper::getMimetypeDetector()->detectPath($target);
|
2013-08-16 02:13:10 +04:00
|
|
|
$content = $templateManager->getTemplate($mimeType);
|
|
|
|
}
|
|
|
|
|
2012-08-29 02:50:12 +04:00
|
|
|
if($content) {
|
2013-08-08 23:27:59 +04:00
|
|
|
$success = \OC\Files\Filesystem::file_put_contents($target, $content);
|
|
|
|
} else {
|
|
|
|
$success = \OC\Files\Filesystem::touch($target);
|
|
|
|
}
|
|
|
|
|
|
|
|
if($success) {
|
2013-08-09 00:13:53 +04:00
|
|
|
$meta = \OC\Files\Filesystem::getFileInfo($target);
|
2012-10-27 01:05:02 +04:00
|
|
|
$id = $meta['fileid'];
|
2013-08-08 23:35:18 +04:00
|
|
|
$mime = $meta['mimetype'];
|
2013-08-16 02:31:27 +04:00
|
|
|
$size = $meta['size'];
|
2013-08-08 23:36:10 +04:00
|
|
|
OCP\JSON::success(array('data' => array(
|
|
|
|
'id' => $id,
|
|
|
|
'mime' => $mime,
|
2013-08-16 02:31:27 +04:00
|
|
|
'size' => $size,
|
2013-08-08 23:36:10 +04:00
|
|
|
'content' => $content,
|
2013-10-31 18:12:26 +04:00
|
|
|
'etag' => $meta['etag'],
|
2013-08-08 23:36:10 +04:00
|
|
|
)));
|
2012-05-05 18:47:23 +04:00
|
|
|
exit();
|
2011-10-23 13:40:40 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-10-23 19:02:41 +04:00
|
|
|
OCP\JSON::error(array('data' => array( 'message' => $l10n->t('Error when creating the file') )));
|