aboutsummaryrefslogtreecommitdiffstats
path: root/core/src/maintenance.js
diff options
context:
space:
mode:
Diffstat (limited to 'core/src/maintenance.js')
-rw-r--r--core/src/maintenance.js32
1 files changed, 32 insertions, 0 deletions
diff --git a/core/src/maintenance.js b/core/src/maintenance.js
new file mode 100644
index 00000000000..e66b14a88f5
--- /dev/null
+++ b/core/src/maintenance.js
@@ -0,0 +1,32 @@
+/**
+ * SPDX-FileCopyrightText: 2019 Nextcloud GmbH and Nextcloud contributors
+ * SPDX-License-Identifier: AGPL-3.0-or-later
+ */
+
+import Axios from '@nextcloud/axios'
+import { getRootUrl } from '@nextcloud/router'
+
+const url = getRootUrl() + '/status.php'
+
+const check = () => {
+ console.info('checking the Nextcloud maintenance status')
+ Axios.get(url)
+ .then(resp => resp.data)
+ .then(status => {
+ if (status.maintenance === false) {
+ console.info('Nextcloud is not in maintenance mode anymore -> reloading')
+
+ window.location.reload()
+ return
+ }
+
+ console.info('Nextcloud is still in maintenance mode')
+
+ // Wait 20sec before the next request
+ setTimeout(check, 20 * 1000)
+ })
+ .catch(console.error.bind(this))
+}
+
+// Off we go!
+check()