index.js 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. (async() => {
  2. const Sequelize = require("sequelize");
  3. const sequelize = new Sequelize("test", "","",{
  4. host: 'localhost',
  5. dialect: 'mysql',
  6. pool: {
  7. max: 5,
  8. min: 0,
  9. idle: 10000
  10. },
  11. //logging: false
  12. });
  13. const Slice = sequelize.define("slice",{
  14. permission: Sequelize.STRING, //create, update, delete, read, etc
  15. model: Sequelize.STRING,
  16. modelId: Sequelize.INTEGER,
  17. //plain list of: "tags" like: admin, manager, user, anon, User can be tagged by this word in string list variable
  18. //OR: just userId.
  19. //OR, if negative number (or hash #100500) - other slice id (use abs to get proper table id)
  20. //this way optimizing
  21. slice: {type: Sequelize.TEXT, //PROBABLY STRING
  22. get(){
  23. return this.getDataValue("slice").split(",")
  24. },
  25. set(newValue){
  26. newValue = "length" in newValue ? newValue.join(",") : newValue
  27. return this.setDataValue("slice", newValue)
  28. }
  29. }
  30. },{
  31. getterMethods: {
  32. async all(){
  33. const Op = Sequelize.Op
  34. this._subSlicesList = this.slice.filter(id => id[0] == "#" || id[0] == "-") //detect - or #
  35. .map( id => +id.substr(1)) //cut first char + toInt
  36. let subSlices = await Slice.find({where: {id: {[Op.in]: this._subSlicesList}}})
  37. for (let subSlice of subSlices){
  38. this._subSlicesList = this._subSlicesList.filter(id => subSlice.id !== id)
  39. this._subSlicesList = [...this._subSlicesList,... await subSlice.all()]
  40. }
  41. return this._subSlicesList
  42. }
  43. },
  44. indexes: [
  45. {
  46. fields: ["modelId", "model", "permission"]
  47. },
  48. ]
  49. })
  50. const User = sequelize.define("user", {
  51. login: Sequelize.STRING,
  52. password: Sequelize.STRING,
  53. })
  54. const Content = sequelize.define("content", {
  55. title: Sequelize.STRING,
  56. data: Sequelize.TEXT
  57. })
  58. await sequelize.sync()
  59. function sliced(model){
  60. }
  61. let delay = ms => new Promise(r => setTimeout(r, ms))
  62. })()