in app/classes/ReleaseInsights/Nightly.php [13:45]
public function __construct(
public string $pd = URL::ProductDetails->value,
public string $AUS = URL::Balrog->value,
public string $update_status = 'emergency_shutoff/Firefox/nightly',
) {
$this->version = Json::load(
$this->pd . 'firefox_versions.json',
604800
)['FIREFOX_NIGHTLY'];
// @codeCoverageIgnoreStart
// Check that the URL is valid (We are not in an HTTP (useful for unit tests that test a local file)
if (filter_var($this->AUS . $this->update_status, FILTER_VALIDATE_URL)) {
// The JSON file only exists when updates are stopped.
// If there is no file at the URL, it means that automatic updates are enabled.
$this->auto_updates = str_contains(
(string) get_headers($this->AUS . $this->update_status)[0],
'404'
);
}
// @codeCoverageIgnoreEnd
if (defined('TESTING_CONTEXT')) {
$this->auto_updates = false;
}
if ($this->auto_updates === false) {
$msg = Json::load($this->AUS . $this->update_status, 1)['comment'] ?? '';
if ($msg !== '') {
$this->emergency_message = Utils::secureText($msg);
}
}
}