]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - lib/plugin/Imdb.php
Remove IMDB stuff
[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 getDescription()
55     {
56         return _("Query a local imdb database.");
57     }
58
59     function getDefaultArguments()
60     {
61         return array(
62             'query' => false, // what
63             'template' => false, // TODO: use a custom <theme>/template.tmpl for the result
64             'where' => false, // custom filter for the query
65             'title' => false, // custom filter for the query
66             'name' => false, // custom filter for the query
67             'sortby' => false, // for paging, default none
68             'limit' => false, // for paging, default: only the first 50
69         );
70     }
71
72     function run($dbi, $argstr, &$request, $basepage)
73     {
74         $args = $this->getArgs($argstr, $request);
75         extract($args);
76         include_once 'lib/imdb.php';
77         $imdb = new imdb();
78
79         if (method_exists($imdb, $query)) {
80             $SqlResult = $imdb->$query($title ? $title : $name);
81         } else {
82             $SqlResult = array();
83         }
84
85         // if ($limit) ; // TODO: fill paging vars (see PageList)
86         if ($ordered) {
87             $html = HTML::ol(array('class' => 'sqlresult'));
88             foreach ($SqlResult as $row) {
89                 $html->pushContent(HTML::li(array('class' => $i++ % 2 ? 'evenrow' : 'oddrow'), $row[0]));
90             }
91         } else {
92             $html = HTML::table(array('class' => 'sqlresult'));
93             $i = 0;
94             foreach ($SqlResult as $row) {
95                 $tr = HTML::tr(array('class' => $i++ % 2 ? 'evenrow' : 'oddrow'));
96                 foreach ($row as $col) {
97                     $tr->pushContent(HTML::td($col));
98                 }
99                 $html->pushContent($tr);
100             }
101         }
102         // if ($limit) ; // do paging via pagelink template
103         return $html;
104     }
105 }
106
107 // Local Variables:
108 // mode: php
109 // tab-width: 8
110 // c-basic-offset: 4
111 // c-hanging-comment-ender-p: nil
112 // indent-tabs-mode: nil
113 // End: