Merge "Move up devunt's name to Developers"
[lhc/web/wiklou.git] / includes / api / ApiComparePages.php
1 <?php
2 /**
3 *
4 * Created on May 1, 2011
5 *
6 * Copyright © 2011 Sam Reed
7 *
8 * This program 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 * This program 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 this program; if not, write to the Free Software Foundation, Inc.,
20 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
21 * http://www.gnu.org/copyleft/gpl.html
22 *
23 * @file
24 */
25
26 class ApiComparePages extends ApiBase {
27
28 public function execute() {
29 $params = $this->extractRequestParams();
30
31 $rev1 = $this->revisionOrTitleOrId( $params['fromrev'], $params['fromtitle'], $params['fromid'] );
32 $rev2 = $this->revisionOrTitleOrId( $params['torev'], $params['totitle'], $params['toid'] );
33
34 $revision = Revision::newFromId( $rev1 );
35
36 if ( !$revision ) {
37 $this->dieUsage( 'The diff cannot be retrieved, ' .
38 'one revision does not exist or you do not have permission to view it.', 'baddiff' );
39 }
40
41 $contentHandler = $revision->getContentHandler();
42 $de = $contentHandler->createDifferenceEngine( $this->getContext(),
43 $rev1,
44 $rev2,
45 null, // rcid
46 true,
47 false );
48
49 $vals = [];
50 if ( isset( $params['fromtitle'] ) ) {
51 $vals['fromtitle'] = $params['fromtitle'];
52 }
53 if ( isset( $params['fromid'] ) ) {
54 $vals['fromid'] = $params['fromid'];
55 }
56 $vals['fromrevid'] = $rev1;
57 if ( isset( $params['totitle'] ) ) {
58 $vals['totitle'] = $params['totitle'];
59 }
60 if ( isset( $params['toid'] ) ) {
61 $vals['toid'] = $params['toid'];
62 }
63 $vals['torevid'] = $rev2;
64
65 $difftext = $de->getDiffBody();
66
67 if ( $difftext === false ) {
68 $this->dieUsage(
69 'The diff cannot be retrieved. Maybe one or both revisions do ' .
70 'not exist or you do not have permission to view them.',
71 'baddiff'
72 );
73 }
74
75 ApiResult::setContentValue( $vals, 'body', $difftext );
76
77 $this->getResult()->addValue( null, $this->getModuleName(), $vals );
78 }
79
80 /**
81 * @param int $revision
82 * @param string $titleText
83 * @param int $titleId
84 * @return int
85 */
86 private function revisionOrTitleOrId( $revision, $titleText, $titleId ) {
87 if ( $revision ) {
88 return $revision;
89 } elseif ( $titleText ) {
90 $title = Title::newFromText( $titleText );
91 if ( !$title || $title->isExternal() ) {
92 $this->dieUsageMsg( [ 'invalidtitle', $titleText ] );
93 }
94
95 return $title->getLatestRevID();
96 } elseif ( $titleId ) {
97 $title = Title::newFromID( $titleId );
98 if ( !$title ) {
99 $this->dieUsageMsg( [ 'nosuchpageid', $titleId ] );
100 }
101
102 return $title->getLatestRevID();
103 }
104 $this->dieUsage(
105 'A title, a page ID, or a revision number is needed for both the from and the to parameters',
106 'inputneeded'
107 );
108 }
109
110 public function getAllowedParams() {
111 return [
112 'fromtitle' => null,
113 'fromid' => [
114 ApiBase::PARAM_TYPE => 'integer'
115 ],
116 'fromrev' => [
117 ApiBase::PARAM_TYPE => 'integer'
118 ],
119 'totitle' => null,
120 'toid' => [
121 ApiBase::PARAM_TYPE => 'integer'
122 ],
123 'torev' => [
124 ApiBase::PARAM_TYPE => 'integer'
125 ],
126 ];
127 }
128
129 protected function getExamplesMessages() {
130 return [
131 'action=compare&fromrev=1&torev=2'
132 => 'apihelp-compare-example-1',
133 ];
134 }
135 }