forked from apache/cloudstack
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathrequest.js
More file actions
236 lines (220 loc) · 7.32 KB
/
request.js
File metadata and controls
236 lines (220 loc) · 7.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The ASF licenses this file
// to you under the Apache License, Version 2.0 (the
// "License"); you may not use this file except in compliance
// with the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing,
// software distributed under the License is distributed on an
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
// KIND, either express or implied. See the License for the
// specific language governing permissions and limitations
// under the License.
import axios from 'axios'
import { vueProps } from '@/vue-app'
import router from '@/router'
import { VueAxios } from './axios'
import notification from 'ant-design-vue/es/notification'
import { CURRENT_PROJECT } from '@/store/mutation-types'
import { i18n } from '@/locales'
import store from '@/store'
let source
const service = axios.create({
timeout: 600000
})
const err = (error) => {
const response = error.response
let countNotify = store.getters.countNotify
if (response) {
console.log(response)
if (response.status === 403) {
const data = response.data
countNotify++
store.commit('SET_COUNT_NOTIFY', countNotify)
notification.error({
top: '65px',
message: i18n.global.t('label.forbidden'),
description: data.message,
onClose: () => {
let countNotify = store.getters.countNotify
countNotify > 0 ? countNotify-- : countNotify = 0
store.commit('SET_COUNT_NOTIFY', countNotify)
}
})
}
if (response.status === 401) {
if (response.config && response.config.params && ['forgotPassword', 'listIdps', 'cloudianIsEnabled'].includes(response.config.params.command)) {
return
}
const originalPath = router.currentRoute.value.fullPath
for (const key in response.data) {
if (key.includes('response')) {
if (response.data[key].errortext.includes('not available for user')) {
countNotify++
store.commit('SET_COUNT_NOTIFY', countNotify)
notification.error({
top: '65px',
message: 'Error',
description: response.data[key].errortext + ' ' + i18n.global.t('error.unable.to.proceed'),
duration: 0,
onClose: () => {
let countNotify = store.getters.countNotify
countNotify > 0 ? countNotify-- : countNotify = 0
store.commit('SET_COUNT_NOTIFY', countNotify)
}
})
return
}
}
}
countNotify++
store.commit('SET_COUNT_NOTIFY', countNotify)
if (originalPath === '/verify2FA' || originalPath === '/setup2FA') {
notification.error({
top: '65px',
message: i18n.global.t('label.2FA'),
description: i18n.global.t('message.error.verifying.2fa'),
key: 'http-401',
duration: 0,
onClose: () => {
let countNotify = store.getters.countNotify
countNotify > 0 ? countNotify-- : countNotify = 0
store.commit('SET_COUNT_NOTIFY', countNotify)
}
})
} else {
notification.error({
top: '65px',
message: i18n.global.t('label.unauthorized'),
description: i18n.global.t('message.authorization.failed'),
key: 'http-401',
duration: 0,
onClose: () => {
let countNotify = store.getters.countNotify
countNotify > 0 ? countNotify-- : countNotify = 0
store.commit('SET_COUNT_NOTIFY', countNotify)
}
})
}
store.dispatch('Logout').then(() => {
if (originalPath !== '/user/login') {
router.push({ path: '/user/login', query: { redirect: originalPath } })
}
})
}
if (response.status === 404) {
countNotify++
store.commit('SET_COUNT_NOTIFY', countNotify)
notification.error({
top: '65px',
message: i18n.global.t('label.not.found'),
description: i18n.global.t('message.resource.not.found'),
onClose: () => {
let countNotify = store.getters.countNotify
countNotify > 0 ? countNotify-- : countNotify = 0
store.commit('SET_COUNT_NOTIFY', countNotify)
}
})
router.push({ path: '/exception/404' })
}
}
if (error.isAxiosError && !error.response) {
countNotify++
store.commit('SET_COUNT_NOTIFY', countNotify)
notification.warn({
top: '65px',
message: error.message || i18n.global.t('message.network.error'),
description: i18n.global.t('message.network.error.description'),
key: 'network-error',
onClose: () => {
let countNotify = store.getters.countNotify
countNotify > 0 ? countNotify-- : countNotify = 0
store.commit('SET_COUNT_NOTIFY', countNotify)
}
})
}
return Promise.reject(error)
}
// request interceptor
service.interceptors.request.use(config => {
source = sourceToken.getSource()
config.cancelToken = source.token
handleGetRequestParams(config)
handlePostRequestParams(config)
return config
}, err)
function handleGetRequestParams (config) {
if (config && config.params) {
config.params.response = 'json'
const project = vueProps.$localStorage.get(CURRENT_PROJECT)
if (!config.params.projectid && !config.params.ignoreproject && project && project.id) {
if (config.params.command === 'listTags') {
config.params.projectid = '-1'
} else if (config.params.command !== 'assignVirtualMachine') {
config.params.projectid = project.id
}
}
if (config.params.ignoreproject !== undefined) {
delete config.params.ignoreproject
}
}
}
function handlePostRequestParams (config) {
if (config && config.data && config.data instanceof URLSearchParams) {
const project = vueProps.$localStorage.get(CURRENT_PROJECT)
const command = config.data.get('command')
const hasProjectId = config.data.has('projectid')
const ignoreProject = config.data.has('ignoreproject')
if (!hasProjectId && !ignoreProject && project && project.id) {
if (command === 'listTags') {
config.data.append('projectid', '-1')
} else if (command !== 'assignVirtualMachine') {
config.data.append('projectid', project.id)
}
}
if (config.data.has('ignoreproject')) {
config.data.delete('ignoreproject')
}
}
}
// response interceptor
service.interceptors.response.use((response) => {
return response.data
}, err)
const installer = {
vm: {},
install (app) {
app.use(VueAxios, service)
}
}
const sourceToken = {
init: () => { source = axios.CancelToken.source() },
isCancel: (e) => {
return axios.isCancel(e)
},
checkExistSource: () => {
return source
},
getSource: () => {
if (!source) sourceToken.init()
return source
},
cancel: () => {
if (!source) sourceToken.init()
if (source) {
source.cancel()
source = null
} else {
console.log('Source token failed to be cancelled')
}
}
}
export {
installer as VueAxios,
service as axios,
sourceToken
}