]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - lib/plugin/AtomFeed.php
function run: @return mixed
[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     /**
48      * @param WikiDB $dbi
49      * @param string $argstr
50      * @param WikiRequest $request
51      * @param string $basepage
52      * @return mixed
53      */
54     function run($dbi, $argstr, &$request, $basepage)
55     {
56         extract($this->getArgs($argstr, $request));
57         $parser = new AtomParser();
58
59         assert(!empty($url));
60         $parser->parse_url($url);
61
62         $html = '';
63
64         $items = HTML::dl();
65         foreach ($parser->feed as $feed) {
66             $title = HTML::h3(HTML::a(array('href' => $feed["links"]["0"]["href"]), $feed["title"]));
67             $counter = 1;
68             foreach ($parser->entries as $entry) {
69                 $item = HTML::dt(HTML::a(array('href' => $entry["links"]["0"]["href"]), $entry["title"]));
70                 $items->pushContent($item);
71
72                 if (!$titleonly) {
73                     $description = HTML::dd(HTML::raw(html_entity_decode($entry["content"])));
74                 } else {
75                     $description = HTML::dd();
76                 }
77                 $items->pushContent($description);
78
79                 if ($maxitem > 0 && $counter >= $maxitem) {
80                     break;
81                 }
82                 $counter++;
83             }
84             $html = HTML::div(array('class' => 'rss'), $title);
85             $html->pushContent($items);
86         }
87
88         return $html;
89     }
90 }