mirror of
https://github.com/koel/koel
synced 2024-11-15 08:57:16 +00:00
74 lines
2.2 KiB
TypeScript
74 lines
2.2 KiB
TypeScript
import Axios, { AxiosInstance, Method } from 'axios'
|
|
import NProgress from 'nprogress'
|
|
|
|
import { eventBus } from '@/utils'
|
|
import { ls, auth } from '@/services'
|
|
|
|
export const http = {
|
|
client: null as AxiosInstance | null,
|
|
|
|
setProgressBar: () => NProgress.start(),
|
|
hideProgressBar: () => NProgress.done(true),
|
|
|
|
request<T> (method: Method, url: string, data: object = {}, onUploadProgress?: any): Promise<{ data: T }> {
|
|
return this.client?.request({
|
|
url,
|
|
data,
|
|
method,
|
|
onUploadProgress
|
|
}) as Promise<{ data: T }>
|
|
},
|
|
|
|
async get<T> (url: string): Promise<T> {
|
|
return (await this.request<T>('get', url)).data
|
|
},
|
|
|
|
async post<T> (url: string, data: object, onUploadProgress?: any): Promise<T> {
|
|
return (await this.request<T>('post', url, data, onUploadProgress)).data
|
|
},
|
|
|
|
async put<T> (url: string, data: object): Promise<T> {
|
|
return (await this.request<T>('put', url, data)).data
|
|
},
|
|
|
|
async delete<T> (url: string, data: object = {}): Promise<T> {
|
|
return (await this.request<T>('delete', url, data)).data
|
|
},
|
|
|
|
init (): void {
|
|
this.client = Axios.create({
|
|
baseURL: KOEL_ENV === 'app' ? `${ls.get('koelHost')}api` : `${window.BASE_URL}api`
|
|
})
|
|
|
|
// Intercept the request to make sure the token is injected into the header.
|
|
this.client.interceptors.request.use(config => {
|
|
this.setProgressBar()
|
|
config.headers.Authorization = `Bearer ${auth.getToken()}`
|
|
return config
|
|
})
|
|
|
|
// Intercept the response and…
|
|
this.client.interceptors.response.use(response => {
|
|
this.hideProgressBar()
|
|
|
|
// …get the token from the header or response data if exists, and save it.
|
|
const token = response.headers.Authorization || response.data.token
|
|
token && auth.setToken(token)
|
|
|
|
return response
|
|
}, error => {
|
|
this.hideProgressBar()
|
|
|
|
// Also, if we receive a Bad Request / Unauthorized error
|
|
if (error.response.status === 400 || error.response.status === 401) {
|
|
// and we're not trying to log in
|
|
if (!(error.config.method === 'post' && /\/api\/me\/?$/.test(error.config.url))) {
|
|
// the token must have expired. Log out.
|
|
eventBus.emit('LOG_OUT')
|
|
}
|
|
}
|
|
|
|
return Promise.reject(error)
|
|
})
|
|
}
|
|
}
|