You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
209 lines
5.6 KiB
209 lines
5.6 KiB
import { isAccountLoggedIn } from "./auth";
|
|
import { refreshCookie } from "@/api/auth";
|
|
import { dailySignin } from "@/api/user";
|
|
import dayjs from "dayjs";
|
|
import store from "@/store";
|
|
|
|
export function isTrackPlayable(track) {
|
|
let result = {
|
|
playable: true,
|
|
reason: "",
|
|
};
|
|
// cloud storage judgement logic
|
|
if (isAccountLoggedIn() && track?.privilege?.cs) {
|
|
return result;
|
|
}
|
|
if (track.fee === 1 || track.privilege?.fee === 1) {
|
|
if (isAccountLoggedIn() && store.state.data.user.vipType === 11) {
|
|
result.playable = true;
|
|
} else {
|
|
result.playable = false;
|
|
result.reason = "VIP Only";
|
|
}
|
|
} else if (track.fee === 4 || track.privilege?.fee === 4) {
|
|
result.playable = false;
|
|
result.reason = "Paid Album";
|
|
} else if (
|
|
track.noCopyrightRcmd !== null &&
|
|
track.noCopyrightRcmd !== undefined
|
|
) {
|
|
result.playable = false;
|
|
result.reason = "No Copyright";
|
|
} else if (track.privilege?.st < 0) {
|
|
result.playable = false;
|
|
result.reason = "The song has been removed from the shelves";
|
|
}
|
|
return result;
|
|
}
|
|
|
|
export function mapTrackPlayableStatus(tracks, privileges = []) {
|
|
return tracks.map((t) => {
|
|
const privilege = privileges.find((item) => item.id === t.id) || {};
|
|
if (t.privilege) {
|
|
Object.assign(t.privilege, privilege);
|
|
} else {
|
|
t.privilege = privilege;
|
|
}
|
|
let result = isTrackPlayable(t);
|
|
t.playable = result.playable;
|
|
t.reason = result.reason;
|
|
return t;
|
|
});
|
|
}
|
|
|
|
export function randomNum(minNum, maxNum) {
|
|
switch (arguments.length) {
|
|
case 1:
|
|
return parseInt(Math.random() * minNum + 1, 10);
|
|
case 2:
|
|
return parseInt(Math.random() * (maxNum - minNum + 1) + minNum, 10);
|
|
default:
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
export function shuffleAList(list) {
|
|
let sortsList = list.map((t) => t.sort);
|
|
for (let i = 1; i < sortsList.length; i++) {
|
|
const random = Math.floor(Math.random() * (i + 1));
|
|
[sortsList[i], sortsList[random]] = [sortsList[random], sortsList[i]];
|
|
}
|
|
let newSorts = {};
|
|
list.map((track) => {
|
|
newSorts[track.id] = sortsList.pop();
|
|
});
|
|
return newSorts;
|
|
}
|
|
|
|
export function throttle(fn, time) {
|
|
let isRun = false;
|
|
return function () {
|
|
if (isRun) return;
|
|
isRun = true;
|
|
fn.apply(this, arguments);
|
|
setTimeout(() => {
|
|
isRun = false;
|
|
}, time);
|
|
};
|
|
}
|
|
|
|
export function updateHttps(url) {
|
|
if (!url) return "";
|
|
return url.replace(/^http:/, "https:");
|
|
}
|
|
|
|
export function dailyTask() {
|
|
let lastDate = store.state.data.lastRefreshCookieDate;
|
|
if (
|
|
isAccountLoggedIn() &&
|
|
(lastDate === undefined || lastDate !== dayjs().date())
|
|
) {
|
|
console.log("execute dailyTask");
|
|
store.commit("updateData", {
|
|
key: "lastRefreshCookieDate",
|
|
value: dayjs().date(),
|
|
});
|
|
refreshCookie();
|
|
dailySignin(0);
|
|
dailySignin(1);
|
|
}
|
|
}
|
|
|
|
export function changeAppearance(appearance) {
|
|
if (appearance === "auto" || appearance === undefined) {
|
|
appearance = window.matchMedia("(prefers-color-scheme: dark)").matches
|
|
? "dark"
|
|
: "light";
|
|
}
|
|
document.body.setAttribute("data-theme", appearance);
|
|
document
|
|
.querySelector('meta[name="theme-color"]')
|
|
.setAttribute("content", appearance === "dark" ? "#222" : "#fff");
|
|
}
|
|
|
|
export function splitSoundtrackAlbumTitle(title) {
|
|
let keywords = [
|
|
"Music from the Original Motion Picture Score",
|
|
"The Original Motion Picture Soundtrack",
|
|
"Original MGM Motion Picture Soundtrack",
|
|
"Complete Original Motion Picture Score",
|
|
"Original Music From The Motion Picture",
|
|
"Music From The Disney+ Original Movie",
|
|
"Original Music From The Netflix Film",
|
|
"Original Score to the Motion Picture",
|
|
"Original Motion Picture Soundtrack",
|
|
"Soundtrack from the Motion Picture",
|
|
"Original Television Soundtrack",
|
|
"Original Motion Picture Score",
|
|
"Music From the Motion Picture",
|
|
"Music From The Motion Picture",
|
|
"Complete Motion Picture Score",
|
|
"Music from the Motion Picture",
|
|
"Original Videogame Soundtrack",
|
|
"La Bande Originale du Film",
|
|
"Music from the Miniseries",
|
|
"Bande Originale du Film",
|
|
"Die Original Filmmusik",
|
|
"Original Soundtrack",
|
|
"Complete Score",
|
|
"Original Score",
|
|
];
|
|
for (let keyword of keywords) {
|
|
if (title.includes(keyword) === false) continue;
|
|
return {
|
|
title: title
|
|
.replace(`(${keyword})`, "")
|
|
.replace(`: ${keyword}`, "")
|
|
.replace(`[${keyword}]`, "")
|
|
.replace(`- ${keyword}`, "")
|
|
.replace(`${keyword}`, ""),
|
|
subtitle: keyword,
|
|
};
|
|
}
|
|
return {
|
|
title: title,
|
|
subtitle: "",
|
|
};
|
|
}
|
|
|
|
export function splitAlbumTitle(title) {
|
|
let keywords = [
|
|
"Bonus Tracks Edition",
|
|
"Complete Edition",
|
|
"Deluxe Edition",
|
|
"Deluxe Version",
|
|
"Tour Edition",
|
|
];
|
|
for (let keyword of keywords) {
|
|
if (title.includes(keyword) === false) continue;
|
|
return {
|
|
title: title
|
|
.replace(`(${keyword})`, "")
|
|
.replace(`: ${keyword}`, "")
|
|
.replace(`[${keyword}]`, "")
|
|
.replace(`- ${keyword}`, "")
|
|
.replace(`${keyword}`, ""),
|
|
subtitle: keyword,
|
|
};
|
|
}
|
|
return {
|
|
title: title,
|
|
subtitle: "",
|
|
};
|
|
}
|
|
|
|
export function bytesToSize(bytes) {
|
|
var marker = 1024; // Change to 1000 if required
|
|
var decimal = 2; // Change as required
|
|
var kiloBytes = marker;
|
|
var megaBytes = marker * marker;
|
|
var gigaBytes = marker * marker * marker;
|
|
|
|
if (bytes < kiloBytes) return bytes + " Bytes";
|
|
else if (bytes < megaBytes)
|
|
return (bytes / kiloBytes).toFixed(decimal) + " KB";
|
|
else if (bytes < gigaBytes)
|
|
return (bytes / megaBytes).toFixed(decimal) + " MB";
|
|
else return (bytes / gigaBytes).toFixed(decimal) + " GB";
|
|
}
|