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