UNPKG

@next-nest-auth/nestauth

Version:

NestAuth is an authentication solution for NestJS applications, designed to handle user login, session management, and token-based authentication (JWT). It integrates seamlessly with Next.js and other frontends to provide a unified authentication system,

45 lines 2.27 kB
"use strict"; var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) { var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d; if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc); else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r; return c > 3 && r && Object.defineProperty(target, key, r), r; }; var __metadata = (this && this.__metadata) || function (k, v) { if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v); }; Object.defineProperty(exports, "__esModule", { value: true }); exports.NestAuthFacebookStrategy = void 0; const passport_1 = require("@nestjs/passport"); const passport_facebook_1 = require("passport-facebook"); const common_1 = require("@nestjs/common"); let NestAuthFacebookStrategy = class NestAuthFacebookStrategy extends (0, passport_1.PassportStrategy)(passport_facebook_1.Strategy, "facebook") { constructor() { super({ clientID: process.env.FACEBOOK_APP_ID || "your-app-id", clientSecret: process.env.FACEBOOK_APP_SECRET || "your-app-secret", callbackURL: process.env.BASE_URL + "/nestauth/facebook-redirect", scope: ["email", "public_profile"], profileFields: ["id", "displayName", "photos", "email"], }); } async validate(accessToken, refreshToken, profile, done) { const { name, emails, photos } = profile; const user = { id: profile.id, email: emails[0].value, firstName: name.givenName, lastName: name.familyName, picture: photos[0].value, accessToken, refreshToken, }; done(null, user); } }; exports.NestAuthFacebookStrategy = NestAuthFacebookStrategy; exports.NestAuthFacebookStrategy = NestAuthFacebookStrategy = __decorate([ (0, common_1.Injectable)(), __metadata("design:paramtypes", []) ], NestAuthFacebookStrategy); //# sourceMappingURL=nestauth-facebook.strategy.js.map