summaryrefslogtreecommitdiffstats
path: root/common/admin/subscriptions.php
blob: ea2f11317b1781315414befe0985acd2c621eacf (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
<?php
require_once dirname(__FILE__) . '/inc/auth.inc.php';
require_once dirname(__FILE__) . '/../app/app.php';

function removeSlashes(&$item, $key){
    $item = stripslashes($item);
}

if (isset($_POST['opml']) || isset($_POST['add'])) {

    // Load config and old OPML
    $conf = Spyc::YAMLLoad(dirname(__FILE__).'/../custom/config.yml');
    $PlanetConfig = new PlanetConfig($conf);
    if ($PlanetConfig->getName() === '') {
        $PlanetConfig->setName($oldOpml->getTitle());
    }
    $oldOpml = OpmlManager::load(dirname(__FILE__).'/../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']);
            $feed->init();
            $feed->handle_content_type();
            $person['name'] = $feed->get_title();
            $person['website'] = $feed->get_permalink();
            $person['feed'] = $feed->feed_url;

            $oldOpml->entries[] = $person;
        }
        $newOpml->entries = $oldOpml->entries;
    }

    // Backup old OPML
    OpmlManager::backup(dirname(__FILE__).'/../custom/people.opml');

    // Save new OPML
    OpmlManager::save($newOpml, dirname(__FILE__).'/../custom/people.opml');
}
header("Location: index.php");
die();