[MCR] Introduce SlotRoleHandler and SlotRoleRegistry
[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 $wikiId;
58
59 /**
60 * @param ILoadBalancer $loadBalancer
61 * @param SlotRoleRegistry $roleRegistry
62 * @param bool|string $wikiId
63 */
64 public function __construct(
65 ILoadBalancer $loadBalancer,
66 SlotRoleRegistry $roleRegistry,
67 $wikiId = false
68 ) {
69 $this->loadBalancer = $loadBalancer;
70 $this->roleRegistery = $roleRegistry;
71 $this->wikiId = $wikiId;
72
73 $this->saveParseLogger = new NullLogger();
74 }
75
76 /**
77 * @param LoggerInterface $saveParseLogger
78 */
79 public function setLogger( LoggerInterface $saveParseLogger ) {
80 $this->saveParseLogger = $saveParseLogger;
81 }
82
83 /**
84 * @param RevisionRecord $rev
85 * @param ParserOptions|null $options
86 * @param User|null $forUser User for privileged access. Default is unprivileged (public)
87 * access, unless the 'audience' hint is set to something else RevisionRecord::RAW.
88 * @param array $hints Hints given as an associative array. Known keys:
89 * - 'use-master' Use master when rendering for the parser cache during save.
90 * Default is to use a replica.
91 * - 'audience' the audience to use for content access. Default is
92 * RevisionRecord::FOR_PUBLIC if $forUser is not set, RevisionRecord::FOR_THIS_USER
93 * if $forUser is set. Can be set to RevisionRecord::RAW to disable audience checks.
94 *
95 * @return RenderedRevision|null The rendered revision, or null if the audience checks fails.
96 */
97 public function getRenderedRevision(
98 RevisionRecord $rev,
99 ParserOptions $options = null,
100 User $forUser = null,
101 array $hints = []
102 ) {
103 if ( $rev->getWikiId() !== $this->wikiId ) {
104 throw new InvalidArgumentException( 'Mismatching wiki ID ' . $rev->getWikiId() );
105 }
106
107 $audience = $hints['audience']
108 ?? ( $forUser ? RevisionRecord::FOR_THIS_USER : RevisionRecord::FOR_PUBLIC );
109
110 if ( !$rev->audienceCan( RevisionRecord::DELETED_TEXT, $audience, $forUser ) ) {
111 // Returning null here is awkward, but consist with the signature of
112 // Revision::getContent() and RevisionRecord::getContent().
113 return null;
114 }
115
116 if ( !$options ) {
117 $options = ParserOptions::newCanonical( $forUser ?: 'canonical' );
118 }
119
120 $useMaster = $hints['use-master'] ?? false;
121
122 $dbIndex = $useMaster
123 ? DB_MASTER // use latest values
124 : DB_REPLICA; // T154554
125
126 $options->setSpeculativeRevIdCallback( function () use ( $dbIndex ) {
127 return $this->getSpeculativeRevId( $dbIndex );
128 } );
129
130 $title = Title::newFromLinkTarget( $rev->getPageAsLinkTarget() );
131
132 $renderedRevision = new RenderedRevision(
133 $title,
134 $rev,
135 $options,
136 function ( RenderedRevision $rrev, array $hints ) {
137 return $this->combineSlotOutput( $rrev, $hints );
138 },
139 $audience,
140 $forUser
141 );
142
143 $renderedRevision->setSaveParseLogger( $this->saveParseLogger );
144
145 return $renderedRevision;
146 }
147
148 private function getSpeculativeRevId( $dbIndex ) {
149 // Use a fresh master connection in order to see the latest data, by avoiding
150 // stale data from REPEATABLE-READ snapshots.
151 // HACK: But don't use a fresh connection in unit tests, since it would not have
152 // the fake tables. This should be handled by the LoadBalancer!
153 $flags = defined( 'MW_PHPUNIT_TEST' ) || $dbIndex === DB_REPLICA
154 ? 0 : ILoadBalancer::CONN_TRX_AUTOCOMMIT;
155
156 $db = $this->loadBalancer->getConnectionRef( $dbIndex, [], $this->wikiId, $flags );
157
158 return 1 + (int)$db->selectField(
159 'revision',
160 'MAX(rev_id)',
161 [],
162 __METHOD__
163 );
164 }
165
166 /**
167 * This implements the layout for combining the output of multiple slots.
168 *
169 * @todo Use placement hints from SlotRoleHandlers instead of hard-coding the layout.
170 *
171 * @param RenderedRevision $rrev
172 * @param array $hints see RenderedRevision::getRevisionParserOutput()
173 *
174 * @return ParserOutput
175 */
176 private function combineSlotOutput( RenderedRevision $rrev, array $hints = [] ) {
177 $revision = $rrev->getRevision();
178 $slots = $revision->getSlots()->getSlots();
179
180 $withHtml = $hints['generate-html'] ?? true;
181
182 // short circuit if there is only the main slot
183 if ( array_keys( $slots ) === [ SlotRecord::MAIN ] ) {
184 return $rrev->getSlotParserOutput( SlotRecord::MAIN );
185 }
186
187 // move main slot to front
188 if ( isset( $slots[SlotRecord::MAIN] ) ) {
189 $slots = [ SlotRecord::MAIN => $slots[SlotRecord::MAIN] ] + $slots;
190 }
191
192 $combinedOutput = new ParserOutput( null );
193 $slotOutput = [];
194
195 $options = $rrev->getOptions();
196 $options->registerWatcher( [ $combinedOutput, 'recordOption' ] );
197
198 foreach ( $slots as $role => $slot ) {
199 $out = $rrev->getSlotParserOutput( $role, $hints );
200 $slotOutput[$role] = $out;
201
202 // XXX: should the SlotRoleHandler be able to intervene here?
203 $combinedOutput->mergeInternalMetaDataFrom( $out, $role );
204 $combinedOutput->mergeTrackingMetaDataFrom( $out );
205 }
206
207 if ( $withHtml ) {
208 $html = '';
209 $first = true;
210 /** @var ParserOutput $out */
211 foreach ( $slotOutput as $role => $out ) {
212 $roleHandler = $this->roleRegistery->getRoleHandler( $role );
213
214 // TODO: put more fancy layout logic here, see T200915.
215 $layout = $roleHandler->getOutputLayoutHints();
216 $display = $layout['display'] ?? 'section';
217
218 if ( $display === 'none' ) {
219 continue;
220 }
221
222 if ( $first ) {
223 // skip header for the first slot
224 $first = false;
225 } else {
226 // NOTE: this placeholder is hydrated by ParserOutput::getText().
227 $headText = Html::element( 'mw:slotheader', [], $role );
228 $html .= Html::rawElement( 'h1', [ 'class' => 'mw-slot-header' ], $headText );
229 }
230
231 // XXX: do we want to put a wrapper div around the output?
232 // Do we want to let $roleHandler do that?
233 $html .= $out->getRawText();
234 $combinedOutput->mergeHtmlMetaDataFrom( $out );
235 }
236
237 $combinedOutput->setText( $html );
238 }
239
240 $options->registerWatcher( null );
241 return $combinedOutput;
242 }
243
244 }