]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - lib/plugin/AtomFeed.php
getName should not translate
[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 getDescription()
32     {
33         return _('Atom Aggregator Plugin.');
34     }
35
36     function getDefaultArguments()
37     {
38         return array(
39             'feed' => "",
40             'description' => "",
41             'url' => "",
42             'maxitem' => 0,
43             'titleonly' => false
44         );
45     }
46
47     function run($dbi, $argstr, &$request, $basepage)
48     {
49         extract($this->getArgs($argstr, $request));
50         $parser = new AtomParser();
51
52         assert(!empty($url));
53         $parser->parse_url($url);
54
55         $html = '';
56
57         $items = HTML::dl();
58         foreach ($parser->feed as $feed) {
59             $title = HTML::h3(HTML::a(array('href' => $feed["links"]["0"]["href"]), $feed["title"]));
60             $counter = 1;
61             foreach ($parser->entries as $entry) {
62                 $item = HTML::dt(HTML::a(array('href' => $entry["links"]["0"]["href"]), $entry["title"]));
63                 $items->pushContent($item);
64
65                 if (!$titleonly) {
66                     $description = HTML::dd(HTML::raw(html_entity_decode($entry["content"])));
67                 } else {
68                     $description = HTML::dd();
69                 }
70                 $items->pushContent($description);
71
72                 if ($maxitem > 0 && $counter >= $maxitem) {
73                     break;
74                 }
75                 $counter++;
76             }
77             $html = HTML::div(array('class' => 'rss'), $title);
78             $html->pushContent($items);
79         }
80
81         return $html;
82     }
83 }