mirror of
https://github.com/gristlabs/grist-core.git
synced 2024-10-27 20:44:07 +00:00
6305811ca6
Summary: Adds a new Grist login page to the login app, and replaces the server-side Cognito Google Sign-In flow with Google's own OAuth flow. Test Plan: Browser and server tests. Reviewers: jarek Reviewed By: jarek Differential Revision: https://phab.getgrist.com/D3332
41 lines
1.3 KiB
TypeScript
41 lines
1.3 KiB
TypeScript
import {GristLoginSystem, GristServer} from 'app/server/lib/GristServer';
|
|
import {Request} from 'express';
|
|
|
|
/**
|
|
* Return a login system for testing. Just enough to use the test/login endpoint
|
|
* available when GRIST_TEST_LOGIN=1 is set.
|
|
*/
|
|
export async function getTestLoginSystem(): Promise<GristLoginSystem> {
|
|
return {
|
|
async getMiddleware(gristServer: GristServer) {
|
|
async function getLoginRedirectUrl(req: Request, url: URL) {
|
|
const target = new URL(gristServer.getHomeUrl(req, 'test/login'));
|
|
target.searchParams.append('next', url.href);
|
|
return target.href || url.href;
|
|
}
|
|
return {
|
|
getLoginRedirectUrl,
|
|
async getLogoutRedirectUrl(req: Request, url: URL) {
|
|
return url.href;
|
|
},
|
|
getSignUpRedirectUrl: getLoginRedirectUrl,
|
|
async addEndpoints() {
|
|
// Make sure support user has a test api key if needed.
|
|
if (process.env.TEST_SUPPORT_API_KEY) {
|
|
const dbManager = gristServer.getHomeDBManager();
|
|
const user = await dbManager.getUserByLogin('support@getgrist.com');
|
|
if (user) {
|
|
user.apiKey = process.env.TEST_SUPPORT_API_KEY;
|
|
await user.save();
|
|
}
|
|
}
|
|
return "test-login";
|
|
},
|
|
};
|
|
},
|
|
async deleteUser() {
|
|
// nothing to do
|
|
},
|
|
};
|
|
}
|