-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathforceStorecode.ts
62 lines (60 loc) · 2.53 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
import storeCodeFromRoute from '@vue-storefront/core/lib/storeCodeFromRoute'
import store from '@vue-storefront/core/store'
import { isServer } from '@vue-storefront/core/helpers'
import Vue from 'vue'
// Use with https://github.com/kodbruket/vsf-mapping-fallback
export const forceStorecode = async (context, { url }) => {
if (isServer) {
const { request: req, response: res } = Vue.prototype.$ssrRequestContext.server
if (url.startsWith('dist/')) {
return res.status(404).send('Not found')
}
if (req.headers['x-vs-store-code']) {
return
}
const { storeViews } = store.state.config
const storeCode = storeCodeFromRoute(url)
const queryString = Object.keys(req.query).map(key => key + '=' + req.query[key]).join('&');
if (storeViews.multistore && storeViews.forcePrefix && !storeCode) {
const redirect = url => {
const statusCode = storeViews.redirectStatusCode || 302
res.set('location', url)
res.status(statusCode).send()
}
const createUrl = (_storeCode: string) => `/${_storeCode}/${url}`
const cfCountry = req.headers.http_cf_ipcountry ? req.headers.http_cf_ipcountry.toLowerCase() : undefined
// cfCountry matches existing storeView code...
if (cfCountry && storeViews[cfCountry] && storeViews[cfCountry].disabled !== true) {
let newUrl = createUrl(cfCountry)
if (queryString) {
newUrl = newUrl + '?' + queryString
}
return redirect(newUrl)
}
// ...otherwise check if cfCountry is mapped to a specific storeView...
if (cfCountry && storeViews.countryStoreViewMapping && storeViews.countryStoreViewMapping[cfCountry]){
let newUrl = createUrl(storeViews.countryStoreViewMapping[cfCountry])
if (queryString) {
newUrl = newUrl + '?' + queryString
}
return redirect(newUrl)
}
// ...otherwise check if a single fallback storeview is configured (ie our default storeView)
if (storeViews.fallbackStoreCode) {
let newUrl = createUrl(storeViews.fallbackStoreCode)
if (queryString) {
newUrl = newUrl + '?' + queryString
}
return redirect(newUrl)
}
// ...we have nothing to go on. Just pick any available storeview.
const lastResort: any = Object.values(storeViews)
.find((view: any) => view && view.storeCode && !view.disabled)
let newUrl = createUrl(lastResort.storeCode)
if (queryString) {
newUrl = newUrl + '?' + queryString
}
return redirect(newUrl)
}
}
}