Blame view
sources/apps/files/ajax/newfile.php
4.85 KB
|
03e52840d
|
1 2 3 4 5 6 7 8 |
<?php
// Init owncloud
global $eventSource;
if(!OC_User::isLoggedIn()) {
exit;
}
|
|
6d9380f96
|
9 |
\OC::$session->close(); |
|
03e52840d
|
10 11 12 13 14 15 16 17 18 19 20 |
// Get the params
$dir = isset( $_REQUEST['dir'] ) ? '/'.trim($_REQUEST['dir'], '/\\') : '';
$filename = isset( $_REQUEST['filename'] ) ? trim($_REQUEST['filename'], '/\\') : '';
$content = isset( $_REQUEST['content'] ) ? $_REQUEST['content'] : '';
$source = isset( $_REQUEST['source'] ) ? trim($_REQUEST['source'], '/\\') : '';
if($source) {
$eventSource=new OC_EventSource();
} else {
OC_JSON::callCheck();
}
|
|
03e52840d
|
21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 |
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);
|
|
31b7f2792
|
36 |
if($progress>$lastsize) { //limit the number or messages send
|
|
03e52840d
|
37 38 39 40 41 42 43 44 |
$eventSource->send('progress', $progress);
}
$lastsize=$progress;
}
}
break;
}
}
|
|
31b7f2792
|
45 46 47 48 49 |
$l10n = \OC_L10n::get('files');
$result = array(
'success' => false,
'data' => NULL
|
|
6d9380f96
|
50 51 52 53 54 55 56 57 58 59 60 61 62 |
);
$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();
}
|
|
31b7f2792
|
63 |
|
|
6d9380f96
|
64 65 |
if(!OCP\Util::isValidFileName($filename)) {
$result['data'] = array('message' => (string)$l10n->t("Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed."));
|
|
31b7f2792
|
66 67 68 |
OCP\JSON::error($result); exit(); } |
|
6d9380f96
|
69 70 71 72 73 |
if (!\OC\Files\Filesystem::file_exists($dir . '/')) {
$result['data'] = array('message' => (string)$l10n->t(
'The target folder has been moved or deleted.'),
'code' => 'targetnotfound'
);
|
|
31b7f2792
|
74 75 76 77 78 79 80 81 |
OCP\JSON::error($result);
exit();
}
//TODO why is stripslashes used on foldername in newfolder.php but not here?
$target = $dir.'/'.$filename;
if (\OC\Files\Filesystem::file_exists($target)) {
|
|
6d9380f96
|
82 |
$result['data'] = array('message' => (string)$l10n->t(
|
|
31b7f2792
|
83 84 85 86 87 88 |
'The name %s is already used in the folder %s. Please choose a different name.', array($filename, $dir)) ); OCP\JSON::error($result); exit(); } |
|
03e52840d
|
89 90 |
if($source) {
if(substr($source, 0, 8)!='https://' and substr($source, 0, 7)!='http://') {
|
|
6d9380f96
|
91 92 93 94 95 96 97 |
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();
|
|
03e52840d
|
98 99 100 101 |
exit();
}
$ctx = stream_context_create(null, array('notification' =>'progress'));
|
|
6d9380f96
|
102 103 104 |
$sourceStream=@fopen($source, 'rb', false, $ctx);
$result = 0;
if (is_resource($sourceStream)) {
|
|
f7d878ff1
|
105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 |
$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) {
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();
}
}
}
}
|
|
6d9380f96
|
128 129 |
$result=\OC\Files\Filesystem::file_put_contents($target, $sourceStream); } |
|
03e52840d
|
130 131 |
if($result) {
$meta = \OC\Files\Filesystem::getFileInfo($target);
|
|
6d9380f96
|
132 133 |
$data = \OCA\Files\Helper::formatFileInfo($meta);
$eventSource->send('success', $data);
|
|
03e52840d
|
134 |
} else {
|
|
6d9380f96
|
135 136 137 138 |
$eventSource->send('error', array('message' => $l10n->t('Error while downloading %s to %s', array($source, $target))));
}
if (is_resource($sourceStream)) {
fclose($sourceStream);
|
|
03e52840d
|
139 140 141 142 |
}
$eventSource->close();
exit();
} else {
|
|
31b7f2792
|
143 144 145 146 147 148 |
$success = false;
if (!$content) {
$templateManager = OC_Helper::getFileTemplateManager();
$mimeType = OC_Helper::getMimetypeDetector()->detectPath($target);
$content = $templateManager->getTemplate($mimeType);
}
|
|
03e52840d
|
149 |
if($content) {
|
|
31b7f2792
|
150 151 152 153 154 155 156 |
$success = \OC\Files\Filesystem::file_put_contents($target, $content);
} else {
$success = \OC\Files\Filesystem::touch($target);
}
if($success) {
$meta = \OC\Files\Filesystem::getFileInfo($target);
|
|
6d9380f96
|
157 |
OCP\JSON::success(array('data' => \OCA\Files\Helper::formatFileInfo($meta)));
|
|
03e52840d
|
158 159 160 |
exit(); } } |
|
31b7f2792
|
161 |
OCP\JSON::error(array('data' => array( 'message' => $l10n->t('Error when creating the file') )));
|