Merge "Add .pipeline/ with dev image variant"
[lhc/web/wiklou.git] / includes / Revision / RevisionRenderer.php
1 <?php
2 /**
3 * This file is part of MediaWiki.
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
19 *
20 * @file
21 */
22
23 namespace MediaWiki\Revision;
24
25 use Html;
26 use InvalidArgumentException;
27 use ParserOptions;
28 use ParserOutput;
29 use Psr\Log\LoggerInterface;
30 use Psr\Log\NullLogger;
31 use Title;
32 use User;
33 use Wikimedia\Rdbms\ILoadBalancer;
34
35 /**
36 * The RevisionRenderer service provides access to rendered output for revisions.
37 * It does so be acting as a factory for RenderedRevision instances, which in turn
38 * provide lazy access to ParserOutput objects.
39 *
40 * One key responsibility of RevisionRenderer is implementing the layout used to combine
41 * the output of multiple slots.
42 *
43 * @since 1.32
44 */
45 class RevisionRenderer {
46
47 /** @var LoggerInterface */
48 private $saveParseLogger;
49
50 /** @var ILoadBalancer */
51 private $loadBalancer;
52
53 /** @var SlotRoleRegistry */
54 private $roleRegistery;
55
56 /** @var string|bool */
57 private $dbDomain;
58
59 /**
60 * @param ILoadBalancer $loadBalancer
61 * @param SlotRoleRegistry $roleRegistry
62 * @param bool|string $dbDomain DB domain of the relevant wiki or false for the current one
63 */
64 public function __construct(
65 ILoadBalancer $loadBalancer,
66 SlotRoleRegistry $roleRegistry,
67 $dbDomain = false
68 ) {
69 $this->loadBalancer = $loadBalancer;
70 $this->roleRegistery = $roleRegistry;
71 $this->dbDomain = $dbDomain;
72 $this->saveParseLogger = new NullLogger();
73 }
74
75 /**
76 * @param LoggerInterface $saveParseLogger
77 */
78 public function setLogger( LoggerInterface $saveParseLogger ) {
79 $this->saveParseLogger = $saveParseLogger;
80 }
81
82 /**
83 * @param RevisionRecord $rev
84 * @param ParserOptions|null $options
85 * @param User|null $forUser User for privileged access. Default is unprivileged (public)
86 * access, unless the 'audience' hint is set to something else RevisionRecord::RAW.
87 * @param array $hints Hints given as an associative array. Known keys:
88 * - 'use-master' Use master when rendering for the parser cache during save.
89 * Default is to use a replica.
90 * - 'audience' the audience to use for content access. Default is
91 * RevisionRecord::FOR_PUBLIC if $forUser is not set, RevisionRecord::FOR_THIS_USER
92 * if $forUser is set. Can be set to RevisionRecord::RAW to disable audience checks.
93 * - 'known-revision-output' a combined ParserOutput for the revision, perhaps from
94 * some cache. the caller is responsible for ensuring that the ParserOutput indeed
95 * matched the $rev and $options. This mechanism is intended as a temporary stop-gap,
96 * for the time until caches have been changed to store RenderedRevision states instead
97 * of ParserOutput objects.
98 * @phan-param array{use-master?:bool,audience?:int,known-revision-output?:ParserOutput} $hints
99 *
100 * @return RenderedRevision|null The rendered revision, or null if the audience checks fails.
101 */
102 public function getRenderedRevision(
103 RevisionRecord $rev,
104 ParserOptions $options = null,
105 User $forUser = null,
106 array $hints = []
107 ) {
108 if ( $rev->getWikiId() !== $this->dbDomain ) {
109 throw new InvalidArgumentException( 'Mismatching wiki ID ' . $rev->getWikiId() );
110 }
111
112 $audience = $hints['audience']
113 ?? ( $forUser ? RevisionRecord::FOR_THIS_USER : RevisionRecord::FOR_PUBLIC );
114
115 if ( !$rev->audienceCan( RevisionRecord::DELETED_TEXT, $audience, $forUser ) ) {
116 // Returning null here is awkward, but consist with the signature of
117 // Revision::getContent() and RevisionRecord::getContent().
118 return null;
119 }
120
121 if ( !$options ) {
122 $options = ParserOptions::newCanonical( $forUser ?: 'canonical' );
123 }
124
125 $useMaster = $hints['use-master'] ?? false;
126
127 $dbIndex = $useMaster
128 ? DB_MASTER // use latest values
129 : DB_REPLICA; // T154554
130
131 $options->setSpeculativeRevIdCallback( function () use ( $dbIndex ) {
132 return $this->getSpeculativeRevId( $dbIndex );
133 } );
134 $options->setSpeculativePageIdCallback( function () use ( $dbIndex ) {
135 return $this->getSpeculativePageId( $dbIndex );
136 } );
137
138 if ( !$rev->getId() && $rev->getTimestamp() ) {
139 // This is an unsaved revision with an already determined timestamp.
140 // Make the "current" time used during parsing match that of the revision.
141 // Any REVISION* parser variables will match up if the revision is saved.
142 $options->setTimestamp( $rev->getTimestamp() );
143 }
144
145 $title = Title::newFromLinkTarget( $rev->getPageAsLinkTarget() );
146
147 $renderedRevision = new RenderedRevision(
148 $title,
149 $rev,
150 $options,
151 function ( RenderedRevision $rrev, array $hints ) {
152 return $this->combineSlotOutput( $rrev, $hints );
153 },
154 $audience,
155 $forUser
156 );
157
158 $renderedRevision->setSaveParseLogger( $this->saveParseLogger );
159
160 if ( isset( $hints['known-revision-output'] ) ) {
161 $renderedRevision->setRevisionParserOutput( $hints['known-revision-output'] );
162 }
163
164 return $renderedRevision;
165 }
166
167 private function getSpeculativeRevId( $dbIndex ) {
168 // Use a separate master connection in order to see the latest data, by avoiding
169 // stale data from REPEATABLE-READ snapshots.
170 $flags = ILoadBalancer::CONN_TRX_AUTOCOMMIT;
171
172 $db = $this->loadBalancer->getConnectionRef( $dbIndex, [], $this->dbDomain, $flags );
173
174 return 1 + (int)$db->selectField(
175 'revision',
176 'MAX(rev_id)',
177 [],
178 __METHOD__
179 );
180 }
181
182 private function getSpeculativePageId( $dbIndex ) {
183 // Use a separate master connection in order to see the latest data, by avoiding
184 // stale data from REPEATABLE-READ snapshots.
185 $flags = ILoadBalancer::CONN_TRX_AUTOCOMMIT;
186
187 $db = $this->loadBalancer->getConnectionRef( $dbIndex, [], $this->dbDomain, $flags );
188
189 return 1 + (int)$db->selectField(
190 'page',
191 'MAX(page_id)',
192 [],
193 __METHOD__
194 );
195 }
196
197 /**
198 * This implements the layout for combining the output of multiple slots.
199 *
200 * @todo Use placement hints from SlotRoleHandlers instead of hard-coding the layout.
201 *
202 * @param RenderedRevision $rrev
203 * @param array $hints see RenderedRevision::getRevisionParserOutput()
204 *
205 * @return ParserOutput
206 */
207 private function combineSlotOutput( RenderedRevision $rrev, array $hints = [] ) {
208 $revision = $rrev->getRevision();
209 $slots = $revision->getSlots()->getSlots();
210
211 $withHtml = $hints['generate-html'] ?? true;
212
213 // short circuit if there is only the main slot
214 if ( array_keys( $slots ) === [ SlotRecord::MAIN ] ) {
215 return $rrev->getSlotParserOutput( SlotRecord::MAIN );
216 }
217
218 // move main slot to front
219 if ( isset( $slots[SlotRecord::MAIN] ) ) {
220 $slots = [ SlotRecord::MAIN => $slots[SlotRecord::MAIN] ] + $slots;
221 }
222
223 $combinedOutput = new ParserOutput( null );
224 $slotOutput = [];
225
226 $options = $rrev->getOptions();
227 $options->registerWatcher( [ $combinedOutput, 'recordOption' ] );
228
229 foreach ( $slots as $role => $slot ) {
230 $out = $rrev->getSlotParserOutput( $role, $hints );
231 $slotOutput[$role] = $out;
232
233 // XXX: should the SlotRoleHandler be able to intervene here?
234 $combinedOutput->mergeInternalMetaDataFrom( $out );
235 $combinedOutput->mergeTrackingMetaDataFrom( $out );
236 }
237
238 if ( $withHtml ) {
239 $html = '';
240 $first = true;
241 /** @var ParserOutput $out */
242 foreach ( $slotOutput as $role => $out ) {
243 $roleHandler = $this->roleRegistery->getRoleHandler( $role );
244
245 // TODO: put more fancy layout logic here, see T200915.
246 $layout = $roleHandler->getOutputLayoutHints();
247 $display = $layout['display'] ?? 'section';
248
249 if ( $display === 'none' ) {
250 continue;
251 }
252
253 if ( $first ) {
254 // skip header for the first slot
255 $first = false;
256 } else {
257 // NOTE: this placeholder is hydrated by ParserOutput::getText().
258 $headText = Html::element( 'mw:slotheader', [], $role );
259 $html .= Html::rawElement( 'h1', [ 'class' => 'mw-slot-header' ], $headText );
260 }
261
262 // XXX: do we want to put a wrapper div around the output?
263 // Do we want to let $roleHandler do that?
264 $html .= $out->getRawText();
265 $combinedOutput->mergeHtmlMetaDataFrom( $out );
266 }
267
268 $combinedOutput->setText( $html );
269 }
270
271 $options->registerWatcher( null );
272 return $combinedOutput;
273 }
274
275 }