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