| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- import Vue from 'vue'
- import axios from 'axios'
- import store from '~store'
- const service = axios.create({
- withCredentials: true,
- baseURL: '/'
- })
- const isServer = typeof window === 'undefined'
- service.interceptors.request.use(config => {
- // is server render, use ${baseUrl} directly rather than ${proxyUrl}
- if (isServer) {
- if (config.url.indexOf('/inquiry') === 0) {
- config.url = process.env.commonUrl + config.url
- } else {
- config.url = process.env.baseUrl + config.url
- }
- config.headers.cookie = store.state.option.cookies + '; ' + store.state.option.sessionId
- config.headers['User-Agent'] = store.state.option.userAgent
- } else {
- document.getElementById('loading').setAttribute('class', 'loading in')
- }
- return config
- }, error => {
- return Promise.reject(error)
- })
- service.interceptors.response.use(response => {
- const cookies = response.headers['set-cookie']
- if (cookies && cookies.length) {
- for (let i = 0; i < cookies.length; i++) {
- if (cookies[i].indexOf('JSESSIONID') > -1) {
- const sessionId = cookies[i]
- const first = sessionId.indexOf(';')
- const second = sessionId.lastIndexOf(';')
- const newSessionId = sessionId.replace(sessionId.substring(first, second), '')
- store.commit('option/SET_SESSION_ID', newSessionId)
- break
- }
- }
- }
- if (!isServer) {
- document.getElementById('loading').setAttribute('class', 'loading')
- }
- return response
- }, error => {
- if (!isServer) {
- document.getElementById('loading').setAttribute('class', 'loading')
- }
- return Promise.reject(error)
- })
- Vue.prototype.$http = service
- export default service
|