summaryrefslogtreecommitdiffstats
path: root/src/services
diff options
context:
space:
mode:
authorJessica <jessica@Absolventas-MacBook-Pro.local>2018-08-09 18:17:25 +0200
committerJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2018-08-28 14:54:09 +0200
commite3c2f46c9bc3f8019042b14c8564b34fee6a1ce5 (patch)
tree01bdac0a8a730474bfca24a63888bdadd0d89a53 /src/services
parent670493bd8a029d8e3b6ab75778cb2fd0cb16378a (diff)
added api.js with axios and worked on getting the matching users and groups based on input
Diffstat (limited to 'src/services')
-rw-r--r--src/services/api.js121
1 files changed, 121 insertions, 0 deletions
diff --git a/src/services/api.js b/src/services/api.js
new file mode 100644
index 00000000..fb77db13
--- /dev/null
+++ b/src/services/api.js
@@ -0,0 +1,121 @@
+/*
+ * @copyright Copyright (c) 2018 John Molakvoæ <skjnldsv@protonmail.com>
+ *
+ * @author John Molakvoæ <skjnldsv@protonmail.com>
+ *
+ * @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/>.
+ *
+ */
+
+import axios from 'axios'
+
+const requestToken = document.getElementsByTagName('head')[0].getAttribute('data-requesttoken')
+const tokenHeaders = { headers: { requesttoken: requestToken } }
+
+const sanitize = function(url) {
+ return url.replace(/\/$/, '') // Remove last url slash
+}
+
+export default {
+
+ /**
+ * This Promise is used to chain a request that require an admin password confirmation
+ * Since chaining Promise have a very precise behavior concerning catch and then,
+ * you'll need to be careful when using it.
+ * e.g
+ * // store
+ * action(context) {
+ * return api.requireAdmin().then((response) => {
+ * return api.get('url')
+ * .then((response) => {API success})
+ * .catch((error) => {API failure});
+ * }).catch((error) => {requireAdmin failure});
+ * }
+ * // vue
+ * this.$store.dispatch('action').then(() => {always executed})
+ *
+ * Since Promise.then().catch().then() will always execute the last then
+ * this.$store.dispatch('action').then will always be executed
+ *
+ * If you want requireAdmin failure to also catch the API request failure
+ * you will need to throw a new error in the api.get.catch()
+ *
+ * e.g
+ * api.requireAdmin().then((response) => {
+ * api.get('url')
+ * .then((response) => {API success})
+ * .catch((error) => {throw error;});
+ * }).catch((error) => {requireAdmin OR API failure});
+ *
+ * @returns {Promise}
+ */
+ requireAdmin() {
+ return new Promise(function(resolve, reject) {
+ // TODO: migrate the OC.dialog to Vue and avoid this mess
+ // wait for password confirmation
+ let passwordTimeout
+ let waitForpassword = function() {
+ if (OC.PasswordConfirmation.requiresPasswordConfirmation()) {
+ passwordTimeout = setTimeout(waitForpassword, 500)
+ return
+ }
+ clearTimeout(passwordTimeout)
+ clearTimeout(promiseTimeout)
+ resolve()
+ }
+
+ // automatically reject after 5s if not resolved
+ let promiseTimeout = setTimeout(() => {
+ clearTimeout(passwordTimeout)
+ // close dialog
+ if (document.getElementsByClassName('oc-dialog-close').length > 0) {
+ document.getElementsByClassName('oc-dialog-close')[0].click()
+ }
+ OC.Notification.showTemporary(t('settings', 'You did not enter the password in time'))
+ reject(new Error('Password request cancelled'))
+ }, 7000)
+
+ // request password
+ OC.PasswordConfirmation.requirePasswordConfirmation()
+ waitForpassword()
+ })
+ },
+ get(url) {
+ return axios.get(sanitize(url), tokenHeaders)
+ .then((response) => Promise.resolve(response))
+ .catch((error) => Promise.reject(error))
+ },
+ post(url, data) {
+ return axios.post(sanitize(url), data, tokenHeaders)
+ .then((response) => Promise.resolve(response))
+ .catch((error) => Promise.reject(error))
+ },
+ patch(url, data) {
+ return axios.patch(sanitize(url), data, tokenHeaders)
+ .then((response) => Promise.resolve(response))
+ .catch((error) => Promise.reject(error))
+ },
+ put(url, data) {
+ return axios.put(sanitize(url), data, tokenHeaders)
+ .then((response) => Promise.resolve(response))
+ .catch((error) => Promise.reject(error))
+ },
+ delete(url, data) {
+ return axios.delete(sanitize(url), { data: data, headers: tokenHeaders.headers })
+ .then((response) => Promise.resolve(response))
+ .catch((error) => Promise.reject(error))
+ }
+}