Skip to content

Commit

Permalink
[FirefoxReleaseNotesBridge] Add New Bridge (#3930)
Browse files Browse the repository at this point in the history
* [FirefoxReleaseNotesBridge] Add New Bridge

I'm uncertain about the reasons for the failed checks.

* Update FirefoxReleaseNotesBridge.php
  • Loading branch information
tillcash authored Jan 27, 2024
1 parent c3a9681 commit a15e578
Showing 1 changed file with 47 additions and 0 deletions.
47 changes: 47 additions & 0 deletions bridges/FirefoxReleaseNotesBridge.php
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,
];
}
}

0 comments on commit a15e578

Please sign in to comment.