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

57 lines
1.8 KiB
PHP
Raw Normal View History

2018-07-08 00:59:58 -05:00
<?php
/**
* UpdateTrait.php
2020-01-28 01:46:01 -06:00
* Copyright (c) 2019 james@firefly-iii.org
2018-07-08 00:59:58 -05:00
*
* This file is part of Firefly III (https://github.com/firefly-iii).
2018-07-08 00:59:58 -05: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 00:59:58 -05:00
*
* This program is distributed in the hope that it will be useful,
2018-07-08 00:59:58 -05: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 00:59:58 -05: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 00:59:58 -05:00
*/
declare(strict_types=1);
namespace FireflyIII\Helpers\Update;
2021-09-18 03:20:19 -05:00
use FireflyIII\Exceptions\FireflyException;
use FireflyIII\Services\FireflyIIIOrg\Update\UpdateRequestInterface;
2018-07-08 00:59:58 -05:00
use Log;
/**
* Trait UpdateTrait
*
*/
trait UpdateTrait
{
/**
2020-02-02 03:39:37 -06: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 00:59:58 -05:00
*
* @return array
2021-09-18 03:20:19 -05:00
* @throws FireflyException
2022-03-29 08:10:05 -05:00
* @throws \Psr\Container\ContainerExceptionInterface
* @throws \Psr\Container\NotFoundExceptionInterface
2018-07-08 00:59:58 -05:00
*/
public function getLatestRelease(): array
2018-07-08 00:59:58 -05:00
{
Log::debug('Now in getLatestRelease()');
/** @var UpdateRequestInterface $checker */
$checker = app(UpdateRequestInterface::class);
$channelConfig = app('fireflyconfig')->get('update_channel', 'stable');
$channel = $channelConfig ? $channelConfig->data : 'stable';
2019-02-10 00:59:11 -06:00
2020-02-02 03:39:37 -06:00
return $checker->getUpdateInformation($channel);
2018-07-08 00:59:58 -05:00
}
}