forked from Nordicwebteamvue/vsf-store-picker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathforceStorecode.ts
29 lines (28 loc) · 1.18 KB
/
forceStorecode.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
import { storeCodeFromRoute } from '@vue-storefront/core/lib/multistore'
import store from '@vue-storefront/core/store'
import { isServer } from '@vue-storefront/core/helpers'
import Vue from 'vue'
export const forceStorecode = async (context, { url }) => {
if (isServer) {
const { storeViews } = store.state.config
const storeCode = storeCodeFromRoute(url)
if (storeViews.multistore && storeViews.forcePrefix && !storeCode) {
const createUrl = _storeCode => `/${_storeCode}/${url}`
const { request: req, response: res } = Vue.prototype.$ssrRequestContext.server
const cfCountry = req.headers.http_cf_ipcountry
if (cfCountry && storeViews[cfCountry]) {
console.log(url, cfCountry)
const newUrl = createUrl(cfCountry)
return res.redirect(newUrl)
}
if (storeViews.fallbackStoreCode) {
const newUrl = createUrl(storeViews.fallbackStoreCode)
return res.redirect(newUrl)
}
// TODO: Maybe do geoip here as well?
const lastResort: any = Object.values(storeViews).find((view: any) => view && view.storeCode)
const newUrl = createUrl(lastResort.storeCode)
return res.redirect(newUrl)
}
}
}