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
|
|
|
*
|
2019-10-02 06:37:26 +02:00
|
|
|
* This file is part of Firefly III (https://github.com/firefly-iii).
|
2018-07-08 07:59:58 +02:00
|
|
|
*
|
2019-10-02 06:37:26 +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
|
|
|
*
|
2019-10-02 06:37:26 +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
|
2019-10-02 06:37:26 +02:00
|
|
|
* GNU Affero General Public License for more details.
|
2018-07-08 07:59:58 +02:00
|
|
|
*
|
2019-10-02 06:37:26 +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;
|
|
|
|
|
2019-10-26 14:42:51 +02:00
|
|
|
use FireflyIII\Services\FireflyIIIOrg\Update\UpdateRequestInterface;
|
2018-07-08 07:59:58 +02:00
|
|
|
use Log;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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
|
|
|
*
|
2019-10-26 14:42:51 +02:00
|
|
|
* @return array
|
2021-05-24 08:50:17 +02:00
|
|
|
* @throws \FireflyIII\Exceptions\FireflyException
|
2018-07-08 07:59:58 +02:00
|
|
|
*/
|
2019-10-26 14:42:51 +02:00
|
|
|
public function getLatestRelease(): array
|
2018-07-08 07:59:58 +02:00
|
|
|
{
|
2018-08-17 21:51:15 +02:00
|
|
|
Log::debug('Now in getLatestRelease()');
|
2019-10-26 14:42:51 +02:00
|
|
|
/** @var UpdateRequestInterface $checker */
|
2020-07-06 06:49:48 +02:00
|
|
|
$checker = app(UpdateRequestInterface::class);
|
|
|
|
$channelConfig = app('fireflyconfig')->get('update_channel', 'stable');
|
|
|
|
$channel = $channelConfig ? $channelConfig->data : 'stable';
|
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
|
|
|
}
|
2018-07-22 20:32:02 +02:00
|
|
|
}
|