Browse Source

fix: some playlist actions were missing checks to see if user was allowed to perform action

Kristian Vos 3 years ago
parent
commit
66c29dc7db
1 changed files with 34 additions and 1 deletions
  1. 34 1
      backend/logic/actions/playlists.js

+ 34 - 1
backend/logic/actions/playlists.js

@@ -846,7 +846,18 @@ export default {
 			[
 			[
 				next => {
 				next => {
 					if (!playlistId) return next("No playlist id.");
 					if (!playlistId) return next("No playlist id.");
-					return playlistModel.findById(playlistId, next);
+					return next();
+				},
+
+				next => {
+					PlaylistsModule.runJob("GET_PLAYLIST", { playlistId }, this)
+						.then(playlist => {
+							if (!playlist || playlist.createdBy !== session.userId)
+								return next("Something went wrong when trying to get the playlist");
+
+							next(null, playlist);
+						})
+						.catch(next);
 				},
 				},
 
 
 				(playlist, next) => {
 				(playlist, next) => {
@@ -915,6 +926,17 @@ export default {
 					return next();
 					return next();
 				},
 				},
 
 
+				next => {
+					PlaylistsModule.runJob("GET_PLAYLIST", { playlistId }, this)
+						.then(playlist => {
+							if (!playlist || playlist.createdBy !== session.userId)
+								return next("Something went wrong when trying to get the playlist");
+
+							next();
+						})
+						.catch(next);
+				},
+
 				// remove song from playlist
 				// remove song from playlist
 				next => {
 				next => {
 					playlistModel.updateOne(
 					playlistModel.updateOne(
@@ -1376,6 +1398,17 @@ export default {
 					return next();
 					return next();
 				},
 				},
 
 
+				next => {
+					PlaylistsModule.runJob("GET_PLAYLIST", { playlistId }, this)
+						.then(playlist => {
+							if (!playlist || playlist.createdBy !== session.userId)
+								return next("Something went wrong when trying to get the playlist");
+							
+							next();
+						})
+						.catch(next);
+				},
+
 				// remove song from playlist
 				// remove song from playlist
 				next => playlistModel.updateOne({ _id: playlistId }, { $pull: { songs: { youtubeId } } }, next),
 				next => playlistModel.updateOne({ _id: playlistId }, { $pull: { songs: { youtubeId } } }, next),