nextcloud/apps/files/ajax/newfile.php

177 lines
5.0 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-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
\OC::$server->getSession()->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'], '/\\') : '';
$filename = isset( $_REQUEST['filename'] ) ? trim($_REQUEST['filename'], '/\\') : '';
2012-07-22 05:56:51 +04:00
$content = isset( $_REQUEST['content'] ) ? $_REQUEST['content'] : '';
$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) {
2014-09-04 03:10:02 +04:00
$eventSource = \OC::$server->createEventSource();
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) || $filesize === 0) {
2012-07-22 05:56:51 +04:00
} 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;
}
}
2014-08-31 12:05:59 +04:00
$l10n = \OC::$server->getL10N('files');
$result = array(
'success' => false,
'data' => NULL
);
$trimmedFileName = trim($filename);
if($trimmedFileName === '') {
$result['data'] = array('message' => (string)$l10n->t('File name cannot be empty.'));
OCP\JSON::error($result);
exit();
}
if($trimmedFileName === '.' || $trimmedFileName === '..') {
$result['data'] = array('message' => (string)$l10n->t('"%s" is an invalid file name.', $trimmedFileName));
OCP\JSON::error($result);
exit();
}
if(!OCP\Util::isValidFileName($filename)) {
$result['data'] = array('message' => (string)$l10n->t("Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed."));
OCP\JSON::error($result);
exit();
}
if (!\OC\Files\Filesystem::file_exists($dir . '/')) {
$result['data'] = array('message' => (string)$l10n->t(
'The target folder has been moved or deleted.'),
'code' => 'targetnotfound'
);
OCP\JSON::error($result);
exit();
}
$target = $dir.'/'.$filename;
if (\OC\Files\Filesystem::file_exists($target)) {
$result['data'] = array('message' => (string)$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))
);
OCP\JSON::error($result);
exit();
}
2012-08-29 03:38:34 +04:00
if($source) {
$httpHelper = \OC::$server->getHTTPHelper();
if(!$httpHelper->isHTTPURL($source)) {
OCP\JSON::error(array('data' => array('message' => $l10n->t('Not a valid source'))));
exit();
}
if (!ini_get('allow_url_fopen')) {
$eventSource->send('error', array('message' => $l10n->t('Server is not allowed to open URLs, please check the server configuration')));
$eventSource->close();
2012-03-08 00:43:44 +04:00
exit();
}
2012-07-22 05:56:51 +04:00
$source = $httpHelper->getFinalLocationOfURL($source);
$ctx = stream_context_create(\OC::$server->getHTTPHelper()->getDefaultContextArray(), array('notification' =>'progress'));
$sourceStream=@fopen($source, 'rb', false, $ctx);
$result = 0;
if (is_resource($sourceStream)) {
$meta = stream_get_meta_data($sourceStream);
if (isset($meta['wrapper_data']) && is_array($meta['wrapper_data'])) {
//check stream size
$storageStats = \OCA\Files\Helper::buildFileStorageStatistics($dir);
$freeSpace = $storageStats['freeSpace'];
foreach($meta['wrapper_data'] as $header) {
2014-12-08 23:43:43 +03:00
if (strpos($header, ':') === false){
continue;
}
list($name, $value) = explode(':', $header);
if ('content-length' === strtolower(trim($name))) {
$length = (int) trim($value);
if ($length > $freeSpace) {
$delta = $length - $freeSpace;
$humanDelta = OCP\Util::humanFileSize($delta);
$eventSource->send('error', array('message' => (string)$l10n->t('The file exceeds your quota by %s', array($humanDelta))));
$eventSource->close();
fclose($sourceStream);
exit();
}
}
}
}
$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);
$data = \OCA\Files\Helper::formatFileInfo($meta);
$eventSource->send('success', $data);
2012-08-29 02:50:12 +04:00
} else {
$eventSource->send('error', array('message' => $l10n->t('Error while downloading %s to %s', array($source, $target))));
}
if (is_resource($sourceStream)) {
fclose($sourceStream);
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;
if (!$content) {
$templateManager = OC_Helper::getFileTemplateManager();
$mimeType = OC_Helper::getMimetypeDetector()->detectPath($target);
$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);
OCP\JSON::success(array('data' => \OCA\Files\Helper::formatFileInfo($meta)));
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') )));