summaryrefslogtreecommitdiffstats
path: root/ajax/importopml.php
diff options
context:
space:
mode:
authorAlessandro Cosentino <cosenal@gmail.com>2012-07-29 18:04:03 -0400
committerAlessandro Cosentino <cosenal@gmail.com>2012-07-29 18:04:03 -0400
commit1c006551e856244efcaa182d354b3d04675c2d46 (patch)
tree3e1ec81566f1d36b35b7ea1f3e7fce75272646a1 /ajax/importopml.php
parent42458fad2ff26b95b09342981579e11ae783eaf8 (diff)
select opml dialog improved
Diffstat (limited to 'ajax/importopml.php')
-rw-r--r--ajax/importopml.php48
1 files changed, 48 insertions, 0 deletions
diff --git a/ajax/importopml.php b/ajax/importopml.php
new file mode 100644
index 000000000..3b66bb8e7
--- /dev/null
+++ b/ajax/importopml.php
@@ -0,0 +1,48 @@
+<?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/importopml.php: '.$msg, OCP\Util::ERROR);
+ exit();
+}
+function debug($msg) {
+ OCP\Util::writeLog('news','ajax/importopml.php: '.$msg, OCP\Util::DEBUG);
+}
+
+if(!isset($_GET['path'])) {
+ bailOut($l->t('No file path was submitted.'));
+}
+
+require_once('news/opmlparser.php');
+
+$parser = new OPMLParser();
+/*
+$localpath = OC_Filesystem::getLocalFile($_GET['path']);
+$tmpfname = tempnam(get_temp_dir(), "occOrig");
+
+if(!file_exists($localpath)) {
+ bailOut($l->t('File doesn\'t exist:').$localpath);
+}
+
+if (file_put_contents($tmpfname, file_get_contents($localpath))) {
+ OCP\JSON::success(array('data' => array('tmp'=>$tmpfname, 'path'=>$localpath)));
+} else {
+ bailOut(bailOut('Couldn\'t save temporary image: '.$tmpfname));
+}*/