50 lines
1.3 KiB
TypeScript
50 lines
1.3 KiB
TypeScript
import { ConfigurationService } from '@ghostfolio/api/services/configuration.service';
|
|
import { Injectable, Logger } from '@nestjs/common';
|
|
import { PassportStrategy } from '@nestjs/passport';
|
|
import { Provider } from '@prisma/client';
|
|
import { Strategy } from 'passport-google-oauth20';
|
|
|
|
import { AuthService } from './auth.service';
|
|
|
|
@Injectable()
|
|
export class GoogleStrategy extends PassportStrategy(Strategy, 'google') {
|
|
public constructor(
|
|
private readonly authService: AuthService,
|
|
readonly configurationService: ConfigurationService
|
|
) {
|
|
super({
|
|
callbackURL: `${configurationService.get(
|
|
'ROOT_URL'
|
|
)}/api/auth/google/callback`,
|
|
clientID: configurationService.get('GOOGLE_CLIENT_ID'),
|
|
clientSecret: configurationService.get('GOOGLE_SECRET'),
|
|
passReqToCallback: true,
|
|
scope: ['email', 'profile']
|
|
});
|
|
}
|
|
|
|
public async validate(
|
|
request: any,
|
|
token: string,
|
|
refreshToken: string,
|
|
profile,
|
|
done: Function,
|
|
done2: Function
|
|
) {
|
|
try {
|
|
const jwt: string = await this.authService.validateOAuthLogin({
|
|
provider: Provider.GOOGLE,
|
|
thirdPartyId: profile.id
|
|
});
|
|
const user = {
|
|
jwt
|
|
};
|
|
|
|
done(null, user);
|
|
} catch (error) {
|
|
Logger.error(error, 'GoogleStrategy');
|
|
done(error, false);
|
|
}
|
|
}
|
|
}
|