summaryrefslogtreecommitdiffstats
path: root/ajax/importopml.php
blob: 7911a4db91f10fdedb00ff271291b31bf9739e37 (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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<?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();
}

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

require_once('news/opmlparser.php');

$raw = file_get_contents($_POST['path']);

try {
	$parsed = OPMLParser::parse($raw);
} catch (Exception $e) {
	bailOut($e->getMessage());
}

if ($parsed == null) {
	bailOut($l->t('An error occurred while parsing the file.'));	
}


$data = $parsed->getData();

function createFeed($feedurl, $folderid) {
	$feedmapper = new OCA\News\FeedMapper();
	$feedid = $feedmapper->findIdFromUrl($feedurl);

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

	if ($feedid === null) {
		$feed = OCA\News\Utils::fetch($feedurl);

		if ($feed !== null) {
		      $feedid = $feedmapper->save($feed, $folderid);
		}
	} else {
		OCP\Util::writeLog('news','ajax/createfeed.php: Error adding feed: '. $feedurl, OCP\Util::ERROR);
		return false;
	}

	if($feed === null || !$feedid) {
		OCP\Util::writeLog('news','ajax/createfeed.php: Error adding feed: '. $feedurl, OCP\Util::ERROR);
		return false;
	}
	
	return true;
}

$countadded = 0;
foreach($data as $collection) {
	if ($collection instanceOf Feed) {
		$feedurl = $collection->getUrl(); 
		$folderid = 0;
		if (createFeed($feedurl, $folderid)) {
			$countadded++;
		}
	}
}


// // $ch is the handler for the curl connection
// function addFeed($feedurl, $folderid, $ch) {
// 
// 	$data = array('feedurl' => $feedurl, 'folderid' => $folderid);
// 	curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
// 	$result = curl_exec($ch);
// 	$status = curl_getinfo($ch);
// 
// 	if($result === false) {
// 		bailOut(curl_error($ch));
// 	} else {
// 		bailOut($status['http_code'] . $status['url']);
// 	}
// }

// $url = OCP\Util::linkToAbsolute('news', 'ajax/createfeed.php');
// $ch = curl_init($url);
// if ($ch != false) {
// 	curl_setopt($ch, CURLOPT_POST, TRUE);
// 	curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
// 	curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_BASIC);
// 	curl_setopt($ch, CURLOPT_FOLLOWLOCATION, TRUE);
// 	curl_setopt($ch, CURLOPT_USERPWD, 'acosenti:nopass');
// 
// 
// 	foreach($data as $collection) {
// 		if ($collection instanceOf OC_News_Feed) {
// 			$feedurl = $collection->getUrl(); 
// 			$folderid = 0;
// 			addFeed($feedurl, $folderid, $ch);
// 		}
// 	}
// 
// 	addFeed(null, null, $ch);
// 	$result = curl_exec($ch);
// 
// 	curl_close($ch);
// } else {
// 	bailOut($l->t('An error occurred while adding the feeds.'));
// }

OCP\JSON::success(array('data' => array('title'=>$parsed->getTitle(), 'count'=>$parsed->getCount(), 
	'countsuccess'=>$countadded)));