123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239 |
- const ObjectID = require("mongodb").ObjectID;
- const {connect} = require('mm')
- module.exports = async (dbName='hipstagram') => {
- const {Savable, slice} = await connect(dbName)
- async function getModels({id}){
- const SlicedSavable = slice([id, 'user'])
- class User extends SlicedSavable {
- constructor(...params){
- super(...params)
- //TODO: calc likes count by getter (no two-way relation for this to avoid overflow on many Kilos of likes
- //cached like count, which incremented and decremented
- //
- //following and followers array
- }
- static get relations(){ //don't needed due to ___owner in most cases
- return {
- avatar : "userAvatar",
- incomings: "to",
- followers: ["following"],
- following: ["followers"],
- }
- }
- static get guestRelations(){
- return ["followers"]
- }
- }
- SlicedSavable.addClass(User)
- class OwnerSlicedSavable extends SlicedSavable {
- get owner(){
- if (!this.___owner) return this.___owner
- return SlicedSavable.m.User.findOne({_id: ObjectID(this.___owner)})
- }
- }
- class Like extends OwnerSlicedSavable {
- constructor(...params){
- super(...params)
- //TODO:
- //entity
- //entityLikesCount?
- }
- static get relations(){
- return {
- }
- }
- static get defaultPermissions(){
- return {
- //savable refs, objectid's, words like 'tags' or 'roles'
- read: ['owner', 'user'],
- write: ['owner'],
- create: ['user'],
- delete: ['owner'],
- /*permission
- * TODO: permissions for read and write permissions
- *
- */
- }
- }
- }
- SlicedSavable.addClass(Like)
- class Post extends OwnerSlicedSavable {
- constructor(...params){
- super(...params)
- //TODO: calc likes count by getter (no two-way relation for this to avoid overflow on many Kilos of likes
- //cached like count, which incremented and decremented
- //
- }
- get likes(){
- return (async () => {
- let result = []
- for (let like of SlicedSavable.m.Like.find({'post._id': this._id}, {limit: [100], sort: ['_id', 1]})){
- try {await like; result.push(like) } catch(e) {}
- }
- return result;
- })()
- }
- static get relations(){
- return {
- images: ["posts"],
- comments: "post",
- directs: "post",
- collections: ["posts"]
- }
- }
- static get guestRelations(){
- return ["comments", "directs"]
- }
- static get defaultPermissions(){
- return {
- //savable refs, objectid's, words like 'tags' or 'roles'
- read: ['owner', 'user'],
- write: ['owner'],
- create: ['user'],
- delete: ['owner', 'admin'],
- /*permission
- * TODO: permissions for read and write permissions
- *
- */
- }
- }
- }
- SlicedSavable.addClass(Post)
- class Image extends OwnerSlicedSavable {
- constructor(...params){
- super(...params)
- }
- static async fromFileData(fileData){
- let image = new Image({})
- image.fileData = fileData
- image.url = `images/${fileData.filename}`
- image.originalFileName = fileData.originalname
- await image.save()
- return image;
- }
- async save(...params){
- if (this.userAvatar){
- if (this.userAvatar._id.toString() !== id){
- throw new ReferenceError(`You can't set ava for other user`)
- }
- }
- return await super.save(...params)
- }
- static get relations(){
- return {
- userAvatar: "avatar", //if it is ava
- posts: ["images"], //if in post: m2m with posts
- directs: "image", //if in direct: m2o with directs
- }
- }
- }
- SlicedSavable.addClass(Image)
- class Comment extends OwnerSlicedSavable {
- constructor(...params){
- super(...params)
- //TODO: calc likes count by getter (no two-way relation for this to avoid overflow on many Kilos of likes
- //cached like count, which incremented and decremented
- }
- static get relations(){
- return {
- post: ["comments"],
- answers: "answerTo",
- answerTo: ["answers"],
- }
- }
- static get guestRelations(){
- return ["answers"]
- }
- }
- SlicedSavable.addClass(Comment)
- class Direct extends OwnerSlicedSavable {
- constructor(...params){
- super(...params)
- }
- static get relations(){
- return {
- to: ["incomings"],
- image: ["directs"],
- likes: "entity",
- }
- }
- static get guestRelations(){
- return ["to", "likes"]
- }
- }
- SlicedSavable.addClass(Direct)
- class Collection extends OwnerSlicedSavable {
- constructor(...params){
- super(...params)
- }
-
- static get relations(){
- return {
- posts: "collections"
- }
- }
- }
- SlicedSavable.addClass(Collection)
- const thisUser = await Savable.m.User.findOne({_id: ObjectID(id)})
- return {models: {
- SlicedSavable, ...SlicedSavable.classes
- },
- thisUser}
- }
- return {
- Savable,
- slice,
- getModels
- }
- }
|