12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- 'use strict'
- const Promise = require('bluebird')
- const bcrypt = require('bcryptjs-then')
- const _ = require('lodash')
- /**
- * Region schema
- *
- * @type {<Mongoose.Schema>}
- */
- var userSchema = Mongoose.Schema({
- email: {
- type: String,
- required: true,
- index: true
- },
- provider: {
- type: String,
- required: true
- },
- providerId: {
- type: String
- },
- password: {
- type: String
- },
- name: {
- type: String
- },
- rights: [{
- role: String,
- path: String,
- exact: Boolean,
- deny: Boolean
- }]
- }, { timestamps: {} })
- userSchema.statics.processProfile = (profile) => {
- let primaryEmail = ''
- if (_.isArray(profile.emails)) {
- let e = _.find(profile.emails, ['primary', true])
- primaryEmail = (e) ? e.value : _.first(profile.emails).value
- } else if (_.isString(profile.email) && profile.email.length > 5) {
- primaryEmail = profile.email
- } else {
- return Promise.reject(new Error('Invalid User Email'))
- }
- return db.User.findOneAndUpdate({
- email: primaryEmail,
- provider: profile.provider
- }, {
- email: primaryEmail,
- provider: profile.provider,
- providerId: profile.id,
- name: profile.displayName || _.split(primaryEmail, '@')[0]
- }, {
- new: true
- }).then((user) => {
- return user || Promise.reject(new Error('You have not been authorized to login to this site yet.'))
- })
- }
- userSchema.statics.hashPassword = (rawPwd) => {
- return bcrypt.hash(rawPwd)
- }
- userSchema.methods.validatePassword = function (rawPwd) {
- return bcrypt.compare(rawPwd, this.password).then((isValid) => {
- return (isValid) ? true : Promise.reject(new Error('Invalid Login'))
- })
- }
- module.exports = Mongoose.model('User', userSchema)
|