summaryrefslogtreecommitdiffstats
path: root/ajax/selectfromcloud.php
blob: 6b8289d0d2e492659934c043b44bd4341fb536c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<?php
/**
* ownCloud - News app
*
* @author Alessandro Cosentino
* Copyright (c) 2012 - Alessandro Cosentino <cosenal@gmail.com>
*
* This file is licensed under the Affero General Public License version 3 or later.
* See the COPYING-README file
*
*/

// Check if we are a user
OCP\JSON::checkLoggedIn();
OCP\JSON::checkAppEnabled('news');
OCP\JSON::callCheck();

$l = OC_L10N::get('news');

function bailOut($msg) {
	OCP\JSON::error(array('data' => array('message' => $msg)));
	OCP\Util::writeLog('news','ajax/selectfromcloud.php: '.$msg, OCP\Util::ERROR);
	exit();
}
function debug($msg) {
	OCP\Util::writeLog('news','ajax/selectfromcloud.php: '.$msg, OCP\Util::DEBUG);
}

if(!isset($_GET['path'])) {
	bailOut($l->t('No file path was submitted.'));
}

$localpath = OC_Filesystem::getLocalFile($_GET['path']);
$tmpfname = tempnam(get_temp_dir(), "occOrig");

if(!file_exists($localpath)) {
	bailOut($l->t('File doesn\'t exist:').$localpath);
}
file_put_contents($tmpfname, file_get_contents($localpath));

OCP\JSON::success(array('data' => array('tmp'=>$tmpfname)));

// $image = new OC_Image();
// if(!$image) {
// 	bailOut(OC_Contacts_App::$l10n->t('Error loading image.'));
// }
// if(!$image->loadFromFile($tmpfname)) {
// 	bailOut(OC_Contacts_App::$l10n->t('Error loading image.'));
// }
// if($image->width() > 400 || $image->height() > 400) {
// 	$image->resize(400); // Prettier resizing than with browser and saves bandwidth.
// }
// if(!$image->fixOrientation()) { // No fatal error so we don't bail out.
// 	debug('Couldn\'t save correct image orientation: '.$tmpfname);
// }
// if($image->save($tmpfname)) {
// 	OCP\JSON::success(array('data' => array('tmp'=>$tmpfname)));
// 	exit();
// } else {
// 	bailOut('Couldn\'t save temporary image: '.$tmpfname);
// }