]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - lib/plugin/Imdb.php
Activated Revision substitution for Subversion
[SourceForge/phpwiki.git] / lib / plugin / Imdb.php
1 <?php // -*-php-*-
2 rcs_id('$Id$');
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
19  along with PhpWiki; if not, write to the Free Software
20  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  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  * <?plugin Imdb query=movie_main title||="Sample Movie (2002)" ?>
30  * <?plugin Imdb query=movie_combined title||="Sample Movie (2002)" ?>
31  * <?plugin Imdb query=movie_full title||="Sample Movie (2002)" ?>
32  * <?plugin Imdb query=movie_company_credits title||="Sample Movie (2002)" ?>
33  * <?plugin 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         return _("Query a local imdb database");
56     }
57
58     function getVersion() {
59         return preg_replace("/[Revision: $]/", '',
60                             "\$Revision$");
61     }
62
63     function getDefaultArguments() {
64         return array(
65                      'query'       => false, // what
66                      'template'    => false, // TODO: use a custom <theme>/template.tmpl for the result
67                      'where'       => false, // custom filter for the query
68                      'title'       => false, // custom filter for the query
69                      'name'        => false, // custom filter for the query
70                      'sortby'      => false, // for paging, default none
71                      'limit'       => false, // for paging, default: only the first 50 
72                     );
73     }
74
75     function run($dbi, $argstr, &$request, $basepage) {
76         $args = $this->getArgs($argstr, $request);
77         extract($args);
78         include_once("lib/imdb.php");
79         $imdb = new imdb();
80
81         if (method_exists($imdb, $query)) {
82             $SqlResult = $imdb->$query($title ? $title : $name);
83         } else {
84             $SqlResult = array();
85         }
86
87         // if ($limit) ; // TODO: fill paging vars (see PageList)
88         if ($ordered) {
89             $html = HTML::ol(array('class'=>'sqlresult'));
90             foreach ($SqlResult as $row) {
91                 $html->pushContent(HTML::li(array('class'=> $i++ % 2 ? 'evenrow' : 'oddrow'), $row[0]));
92             }
93         } else {
94             $html = HTML::table(array('class'=>'sqlresult'));
95             $i = 0;
96             foreach ($SqlResult as $row) {
97                 $tr = HTML::tr(array('class'=> $i++ % 2 ? 'evenrow' : 'oddrow'));
98                 foreach ($row as $col) {
99                     $tr->pushContent(HTML::td($col));
100                 }
101                 $html->pushContent($tr);
102             }
103         }
104         // if ($limit) ; // do paging via pagelink template
105         return $html;
106     }
107 };
108
109 // $Log: not supported by cvs2svn $
110 //
111
112 // For emacs users
113 // Local Variables:
114 // mode: php
115 // tab-width: 8
116 // c-basic-offset: 4
117 // c-hanging-comment-ender-p: nil
118 // indent-tabs-mode: nil
119 // End:
120 ?>