Files
firefly-iii/app/Helpers/Update/UpdateTrait.php

50 lines
1.6 KiB
PHP
Raw Normal View History

2018-07-08 07:59:58 +02:00
<?php
/**
* UpdateTrait.php
2020-01-28 08:46:01 +01:00
* Copyright (c) 2019 james@firefly-iii.org
2018-07-08 07:59:58 +02:00
*
* This file is part of Firefly III (https://github.com/firefly-iii).
2018-07-08 07:59:58 +02:00
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
2018-07-08 07:59:58 +02:00
*
* This program is distributed in the hope that it will be useful,
2018-07-08 07:59:58 +02:00
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
2018-07-08 07:59:58 +02:00
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
2018-07-08 07:59:58 +02:00
*/
declare(strict_types=1);
namespace FireflyIII\Helpers\Update;
use FireflyIII\Services\FireflyIIIOrg\Update\UpdateRequestInterface;
2018-07-08 07:59:58 +02:00
/**
* Trait UpdateTrait
*/
trait UpdateTrait
{
/**
2020-02-02 10:39:37 +01:00
* Returns an array with info on the next release, if any.
* 'message' => 'A new version is available.
* 'level' => 'info' / 'success' / 'error'
2018-07-08 07:59:58 +02:00
*/
public function getLatestRelease(): array
2018-07-08 07:59:58 +02:00
{
2023-10-29 06:33:43 +01:00
app('log')->debug('Now in getLatestRelease()');
2023-12-20 19:35:52 +01:00
/** @var UpdateRequestInterface $checker */
$checker = app(UpdateRequestInterface::class);
$channelConfig = app('fireflyconfig')->get('update_channel', 'stable');
2023-11-05 09:40:45 +01:00
$channel = (string)$channelConfig->data;
2019-02-10 07:59:11 +01:00
2020-02-02 10:39:37 +01:00
return $checker->getUpdateInformation($channel);
2018-07-08 07:59:58 +02:00
}
}