summaryrefslogtreecommitdiffstats
path: root/lib/private/App/AppStore/Fetcher
diff options
context:
space:
mode:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2018-03-29 09:44:38 +0200
committerRoeland Jago Douma <roeland@famdouma.nl>2018-04-11 10:08:23 +0200
commitac939e8fd4d6fd248a5ebf63a5e86edb6dcdaf3b (patch)
treee96bd35b06f85a1b9aa97d9a11f530b87bee2ec7 /lib/private/App/AppStore/Fetcher
parentecc3bc64aab8c8e490492145a1c819c0e643638e (diff)
downloadnextcloud-server-ac939e8fd4d6fd248a5ebf63a5e86edb6dcdaf3b.tar.gz
nextcloud-server-ac939e8fd4d6fd248a5ebf63a5e86edb6dcdaf3b.zip
Fix version comparison with minor and patch level requirements
If an app requires a specific minor or path level server version, the version_compare prevented the installation as only the major version had been compared and that checks obviously returns `false`. Now the full version is used for comparison, making it possible to release apps for a specific minor or patch level version of Nextcloud. Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'lib/private/App/AppStore/Fetcher')
-rw-r--r--lib/private/App/AppStore/Fetcher/AppFetcher.php23
1 files changed, 15 insertions, 8 deletions
diff --git a/lib/private/App/AppStore/Fetcher/AppFetcher.php b/lib/private/App/AppStore/Fetcher/AppFetcher.php
index 6c6fa68429f..89bc7eb2c4f 100644
--- a/lib/private/App/AppStore/Fetcher/AppFetcher.php
+++ b/lib/private/App/AppStore/Fetcher/AppFetcher.php
@@ -27,6 +27,7 @@
namespace OC\App\AppStore\Fetcher;
use OC\App\AppStore\Version\VersionParser;
+use OC\App\CompareVersion;
use OC\Files\AppData\Factory;
use OCP\AppFramework\Utility\ITimeFactory;
use OCP\Http\Client\IClientService;
@@ -34,17 +35,23 @@ use OCP\IConfig;
use OCP\ILogger;
class AppFetcher extends Fetcher {
+
+ /** @var CompareVersion */
+ private $compareVersion;
+
/**
* @param Factory $appDataFactory
* @param IClientService $clientService
* @param ITimeFactory $timeFactory
* @param IConfig $config
+ * @param CompareVersion $compareVersion
* @param ILogger $logger
*/
public function __construct(Factory $appDataFactory,
IClientService $clientService,
ITimeFactory $timeFactory,
IConfig $config,
+ CompareVersion $compareVersion,
ILogger $logger) {
parent::__construct(
$appDataFactory,
@@ -56,6 +63,7 @@ class AppFetcher extends Fetcher {
$this->fileName = 'apps.json';
$this->setEndpoint();
+ $this->compareVersion = $compareVersion;
}
/**
@@ -70,8 +78,6 @@ class AppFetcher extends Fetcher {
/** @var mixed[] $response */
$response = parent::fetch($ETag, $content);
- $ncVersion = $this->getVersion();
- $ncMajorVersion = explode('.', $ncVersion)[0];
foreach($response['data'] as $dataKey => $app) {
$releases = [];
@@ -83,12 +89,13 @@ class AppFetcher extends Fetcher {
// Exclude all versions not compatible with the current version
$versionParser = new VersionParser();
$version = $versionParser->getVersion($release['rawPlatformVersionSpec']);
- if (
- // 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
- && version_compare($ncMajorVersion, $version->getMaximumVersion(), '<=')
- ) {
+ $ncVersion = $this->getVersion();
+ $min = $version->getMinimumVersion();
+ $max = $version->getMaximumVersion();
+ $minFulfilled = $this->compareVersion->isCompatible($ncVersion, $min, '>=');
+ $maxFulfilled = $max !== '' &&
+ $this->compareVersion->isCompatible($ncVersion, $max, '<=');
+ if ($minFulfilled && $maxFulfilled) {
$releases[] = $release;
}
}