mirror of
				https://github.com/advplyr/audiobookshelf.git
				synced 2025-10-27 11:18:14 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			26 lines
		
	
	
		
			854 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			854 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
export default function ({ $axios, store }) {
 | 
						|
  $axios.onRequest(config => {
 | 
						|
    if (!config.url) {
 | 
						|
      console.error('Axios request invalid config', config)
 | 
						|
      return
 | 
						|
    }
 | 
						|
    if (config.url.startsWith('http:') || config.url.startsWith('https:')) {
 | 
						|
      return
 | 
						|
    }
 | 
						|
    var bearerToken = store.state.user.user ? store.state.user.user.token : null
 | 
						|
    if (bearerToken) {
 | 
						|
      config.headers.common['Authorization'] = `Bearer ${bearerToken}`
 | 
						|
    }
 | 
						|
 | 
						|
    if (process.env.NODE_ENV === 'development') {
 | 
						|
      config.url = `/dev${config.url}`
 | 
						|
      console.log('Making request to ' + config.url)
 | 
						|
    }
 | 
						|
  })
 | 
						|
 | 
						|
  $axios.onError(error => {
 | 
						|
    const code = parseInt(error.response && error.response.status)
 | 
						|
    const message = error.response ? error.response.data || 'Unknown Error' : 'Unknown Error'
 | 
						|
    console.error('Axios error', code, message)
 | 
						|
  })
 | 
						|
} |