]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - lib/plugin/Imdb.php
access-restrictions are not implemented
[SourceForge/phpwiki.git] / lib / plugin / Imdb.php
1 <?php
2
3 /*
4  * Copyright 2004 $ThePhpWikiProgrammingTeam
5  *
6  * This file is (not yet) 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  * Query results from a local imdb copy.
25  * see amdbfront for the conversion.
26  * "imdb = mysql://user:pass@localhost/imdb" in lib/plugin/SqlResult.ini
27  *
28  * Queries:
29  * <<Imdb query=movie_main title||="Sample Movie (2002)" >>
30  * <<Imdb query=movie_combined title||="Sample Movie (2002)" >>
31  * <<Imdb query=movie_full title||="Sample Movie (2002)" >>
32  * <<Imdb query=movie_company_credits title||="Sample Movie (2002)" >>
33  * <<Imdb query=name name||="Lastname, Firstname (I)" >>
34  * More title queries:
35  *  business, moviebudgets, colorinfo, mpaaratingsreasons,
36  *  akatitles, alternateversions, miscellaneouscompanies, moviecountries,
37  *  certificates, completecast, completecrew, crazycredits, genres, goofs,
38  *  keywords, movielinks, plot, quotes, ratings, soundtracks, specialeffectscompanies,
39  *  taglines, trivia, distributors, language, laserdisc, literature, locations,
40  *  miscellaneouscompanies, productioncompanies, releasedates, runningtimes, soundmix,
41  *  technical
42  * More name queries:
43  *   akanames, guestappearances, biographies
44  *   job.descriptions
45  *
46  * @author: ReiniUrban
47  */
48
49 include_once 'lib/plugin/SqlResult.php';
50
51 class WikiPlugin_Imdb
52     extends WikiPlugin_SqlResult
53 {
54     function getName()
55     {
56         return _("Imdb");
57     }
58
59     function getDescription()
60     {
61         return _("Query a local imdb database.");
62     }
63
64     function getDefaultArguments()
65     {
66         return array(
67             'query' => false, // what
68             'template' => false, // TODO: use a custom <theme>/template.tmpl for the result
69             'where' => false, // custom filter for the query
70             'title' => false, // custom filter for the query
71             'name' => false, // custom filter for the query
72             'sortby' => false, // for paging, default none
73             'limit' => false, // for paging, default: only the first 50
74         );
75     }
76
77     function run($dbi, $argstr, &$request, $basepage)
78     {
79         $args = $this->getArgs($argstr, $request);
80         extract($args);
81         include_once 'lib/imdb.php';
82         $imdb = new imdb();
83
84         if (method_exists($imdb, $query)) {
85             $SqlResult = $imdb->$query($title ? $title : $name);
86         } else {
87             $SqlResult = array();
88         }
89
90         // if ($limit) ; // TODO: fill paging vars (see PageList)
91         if ($ordered) {
92             $html = HTML::ol(array('class' => 'sqlresult'));
93             foreach ($SqlResult as $row) {
94                 $html->pushContent(HTML::li(array('class' => $i++ % 2 ? 'evenrow' : 'oddrow'), $row[0]));
95             }
96         } else {
97             $html = HTML::table(array('class' => 'sqlresult'));
98             $i = 0;
99             foreach ($SqlResult as $row) {
100                 $tr = HTML::tr(array('class' => $i++ % 2 ? 'evenrow' : 'oddrow'));
101                 foreach ($row as $col) {
102                     $tr->pushContent(HTML::td($col));
103                 }
104                 $html->pushContent($tr);
105             }
106         }
107         // if ($limit) ; // do paging via pagelink template
108         return $html;
109     }
110 }
111
112 // Local Variables:
113 // mode: php
114 // tab-width: 8
115 // c-basic-offset: 4
116 // c-hanging-comment-ender-p: nil
117 // indent-tabs-mode: nil
118 // End: