@akinon/next 2.0.41-rc.0 → 2.0.42-beta.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +4 -26
- package/api/auth.ts +35 -0
- package/api/client.ts +26 -4
- package/bin/pz-generate-routes.js +1 -4
- package/components/plugin-module.tsx +1 -0
- package/data/client/checkout.ts +1 -0
- package/data/server/category.ts +1 -13
- package/data/server/list.ts +0 -12
- package/data/server/product.ts +0 -10
- package/data/server/special-page.ts +0 -13
- package/data/server/widget.ts +1 -14
- package/data/urls.ts +4 -9
- package/hooks/index.ts +0 -1
- package/hooks/use-captcha.tsx +1 -1
- package/middlewares/default.ts +205 -252
- package/middlewares/oauth-login.ts +4 -1
- package/middlewares/url-redirection.ts +4 -1
- package/package.json +2 -2
- package/plugins.d.ts +0 -10
- package/plugins.js +0 -1
- package/redux/middlewares/checkout.ts +3 -45
- package/redux/middlewares/pre-order/installment-option.ts +1 -9
- package/types/index.ts +9 -20
- package/utils/csrf.ts +17 -2
- package/utils/editor-embed.ts +50 -0
- package/with-pz-config.js +2 -7
- package/api/client-env.ts +0 -78
- package/hooks/use-client-env.ts +0 -265
- package/utils/payload-optimizer.ts +0 -481
package/CHANGELOG.md
CHANGED
|
@@ -1,34 +1,12 @@
|
|
|
1
1
|
# @akinon/next
|
|
2
2
|
|
|
3
|
-
## 2.0.
|
|
3
|
+
## 2.0.42-beta.0
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
7
|
-
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
- ZERO-4160: Enhance oauth-login middleware with improved request handling and logging
|
|
11
|
-
- 2fea4143: ZERO-4620: Add runtime access to `NEXT_PUBLIC_*` environment variables from Client Components
|
|
12
|
-
- b55acb768: ZERO-2577: Fix pagination bug and update usePagination hook and ensure pagination controls rendering correctly
|
|
13
|
-
- 760258c1: ZERO-4160: Enhance oauth-login middleware to handle fetch errors and improve response handling
|
|
14
|
-
- 143be2b9d: ZERO-3457: Crop styles are customizable and logic improved for rendering similar products modal
|
|
15
|
-
- 7889b08f: ZERO-4276: Enhance route generation by adding .env loading and custom skip segments support
|
|
16
|
-
- 9f8cd3bc5: ZERO-3449: AI Search Active Filters & Crop Style changes have been implemented
|
|
17
|
-
- bfafa3f4: ZERO-4160: Refactor oauth-login middleware to use fetchCommerce for API calls and improve cookie handling
|
|
18
|
-
- 57d7eb30: ZERO-4276: Refactor route generation logic by removing environment loading and simplifying skip segments handling
|
|
19
|
-
- d99a6a7d5: ZERO-3457_1: Fixed the settings prop and made sure everything is customizable.
|
|
20
|
-
- 9db81a71: ZERO-4365: Remove brand `@theme/*` alias imports from library packages
|
|
21
|
-
- 591e345e1: ZERO-3855: Enhance credit card payment handling in checkout middlewares
|
|
22
|
-
- 4de5303c5: ZERO-2504: add cookie filter to api client request
|
|
23
|
-
- 95b139dc1: ZERO-3795: Remove duplicate entry for SavedCard in PluginComponents map
|
|
24
|
-
- 1d00f2d0: BRDG-16664: Set secure flag for CSRF token cookies in useCaptcha and default middleware
|
|
25
|
-
- 4ac7b2a1: ZERO-4219: fix masterpass-rest callback route format and double-encoded error cookie
|
|
26
|
-
- e9598c71: ZERO-4622: Images remotePatterns for improved readability
|
|
27
|
-
- 4998a963: ZERO-4168: Add server-side payload optimization
|
|
28
|
-
- 804d2bd6: ZERO-4536: Add akinon.net domain to CSP frame-ancestors directive
|
|
29
|
-
- 3909d3224: Edit the duplicate Plugin.SimilarProducts in the plugin-module.
|
|
30
|
-
- 6a3d8a63: ZERO-4541: Fix URL query string formatting in getOrders and getOldOrders functions
|
|
31
|
-
- e18836b2: ZERO-4160: Restore scope in Sentry addon configuration in akinon.json
|
|
7
|
+
- cbbbfd75: ZERO-4376: Bootstrap beta cycle (next-main pre-release motor)
|
|
8
|
+
|
|
9
|
+
## 2.0.41
|
|
32
10
|
|
|
33
11
|
## 2.0.40
|
|
34
12
|
|
package/api/auth.ts
CHANGED
|
@@ -10,6 +10,7 @@ import getRootHostname, {
|
|
|
10
10
|
getRequestRootHostname
|
|
11
11
|
} from '../utils/get-root-hostname';
|
|
12
12
|
import { getCsrfCookieFlags } from '../utils/csrf';
|
|
13
|
+
import { isEditorEmbedEnabled } from '../utils/editor-embed';
|
|
13
14
|
import { LocaleUrlStrategy } from '../localization';
|
|
14
15
|
import { cookies, headers } from 'next/headers';
|
|
15
16
|
|
|
@@ -88,8 +89,37 @@ function buildFieldErrors(response: any) {
|
|
|
88
89
|
// v5 (App Router / next-auth v5) — named export for new brands
|
|
89
90
|
// ============================================================
|
|
90
91
|
|
|
92
|
+
/**
|
|
93
|
+
* Cookie attributes that let the shopper sign in while the storefront runs
|
|
94
|
+
* inside the theme editor's preview iframe. Auth.js defaults to
|
|
95
|
+
* SameSite=Lax, and in a cross-site iframe (editor origin vs storefront
|
|
96
|
+
* origin — or localhost vs 127.0.0.1 in local dev) the browser then drops
|
|
97
|
+
* the CSRF cookie, so every credentials POST fails with MissingCSRF before
|
|
98
|
+
* it reaches the provider. SameSite=None requires Secure; browsers accept
|
|
99
|
+
* Secure cookies from plain-http localhost, so local development is covered
|
|
100
|
+
* too. Scoped to editor-enabled deployments (and dev) — a storefront without
|
|
101
|
+
* the editor keeps the stricter Lax default.
|
|
102
|
+
*/
|
|
103
|
+
const getEmbedAwareCookies = () => {
|
|
104
|
+
if (!isEditorEmbedEnabled()) return undefined;
|
|
105
|
+
|
|
106
|
+
const options = {
|
|
107
|
+
sameSite: 'none' as const,
|
|
108
|
+
secure: true,
|
|
109
|
+
path: '/',
|
|
110
|
+
httpOnly: true
|
|
111
|
+
};
|
|
112
|
+
|
|
113
|
+
return {
|
|
114
|
+
sessionToken: { options },
|
|
115
|
+
callbackUrl: { options },
|
|
116
|
+
csrfToken: { options }
|
|
117
|
+
};
|
|
118
|
+
};
|
|
119
|
+
|
|
91
120
|
const getDefaultAuthConfig = () => {
|
|
92
121
|
return {
|
|
122
|
+
cookies: getEmbedAwareCookies(),
|
|
93
123
|
providers: [
|
|
94
124
|
Credentials({
|
|
95
125
|
id: 'oauth',
|
|
@@ -266,6 +296,11 @@ const getDefaultAuthConfig = () => {
|
|
|
266
296
|
httpOnly: true,
|
|
267
297
|
secure: true,
|
|
268
298
|
maxAge,
|
|
299
|
+
// Without SameSite the browser defaults to Lax and drops the
|
|
300
|
+
// commerce session on every request from the theme editor's
|
|
301
|
+
// cross-site preview iframe — the shopper signs in and the
|
|
302
|
+
// next authenticated call 401s straight back to the login.
|
|
303
|
+
...(isEditorEmbedEnabled() ? { sameSite: 'none' as const } : {}),
|
|
269
304
|
...(rootHostname ? { domain: rootHostname } : {})
|
|
270
305
|
};
|
|
271
306
|
|
package/api/client.ts
CHANGED
|
@@ -10,6 +10,7 @@ import { LocaleUrlStrategy } from '../localization';
|
|
|
10
10
|
import { fixtureManager, MockMode } from '../lib/fixture-manager';
|
|
11
11
|
import { user } from '../data/urls';
|
|
12
12
|
import { getCsrfCookieFlags, isCsrfHttpOnly } from '../utils/csrf';
|
|
13
|
+
import { isEditorEmbedEnabled } from '../utils/editor-embed';
|
|
13
14
|
|
|
14
15
|
const CSRF_TOKEN_SLUG = user.csrfToken.replace(/^\//, '');
|
|
15
16
|
|
|
@@ -168,7 +169,16 @@ async function proxyRequest(...args) {
|
|
|
168
169
|
// browser can no longer mirror it into the `x-csrftoken` header, so the
|
|
169
170
|
// proxy validates the request origin and injects the header server-side
|
|
170
171
|
// from the cookie that the browser sent with this request.
|
|
171
|
-
|
|
172
|
+
//
|
|
173
|
+
// The origin check also runs whenever editor embedding is enabled: embed
|
|
174
|
+
// mode relaxes session cookies to SameSite=None, so the browser attaches
|
|
175
|
+
// them to cross-site requests and the Lax barrier this check replaces is
|
|
176
|
+
// gone. `isOriginAllowed` keeps accepting origin-less requests, so
|
|
177
|
+
// non-browser clients are unaffected.
|
|
178
|
+
if (
|
|
179
|
+
(isCsrfHttpOnly() || isEditorEmbedEnabled()) &&
|
|
180
|
+
STATE_CHANGING_METHODS.includes(req.method)
|
|
181
|
+
) {
|
|
172
182
|
if (!isOriginAllowed(req)) {
|
|
173
183
|
logger.warn('Client Proxy Request - Blocked cross-origin request', {
|
|
174
184
|
url: req.url,
|
|
@@ -180,9 +190,11 @@ async function proxyRequest(...args) {
|
|
|
180
190
|
);
|
|
181
191
|
}
|
|
182
192
|
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
193
|
+
if (isCsrfHttpOnly()) {
|
|
194
|
+
const csrfToken = nextCookies.get('csrftoken')?.value;
|
|
195
|
+
if (csrfToken) {
|
|
196
|
+
fetchOptions.headers['x-csrftoken'] = csrfToken;
|
|
197
|
+
}
|
|
186
198
|
}
|
|
187
199
|
}
|
|
188
200
|
|
|
@@ -335,6 +347,16 @@ async function proxyRequest(...args) {
|
|
|
335
347
|
cookie.sameSite = flags.sameSite;
|
|
336
348
|
}
|
|
337
349
|
}
|
|
350
|
+
// Commerce sends its session cookies without SameSite; forwarded
|
|
351
|
+
// as-is the browser defaults them to Lax and drops them inside
|
|
352
|
+
// the theme editor's cross-site preview iframe, killing the
|
|
353
|
+
// session right after login. Editor-enabled deployments relax
|
|
354
|
+
// every forwarded cookie the same way the auth cookies already
|
|
355
|
+
// are.
|
|
356
|
+
if (isEditorEmbedEnabled()) {
|
|
357
|
+
cookie.sameSite = 'none';
|
|
358
|
+
cookie.secure = true;
|
|
359
|
+
}
|
|
338
360
|
return formatCookieString(cookie);
|
|
339
361
|
})
|
|
340
362
|
.join(', ');
|
|
@@ -6,7 +6,6 @@ const findBaseDir = require('../utils/find-base-dir');
|
|
|
6
6
|
|
|
7
7
|
const generateRoutes = () => {
|
|
8
8
|
const baseDir = findBaseDir();
|
|
9
|
-
|
|
10
9
|
const srcDir = path.join(baseDir, 'src');
|
|
11
10
|
const appDir = path.join(srcDir, 'app');
|
|
12
11
|
|
|
@@ -35,10 +34,8 @@ const generateRoutes = () => {
|
|
|
35
34
|
'[segment]',
|
|
36
35
|
'[url]',
|
|
37
36
|
'[theme]',
|
|
38
|
-
'[member_type]'
|
|
39
|
-
'[clienttype]'
|
|
37
|
+
'[member_type]'
|
|
40
38
|
];
|
|
41
|
-
|
|
42
39
|
const skipCatchAllRoutes = ['[...prettyurl]', '[...not_found]'];
|
|
43
40
|
|
|
44
41
|
const walkDirectory = (dir, basePath = '') => {
|
package/data/client/checkout.ts
CHANGED
|
@@ -738,6 +738,7 @@ export const checkoutApi = api.injectEndpoints({
|
|
|
738
738
|
},
|
|
739
739
|
async onQueryStarted(arg, { dispatch, queryFulfilled }) {
|
|
740
740
|
dispatch(setPaymentStepBusy(true));
|
|
741
|
+
dispatch(setCardType(arg));
|
|
741
742
|
await queryFulfilled;
|
|
742
743
|
dispatch(setPaymentStepBusy(false));
|
|
743
744
|
}
|
package/data/server/category.ts
CHANGED
|
@@ -8,8 +8,6 @@ import { parse } from 'lossless-json';
|
|
|
8
8
|
import logger from '../../utils/log';
|
|
9
9
|
import { headers as nHeaders } from 'next/headers';
|
|
10
10
|
import { ServerVariables } from '../../utils/server-variables';
|
|
11
|
-
import { optimizeCategoryResponse } from '../../utils/payload-optimizer';
|
|
12
|
-
import settings from 'settings';
|
|
13
11
|
|
|
14
12
|
function getCategoryDataHandler(
|
|
15
13
|
pk: number,
|
|
@@ -83,7 +81,7 @@ function getCategoryDataHandler(
|
|
|
83
81
|
};
|
|
84
82
|
}
|
|
85
83
|
|
|
86
|
-
export const getCategoryData =
|
|
84
|
+
export const getCategoryData = ({
|
|
87
85
|
pk,
|
|
88
86
|
searchParams,
|
|
89
87
|
headers,
|
|
@@ -107,16 +105,6 @@ export const getCategoryData = async ({
|
|
|
107
105
|
compressed: true
|
|
108
106
|
}
|
|
109
107
|
);
|
|
110
|
-
|
|
111
|
-
if (settings.payloadOptimization?.enabled && result?.data) {
|
|
112
|
-
try {
|
|
113
|
-
return { ...result, data: optimizeCategoryResponse(result.data, settings.payloadOptimization) };
|
|
114
|
-
} catch (e) {
|
|
115
|
-
logger.error('Payload optimization failed for category', { pk, error: (e as Error).message });
|
|
116
|
-
}
|
|
117
|
-
}
|
|
118
|
-
|
|
119
|
-
return result;
|
|
120
108
|
};
|
|
121
109
|
|
|
122
110
|
function getCategoryBySlugDataHandler(
|
package/data/server/list.ts
CHANGED
|
@@ -7,8 +7,6 @@ import appFetch, { FetchResponseType } from '../../utils/app-fetch';
|
|
|
7
7
|
import { parse } from 'lossless-json';
|
|
8
8
|
import logger from '../../utils/log';
|
|
9
9
|
import { ServerVariables } from '../../utils/server-variables';
|
|
10
|
-
import { optimizeCategoryResponse } from '../../utils/payload-optimizer';
|
|
11
|
-
import settings from 'settings';
|
|
12
10
|
|
|
13
11
|
const getListDataHandler = (
|
|
14
12
|
locale,
|
|
@@ -80,14 +78,4 @@ export const getListData = async ({
|
|
|
80
78
|
compressed: true
|
|
81
79
|
}
|
|
82
80
|
);
|
|
83
|
-
|
|
84
|
-
if (settings.payloadOptimization?.enabled && result) {
|
|
85
|
-
try {
|
|
86
|
-
return optimizeCategoryResponse(result, settings.payloadOptimization);
|
|
87
|
-
} catch (e) {
|
|
88
|
-
logger.error('Payload optimization failed for list', { error: (e as Error).message });
|
|
89
|
-
}
|
|
90
|
-
}
|
|
91
|
-
|
|
92
|
-
return result;
|
|
93
81
|
};
|
package/data/server/product.ts
CHANGED
|
@@ -5,8 +5,6 @@ import appFetch from '../../utils/app-fetch';
|
|
|
5
5
|
import { normalizeSearchParams } from '../../utils/normalize-search-params';
|
|
6
6
|
import { ServerVariables } from '../../utils/server-variables';
|
|
7
7
|
import logger from '../../utils/log';
|
|
8
|
-
import { optimizeProductResponse } from '../../utils/payload-optimizer';
|
|
9
|
-
import settings from 'settings';
|
|
10
8
|
|
|
11
9
|
type GetProduct = {
|
|
12
10
|
pk: number | string;
|
|
@@ -168,13 +166,5 @@ export const getProductData = async ({
|
|
|
168
166
|
throw error;
|
|
169
167
|
}
|
|
170
168
|
|
|
171
|
-
if (settings.payloadOptimization?.enabled && result?.data) {
|
|
172
|
-
try {
|
|
173
|
-
return { ...result, data: optimizeProductResponse(result.data, settings.payloadOptimization) };
|
|
174
|
-
} catch (e) {
|
|
175
|
-
logger.error('Payload optimization failed for product', { pk, error: (e as Error).message });
|
|
176
|
-
}
|
|
177
|
-
}
|
|
178
|
-
|
|
179
169
|
return result;
|
|
180
170
|
};
|
|
@@ -5,9 +5,6 @@ import { generateCommerceSearchParams } from '../../utils';
|
|
|
5
5
|
import { normalizeSearchParams } from '../../utils/normalize-search-params';
|
|
6
6
|
import appFetch from '../../utils/app-fetch';
|
|
7
7
|
import { ServerVariables } from '../../utils/server-variables';
|
|
8
|
-
import { optimizeCategoryResponse } from '../../utils/payload-optimizer';
|
|
9
|
-
import logger from '../../utils/log';
|
|
10
|
-
import settings from 'settings';
|
|
11
8
|
|
|
12
9
|
const getSpecialPageDataHandler = (
|
|
13
10
|
pk: number,
|
|
@@ -60,14 +57,4 @@ export const getSpecialPageData = async ({
|
|
|
60
57
|
compressed: true
|
|
61
58
|
}
|
|
62
59
|
);
|
|
63
|
-
|
|
64
|
-
if (settings.payloadOptimization?.enabled && result) {
|
|
65
|
-
try {
|
|
66
|
-
return optimizeCategoryResponse(result, settings.payloadOptimization);
|
|
67
|
-
} catch (e) {
|
|
68
|
-
logger.error('Payload optimization failed for special-page', { pk, error: (e as Error).message });
|
|
69
|
-
}
|
|
70
|
-
}
|
|
71
|
-
|
|
72
|
-
return result;
|
|
73
60
|
};
|
package/data/server/widget.ts
CHANGED
|
@@ -4,9 +4,6 @@ import { CacheOptions, WidgetResultType, WidgetSchemaType } from '../../types';
|
|
|
4
4
|
import appFetch from '../../utils/app-fetch';
|
|
5
5
|
import { widgets } from '../urls';
|
|
6
6
|
import { ServerVariables } from '../../utils/server-variables';
|
|
7
|
-
import { optimizeWidgetResponse } from '../../utils/payload-optimizer';
|
|
8
|
-
import logger from '../../utils/log';
|
|
9
|
-
import settings from 'settings';
|
|
10
7
|
|
|
11
8
|
const getWidgetDataHandler =
|
|
12
9
|
(
|
|
@@ -56,7 +53,7 @@ export const getWidgetData = async <T>({
|
|
|
56
53
|
cacheOptions?: CacheOptions;
|
|
57
54
|
headers?: Record<string, string>;
|
|
58
55
|
}): Promise<WidgetResultType<T>> => {
|
|
59
|
-
|
|
56
|
+
return Cache.wrap(
|
|
60
57
|
CacheKey.Widget(slug),
|
|
61
58
|
locale,
|
|
62
59
|
getWidgetDataHandler(slug, locale, currency, headers),
|
|
@@ -65,16 +62,6 @@ export const getWidgetData = async <T>({
|
|
|
65
62
|
...cacheOptions
|
|
66
63
|
}
|
|
67
64
|
);
|
|
68
|
-
|
|
69
|
-
if (settings.payloadOptimization?.enabled && result) {
|
|
70
|
-
try {
|
|
71
|
-
return optimizeWidgetResponse(result, settings.payloadOptimization) as WidgetResultType<T>;
|
|
72
|
-
} catch (e) {
|
|
73
|
-
logger.error('Payload optimization failed for widget', { slug, error: (e as Error).message });
|
|
74
|
-
}
|
|
75
|
-
}
|
|
76
|
-
|
|
77
|
-
return result as WidgetResultType<T>;
|
|
78
65
|
};
|
|
79
66
|
|
|
80
67
|
const getCollectionWidgetDataHandler =
|
package/data/urls.ts
CHANGED
|
@@ -40,11 +40,10 @@ export const account = {
|
|
|
40
40
|
shipping_option_slug
|
|
41
41
|
? `&shipping_option_slug${shipping_option_operator}${shipping_option_slug}`
|
|
42
42
|
: ''
|
|
43
|
-
}${currency ? `¤cy=${currency}` : ''}
|
|
44
|
-
|
|
45
|
-
}`,
|
|
43
|
+
}${currency ? `¤cy=${currency}` : ''}
|
|
44
|
+
${filterType && filterValue ? `&${filterType}=${filterValue}` : ''}`,
|
|
46
45
|
getOldOrders: ({ page, limit }: { page?: number; limit?: number }) =>
|
|
47
|
-
`/users/old-orders/?page=${page || 1}&limit=${limit || 12}`,
|
|
46
|
+
`/users/old-orders/?page=${page || 1}&limit=${limit || 12}}`,
|
|
48
47
|
getQuotations: (page?: number, status?: string, limit?: number) =>
|
|
49
48
|
`/b2b/my-quotations/?page=${page || 1}` +
|
|
50
49
|
(status ? `&status=${status}` : '') +
|
|
@@ -184,11 +183,7 @@ export const product = {
|
|
|
184
183
|
breadcrumbUrl: (menuitemmodel: string) =>
|
|
185
184
|
`/menus/generate_breadcrumb/?item=${menuitemmodel}&generator_name=menu_item`,
|
|
186
185
|
bundleProduct: (productPk: string, queryString: string) =>
|
|
187
|
-
`/bundle-product/${productPk}/?${queryString}
|
|
188
|
-
similarProducts: (params?: string) =>
|
|
189
|
-
`/similar-products${params ? `?${params}` : ''}`,
|
|
190
|
-
similarProductsList: (params?: string) =>
|
|
191
|
-
`/similar-product-list${params ? `?${params}` : ''}`
|
|
186
|
+
`/bundle-product/${productPk}/?${queryString}`
|
|
192
187
|
};
|
|
193
188
|
|
|
194
189
|
export const wishlist = {
|
package/hooks/index.ts
CHANGED
package/hooks/use-captcha.tsx
CHANGED