Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 | 16x 16x 16x 16x 16x 16x 16x | import Crowi from 'server/crowi'
import { Types, Document, Model, Schema, model } from 'mongoose'
// import Debug from 'debug'
import mongoosePaginate from 'mongoose-paginate'
export interface ShareAccessDocument extends Document {
_id: Types.ObjectId
share: Types.ObjectId
tracking: Types.ObjectId
createdAt: Date
lastAccessedAt: Date
}
export interface ShareAccessModel extends Model<ShareAccessDocument> {
paginate: any
findAccesses(query, options: { page?: number; limit?: number; sort?: object }): Promise<any>
access(shareId: Types.ObjectId, trackingId: Types.ObjectId): Promise<any>
}
export default (crowi: Crowi) => {
// const debug = Debug('crowi:models:shareAccess')
const shareAccessSchema = new Schema<ShareAccessDocument, ShareAccessModel>({
share: { type: Schema.Types.ObjectId, ref: 'Share', index: true },
tracking: { type: Schema.Types.ObjectId, ref: 'Tracking', index: true },
createdAt: { type: Date, default: Date.now },
lastAccessedAt: { type: Date, default: Date.now },
})
shareAccessSchema.index({ share: 1, tracking: 1 }, { unique: true })
shareAccessSchema.plugin(mongoosePaginate)
shareAccessSchema.statics.findAccesses = async function(query, options = {}) {
const page = options.page || 1
const limit = options.limit || 50
const sort = options.sort || { lastAccessedAt: -1 }
return this.paginate(query, {
page,
limit,
sort,
populate: [
{
path: 'tracking',
model: 'Tracking',
},
{
path: 'share',
model: 'Share',
populate: ['page', 'creator'],
},
],
})
}
shareAccessSchema.statics.access = async function(shareId, trackingId) {
const query = { share: shareId, tracking: trackingId }
const update = { lastAccessedAt: Date.now() }
return this.findOneAndUpdate(query, update, { upsert: true, new: true }).exec()
}
const ShareAccess = model<ShareAccessDocument, ShareAccessModel>('ShareAccess', shareAccessSchema)
return ShareAccess
}
|