Last active
January 22, 2019 21:21
-
-
Save DavyBello/8dd228d5338bc3450ab9979ae0ccc8cf to your computer and use it in GitHub Desktop.
graphql-social-auth Tutorial
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const mongoose = require('mongoose'); | |
const jwt = require('jsonwebtoken'); | |
// Configure mongoose's promise to global promise | |
mongoose.promise = global.Promise; | |
mongoose.connect('mongodb://localhost/graphql-social-auth', { useNewUrlParser: true }); | |
mongoose.set('debug', true); | |
const { Schema } = mongoose; | |
// Create User Schema | |
const UserSchema = new Schema({ | |
name: String, | |
email: { | |
type: String, | |
required: true, | |
unique: true | |
}, | |
social: { | |
facebookProvider: { | |
id: String, | |
token: String, | |
}, | |
googleProvider: { | |
id: String, | |
token: String | |
} | |
} | |
}); | |
// Model Methods | |
UserSchema.methods.generateJWT = function () { | |
const today = new Date(); | |
const expirationDate = new Date(today); | |
expirationDate.setDate(today.getDate() + 60); | |
return jwt.sign({ | |
email: this.email, | |
id: this._id, | |
exp: parseInt(expirationDate.getTime() / 1000, 10), | |
}, 'secret'); | |
} | |
UserSchema.statics.upsertFbUser = async function ({ accessToken, refreshToken, profile }) { | |
const User = this; | |
const user = await User.findOne({ 'social.facebookProvider.id': profile.id }); | |
// no user was found, lets create a new one | |
if (!user) { | |
const newUser = await User.create({ | |
name: profile.displayName || `${profile.familyName} ${profile.givenName}`, | |
email: profile.emails[0].value, | |
'social.facebookProvider': { | |
id: profile.id, | |
token: accessToken, | |
}, | |
}); | |
return newUser; | |
} | |
return user; | |
}; | |
UserSchema.statics.upsertGoogleUser = async function ({ accessToken, refreshToken, profile }) { | |
const User = this; | |
const user = await User.findOne({ 'social.googleProvider.id': profile.id }); | |
// no user was found, lets create a new one | |
if (!user) { | |
const newUser = await User.create({ | |
name: profile.displayName || `${profile.familyName} ${profile.givenName}`, | |
email: profile.emails[0].value, | |
'social.googleProvider': { | |
id: profile.id, | |
token: accessToken, | |
}, | |
}); | |
return newUser; | |
} | |
return user; | |
}; | |
mongoose.model('User', UserSchema); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment