| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128 |
- /*
- Copyright (C) 2017 Cloudbase Solutions SRL
- 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/>.
- */
- // @flow
- import axios from 'axios'
- import type { AxiosXHRConfig, $AxiosXHR } from 'axios'
- import NotificationStore from '../stores/NotificationStore'
- type Cancelable = {
- requestId: string,
- cancel: () => void,
- }
- type RequestOptions = {|
- url: string,
- method?: string,
- cancelId?: string,
- headers?: {[string]: string},
- data?: any,
- responseType?: 'arraybuffer' | 'blob' | 'document' | 'json' | 'text' | 'stream',
- |}
- let cancelables: Cancelable[] = []
- const CancelToken = axios.CancelToken
- const addCancelable = (cancelable: Cancelable) => {
- cancelables.unshift(cancelable)
- if (cancelables.length > 100) {
- cancelables.pop()
- }
- }
- class ApiCaller {
- constructor() {
- axios.defaults.headers.common['Content-Type'] = 'application/json'
- }
- cancelRequests(cancelRequestId: string) {
- const filteredCancelables = cancelables.filter(r => r.requestId === cancelRequestId)
- filteredCancelables.forEach(c => {
- c.cancel()
- })
- cancelables = cancelables.filter(r => r.requestId !== cancelRequestId)
- }
- get(url: string): Promise<$AxiosXHR<any>> {
- return this.send({ url })
- }
- send(options: RequestOptions): Promise<$AxiosXHR<any>> {
- return new Promise((resolve, reject) => {
- const axiosOptions: AxiosXHRConfig<any> = {
- url: options.url,
- method: options.method || 'GET',
- headers: options.headers || {},
- data: options.data || null,
- responseType: options.responseType || 'json',
- }
- if (options.cancelId) {
- let cancel = () => {}
- axiosOptions.cancelToken = new CancelToken(c => {
- cancel = c
- })
- addCancelable({ requestId: options.cancelId, cancel })
- }
- console.log(`%cSending ${axiosOptions.method || 'GET'} Request to ${axiosOptions.url}`, 'color: #F5A623')
- axios(axiosOptions).then((response) => {
- console.log(`%cResponse ${axiosOptions.url}`, 'color: #0044CA', response.data)
- resolve(response)
- }).catch(error => {
- const loginUrl = '#/'
- if (error.response) {
- // The request was made and the server responded with a status code
- // that falls out of the range of 2xx
- if (error.response.status !== 401 || window.location.hash !== loginUrl) {
- NotificationStore.notify(error.response.data.error.message, 'error')
- }
- if (error.response.status === 401 && window.location.hash !== loginUrl) {
- window.location.href = '/'
- }
- console.log(`%cError Response: ${axiosOptions.url}`, 'color: #D0021B', error.response)
- reject(error.response)
- } else if (error.request) {
- // The request was made but no response was received
- // `error.request` is an instance of XMLHttpRequest
- NotificationStore.notify('Request failed, there might be a problem with the connection to the server.', 'error')
- console.log(`%cError No Response: ${axiosOptions.url}`, 'color: #D0021B')
- reject({})
- } else {
- reject({})
- if (error.constructor.name === 'Cancel') {
- return
- }
- // Something happened in setting up the request that triggered an Error
- NotificationStore.notify('Request failed, there might be a problem with the connection to the server.', 'error')
- console.log(`%cError Something happened in setting up the request: ${axiosOptions.url}`, 'color: #D0021B')
- }
- })
- })
- }
- setDefaultHeader(name: string, value: ?string) {
- axios.defaults.headers.common[name] = value
- }
- }
- export default new ApiCaller()
|