mirror of
https://github.com/roleypoly/roleypoly-v1.git
synced 2025-04-25 04:09:12 +00:00
40 lines
756 B
JavaScript
40 lines
756 B
JavaScript
const Service = require('./Service')
|
|
|
|
class SessionsService extends Service {
|
|
constructor (ctx) {
|
|
super(ctx)
|
|
this.Session = ctx.M.Session
|
|
}
|
|
|
|
async get (id) {
|
|
const user = await this.Session.findOne({ where: { id } })
|
|
|
|
if (user === null) {
|
|
return null
|
|
}
|
|
|
|
return user.data
|
|
}
|
|
|
|
async set (id, data, maxAge) {
|
|
let session = await this.Session.findOne({ where: { id } })
|
|
if (session === null) {
|
|
session = this.Session.build({ id })
|
|
}
|
|
|
|
session.data = data
|
|
session.maxAge = maxAge
|
|
|
|
return session.save()
|
|
}
|
|
|
|
async destroy (id) {
|
|
const sess = await this.Session.findOne({ where: { id } })
|
|
|
|
if (sess != null) {
|
|
return sess.destroy()
|
|
}
|
|
}
|
|
}
|
|
|
|
module.exports = SessionsService
|