summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorJulius Härtl <jus@bitgrid.net>2019-06-11 16:08:26 +0200
committerJulius Härtl <jus@bitgrid.net>2019-06-17 16:36:23 +0200
commitdf072471a7739e0bba30bf2d1687d6461354daf1 (patch)
tree0169170e7b5fb4e280c5c34244d9943b84481eb3 /lib
parent2378012ee01c8eab6438d9c9005253c5b21f5e14 (diff)
downloadnextcloud-server-df072471a7739e0bba30bf2d1687d6461354daf1.tar.gz
nextcloud-server-df072471a7739e0bba30bf2d1687d6461354daf1.zip
Add extendedSupport to Subscription
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'lib')
-rw-r--r--lib/private/Support/Subscription/Registry.php12
-rw-r--r--lib/public/Support/Subscription/IRegistry.php7
-rw-r--r--lib/public/Support/Subscription/ISubscription.php7
-rw-r--r--lib/public/Util.php18
4 files changed, 41 insertions, 3 deletions
diff --git a/lib/private/Support/Subscription/Registry.php b/lib/private/Support/Subscription/Registry.php
index 89439cb8142..c731da4f3b7 100644
--- a/lib/private/Support/Subscription/Registry.php
+++ b/lib/private/Support/Subscription/Registry.php
@@ -72,4 +72,16 @@ class Registry implements IRegistry {
}
return false;
}
+
+ /**
+ * Indicates if the subscription has extended support
+ *
+ * @since 17.0.0
+ */
+ public function delegateHasExtendedSupport(): bool {
+ if ($this->subscription instanceof ISubscription && method_exists($this->subscription, 'hasExtendedSupport')) {
+ return $this->subscription->hasExtendedSupport();
+ }
+ return false;
+ }
}
diff --git a/lib/public/Support/Subscription/IRegistry.php b/lib/public/Support/Subscription/IRegistry.php
index 7782f201f28..f13bff597d0 100644
--- a/lib/public/Support/Subscription/IRegistry.php
+++ b/lib/public/Support/Subscription/IRegistry.php
@@ -54,4 +54,11 @@ interface IRegistry {
* @since 17.0.0
*/
public function delegateHasValidSubscription(): bool;
+
+ /**
+ * Indicates if the subscription has extended support
+ *
+ * @since 17.0.0
+ */
+ public function delegateHasExtendedSupport(): bool;
}
diff --git a/lib/public/Support/Subscription/ISubscription.php b/lib/public/Support/Subscription/ISubscription.php
index fc53fe08da3..81333609119 100644
--- a/lib/public/Support/Subscription/ISubscription.php
+++ b/lib/public/Support/Subscription/ISubscription.php
@@ -34,4 +34,11 @@ interface ISubscription {
* @since 17.0.0
*/
public function hasValidSubscription(): bool;
+
+ /**
+ * Indicates if the subscription has extended support
+ *
+ * @since 17.0.0
+ */
+ public function hasExtendedSupport(): bool;
}
diff --git a/lib/public/Util.php b/lib/public/Util.php
index 302eb8d035e..7e9f6b2efbc 100644
--- a/lib/public/Util.php
+++ b/lib/public/Util.php
@@ -89,7 +89,19 @@ class Util {
public static function getVersion() {
return \OC_Util::getVersion();
}
-
+
+ /**
+ * @since 17.0.0
+ */
+ public static function hasExtendedSupport(): bool {
+ try {
+ /** @var \OCP\Support\Subscription\IRegistry */
+ $subscriptionRegistry = \OC::$server->query(\OCP\Support\Subscription\IRegistry::class);
+ return $subscriptionRegistry->delegateHasExtendedSupport();
+ } catch (AppFramework\QueryException $e) {}
+ return \OC::$server->getConfig()->getSystemValueBool('extendedSupport', false);
+ }
+
/**
* Set current update channel
* @param string $channel
@@ -98,7 +110,7 @@ class Util {
public static function setChannel($channel) {
\OC::$server->getConfig()->setSystemValue('updater.release.channel', $channel);
}
-
+
/**
* Get current update channel
* @return string
@@ -501,7 +513,7 @@ class Util {
public static function needUpgrade() {
if (!isset(self::$needUpgradeCache)) {
self::$needUpgradeCache=\OC_Util::needUpgrade(\OC::$server->getSystemConfig());
- }
+ }
return self::$needUpgradeCache;
}