blob: 0606c896dc6a7dee78303b3dd28af7dc0f6b57b9 (
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
|
<?php
require_once __DIR__ . '/../app/app.php';
require_once __DIR__ . '/inc/auth.inc.php';
function removeSlashes(&$item, $key){
$item = stripslashes($item);
}
if (!$csrf->verify($_POST['_csrf'], 'feedmanage')) {
die('Invalid CSRF token!');
}
if (isset($_POST['opml']) || isset($_POST['add'])) {
// Load config and old OPML
$conf = Spyc::YAMLLoad(__DIR__.'/../custom/config.yml');
$PlanetConfig = new PlanetConfig($conf);
if ($PlanetConfig->getName() === '') {
$PlanetConfig->setName($oldOpml->getTitle());
}
$oldOpml = OpmlManager::load(__DIR__.'/../custom/people.opml');
$newOpml = new opml();
$newOpml->title = $PlanetConfig->getName();
// Remove slashes if needed
if (get_magic_quotes_gpc() && isset($_POST['opml'])) {
array_walk_recursive($_POST['opml'], 'removeSlashes');
}
// Delete/Save feeds
if (isset($_POST['delete']) || isset($_POST['save'])){
foreach ($_POST['opml'] as $person){
if (isset($_POST['delete'])) {
//delete mode, check if to be deleted
if (!isset($person['delete'])){
$newOpml->entries[] = $person;
}
} else {
$newOpml->entries[] = $person;
}
}
}
// Add feed
if (isset($_POST['add'])){
if ('http://' != $_POST['url']) {
//autodiscover feed
$feed = new SimplePie();
$feed->enable_cache(false);
$feed->set_feed_url($_POST['url']);
if ($conf['checkcerts'] === false) {
$feed->set_curl_options([
CURLOPT_SSL_VERIFYHOST => false,
CURLOPT_SSL_VERIFYPEER => false
]);
}
$feed->init();
$feed->handle_content_type();
$person['name'] = html_entity_decode($feed->get_title());
$person['website'] = $feed->get_permalink();
$person['feed'] = $feed->feed_url;
$person['isDown'] = '0';
$oldOpml->entries[] = $person;
}
$newOpml->entries = $oldOpml->entries;
}
// Backup old OPML
OpmlManager::backup(__DIR__.'/../custom/people.opml');
// Save new OPML
OpmlManager::save($newOpml, __DIR__.'/../custom/people.opml');
}
header("Location: index.php");
die();
|