2019-04-13 22:56:06 +00:00
|
|
|
<?php
|
2022-01-06 18:44:56 +00:00
|
|
|
|
2019-04-13 22:56:06 +00:00
|
|
|
/**
|
2024-02-09 01:02:16 +00:00
|
|
|
* Copyright © 2004 Brooke Vibber <bvibber@wikimedia.org>
|
2019-04-13 22:56:06 +00:00
|
|
|
* https://www.mediawiki.org/
|
|
|
|
|
*
|
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
|
* (at your option) any later version.
|
|
|
|
|
*
|
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
|
* http://www.gnu.org/copyleft/gpl.html
|
|
|
|
|
*
|
|
|
|
|
* @file
|
|
|
|
|
*/
|
|
|
|
|
|
2022-10-17 11:10:57 +00:00
|
|
|
namespace MediaWiki\Feed;
|
|
|
|
|
|
2022-04-13 15:28:26 +00:00
|
|
|
use MediaWiki\MainConfigNames;
|
2022-01-06 18:44:56 +00:00
|
|
|
use MediaWiki\MediaWikiServices;
|
|
|
|
|
|
2019-04-13 22:56:06 +00:00
|
|
|
/**
|
|
|
|
|
* Generate an Atom feed.
|
|
|
|
|
*
|
|
|
|
|
* @ingroup Feed
|
|
|
|
|
*/
|
|
|
|
|
class AtomFeed extends ChannelFeed {
|
|
|
|
|
/**
|
|
|
|
|
* Format a date given timestamp, if one is given.
|
|
|
|
|
*
|
|
|
|
|
* @param string|int|null $timestamp
|
|
|
|
|
* @return string|null
|
|
|
|
|
*/
|
2020-02-29 20:07:39 +00:00
|
|
|
private function formatTime( $timestamp ) {
|
2019-04-13 22:56:06 +00:00
|
|
|
if ( $timestamp ) {
|
|
|
|
|
// need to use RFC 822 time format at least for rss2.0
|
2021-10-16 21:47:01 +00:00
|
|
|
return gmdate( 'Y-m-d\TH:i:s', (int)wfTimestamp( TS_UNIX, $timestamp ) );
|
2019-04-13 22:56:06 +00:00
|
|
|
}
|
2020-05-08 21:30:41 +00:00
|
|
|
return null;
|
2019-04-13 22:56:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Outputs a basic header for Atom 1.0 feeds.
|
|
|
|
|
*/
|
2020-02-29 20:07:39 +00:00
|
|
|
public function outHeader() {
|
2019-04-13 22:56:06 +00:00
|
|
|
$this->outXmlHeader();
|
|
|
|
|
// Manually escaping rather than letting Mustache do it because Mustache
|
|
|
|
|
// uses htmlentities, which does not work with XML
|
|
|
|
|
$templateParams = [
|
|
|
|
|
'language' => $this->xmlEncode( $this->getLanguage() ),
|
2023-12-14 21:07:33 +00:00
|
|
|
// Atom 1.0 requires a unique, opaque IRI as a unique identifier
|
|
|
|
|
// for every feed we create. For now just use the URL, but who
|
|
|
|
|
// can tell if that's right? If we put options on the feed, do we
|
|
|
|
|
// have to change the id? Maybe? Maybe not.
|
|
|
|
|
'feedID' => $this->getSelfUrl(),
|
2019-04-13 22:56:06 +00:00
|
|
|
'title' => $this->getTitle(),
|
2024-09-07 17:31:27 +00:00
|
|
|
'url' => $this->xmlEncode(
|
|
|
|
|
$this->urlUtils->expand( $this->getUrlUnescaped(), PROTO_CURRENT ) ?? ''
|
|
|
|
|
),
|
2019-04-13 22:56:06 +00:00
|
|
|
'selfUrl' => $this->getSelfUrl(),
|
|
|
|
|
'timestamp' => $this->xmlEncode( $this->formatTime( wfTimestampNow() ) ),
|
|
|
|
|
'description' => $this->getDescription(),
|
2020-02-25 01:33:18 +00:00
|
|
|
'version' => $this->xmlEncode( MW_VERSION ),
|
2019-04-13 22:56:06 +00:00
|
|
|
];
|
|
|
|
|
print $this->templateParser->processTemplate( 'AtomHeader', $templateParams );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Atom 1.0 requests a self-reference to the feed.
|
2024-08-28 14:49:33 +00:00
|
|
|
*
|
2019-04-13 22:56:06 +00:00
|
|
|
* @return string
|
|
|
|
|
*/
|
|
|
|
|
private function getSelfUrl() {
|
|
|
|
|
global $wgRequest;
|
|
|
|
|
return htmlspecialchars( $wgRequest->getFullRequestURL() );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Output a given item.
|
2024-08-28 14:49:33 +00:00
|
|
|
*
|
2019-04-13 22:56:06 +00:00
|
|
|
* @param FeedItem $item
|
|
|
|
|
*/
|
2020-02-29 20:07:39 +00:00
|
|
|
public function outItem( $item ) {
|
2022-04-13 15:28:26 +00:00
|
|
|
$mimeType = MediaWikiServices::getInstance()->getMainConfig()
|
|
|
|
|
->get( MainConfigNames::MimeType );
|
2019-04-13 22:56:06 +00:00
|
|
|
// Manually escaping rather than letting Mustache do it because Mustache
|
|
|
|
|
// uses htmlentities, which does not work with XML
|
|
|
|
|
$templateParams = [
|
|
|
|
|
"uniqueID" => $item->getUniqueID(),
|
|
|
|
|
"title" => $item->getTitle(),
|
2022-01-06 18:44:56 +00:00
|
|
|
"mimeType" => $this->xmlEncode( $mimeType ),
|
2024-09-07 17:31:27 +00:00
|
|
|
"url" => $this->xmlEncode(
|
|
|
|
|
$this->urlUtils->expand( $item->getUrlUnescaped(), PROTO_CURRENT ) ?? ''
|
|
|
|
|
),
|
feeds: Fix str_replace() deprecation warnings on PHP 8
Why:
Both AtomFeed::formatTime() and RSSFeed::formatTime() short-circuit with
null if the input is falsy. This caused deprecation warnings down the
line, as the return value was later fed into str_replace(), which raises
a deprecation warning on PHP 8 if it gets null.
It also caused unexpected output on all PHP versions: the Mustache
templates for both Atom and RSS conditionally emit the date elements
(<updated> in Atom, <pubDate> in RSS), but this conditional output is
skipped only if the variable is null, not when it’s an empty string –
which is exactly what the XML encoding returned on all PHP versions.
What:
Introduce a new method, xmlEncodeNullable(), which properly handles null
values, and returns them as-is, without trying to encode them. This:
- Avoids the deprecation warnings on PHP 8, since str_replace() is no
longer called.
- Makes the conditional output work: the <updated>/<pubDate> elements
are no longer output if no date is available.
- This makes the RSS output spec-compliant, as no garbage is output
anymore. The RSS <pubDate> is optional [1].
- It doesn’t make the Atom output entirely spec-compliant, as Atom
requires <updated> to be present [2], but the removal of garbage
(it was a single letter Z) should still increase compatibility.
[1] https://www.rssboard.org/rss-specification#hrelementsOfLtitemgt
[2] https://validator.w3.org/feed/docs/atom.html#requiredEntryElements
Bug: T385332
Change-Id: Iafd89c0d61baecd7c68f62b2a0764cc78cf25069
(cherry picked from commit 60c57b0fd5303e9627b7684ebac4cd369c1fe7a6)
2025-02-07 21:18:24 +00:00
|
|
|
"date" => $this->xmlEncodeNullable( $this->formatTime( $item->getDate() ) ),
|
2019-04-13 22:56:06 +00:00
|
|
|
"description" => $item->getDescription(),
|
|
|
|
|
"author" => $item->getAuthor()
|
|
|
|
|
];
|
|
|
|
|
print $this->templateParser->processTemplate( 'AtomItem', $templateParams );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Outputs the footer for Atom 1.0 feed (basically '\</feed\>').
|
|
|
|
|
*/
|
2020-02-29 20:07:39 +00:00
|
|
|
public function outFooter() {
|
2019-04-13 22:56:06 +00:00
|
|
|
print "</feed>";
|
|
|
|
|
}
|
|
|
|
|
}
|
2022-10-17 11:10:57 +00:00
|
|
|
|
2024-03-07 21:56:58 +00:00
|
|
|
/** @deprecated class alias since 1.40 */
|
2022-10-17 11:10:57 +00:00
|
|
|
class_alias( AtomFeed::class, 'AtomFeed' );
|