Explorar el Código

feat(Admin/Songs): Bulk (un)verify songs

Owen Diffey hace 3 años
padre
commit
de136927f7
Se han modificado 2 ficheros con 166 adiciones y 22 borrados
  1. 152 0
      backend/logic/actions/songs.js
  2. 14 22
      frontend/src/pages/Admin/tabs/Songs.vue

+ 152 - 0
backend/logic/actions/songs.js

@@ -790,6 +790,78 @@ export default {
 		// TODO Check if video is in queue and Add the song to the appropriate stations
 	}),
 
+	/**
+	 * Verify many songs
+	 *
+	 * @param session
+	 * @param songIds - array of song ids
+	 * @param cb
+	 */
+	verifyMany: isAdminRequired(async function verifyMany(session, songIds, cb) {
+		const successful = [];
+		const failed = [];
+
+		async.waterfall(
+			[
+				next => {
+					async.eachLimit(
+						songIds,
+						1,
+						(songId, next) => {
+							WSModule.runJob(
+								"RUN_ACTION2",
+								{
+									session,
+									namespace: "songs",
+									action: "verify",
+									args: [songId]
+								},
+								this
+							)
+								.then(res => {
+									if (res.status === "error") failed.push(songId);
+									else successful.push(songId);
+									next();
+								})
+								.catch(err => {
+									next(err);
+								});
+						},
+						err => {
+							if (err) next(err);
+							else next();
+						}
+					);
+				}
+			],
+			async err => {
+				if (err) {
+					err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
+
+					this.log("ERROR", "SONGS_VERIFY_MANY", `Failed to verify songs "${failed.join(", ")}". "${err}"`);
+
+					return cb({ status: "error", message: err });
+				}
+
+				let message = "";
+				if (successful.length === 1) message += `1 song has been successfully verified`;
+				else message += `${successful.length} songs have been successfully verified`;
+				if (failed.length > 0) {
+					this.log("ERROR", "SONGS_VERIFY_MANY", `Failed to verify songs "${failed.join(", ")}". "${err}"`);
+					if (failed.length === 1) message += `, failed to verify 1 song`;
+					else message += `, failed to verify ${failed.length} songs`;
+				}
+
+				this.log("SUCCESS", "SONGS_VERIFY_MANY", `${message} "${successful.join(", ")}"`);
+
+				return cb({
+					status: "success",
+					message
+				});
+			}
+		);
+	}),
+
 	/**
 	 * Un-verifies a song
 	 *
@@ -853,6 +925,86 @@ export default {
 		// TODO Check if video is in queue and Add the song to the appropriate stations
 	}),
 
+	/**
+	 * Unverify many songs
+	 *
+	 * @param session
+	 * @param songIds - array of song ids
+	 * @param cb
+	 */
+	unverifyMany: isAdminRequired(async function unverifyMany(session, songIds, cb) {
+		const successful = [];
+		const failed = [];
+
+		async.waterfall(
+			[
+				next => {
+					async.eachLimit(
+						songIds,
+						1,
+						(songId, next) => {
+							WSModule.runJob(
+								"RUN_ACTION2",
+								{
+									session,
+									namespace: "songs",
+									action: "unverify",
+									args: [songId]
+								},
+								this
+							)
+								.then(res => {
+									if (res.status === "error") failed.push(songId);
+									else successful.push(songId);
+									next();
+								})
+								.catch(err => {
+									next(err);
+								});
+						},
+						err => {
+							if (err) next(err);
+							else next();
+						}
+					);
+				}
+			],
+			async err => {
+				if (err) {
+					err = await UtilsModule.runJob("GET_ERROR", { error: err }, this);
+
+					this.log(
+						"ERROR",
+						"SONGS_UNVERIFY_MANY",
+						`Failed to unverify songs "${failed.join(", ")}". "${err}"`
+					);
+
+					return cb({ status: "error", message: err });
+				}
+
+				let message = "";
+				if (successful.length === 1) message += `1 song has been successfully unverified`;
+				else message += `${successful.length} songs have been successfully unverified`;
+				if (failed.length > 0) {
+					this.log(
+						"ERROR",
+						"SONGS_UNVERIFY_MANY",
+						`Failed to unverify songs "${failed.join(", ")}". "${err}"`
+					);
+					if (failed.length === 1) message += `, failed to unverify 1 song`;
+					else message += `, failed to unverify ${failed.length} songs`;
+				}
+
+				this.log("SUCCESS", "SONGS_UNVERIFY_MANY", `${message} "${successful.join(", ")}"`);
+
+				return cb({
+					status: "success",
+					message
+				});
+			}
+		);
+	}),
+
 	/**
 	 * Requests a set of songs
 	 *

+ 14 - 22
frontend/src/pages/Admin/tabs/Songs.vue

@@ -700,30 +700,22 @@ export default {
 			}
 		},
 		verifyMany(selectedRows) {
-			if (selectedRows.length === 1) {
-				this.socket.dispatch(
-					"songs.verify",
-					selectedRows[0]._id,
-					res => {
-						new Toast(res.message);
-					}
-				);
-			} else {
-				new Toast("Bulk verifying not yet implemented.");
-			}
+			this.socket.dispatch(
+				"songs.verifyMany",
+				selectedRows.map(row => row._id),
+				res => {
+					new Toast(res.message);
+				}
+			);
 		},
 		unverifyMany(selectedRows) {
-			if (selectedRows.length === 1) {
-				this.socket.dispatch(
-					"songs.unverify",
-					selectedRows[0]._id,
-					res => {
-						new Toast(res.message);
-					}
-				);
-			} else {
-				new Toast("Bulk unverifying not yet implemented.");
-			}
+			this.socket.dispatch(
+				"songs.unverifyMany",
+				selectedRows.map(row => row._id),
+				res => {
+					new Toast(res.message);
+				}
+			);
 		},
 		tagMany() {
 			new Toast("Bulk tagging not yet implemented.");