pinafore/routes/_api/utils.js

21 lines
526 B
JavaScript
Raw Normal View History

2018-02-25 05:27:32 +00:00
const isLocalhost = !process.browser ||
location.hostname === 'localhost' ||
location.hostname === '127.0.0.1'
2018-02-09 06:29:29 +00:00
function targetIsLocalhost (instanceName) {
2018-02-25 05:27:32 +00:00
return instanceName.startsWith('localhost:') || instanceName.startsWith('127.0.0.1:')
}
2018-02-09 06:29:29 +00:00
export function basename (instanceName) {
if (isLocalhost && targetIsLocalhost(instanceName)) {
return `http://${instanceName}`
}
return `https://${instanceName}`
2018-02-09 06:29:29 +00:00
}
2018-02-24 22:49:28 +00:00
export function auth (accessToken) {
return {
'Authorization': `Bearer ${accessToken}`
}
}