-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[FirefoxReleaseNotesBridge] Add New Bridge (#3930)
* [FirefoxReleaseNotesBridge] Add New Bridge I'm uncertain about the reasons for the failed checks. * Update FirefoxReleaseNotesBridge.php
- Loading branch information
Showing
1 changed file
with
47 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
<?php | ||
|
||
class FirefoxReleaseNotesBridge extends BridgeAbstract | ||
{ | ||
const NAME = 'Firefox Release Notes'; | ||
const URI = 'https://www.mozilla.org/en-US/firefox/'; | ||
const DESCRIPTION = 'Retrieve the latest Firefox release notes.'; | ||
const MAINTAINER = 'tillcash'; | ||
const PARAMETERS = [ | ||
[ | ||
'platform' => [ | ||
'name' => 'Platform', | ||
'type' => 'list', | ||
'values' => [ | ||
'Desktop' => '', | ||
'Beta' => 'beta', | ||
'Nightly' => 'nightly', | ||
'Android' => 'android', | ||
'iOS' => 'ios', | ||
] | ||
] | ||
] | ||
]; | ||
|
||
public function getName() | ||
{ | ||
$platform = $this->getKey('platform'); | ||
return sprintf('Firefox %s Release Notes', $platform ?? ''); | ||
} | ||
|
||
public function collectData() | ||
{ | ||
$platform = $this->getKey('platform'); | ||
$url = self::URI . $this->getInput('platform') . '/notes/'; | ||
$dom = getSimpleHTMLDOM($url); | ||
|
||
$version = $dom->find('.c-release-version', 0)->innertext; | ||
|
||
$this->items[] = [ | ||
'content' => $dom->find('.c-release-notes', 0)->innertext, | ||
'timestamp' => $dom->find('.c-release-date', 0)->innertext, | ||
'title' => sprintf('Firefox %s %s Release Note', $platform, $version), | ||
'uri' => $url, | ||
'uid' => $platform . $version, | ||
]; | ||
} | ||
} |