Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: fix ssr cookie handling in all edge cases #780

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions packages/ssr/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,7 @@
},
"homepage": "https://github.com/supabase/auth-helpers#readme",
"dependencies": {
"cookie": "^0.5.0",
"ramda": "^0.29.0"
"cookie": "^0.5.0"
},
"devDependencies": {
"@supabase/supabase-js": "2.42.0",
Expand Down
272 changes: 272 additions & 0 deletions packages/ssr/src/common.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,272 @@
import { parse, serialize } from 'cookie';

import {
DEFAULT_COOKIE_OPTIONS,
combineChunks,
createChunks,
deleteChunks,
isBrowser,
isChunkLike
} from './utils';

import type {
CookieMethods,
CookieMethodsBrowser,
CookieOptions,
CookieOptionsWithName,
GetAllCookies,
SetAllCookies
} from './types';

/**
* Creates a storage client that handles cookies correctly for browser and
* server clients with or without properly provided cookie methods.
*/
export function createStorageFromOptions(
options: {
cookies?: CookieMethods | CookieMethodsBrowser;
cookieOptions?: CookieOptionsWithName;
} | null,
isServerClient: boolean
) {
const cookies = options?.cookies ?? null;

const setItems: { [key: string]: string } = {};
const removedItems: { [key: string]: boolean } = {};

let getAll: (keyHints: string[]) => ReturnType<GetAllCookies>;
let setAll: SetAllCookies;

if (cookies) {
if ('get' in cookies) {
// Just get is not enough, because the client needs to see what cookies are already set and unset them if necessary. To attempt to fix this behavior for most use cases, we pass "hints" which is the keys of the storage items. They are then converted to their corresponding cookie chunk names and are fetched with get. Only 5 chunks are fetched, which should be enough for the majority of use cases, but does not solve those with very large sessions.
const getWithHints = async (keyHints: string[]) => {
// optimistically find the first 5 potential chunks for the specified key
const chunkNames = keyHints.flatMap((keyHint) => [
keyHint,
...Array.from({ length: 5 }).map((i) => `${keyHint}.${i}`)
]);

const chunks: ReturnType<GetAllCookies> = [];

for (let i = 0; i < chunkNames.length; i += 1) {
const value = await cookies.get(chunkNames[i]);

if (!value && typeof value !== 'string') {
continue;
}

chunks.push({ name: chunkNames[i], value });
}

// TODO: detect and log stale chunks error

return chunks;
};

getAll = async (keyHints: string[]) => await getWithHints(keyHints);

if ('set' in cookies && 'remove' in cookies) {
setAll = async (setCookies) => {
for (let i = 0; i < setCookies.length; i += 1) {
const { name, value, options } = setCookies[i];

if (value) {
await cookies.set(name, value, options);
} else {
await cookies.remove(name);
}
}
};
} else if (isServerClient) {
setAll = async () => {
console.warn(
'@supabase/ssr: createServerClient was configured without set and remove cookie methods, but the client needs to set cookies. This can lead to issues such as random logouts, early session termination or increased token refresh requests. If in NextJS, check your middleware.ts file, route handlers and server actions for correctness. Consider switching to the getAll and setAll cookie methods instead of get, set and remove which are deprecated and can be difficult to use correctly.'
);
};
} else {
throw new Error(
'@supabase/ssr: createBrowserClient requires configuring a getAll and setAll cookie method (deprecated: alternatively both get, set and remove can be used)'
);
}
} else if ('getAll' in cookies) {
getAll = async () => await cookies.getAll();

if ('setAll' in cookies) {
setAll = cookies.setAll;
} else if (isServerClient) {
setAll = async () => {
console.warn(
'@supabase/ssr: createServerClient was configured without the setAll cookie method, but the client needs to set cookies. This can lead to issues such as random logouts, early session termination or increased token refresh requests. If in NextJS, check your middleware.ts file, route handlers and server actions for correctness.'
);
};
} else {
throw new Error(
'@supabase/ssr: createBrowserClient requires configuring a getAll and setAll cookie method (deprecated: alternatively both get, set and remove can be used'
);
}
} else {
throw new Error(
'@supabase/ssr: createBrowserClient must be initialized with cookie options that specify getAll and setAll functions (deprecated: alternatively use get, set and remove)'
);
}
} else if (!isServerClient && isBrowser()) {
// The environment is browser, so use the document.cookie API to implement getAll and setAll.

const noHintGetAll = () => {
const parsed = parse(document.cookie);

return Object.keys(parsed).map((name) => ({ name, value: parsed[name] }));
};

getAll = () => noHintGetAll();

setAll = (setCookies) => {
setCookies.forEach(({ name, value, options }) => {
document.cookie = serialize(name, value, options);
});
};
} else if (isServerClient) {
throw new Error(
'@supabase/ssr: createServerClient must be initialized with cookie options that specify getAll and setAll functions (deprecated, not recommended: alternatively use get, set and remove)'
);
} else {
throw new Error(
'@supabase/ssr: createBrowserClient in non-browser runtimes must be initialized with cookie options that specify getAll and setAll functions (deprecated: alternatively use get, set and remove)'
);
}

if (!isServerClient) {
// This is the storage client to be used in browsers. It only
// works on the cookies abstraction, unlike the server client
// which only uses cookies to read the initial state. When an
// item is set, cookies are both cleared and set to values so
// that stale chunks are not left remaining.
return {
getAll, // for type consistency
setAll, // for type consistency
setItems, // for type consistency
removedItems, // for type consistency
storage: {
isServer: false,
getItem: async (key: string) => {
const allCookies = await getAll(key);
const chunkedCookie = await combineChunks(key, async (chunkName: string) => {
const cookie = allCookies?.find(({ name }) => name === chunkName) || null;

if (!cookie) {
return null;
}

return cookie.value;
});

return chunkedCookie || null;
},
setItem: async (key: string, value: string) => {
const allCookies = await getAll(key);
const cookieNames = allCookies?.map(({ name }) => name) || [];

const removeCookies = new Set(cookieNames.filter((name) => isChunkLike(name, key)));

const setCookies = createChunks(key, value);

setCookies.forEach(({ name }) => {
removeCookies.delete(name);
});

const removeCookieOptions = {
...DEFAULT_COOKIE_OPTIONS,
...options?.cookieOptions,
maxAge: 0
};
const setCookieOptions = {
...DEFAULT_COOKIE_OPTIONS,
...options?.cookieOptions,
maxAge: DEFAULT_COOKIE_OPTIONS.maxAge
};

const allToSet = [
...[...removeCookies].map((name) => ({
name,
value: '',
options: removeCookieOptions
})),
...setCookies.map(({ name, value }) => ({ name, value, options: setCookieOptions }))
];

if (allToSet.length > 0) {
await setAll(allToSet);
}
},
removeItem: async (key: string) => {
const allCookies = await getAll(key);
const cookieNames = allCookies?.map(({ name }) => name) || [];
const removeCookies = cookieNames.filter((name) => isChunkLike(name, key));

const removeCookieOptions = {
...DEFAULT_COOKIE_OPTIONS,
...options?.cookieOptions,
maxAge: 0
};

if (removeCookies.length > 0) {
await setAll(
removeCookies.map((name) => ({ name, value: '', options: removeCookieOptions }))
);
}
}
}
};
}

// This is the server client. It only uses getAll to read the initial
// state. Any subsequent changes to the items is persisted in the
// setItems and removedItems objects. createServerClient *must* use
// getAll, setAll and the values in setItems and removedItems to
// persist the changes *at once* when appropriate (usually only when
// the TOKEN_REFRESHED, USER_UPDATED or SIGNED_OUT events are fired by
// the Supabase Auth client).
return {
getAll,
setAll,
setItems,
removedItems,
storage: {
// to signal to the libraries that these cookies are
// coming from a server environment and their value
// should not be trusted
isServer: true,
getItem: async (key: string) => {
if (typeof setItems[key] === 'string') {
return setItems[key];
}

if (removedItems[key]) {
return null;
}

const allCookies = await cookies.getAll();
const chunkedCookie = await combineChunks(key, async (chunkName: string) => {
const cookie = allCookies?.find(({ name }) => name === chunkName) || null;

if (!cookie) {
return null;
}

return cookie.value;
});

return chunkedCookie || null;
},
setItem: async (key: string, value: string) => {
setItems[key] = value;
delete removedItems[key];
},
removeItem: async (key: string) => {
delete setItems[key];
removedItems[key] = true;
}
}
};
}
Loading
Loading