]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - lib/plugin/FoafViewer.php
Add missing return
[SourceForge/phpwiki.git] / lib / plugin / FoafViewer.php
1 <?php
2
3 /*
4  * Copyright (C) 2004 $ThePhpWikiProgrammingTeam
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 /**
24  * Basic FoafViewPlugin for PHPWiki.
25  *
26  * Please note; this is <em>heavily</em> based on an example file distributed with XML_FOAF 0.2
27  * HTTP GET vars:
28  * <kbd>foaf=uri</kbd> - Used to determine the URI of a FOAF file.
29  * <kbd>original=true</kbd> - Simply dumps contents of $foaf
30  *
31  * @author Daniel O'Connor <http://ahsonline.com.au/dod/FOAF.rdf>
32  * @author Davey Shafik <http://pear.php.net/user/davey>
33  * @date 2004-06-07
34  * @version 0.0.2
35  * @bug XML_FOAF 0.2 has problems with named RDF nodes (ie, http://www.ahsonline.com.au/dod/FOAF.rdf).
36  *      Davey knows, will be fixing this soon.
37  * @todo "Friends" component
38  * @todo Named URLs (DC metadata)
39  * @todo "View in FOAFNAUT/foafexplorer/other"
40  * @bug Full name !available incorrectly handled.
41  */
42
43 /**
44  * FoafViewer:  Parse an RDF FOAF file and extract information to render as HTML
45  * usage:   &lt;?plugin FoafViewer foaf=http://www.ahsonline.com.au/dod/rawksuga.rdf original=true?&gt;
46  * author:  Daniel O'Connor <http://www.ahsonline.com.au/dod/FOAF.rdf>
47  *
48  * phpwiki version based on version 0.0.2 by Daniel O'Connor
49  *
50  * TODO:
51  *  - use a template.
52  *  - use the phpwiki internal user foaf data (stored by a UserPreferences extension)
53  *  - fix the pear FOAF Parser or we'll write our own (based on our XmlParser)
54  */
55 class WikiPlugin_FoafViewer
56     extends WikiPlugin
57 {
58     // The handler is handled okay. The only problem is that it still
59     // throws a fatal.
60     private function error_handler($error)
61     {
62         if (strstr($error->errstr, "Failed opening required 'XML/FOAF/Parser.php'"))
63             return true;
64         elseif (strstr($error->errstr, 'No such file or directory'))
65             return true;
66         return false;
67     }
68
69     function getName()
70     {
71         return _("FoafViewer");
72     }
73
74     function getDescription()
75     {
76         return _("Parse an RDF FOAF file and extract information to render as HTML.");
77     }
78
79     function getDefaultArguments()
80     {
81         return array('foaf' => false, // the URI to parse
82             //'userid'   => false,
83             'original' => false
84         );
85     }
86
87     function run($dbi, $argstr, &$request, $basepage)
88     {
89
90         /* ignore fatal on loading */
91         /*
92         global $ErrorManager;
93         $ErrorManager->pushErrorHandler(new WikiMethodCb($this,'error_handler'));
94         */
95         // Require the XML_FOAF_Parser class. This is a PEAR library not included with phpwiki.
96         // see doc/README.foaf
97         if (findFile('XML/FOAF/Parser.php', 'missing_ok'))
98             require_once 'XML/FOAF/Parser.php';
99         //$ErrorManager->popErrorHandler();
100         if (!class_exists('XML_FOAF_Parser'))
101             return $this->error(_("required PEAR library XML/FOAF/Parser.php not found in include_path"));
102
103         extract($this->getArgs($argstr, $request));
104         // Get our FOAF File from the foaf plugin argument or $_GET['foaf']
105         if (empty($foaf)) $foaf = $request->getArg('foaf');
106         $chooser = HTML::form(array('method' => 'get', 'action' => $request->getURLtoSelf()),
107             HTML::h4(_("FOAF File URI")),
108             HTML::input(array('id' => 'foaf', 'name' => 'foaf', 'type' => 'text', 'size' => '80', 'value' => $foaf)),
109             HTML::br(),
110             //HTML::p("Pretty HTML"),
111             HTML::input(array('id' => 'pretty', 'name' => 'pretty', 'type' => 'radio', 'checked' => 'checked'), _("Pretty HTML")),
112             //HTML::p("Original URL (Redirect)"),
113             HTML::input(array('id' => 'original', 'name' => 'original', 'type' => 'radio'), _("Original URL (Redirect)")),
114             HTML::br(),
115             HTML::input(array('type' => 'submit', 'value' => _("Parse FOAF")))
116         //HTML::label(array('for'=>'foaf'),"FOAF File URI"),
117         );
118         if (empty($foaf)) {
119             return $chooser;
120         } else {
121             //Error Checking
122             if (substr($foaf, 0, 7) != "http://") {
123                 return $this->error(_("foaf must be a URI starting with http://"));
124             }
125             // Start of output
126             if (!empty($original)) {
127                 $request->redirect($foaf);
128             } else {
129                 $foaffile = url_get_contents($foaf);
130                 if (!$foaffile) {
131                     //TODO: get errormsg
132                     return HTML(HTML::p("Resource isn't available: Something went wrong, probably a 404!"));
133                 }
134                 // Create new Parser object
135                 $parser = new XML_FOAF_Parser;
136                 // Parser FOAF into $foaffile
137                 $parser->parseFromMem($foaffile);
138                 $a = $parser->toArray();
139
140                 $html = HTML(HTML::h1(@$a[0]["name"]),
141                     HTML::table(
142                         HTML::thead(),
143                         HTML::tbody(
144                             @$a[0]["title"] ?
145                                 HTML::tr(HTML::td(_("Title")),
146                                     HTML::td($a[0]["title"])) : null,
147                             (@$a[0]["homepage"][0]) ?
148                                 $this->iterateHTML($a[0], "homepage", $a["dc"]) : null,
149                             (@$a[0]["weblog"][0]) ?
150                                 $this->iterateHTML($a[0], "weblog", $a["dc"]) : null,
151                             //This seems broken?
152                             /*
153                              HTML::tr(HTML::td("Full Name"),
154                                                (@$a[0]["name"][0]) ?
155                                                HTML::td(@$a[0]["name"]) :
156                                                (@$a[0]["firstname"][0] && @$a[0]["surname"][0]) ?
157                                                HTML::td(@$a[0]["firstname"][0] . " " . @$a[0]["surname"][0])
158                                                : null
159                             */
160                             HTML::tr(HTML::td("Full Name"),
161                                 (@$a[0]["name"][0]) ?
162                                     HTML::td(@$a[0]["name"]) : null
163                             ),
164                             (@$a[0]["nick"][0]) ?
165                                 $this->iterateHTML($a[0], "nick", $a["dc"])
166                                 : null,
167                             (@$a[0]["mboxsha1sum"][0]) ?
168                                 $this->iterateHTML($a[0], "mboxsha1sum", $a["dc"])
169                                 : null,
170                             (@$a[0]["depiction"][0]) ?
171                                 $this->iterateHTML($a[0], "depiction", $a["dc"])
172                                 : null,
173                             (@$a[0]["seealso"][0]) ?
174                                 $this->iterateHTML($a[0], "seealso", $a["dc"])
175                                 : null,
176                             HTML::tr(HTML::td("Source"),
177                                 HTML::td(
178                                     HTML::a(array('href' => @$foaf), "RDF")
179                                 )
180                             )
181                         )
182                     )
183                 );
184                 if (DEBUG) {
185                     $html->pushContent(HTML::hr(), $chooser);
186                 }
187                 return $html;
188             }
189         }
190         return '';
191     }
192
193     /**
194      * Renders array elements as HTML. May be used recursively.
195      *
196      * @param $array Source array
197      * @param $index Element Index to use.
198      * @param null $dc
199      * @return \RawXml
200      * @todo Make sure it can look more than 1 layer deep
201      * @todo Pass in dublincore metadata
202      */
203     function iterateHTML($array, $index, $dc = NULL)
204     {
205         for ($i = 0; $i < count($array[$index]); $i++) {
206             //Cater for different types
207             $string = $array[$index][$i];
208
209             if ($index == "mboxsha1sum") {
210                 $string = '<a href="http://beta.plink.org/profile/' . $array[$index][$i] . '">'
211                     . '<img src="http://beta.plink.org/images/plink.png" alt="Plink - ' . $array[$index][$i] . '" /></a>';
212             } elseif ($index == "depiction") {
213                 $string = '<img src="' . $array[$index][$i] . '" />';
214             } elseif ((substr($array[$index][$i], 0, 7) == "http://") || (substr($array[$index][$i], 0, 7) == "mailto:")) {
215                 $string = '<a href="' . $array[$index][$i] . '"';
216
217                 if (@$dc["description"][$array[$index][$i]]) {
218                     $string .= ' title="' . $dc["description"][$array[$index][$i]] . '"';
219                 }
220                 $string .= '>';
221                 if (@$dc["title"][$array[$index][$i]]) {
222                     $string .= $dc["title"][$array[$index][$i]];
223                 } else {
224                     $string .= $array[$index][$i];
225                 }
226                 $string .= '</a>';
227             }
228             @$html .= "<tr><td>" . $index . "</td><td>" . $string . "</td></tr>";
229         }
230
231         return HTML::raw($html);
232     }
233 }
234
235 // Local Variables:
236 // mode: php
237 // tab-width: 8
238 // c-basic-offset: 4
239 // c-hanging-comment-ender-p: nil
240 // indent-tabs-mode: nil
241 // End: