49639273586ae45609f3abf7c6752a7c1c9a9b7f
[lhc/web/wiklou.git] / includes / api / ApiQueryBase.php
1 <?php
2
3
4 /*
5 * Created on Sep 7, 2006
6 *
7 * API for MediaWiki 1.8+
8 *
9 * Copyright (C) 2006 Yuri Astrakhan <FirstnameLastname@gmail.com>
10 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License along
22 * with this program; if not, write to the Free Software Foundation, Inc.,
23 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
24 * http://www.gnu.org/copyleft/gpl.html
25 */
26
27 if (!defined('MEDIAWIKI')) {
28 // Eclipse helper - will be ignored in production
29 require_once ('ApiBase.php');
30 }
31
32 abstract class ApiQueryBase extends ApiBase {
33
34 private $mQueryModule;
35
36 public function __construct($query, $moduleName, $paramPrefix = '') {
37 parent :: __construct($query->getMain(), $moduleName, $paramPrefix);
38 $this->mQueryModule = $query;
39 }
40
41 /**
42 * Override this method to request extra fields from the pageSet
43 * using $this->getPageSet()->requestField('fieldName')
44 */
45 public function requestExtraData() {
46 }
47
48 /**
49 * Get the main Query module
50 */
51 public function getQuery() {
52 return $this->mQueryModule;
53 }
54
55 protected function setContinueEnumParameter($paramName, $paramValue) {
56 $msg = array (
57 $this->encodeParamName($paramName
58 ) => $paramValue);
59 $this->getResult()->addValue('query-continue', $this->getModuleName(), $msg);
60 }
61
62 /**
63 * Get the Query database connection (readonly)
64 */
65 protected function getDB() {
66 return $this->getQuery()->getDB();
67 }
68
69 /**
70 * Get the PageSet object to work on
71 * @return ApiPageSet data
72 */
73 protected function getPageSet() {
74 return $this->mQueryModule->getPageSet();
75 }
76
77 /**
78 * This is a very simplistic utility function
79 * to convert a non-namespaced title string to a db key.
80 * It will replace all ' ' with '_'
81 */
82 public static function titleToKey($title) {
83 return str_replace(' ', '_', $title);
84 }
85
86 public static function keyToTitle($key) {
87 return str_replace('_', ' ', $key);
88 }
89
90 public static function getBaseVersion() {
91 return __CLASS__ . ': $Id$';
92 }
93 }
94
95 abstract class ApiQueryGeneratorBase extends ApiQueryBase {
96
97 private $mIsGenerator;
98
99 public function __construct($query, $moduleName, $paramPrefix = '') {
100 parent :: __construct($query, $moduleName, $paramPrefix);
101 $this->mIsGenerator = false;
102 }
103
104 public function setGeneratorMode() {
105 $this->mIsGenerator = true;
106 }
107
108 /**
109 * Overrides base class to prepend 'g' to every generator parameter
110 */
111 public function encodeParamName($paramName) {
112 if ($this->mIsGenerator)
113 return 'g' . parent :: encodeParamName($paramName);
114 else
115 return parent :: encodeParamName($paramName);
116 }
117
118 /**
119 * Execute this module as a generator
120 * @param $resultPageSet PageSet: All output should be appended to this object
121 */
122 public abstract function executeGenerator($resultPageSet);
123 }
124 ?>