2016-10-27 18:41:15 +03:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @copyright Copyright (c) 2016 Lukas Reschke <lukas@statuscode.ch>
|
|
|
|
*
|
2019-12-03 21:57:53 +03:00
|
|
|
* @author Arthur Schiwon <blizzz@arthur-schiwon.de>
|
|
|
|
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
|
2020-03-31 11:49:10 +03:00
|
|
|
* @author Georg Ehrke <oc.list@georgehrke.com>
|
2017-11-06 17:56:42 +03:00
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
2020-08-24 15:54:25 +03:00
|
|
|
* @author John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
|
2017-11-06 17:56:42 +03:00
|
|
|
* @author Lukas Reschke <lukas@statuscode.ch>
|
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
|
|
|
*
|
2016-10-27 18:41:15 +03:00
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
2019-12-03 21:57:53 +03:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2016-10-27 18:41:15 +03:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace OC\App\AppStore\Fetcher;
|
|
|
|
|
2016-11-24 16:29:57 +03:00
|
|
|
use OC\App\AppStore\Version\VersionParser;
|
2018-03-29 10:44:38 +03:00
|
|
|
use OC\App\CompareVersion;
|
2017-05-10 10:56:38 +03:00
|
|
|
use OC\Files\AppData\Factory;
|
2016-10-27 18:41:15 +03:00
|
|
|
use OCP\AppFramework\Utility\ITimeFactory;
|
|
|
|
use OCP\Http\Client\IClientService;
|
|
|
|
use OCP\IConfig;
|
2017-05-12 01:46:41 +03:00
|
|
|
use OCP\ILogger;
|
2016-10-27 18:41:15 +03:00
|
|
|
|
|
|
|
class AppFetcher extends Fetcher {
|
2018-03-29 10:44:38 +03:00
|
|
|
|
|
|
|
/** @var CompareVersion */
|
|
|
|
private $compareVersion;
|
|
|
|
|
2019-03-20 14:21:01 +03:00
|
|
|
/** @var bool */
|
|
|
|
private $ignoreMaxVersion;
|
|
|
|
|
2016-10-27 18:41:15 +03:00
|
|
|
/**
|
2017-05-10 10:56:38 +03:00
|
|
|
* @param Factory $appDataFactory
|
2016-10-27 18:41:15 +03:00
|
|
|
* @param IClientService $clientService
|
|
|
|
* @param ITimeFactory $timeFactory
|
2017-05-12 01:46:41 +03:00
|
|
|
* @param IConfig $config
|
2018-03-29 10:44:38 +03:00
|
|
|
* @param CompareVersion $compareVersion
|
2017-05-12 01:46:41 +03:00
|
|
|
* @param ILogger $logger
|
2016-10-27 18:41:15 +03:00
|
|
|
*/
|
2017-05-10 10:56:38 +03:00
|
|
|
public function __construct(Factory $appDataFactory,
|
2016-10-27 18:41:15 +03:00
|
|
|
IClientService $clientService,
|
|
|
|
ITimeFactory $timeFactory,
|
2017-05-12 01:46:41 +03:00
|
|
|
IConfig $config,
|
2018-03-29 10:44:38 +03:00
|
|
|
CompareVersion $compareVersion,
|
2017-05-12 01:46:41 +03:00
|
|
|
ILogger $logger) {
|
2016-10-27 18:41:15 +03:00
|
|
|
parent::__construct(
|
2017-05-10 10:56:38 +03:00
|
|
|
$appDataFactory,
|
2016-10-27 18:41:15 +03:00
|
|
|
$clientService,
|
2016-12-16 00:04:03 +03:00
|
|
|
$timeFactory,
|
2017-05-12 01:46:41 +03:00
|
|
|
$config,
|
|
|
|
$logger
|
2016-10-27 18:41:15 +03:00
|
|
|
);
|
|
|
|
|
|
|
|
$this->fileName = 'apps.json';
|
2020-01-09 19:29:00 +03:00
|
|
|
$this->endpointName = 'apps.json';
|
2018-03-29 10:44:38 +03:00
|
|
|
$this->compareVersion = $compareVersion;
|
2019-03-20 14:21:01 +03:00
|
|
|
$this->ignoreMaxVersion = true;
|
2016-10-27 18:41:15 +03:00
|
|
|
}
|
2016-11-24 16:29:57 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Only returns the latest compatible app release in the releases array
|
|
|
|
*
|
2016-12-22 11:46:10 +03:00
|
|
|
* @param string $ETag
|
|
|
|
* @param string $content
|
2020-04-30 10:43:33 +03:00
|
|
|
* @param bool [$allowUnstable] Allow unstable releases
|
2016-12-22 11:46:10 +03:00
|
|
|
*
|
2016-11-24 16:29:57 +03:00
|
|
|
* @return array
|
|
|
|
*/
|
2020-04-30 10:43:33 +03:00
|
|
|
protected function fetch($ETag, $content, $allowUnstable = false) {
|
2016-12-16 00:04:03 +03:00
|
|
|
/** @var mixed[] $response */
|
2016-12-22 11:46:10 +03:00
|
|
|
$response = parent::fetch($ETag, $content);
|
2016-11-24 16:29:57 +03:00
|
|
|
|
2020-04-30 10:43:33 +03:00
|
|
|
$allowPreReleases = $allowUnstable || $this->getChannel() === 'beta' || $this->getChannel() === 'daily';
|
|
|
|
$allowNightly = $allowUnstable || $this->getChannel() === 'daily';
|
2019-04-08 16:22:27 +03:00
|
|
|
|
2020-04-10 15:19:56 +03:00
|
|
|
foreach ($response['data'] as $dataKey => $app) {
|
2016-11-24 16:29:57 +03:00
|
|
|
$releases = [];
|
|
|
|
|
|
|
|
// Filter all compatible releases
|
2020-04-10 15:19:56 +03:00
|
|
|
foreach ($app['releases'] as $release) {
|
2019-04-08 16:22:27 +03:00
|
|
|
// Exclude all nightly and pre-releases if required
|
|
|
|
if (($allowNightly || $release['isNightly'] === false)
|
|
|
|
&& ($allowPreReleases || strpos($release['version'], '-') === false)) {
|
2016-11-24 16:29:57 +03:00
|
|
|
// Exclude all versions not compatible with the current version
|
2018-04-11 01:05:42 +03:00
|
|
|
try {
|
|
|
|
$versionParser = new VersionParser();
|
|
|
|
$version = $versionParser->getVersion($release['rawPlatformVersionSpec']);
|
|
|
|
$ncVersion = $this->getVersion();
|
|
|
|
$min = $version->getMinimumVersion();
|
2019-03-20 14:21:01 +03:00
|
|
|
$max = $version->getMaximumVersion();
|
2018-04-11 01:05:42 +03:00
|
|
|
$minFulfilled = $this->compareVersion->isCompatible($ncVersion, $min, '>=');
|
2019-03-20 14:21:01 +03:00
|
|
|
$maxFulfilled = $max !== '' &&
|
|
|
|
$this->compareVersion->isCompatible($ncVersion, $max, '<=');
|
|
|
|
if ($minFulfilled && ($this->ignoreMaxVersion || $maxFulfilled)) {
|
2018-04-11 01:05:42 +03:00
|
|
|
$releases[] = $release;
|
|
|
|
}
|
|
|
|
} catch (\InvalidArgumentException $e) {
|
2018-04-25 16:22:28 +03:00
|
|
|
$this->logger->logException($e, ['app' => 'appstoreFetcher', 'level' => ILogger::WARN]);
|
2016-11-24 16:29:57 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-20 14:15:52 +03:00
|
|
|
if (empty($releases)) {
|
|
|
|
// Remove apps that don't have a matching release
|
2019-08-20 15:47:46 +03:00
|
|
|
$response['data'][$dataKey] = [];
|
2019-03-20 14:15:52 +03:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2016-11-24 16:29:57 +03:00
|
|
|
// Get the highest version
|
|
|
|
$versions = [];
|
2020-04-10 15:19:56 +03:00
|
|
|
foreach ($releases as $release) {
|
2016-11-24 16:29:57 +03:00
|
|
|
$versions[] = $release['version'];
|
|
|
|
}
|
|
|
|
usort($versions, 'version_compare');
|
|
|
|
$versions = array_reverse($versions);
|
2020-04-10 15:19:56 +03:00
|
|
|
if (isset($versions[0])) {
|
2016-11-24 16:29:57 +03:00
|
|
|
$highestVersion = $versions[0];
|
|
|
|
foreach ($releases as $release) {
|
|
|
|
if ((string)$release['version'] === (string)$highestVersion) {
|
|
|
|
$response['data'][$dataKey]['releases'] = [$release];
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-20 15:47:46 +03:00
|
|
|
$response['data'] = array_values(array_filter($response['data']));
|
2016-11-24 16:29:57 +03:00
|
|
|
return $response;
|
|
|
|
}
|
2017-05-02 11:08:16 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $version
|
2018-04-10 13:32:56 +03:00
|
|
|
* @param string $fileName
|
2019-03-20 14:21:01 +03:00
|
|
|
* @param bool $ignoreMaxVersion
|
2017-05-02 11:08:16 +03:00
|
|
|
*/
|
2019-03-20 14:21:01 +03:00
|
|
|
public function setVersion(string $version, string $fileName = 'apps.json', bool $ignoreMaxVersion = true) {
|
2017-05-02 11:08:16 +03:00
|
|
|
parent::setVersion($version);
|
2018-02-28 13:31:33 +03:00
|
|
|
$this->fileName = $fileName;
|
2019-03-20 14:21:01 +03:00
|
|
|
$this->ignoreMaxVersion = $ignoreMaxVersion;
|
2017-05-02 11:08:16 +03:00
|
|
|
}
|
2016-10-27 18:41:15 +03:00
|
|
|
}
|