瀏覽代碼

refactor: public playlists are now exportable, and admins can export any playlist

Kristian Vos 3 年之前
父節點
當前提交
ba8af6b7e3
共有 2 個文件被更改,包括 20 次插入8 次删除
  1. 19 3
      backend/logic/api.js
  2. 1 5
      frontend/src/components/modals/EditPlaylist/index.vue

+ 19 - 3
backend/logic/api.js

@@ -124,13 +124,29 @@ class _APIModule extends CoreClass {
 						});
 					});
 
-					response.app.get("/export/privatePlaylist/:playlistId", isLoggedIn, (req, res) => {
+					response.app.get("/export/privatePlaylist/:playlistId", async (req, res) => {
 						const { playlistId } = req.params;
+
+						const userModel = await DBModule.runJob("GET_MODEL", { modelName: "user" });
+
 						PlaylistsModule.runJob("GET_PLAYLIST", { playlistId })
 							.then(playlist => {
-								if (playlist.createdBy === req.session.userId)
+								if (playlist.privacy === "public")
 									res.json({ status: "success", playlist });
-								else res.json({ status: "error", message: "You're not the owner." });
+								else {
+									isLoggedIn(req, res, () => {
+										if (playlist.createdBy === req.session.userId) 
+											res.json({ status: "success", playlist });
+										else {
+											userModel.findOne({ _id: req.session.userId }, (err, user) => {
+												if (err) res.json({ status: "error", message: err.message });
+												else if (user.role === "admin")
+													res.json({ status: "success", playlist });
+												else res.json({ status: "error", message: "You're not allowed to download this playlist." });
+											});
+										}
+									})
+								}
 							})
 							.catch(err => {
 								res.json({ status: "error", message: err.message });

+ 1 - 5
frontend/src/components/modals/EditPlaylist/index.vue

@@ -212,11 +212,7 @@
 		<template #footer>
 			<button
 				class="button is-default"
-				v-if="
-					userId === playlist.createdBy ||
-					isEditable() ||
-					playlist.privacy === 'public'
-				"
+				v-if="isOwner() || isAdmin() || playlist.privacy === 'public'"
 				@click="downloadPlaylist()"
 			>
 				Download Playlist