]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - lib/plugin/AtomFeed.php
Update lib/nusoap/nusoap.php to version 0.9.5
[SourceForge/phpwiki.git] / lib / plugin / AtomFeed.php
1 <?php
2
3 /*
4  * Copyright 2010 Sébastien Le Callonnec
5  *
6  * This file is part of PhpWiki.
7  *
8  * PhpWiki is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * PhpWiki is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License along
19  * with PhpWiki; if not, write to the Free Software Foundation, Inc.,
20  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21 */
22 /**
23  * @author: Sébastien Le Callonnec
24  */
25 require_once 'lib/WikiPlugin.php';
26 require_once 'lib/AtomParser.php';
27
28 class WikiPlugin_AtomFeed
29     extends WikiPlugin
30 {
31     function getName()
32     {
33         return _('AtomFeed');
34     }
35
36     function getDescription()
37     {
38         return _('Atom Aggregator Plugin.');
39     }
40
41     function getDefaultArguments()
42     {
43         return array(
44             'feed' => "",
45             'description' => "",
46             'url' => "",
47             'maxitem' => 0,
48             'titleonly' => false
49         );
50     }
51
52     function run($dbi, $argstr, &$request, $basepage)
53     {
54         extract($this->getArgs($argstr, $request));
55         $parser = new AtomParser();
56
57         assert(!empty($url));
58         $parser->parse_url($url);
59
60         $html = '';
61
62         $items = HTML::dl();
63         foreach ($parser->feed as $feed) {
64             $title = HTML::h3(HTML::a(array('href' => $feed["links"]["0"]["href"]), $feed["title"]));
65             $counter = 1;
66             foreach ($parser->entries as $entry) {
67                 $item = HTML::dt(HTML::a(array('href' => $entry["links"]["0"]["href"]), $entry["title"]));
68                 $items->pushContent($item);
69
70                 if (!$titleonly) {
71                     $description = HTML::dd(HTML::raw(html_entity_decode($entry["content"])));
72                 } else {
73                     $description = HTML::dd();
74                 }
75                 $items->pushContent($description);
76
77                 if ($maxitem > 0 && $counter >= $maxitem) {
78                     break;
79                 }
80                 $counter++;
81             }
82             $html = HTML::div(array('class' => 'rss'), $title);
83             $html->pushContent($items);
84         }
85
86         return $html;
87     }
88 }