]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame_incremental - server/models/user.js
Server: show user created date for the api
[github/Chocobozzz/PeerTube.git] / server / models / user.js
... / ...
CommitLineData
1const mongoose = require('mongoose')
2
3const customUsersValidators = require('../helpers/custom-validators').users
4const modelUtils = require('./utils')
5const peertubeCrypto = require('../helpers/peertube-crypto')
6
7// ---------------------------------------------------------------------------
8
9const UserSchema = mongoose.Schema({
10 createdDate: {
11 type: Date,
12 default: Date.now
13 },
14 password: String,
15 username: String,
16 role: String
17})
18
19UserSchema.path('password').required(customUsersValidators.isUserPasswordValid)
20UserSchema.path('username').required(customUsersValidators.isUserUsernameValid)
21UserSchema.path('role').validate(customUsersValidators.isUserRoleValid)
22
23UserSchema.methods = {
24 isPasswordMatch: isPasswordMatch,
25 toFormatedJSON: toFormatedJSON
26}
27
28UserSchema.statics = {
29 countTotal: countTotal,
30 getByUsername: getByUsername,
31 listForApi: listForApi,
32 loadById: loadById,
33 loadByUsername: loadByUsername
34}
35
36UserSchema.pre('save', function (next) {
37 const user = this
38
39 peertubeCrypto.cryptPassword(this.password, function (err, hash) {
40 if (err) return next(err)
41
42 user.password = hash
43
44 return next()
45 })
46})
47
48mongoose.model('User', UserSchema)
49
50// ------------------------------ METHODS ------------------------------
51
52function isPasswordMatch (password, callback) {
53 return peertubeCrypto.comparePassword(password, this.password, callback)
54}
55
56function toFormatedJSON () {
57 return {
58 id: this._id,
59 username: this.username,
60 role: this.role,
61 createdDate: this.createdDate
62 }
63}
64// ------------------------------ STATICS ------------------------------
65
66function countTotal (callback) {
67 return this.count(callback)
68}
69
70function getByUsername (username) {
71 return this.findOne({ username: username })
72}
73
74function listForApi (start, count, sort, callback) {
75 const query = {}
76 return modelUtils.listForApiWithCount.call(this, query, start, count, sort, callback)
77}
78
79function loadById (id, callback) {
80 return this.findById(id, callback)
81}
82
83function loadByUsername (username, callback) {
84 return this.findOne({ username: username }, callback)
85}