models.js 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. const ObjectID = require("mongodb").ObjectID;
  2. const {connect} = require('mm')
  3. module.exports = async (dbName='player') => {
  4. const {Savable, slice} = await connect(dbName)
  5. async function getModels({id}){
  6. const SlicedSavable = slice([id, 'user'])
  7. class User extends SlicedSavable {
  8. constructor(...params){
  9. super(...params)
  10. //TODO: calc likes count by getter (no two-way relation for this to avoid overflow on many Kilos of likes
  11. //cached like count, which incremented and decremented
  12. //
  13. //following and followers array
  14. }
  15. static get relations(){ //don't needed due to ___owner in most cases
  16. return {
  17. avatar : "userAvatar",
  18. }
  19. }
  20. }
  21. SlicedSavable.addClass(User)
  22. class OwnerSlicedSavable extends SlicedSavable {
  23. get owner(){
  24. if (!this.___owner) return this.___owner
  25. return SlicedSavable.m.User.findOne({_id: ObjectID(this.___owner)})
  26. }
  27. }
  28. class Image extends OwnerSlicedSavable {
  29. constructor(...params){
  30. super(...params)
  31. }
  32. static async fromFileData(fileData){
  33. let image = new Image({})
  34. image.fileData = fileData
  35. image.url = `images/${fileData.filename}`
  36. image.originalFileName = fileData.originalname
  37. await image.save()
  38. return image;
  39. }
  40. async save(...params){
  41. if (this.userAvatar){
  42. if (this.userAvatar._id.toString() !== id){
  43. throw new ReferenceError(`You can't set ava for other user`)
  44. }
  45. }
  46. return await super.save(...params)
  47. }
  48. static get relations(){
  49. return {
  50. userAvatar: "avatar", //if it is ava
  51. }
  52. }
  53. }
  54. SlicedSavable.addClass(Image)
  55. class Track extends OwnerSlicedSavable {
  56. constructor(...params){
  57. super(...params)
  58. }
  59. static async fromFileData(fileData){
  60. let track = new Track({})
  61. track.fileData = fileData
  62. track.url = `tracks/${fileData.filename}`
  63. track.originalFileName = fileData.originalname
  64. await image.save()
  65. return image;
  66. }
  67. static get relations(){
  68. return {
  69. playlists: ["tracks"], //if it is ava
  70. }
  71. }
  72. }
  73. SlicedSavable.addClass(Track)
  74. class Playlist extends OwnerSlicedSavable {
  75. constructor(...params){
  76. super(...params)
  77. }
  78. static get relations(){
  79. return {
  80. tracks: ["playlists"]
  81. }
  82. }
  83. }
  84. SlicedSavable.addClass(Collection)
  85. const thisUser = await Savable.m.User.findOne({_id: ObjectID(id)})
  86. return {models: {
  87. SlicedSavable, ...SlicedSavable.classes
  88. },
  89. thisUser}
  90. }
  91. return {
  92. Savable,
  93. slice,
  94. getModels
  95. }
  96. }