API: documentation and cleanup.
[lhc/web/wiklou.git] / includes / api / ApiQueryLinks.php
1 <?php
2
3 /*
4 * Created on May 12, 2007
5 *
6 * API for MediaWiki 1.8+
7 *
8 * Copyright (C) 2006 Yuri Astrakhan <Firstname><Lastname>@gmail.com
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License along
21 * with this program; if not, write to the Free Software Foundation, Inc.,
22 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
23 * http://www.gnu.org/copyleft/gpl.html
24 */
25
26 if (!defined('MEDIAWIKI')) {
27 // Eclipse helper - will be ignored in production
28 require_once ("ApiQueryBase.php");
29 }
30
31 /**
32 * A query module to list all wiki links on a given set of pages.
33 *
34 * @addtogroup API
35 */
36 class ApiQueryLinks extends ApiQueryGeneratorBase {
37
38 const LINKS = 'links';
39 const TEMPLATES = 'templates';
40
41 private $table, $prefix, $description;
42
43 public function __construct($query, $moduleName) {
44
45 switch ($moduleName) {
46 case self::LINKS :
47 $this->table = 'pagelinks';
48 $this->prefix = 'pl';
49 $this->description = 'link';
50 break;
51 case self::TEMPLATES :
52 $this->table = 'templatelinks';
53 $this->prefix = 'tl';
54 $this->description = 'template';
55 break;
56 default :
57 ApiBase :: dieDebug(__METHOD__, 'Unknown module name');
58 }
59
60 parent :: __construct($query, $moduleName, $this->prefix);
61 }
62
63 public function execute() {
64 $this->run();
65 }
66
67 public function executeGenerator($resultPageSet) {
68 $this->run($resultPageSet);
69 }
70
71 private function run($resultPageSet = null) {
72
73 if ($this->getPageSet()->getGoodTitleCount() == 0)
74 return; // nothing to do
75
76 $this->addFields(array (
77 $this->prefix . '_from pl_from',
78 $this->prefix . '_namespace pl_namespace',
79 $this->prefix . '_title pl_title'
80 ));
81
82 $this->addTables($this->table);
83 $this->addWhereFld($this->prefix . '_from', array_keys($this->getPageSet()->getGoodTitles()));
84 $this->addOption('ORDER BY', str_replace('pl_', $this->prefix . '_', 'pl_from, pl_namespace, pl_title'));
85
86 $db = $this->getDB();
87 $res = $this->select(__METHOD__);
88
89 if (is_null($resultPageSet)) {
90
91 $data = array();
92 $lastId = 0; // database has no ID 0
93 while ($row = $db->fetchObject($res)) {
94 if ($lastId != $row->pl_from) {
95 if($lastId != 0) {
96 $this->addPageSubItems($lastId, $data);
97 $data = array();
98 }
99 $lastId = $row->pl_from;
100 }
101
102 $title = Title :: makeTitle($row->pl_namespace, $row->pl_title);
103 $vals = array();
104 ApiQueryBase :: addTitleInfo($vals, $title);
105 $data[] = $vals;
106 }
107
108 if($lastId != 0) {
109 $this->addPageSubItems($lastId, $data);
110 }
111
112 } else {
113
114 $titles = array();
115 while ($row = $db->fetchObject($res)) {
116 $title = Title :: makeTitle($row->pl_namespace, $row->pl_title);
117 if($title->userCanRead())
118 $titles[] = $title;
119 }
120 $resultPageSet->populateFromTitles($titles);
121 }
122
123 $db->freeResult($res);
124 }
125
126 private function addPageSubItems($pageId, $data) {
127 $result = $this->getResult();
128 $result->setIndexedTagName($data, $this->prefix);
129 $result->addValue(array ('query', 'pages', intval($pageId)),
130 $this->getModuleName(),
131 $data);
132 }
133
134 protected function getDescription() {
135 return "Returns all {$this->description}s from the given page(s)";
136 }
137
138 protected function getExamples() {
139 return array (
140 "Get {$this->description}s from the [[Main Page]]:",
141 " api.php?action=query&prop={$this->getModuleName()}&titles=Main%20Page",
142 "Get information about the {$this->description} pages in the [[Main Page]]:",
143 " api.php?action=query&generator={$this->getModuleName()}&titles=Main%20Page&prop=info"
144 );
145 }
146
147 public function getVersion() {
148 return __CLASS__ . ': $Id$';
149 }
150 }
151 ?>