2020-07-21 13:20:51 +00:00
|
|
|
import {UserProfile} from 'app/common/LoginSessionAPI';
|
|
|
|
import {Client} from 'app/server/lib/Client';
|
|
|
|
import {ILoginSession} from 'app/server/lib/ILoginSession';
|
|
|
|
|
|
|
|
export class LoginSession implements ILoginSession {
|
|
|
|
public clients: Set<Client> = new Set();
|
|
|
|
public async getEmail() {
|
2020-10-02 15:10:00 +00:00
|
|
|
return process.env.GRIST_DEFAULT_EMAIL || 'anon@getgrist.com';
|
|
|
|
}
|
|
|
|
public async getSessionProfile() {
|
|
|
|
return {
|
|
|
|
name: await this.getEmail(),
|
|
|
|
email: await this.getEmail(),
|
|
|
|
};
|
2020-07-21 13:20:51 +00:00
|
|
|
}
|
|
|
|
public async clearSession(): Promise<void> {
|
|
|
|
// do nothing
|
|
|
|
}
|
|
|
|
public async testSetProfile(profile: UserProfile|null): Promise<void> {
|
|
|
|
// do nothing
|
|
|
|
}
|
|
|
|
public async updateTokenForTesting(idToken: string): Promise<void> {
|
|
|
|
// do nothing
|
|
|
|
}
|
|
|
|
public async getCurrentTokenForTesting(): Promise<string|null> {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
public async useTestToken(idToken: string): Promise<void> {
|
|
|
|
// do nothing
|
|
|
|
}
|
|
|
|
}
|