2016-07-01 16:03:53 +02:00
|
|
|
const mongoose = require('mongoose')
|
|
|
|
|
2016-08-04 22:32:36 +02:00
|
|
|
const customUsersValidators = require('../helpers/custom-validators').users
|
2016-08-16 22:31:45 +02:00
|
|
|
const modelUtils = require('./utils')
|
2016-08-25 17:57:37 +02:00
|
|
|
const peertubeCrypto = require('../helpers/peertube-crypto')
|
2016-08-04 22:32:36 +02:00
|
|
|
|
2016-10-01 09:12:02 +02:00
|
|
|
const OAuthToken = mongoose.model('OAuthToken')
|
|
|
|
|
2016-07-01 16:03:53 +02:00
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
const UserSchema = mongoose.Schema({
|
2016-08-16 22:31:45 +02:00
|
|
|
createdDate: {
|
|
|
|
type: Date,
|
|
|
|
default: Date.now
|
|
|
|
},
|
2016-07-01 16:03:53 +02:00
|
|
|
password: String,
|
2016-08-04 22:32:36 +02:00
|
|
|
username: String,
|
|
|
|
role: String
|
2016-07-01 16:03:53 +02:00
|
|
|
})
|
|
|
|
|
2016-08-04 22:32:36 +02:00
|
|
|
UserSchema.path('password').required(customUsersValidators.isUserPasswordValid)
|
|
|
|
UserSchema.path('username').required(customUsersValidators.isUserUsernameValid)
|
|
|
|
UserSchema.path('role').validate(customUsersValidators.isUserRoleValid)
|
|
|
|
|
|
|
|
UserSchema.methods = {
|
2016-10-02 12:19:02 +02:00
|
|
|
isPasswordMatch,
|
|
|
|
toFormatedJSON
|
2016-08-04 22:32:36 +02:00
|
|
|
}
|
2016-07-01 16:03:53 +02:00
|
|
|
|
|
|
|
UserSchema.statics = {
|
2016-10-02 12:19:02 +02:00
|
|
|
countTotal,
|
|
|
|
getByUsername,
|
|
|
|
list,
|
|
|
|
listForApi,
|
|
|
|
loadById,
|
|
|
|
loadByUsername
|
2016-07-01 16:03:53 +02:00
|
|
|
}
|
|
|
|
|
2016-08-25 17:57:37 +02:00
|
|
|
UserSchema.pre('save', function (next) {
|
|
|
|
const user = this
|
|
|
|
|
|
|
|
peertubeCrypto.cryptPassword(this.password, function (err, hash) {
|
|
|
|
if (err) return next(err)
|
|
|
|
|
|
|
|
user.password = hash
|
|
|
|
|
|
|
|
return next()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2016-10-01 09:12:02 +02:00
|
|
|
UserSchema.pre('remove', function (next) {
|
|
|
|
const user = this
|
|
|
|
|
|
|
|
OAuthToken.removeByUserId(user._id, next)
|
|
|
|
})
|
|
|
|
|
2016-07-01 16:03:53 +02:00
|
|
|
mongoose.model('User', UserSchema)
|
|
|
|
|
2016-08-25 17:57:37 +02:00
|
|
|
// ------------------------------ METHODS ------------------------------
|
|
|
|
|
|
|
|
function isPasswordMatch (password, callback) {
|
|
|
|
return peertubeCrypto.comparePassword(password, this.password, callback)
|
|
|
|
}
|
|
|
|
|
|
|
|
function toFormatedJSON () {
|
|
|
|
return {
|
|
|
|
id: this._id,
|
|
|
|
username: this.username,
|
2016-09-23 17:19:57 +02:00
|
|
|
role: this.role,
|
|
|
|
createdDate: this.createdDate
|
2016-08-25 17:57:37 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
// ------------------------------ STATICS ------------------------------
|
2016-07-01 16:03:53 +02:00
|
|
|
|
2016-08-16 22:31:45 +02:00
|
|
|
function countTotal (callback) {
|
2016-08-16 21:51:35 +02:00
|
|
|
return this.count(callback)
|
|
|
|
}
|
|
|
|
|
2016-08-25 17:57:37 +02:00
|
|
|
function getByUsername (username) {
|
|
|
|
return this.findOne({ username: username })
|
2016-08-04 22:32:36 +02:00
|
|
|
}
|
|
|
|
|
2016-09-26 22:36:36 +02:00
|
|
|
function list (callback) {
|
|
|
|
return this.find(callback)
|
|
|
|
}
|
|
|
|
|
2016-08-16 22:31:45 +02:00
|
|
|
function listForApi (start, count, sort, callback) {
|
|
|
|
const query = {}
|
|
|
|
return modelUtils.listForApiWithCount.call(this, query, start, count, sort, callback)
|
2016-07-01 16:03:53 +02:00
|
|
|
}
|
|
|
|
|
2016-08-09 21:44:45 +02:00
|
|
|
function loadById (id, callback) {
|
|
|
|
return this.findById(id, callback)
|
|
|
|
}
|
|
|
|
|
2016-08-04 22:32:36 +02:00
|
|
|
function loadByUsername (username, callback) {
|
|
|
|
return this.findOne({ username: username }, callback)
|
|
|
|
}
|