1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-14 01:35:54 +00:00

implement upload-related support for open_basedir

This commit is contained in:
Andrew Dolgov
2013-04-11 19:12:00 +04:00
parent 063ac61353
commit 3306daecf4
7 changed files with 80 additions and 19 deletions

View File

@@ -66,8 +66,32 @@ class GoogleReaderImport extends Plugin {
$owner_uid = $_SESSION["uid"];
if (is_file($_FILES['starred_file']['tmp_name'])) {
$doc = json_decode(file_get_contents($_FILES['starred_file']['tmp_name']), true);
if ($_FILES['starred_file']['error'] != 0) {
print_error(T_sprintf("Upload failed with error code %d",
$_FILES['starred_file']['error']));
return;
}
$tmp_file = false;
if (is_uploaded_file($_FILES['starred_file']['tmp_name'])) {
$tmp_file = tempnam(CACHE_DIR . '/upload', 'starred');
$result = move_uploaded_file($_FILES['starred_file']['tmp_name'],
$tmp_file);
if (!$result) {
print_error(__("Unable to move uploaded file."));
return;
}
} else {
print_error(__('Error: please upload OPML file.'));
return;
}
if (is_file($tmp_file)) {
$doc = json_decode(file_get_contents($tmp_file), true);
unlink($tmp_file);
} else {
print_error(__('No file uploaded.'));
return;