import { _config } from '@ecomplus/utils'
import { IS_BROWSER, API_STORE, API_STORE_CACHE } from './../lib/constants'
import request from './../lib/request'
// save Store Cache API status
let isCacheOnline = true
const store = ({
url,
authenticationId,
accessToken,
method = 'get',
data,
storeId = _config.get('store_id'),
axiosConfig
}) => {
let timeout, baseURL, headers
// first check if it's a public request
if (method.toLowerCase() === 'get' && !authenticationId) {
// less timeout for public requests
if (isCacheOnline && !/\?/.test(url) && (!axiosConfig || !axiosConfig.params)) {
// use cache API host
timeout = IS_BROWSER ? 2500 : 10000
// Store ID on URL
baseURL = API_STORE_CACHE.replace(':id', storeId)
} else {
// set 5s default timeout on browser
timeout = IS_BROWSER ? 5000 : 30000
baseURL = API_STORE
// Store ID on header
headers = {
'X-Store-ID': storeId
}
}
} else {
baseURL = API_STORE
// setup authentication headers
headers = {
'X-Store-ID': storeId,
'X-My-ID': authenticationId,
'X-Access-Token': accessToken
}
}
// returns axios request promise
return request({
data,
timeout,
...axiosConfig,
url,
baseURL,
method,
headers
})
.catch(err => {
const { response } = err
if (response && baseURL === API_STORE_CACHE) {
// retry with live Store API
const { status } = response
if (!status || status < 100 || status >= 500) {
isCacheOnline = false
setTimeout(() => { isCacheOnline = true }, 30000)
// resend request with same params
return store(
url,
authenticationId,
accessToken,
method,
data,
storeId,
axiosConfig
)
}
}
// chain promise catch
throw err
})
}
/**
* @method
* @memberof ecomClient
* @name store
* @description Send HTTP request to
* [E-Com Plus Store REST API]{@link https://developers.e-com.plus/docs/api/#/store/}.
*
* @param {object} cfg - Request config options
* @param {string} cfg.url - API endpoint to request or absolute URI
* @param {string} [cfg.authenticationId] - My ID for authenticated request
* @param {string} [cfg.accessToken] - Access token for authenticated request
* @param {string} [cfg.method='get'] - Request method (HTTP verb)
* @param {object} [cfg.data] - Request body object
* @param {number} [cfg.storeId=_config.get('store_id')] - E-Com Plus Store ID number
* @param {object} [cfg.axiosConfig] - Additional
* [axios config]{@link https://github.com/axios/axios#request-config} settings
*
* @returns {Promise<response|error>}
* Axios request promise resolved with
* [response]{@link https://github.com/axios/axios#response-schema}
* or rejected with
* [error]{@link https://github.com/axios/axios#handling-errors}.
*
* @example
// Simple GET request (public)
ecomClient.store({ url: '/products.json' })
.then(response => console.log(response.data))
.catch(error => {
console.error(error)
if (error.response) {
console.log(error.response)
}
})
* @example
// Authenticated request
const authenticationId = 'myAuthenticationId'
const accessToken = 'myAccessToken'
ecomClient.store({
url: '/products.json',
authenticationId,
accessToken,
method: 'post',
data: { sku: '123', name: 'Sample Prduct 123' }
})
.then(({ data, status }) => console.log(status, data))
.catch(error => console.error(error))
*/
export default store