nextcloud/apps/files/ajax/newfile.php

69 lines
1.7 KiB
PHP
Raw Normal View History

2011-10-23 13:40:40 +04:00
<?php
2011-10-23 13:40:40 +04:00
// Init owncloud
2012-07-22 05:56:51 +04:00
global $eventSource;
\OCP\JSON::checkLoggedIn();
\OCP\JSON::callCheck();
2011-10-23 13:40:40 +04:00
\OC::$server->getSession()->close();
2011-10-23 13:40:40 +04:00
// Get the params
$dir = isset( $_REQUEST['dir'] ) ? '/'.trim((string)$_REQUEST['dir'], '/\\') : '';
$fileName = isset( $_REQUEST['filename'] ) ? trim((string)$_REQUEST['filename'], '/\\') : '';
2014-08-31 12:05:59 +04:00
$l10n = \OC::$server->getL10N('files');
$result = array(
'success' => false,
'data' => NULL
);
try {
\OC\Files\Filesystem::getView()->verifyPath($dir, $fileName);
} catch (\OCP\Files\InvalidPathException $ex) {
$result['data'] = [
'message' => $ex->getMessage()];
OCP\JSON::error($result);
return;
}
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.',
array($fileName, $dir))
2013-10-23 13:01:05 +04:00
);
OCP\JSON::error($result);
exit();
}
$success = false;
2015-03-02 23:33:17 +03:00
$templateManager = OC_Helper::getFileTemplateManager();
$mimeType = OC_Helper::getMimetypeDetector()->detectPath($target);
$content = $templateManager->getTemplate($mimeType);
if($content) {
$success = \OC\Files\Filesystem::file_put_contents($target, $content);
2012-08-29 02:50:12 +04:00
} else {
$success = \OC\Files\Filesystem::touch($target);
}
2013-08-08 23:27:59 +04:00
if($success) {
$meta = \OC\Files\Filesystem::getFileInfo($target);
OCP\JSON::success(array('data' => \OCA\Files\Helper::formatFileInfo($meta)));
2015-03-02 23:33:17 +03:00
return;
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') )));