2016-10-27 18:41:15 +03:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @copyright Copyright (c) 2016 Lukas Reschke <lukas@statuscode.ch>
|
|
|
|
*
|
|
|
|
* @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
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace OC\App\AppStore\Fetcher;
|
|
|
|
|
2016-11-24 16:29:57 +03:00
|
|
|
use OC\App\AppStore\Version\VersionParser;
|
2016-10-27 18:41:15 +03:00
|
|
|
use OCP\AppFramework\Utility\ITimeFactory;
|
|
|
|
use OCP\Files\IAppData;
|
|
|
|
use OCP\Http\Client\IClientService;
|
|
|
|
use OCP\IConfig;
|
|
|
|
|
|
|
|
class AppFetcher extends Fetcher {
|
|
|
|
/**
|
|
|
|
* @param IAppData $appData
|
|
|
|
* @param IClientService $clientService
|
|
|
|
* @param ITimeFactory $timeFactory
|
|
|
|
* @param IConfig $config;
|
|
|
|
*/
|
|
|
|
public function __construct(IAppData $appData,
|
|
|
|
IClientService $clientService,
|
|
|
|
ITimeFactory $timeFactory,
|
|
|
|
IConfig $config) {
|
|
|
|
parent::__construct(
|
|
|
|
$appData,
|
|
|
|
$clientService,
|
2016-12-16 00:04:03 +03:00
|
|
|
$timeFactory,
|
|
|
|
$config
|
2016-10-27 18:41:15 +03:00
|
|
|
);
|
|
|
|
|
|
|
|
$this->fileName = 'apps.json';
|
2016-10-28 11:13:02 +03:00
|
|
|
|
2016-12-14 12:45:27 +03:00
|
|
|
$versionArray = explode('.', $this->config->getSystemValue('version'));
|
2016-10-27 18:41:15 +03:00
|
|
|
$this->endpointUrl = sprintf(
|
2016-10-28 11:37:08 +03:00
|
|
|
'https://apps.nextcloud.com/api/v1/platform/%d.%d.%d/apps.json',
|
2016-10-28 11:13:02 +03:00
|
|
|
$versionArray[0],
|
|
|
|
$versionArray[1],
|
|
|
|
$versionArray[2]
|
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
|
|
|
|
*
|
2016-11-24 16:29:57 +03:00
|
|
|
* @return array
|
|
|
|
*/
|
2016-12-22 11:46:10 +03:00
|
|
|
protected function fetch($ETag, $content) {
|
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
|
|
|
|
|
|
|
$ncVersion = $this->config->getSystemValue('version');
|
|
|
|
$ncMajorVersion = explode('.', $ncVersion)[0];
|
|
|
|
foreach($response['data'] as $dataKey => $app) {
|
|
|
|
$releases = [];
|
|
|
|
|
|
|
|
// Filter all compatible releases
|
|
|
|
foreach($app['releases'] as $release) {
|
2016-11-25 13:32:46 +03:00
|
|
|
// Exclude all nightly and pre-releases
|
|
|
|
if($release['isNightly'] === false
|
|
|
|
&& strpos($release['version'], '-') === false) {
|
2016-11-24 16:29:57 +03:00
|
|
|
// Exclude all versions not compatible with the current version
|
|
|
|
$versionParser = new VersionParser();
|
|
|
|
$version = $versionParser->getVersion($release['rawPlatformVersionSpec']);
|
2016-11-25 13:32:46 +03:00
|
|
|
if (
|
2016-11-24 16:29:57 +03:00
|
|
|
// Major version is bigger or equals to the minimum version of the app
|
|
|
|
version_compare($ncMajorVersion, $version->getMinimumVersion(), '>=')
|
|
|
|
// Major version is smaller or equals to the maximum version of the app
|
2016-11-25 13:32:46 +03:00
|
|
|
&& version_compare($ncMajorVersion, $version->getMaximumVersion(), '<=')
|
|
|
|
) {
|
2016-11-24 16:29:57 +03:00
|
|
|
$releases[] = $release;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get the highest version
|
|
|
|
$versions = [];
|
|
|
|
foreach($releases as $release) {
|
|
|
|
$versions[] = $release['version'];
|
|
|
|
}
|
|
|
|
usort($versions, 'version_compare');
|
|
|
|
$versions = array_reverse($versions);
|
|
|
|
$compatible = false;
|
|
|
|
if(isset($versions[0])) {
|
|
|
|
$highestVersion = $versions[0];
|
|
|
|
foreach ($releases as $release) {
|
|
|
|
if ((string)$release['version'] === (string)$highestVersion) {
|
|
|
|
$compatible = true;
|
|
|
|
$response['data'][$dataKey]['releases'] = [$release];
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(!$compatible) {
|
|
|
|
unset($response['data'][$dataKey]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-25 13:32:46 +03:00
|
|
|
$response['data'] = array_values($response['data']);
|
2016-11-24 16:29:57 +03:00
|
|
|
return $response;
|
|
|
|
}
|
2016-10-27 18:41:15 +03:00
|
|
|
}
|