migration2.js 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. import async from "async";
  2. /**
  3. * Migration 2
  4. *
  5. * Updates the document version 1 stations to add the includedPlaylists and excludedPlaylists properties, and to create a station playlist and link that playlist with the playlist2 property.
  6. *
  7. * @param {object} MigrationModule - the MigrationModule
  8. * @returns {Promise} - returns promise
  9. */
  10. export default async function migrate(MigrationModule) {
  11. const stationModel = await MigrationModule.runJob("GET_MODEL", { modelName: "station" }, this);
  12. const playlistModel = await MigrationModule.runJob("GET_MODEL", { modelName: "playlist" }, this);
  13. return new Promise((resolve, reject) => {
  14. async.waterfall(
  15. [
  16. next => {
  17. this.log("INFO", `Migration 2. Finding stations with document version 1.`);
  18. stationModel.find({ documentVersion: 1 }, (err, stations) => {
  19. this.log("INFO", `Migration 2. Found ${stations.length} stations with document version 1.`);
  20. next(
  21. null,
  22. stations.map(station => station._doc)
  23. );
  24. });
  25. },
  26. (stations, next) => {
  27. async.eachLimit(
  28. stations,
  29. 1,
  30. (station, next) => {
  31. this.log("INFO", `Migration 2. Creating station playlist for station ${station._id}.`);
  32. playlistModel.create(
  33. {
  34. isUserModifiable: false,
  35. displayName: `Station - ${station.displayName}`,
  36. songs: [],
  37. createdBy: station.type === "official" ? "Musare" : station.createdBy,
  38. createdFor: `${station._id}`,
  39. createdAt: Date.now(),
  40. type: "station",
  41. documentVersion: 1
  42. },
  43. (err, playlist2) => {
  44. if (err) next(err);
  45. else {
  46. this.log("INFO", `Migration 2. Updating station ${station._id}.`);
  47. stationModel.updateOne(
  48. { _id: station._id },
  49. {
  50. $set: {
  51. playlist2: playlist2._id,
  52. includedPlaylists: [],
  53. excludedPlaylists: [],
  54. playlist: station.type === "official" ? [] : station.playlist,
  55. documentVersion: 2
  56. }
  57. },
  58. (err, res) => {
  59. if (err) next(err);
  60. else {
  61. this.log(
  62. "INFO",
  63. `Migration 2. Updating station ${station._id} done. Matched: ${res.n}, modified: ${res.nModified}, ok: ${res.ok}.`
  64. );
  65. }
  66. }
  67. );
  68. next();
  69. }
  70. }
  71. );
  72. },
  73. next
  74. );
  75. }
  76. ],
  77. (err, response) => {
  78. if (err) {
  79. reject(new Error(err));
  80. } else {
  81. resolve(response);
  82. }
  83. }
  84. );
  85. });
  86. }