// ==UserScript== // @name Deezer Artist Dumper // @namespace http://tampermonkey.net/ // @version 1.4.2 // @description Adds the feature to add all artists songs to a playlist // @author Bababoiiiii // @match https://www.deezer.com/* // @icon https://www.google.com/s2/favicons?sz=64&domain=deezer.com // @grant GM_getValue // @grant GM_setValue // @grant unsafeWindow // @downloadURL none // ==/UserScript== function set_css() { const css = document.createElement("style"); css.type = "text/css"; css.textContent = ` .main_btn { min-width: var(--tempo-sizes-size-xl); border-radius: 50%; } .main_btn:hover, .create_new_regex_btn:hover, .my_textarea:hover { background-color: var(--tempo-colors-background-neutral-tertiary-hovered); } .main_btn.active { color: var(--tempo-colors-text-accent-primary-default); } .main_btn_text { display: inline-block; padding-top: 4.4px; scale: 3.5; pointer-events: none; } .main_div { position: absolute; left: 110%; transform: translateY(-60%); width: 500px; overflow: auto; display: none; resize: horizontal; border-radius: 8px; background-color: var(--tempo-colors-background-neutral-secondary-default); cursor: pointer; z-index: 300; } .main_div * { font-size: 14px; color: currentcolor; } .my_textarea { position: relative; width: 100%; height: 75px; line-height: 1.5; background-color: var(--tempo-colors-background-neutral-secondary-default); border: 0.5px solid var(--tempo-colors-divider-neutral-primary-default); color: var(--tempo-colors-text-neutral-secondary-default); padding: 5px; resize: vertical; overflow-y: auto; } .my_textarea:hover, .my_dropdown:hover, .searchbar:hover, .regex_input:hover, .min_song_length_input:hover { border-color: var(--tempo-colors-text-neutral-secondary-default) !important; } .options_div { padding: 5px; display: grid; grid-template-columns: minmax(0, 2.2fr) minmax(0, 0.9fr) minmax(0, 0.75fr); box-sizing: border-box; border: 1px solid var(--tempo-colors-divider-neutral-primary-default); } .options_div .song_type_options_div { padding: 5px; display: grid; box-sizing: border-box; grid-template-columns: minmax(0, 0.4fr) minmax(0, 0.7fr) minmax(0, 0.65fr) minmax(0, 0.7fr); } .options_div .song_type_options_div input { margin-left: 5px; } .my_dropdown { font-size: 14px; background-color: var(--tempo-colors-background-neutral-secondary-default); border: 0.5px solid var(--tempo-colors-divider-neutral-primary-default); border-radius: 4px; } .min_song_length_input { border: 0.5px solid var(--tempo-colors-divider-neutral-primary-default); border-radius: 4px; background-color: var(--tempo-colors-background-neutral-secondary-default); padding: 5px; margin-left: 5px; } .searchbar { width: 100%; border: 0.5px solid var(--tempo-colors-divider-neutral-primary-default); border-radius: 6px; background-color: var(--tempo-colors-background-neutral-secondary-default); margin-top: 5px; padding: 8px 11px; } .new_playlist_btn { width: 100%; display: flex; align-items: center; padding: 8px 11px; } .new_playlist_btn span { color: var(--tempo-colors-text-accent-primary-default); } .new_playlist_btn .plus_sign { padding: 4.4px 8px 0 5px; scale: 3; } .playlist_ul { width: 100%; height: 200px; overflow: auto; position: relative; top: 6px; } .playlist_ul button { width: 100%; padding: 12px 16px; text-align: left; } .playlist_ul button:hover { background-color: var(--tempo-colors-bg-contrast); } .playlist_ul button[selected=""] { background-color: #463554a1; } .action_btn { width: 100%; position: relative; background-color: var(--tempo-colors-background-accent-primary-default); font-weight: bold; font-size: 20px; border-radius: 5px; padding: 10px; } .action_btn:hover { background-color: var(--tempo-colors-background-accent-primary-hovered); } .regex_parent_group { border-bottom: 0.5px solid var(--tempo-colors-divider-neutral-primary-default); } .regex_dropdown_toggle_btn { width: 93%; font-size: 20px; font-weight: bold; text-align: left; padding: 8px 15px; } .regex_dropdown_toggle_btn::before { content: "▶"; } .regex_dropdown.open .regex_dropdown_toggle_btn::before { content: "▼"; } .regex_dropdown.open .regex_dropdown_menu { max-height: 150px; } .create_new_regex_btn { border-radius: 40%; font-size: 20px; } .regex_dropdown_menu { overflow-x: scroll; overflow: auto; max-height: 0; transition: max-height 0.3s ease; } .regex_dropdown_item { display: grid; grid-template-columns: minmax(0, 3.5fr) minmax(0, 1.1fr) minmax(0, 1.8fr) minmax(0, 1.2fr) minmax(0, 0.9fr) minmax(0, 0.9fr) minmax(0, 1fr) minmax(0, 0.5fr); box-sizing: border-box; border-bottom: 0.5px solid var(--tempo-colors-divider-neutral-primary-default); padding: 4px 2px; } .regex_dropdown_item select { background-color: var(--tempo-colors-background-neutral-secondary-default); border: 0.5px solid var(--tempo-colors-divider-neutral-primary-default); border-radius: 4px; } .regex_dropdown_item .regex_input { color: var(--color-text-secondary); border: 0.5px solid var(--tempo-colors-divider-neutral-primary-default); border-radius: 6px; background-color: var(--tempo-colors-background-neutral-secondary-default); padding: 2px 4px; margin-right: 3px; } .regex_dropdown_item .regex_input.error { background-color: #f0404040; } .regex_dropdown_item .applies_for_checkbox { transform: scale(0.5); } .regex_delete_btn { font-size: 18px; scale: 1.1; } .regex_delete_btn:hover { scale: 1.2; } .regex_dropdown_item span { margin-left: 3px; } ` document.querySelector("head").appendChild(css); } // data stuff async function get_user_data() { const r = await fetch("https://www.deezer.com/ajax/gw-light.php?method=deezer.getUserData&input=3&api_version=1.0&api_token=", { "body": "{}", "method": "POST", }); const resp = await r.json(); return resp; } async function get_auth_token() { const r = await fetch("https://auth.deezer.com/login/renew?jo=p&rto=c&i=c", { "method": "POST", "credentials": "include" }); const resp = await r.json(); return resp.jwt; } function get_api_token() { return user_data.results.checkForm; } function get_user_id() { return user_data.results.USER.USER_ID; } function get_current_artist_id() { return location.pathname.split("/artist/")[1].split("/", 1)[0]; } function get_current_artist_name() { return document.querySelector("meta[itemprop='name']").content } function get_playlists() { return JSON.parse(localStorage.getItem("PLAYLISTS_"+get_user_id())).data; } function get_config() { const config = GM_getValue("artist_dumper_config"); return config ? JSON.parse(config): { // default settings toggles: { ep: true, singles: true, album: true, featured: true, }, order: 0, // 0 = RELEASE_DATE, 1 = RANK min_length: 60, regexes: [ { str: String.raw`(\(|- )(((super )?slowed(( *&| *\+| *,) *reverb)?)|(sped up)|(reverb)|(8d audio))( version)?\)? *$`, // https://regex101.com/r/yDUeHo/1 flags: "i", type: 0, // 0 = blacklist, 1 = whitelist for_artist: -1, // -1 = every artist, any other number is artist id applies_to: { song: true, artist: false, album: true } } ] } } function set_config() { GM_setValue("artist_dumper_config", JSON.stringify(config)); } async function get_all_songs(auth_token, artist_id, regexes) { async function get_all_albums() { async function request_albums(last_song, roles, types) { const r = await fetch("https://pipe.deezer.com/api", { "headers": { "authorization": "Bearer "+auth_token, "Content-Type": "application/json" }, "body": JSON.stringify({ "operationName": "ArtistDiscographyByType", "variables": { "artistId": artist_id, "nb": 500, "cursor": last_song, "subType": null, "roles": roles, "order": config.order === 0 ? "RELEASE_DATE" : "RANK", "types": types }, "query": "query ArtistDiscographyByType($artistId: String!, $nb: Int!, $roles: [ContributorRoles!]!, $types: [AlbumTypeInput!]!, $subType: AlbumSubTypeInput, $cursor: String, $order: AlbumOrder) {\n artist(artistId: $artistId) {\n albums(\n after: $cursor\n first: $nb\n onlyCanonical: true\n roles: $roles\n types: $types\n subType: $subType\n order: $order\n ) {\n edges {\n node {\n ...AlbumBase\n }\n }\n pageInfo {\n hasNextPage\n endCursor\n }\n }\n }\n}\n\nfragment AlbumBase on Album {\n id\n displayTitle\n}" }), "method": "POST", }); const resp = await r.json(); return resp.data; } async function get_albums(last_song) { // everything is an album let roles = ["MAIN"]; let types = []; if (config.toggles.featured && config.toggles.ep && config.toggles.singles && config.toggles.album) { // everything is ticked roles.push("FEATURED") types.push("EP", "SINGLES", "ALBUM"); return await request_albums(last_song, roles, types); } let data = null if (config.toggles.ep) types.push("EP"); if (config.toggles.singles) types.push("SINGLES"); if (config.toggles.album) types.push("ALBUM"); // types.length must be < 3 if featured was ticked if (types.length > 0) data = await request_albums(last_song, roles, types); if (config.toggles.featured) { // featured is ticked, but maybe there are other options (not all though) ticked as well, but as featured gets every type, we need to get the other types seperately roles = ["FEATURED"]; types = ["EP", "SINGLES", "ALBUM"]; if (data !== null) { // if other types where ticked, we append the featured songs, the data object is still from the normal search though, so if there are more featured songs, we won't get them (there shouldnt be more than 500 though) data.artist.albums.edges.push( ...(await request_albums(last_song, roles, types)).artist.albums.edges ); } else { // only featured was ticked data = await request_albums(last_song, roles, types); } } return data; } const albums = []; let data = await get_albums(null); for (let album of data.artist.albums.edges) { // filter album titles here if (does_string_match(album.node.displayTitle, regexes.whitelist.album, true) && !does_string_match(album.node.displayTitle, regexes.blacklist.album, false)) { albums.push([album.node.id, album.node.displayTitle]); } else { output(INFO, `Album ${album.node.displayTitle} is blacklisted`); } } // could prob do it better recursively // this is a bit broken if not everything is ticked as we sometimes send 2 requests for featured and everything else. // the main data is from everything else, the featured songs just get appended. // so the nextpage/cursor attributes are from the non featured songs, meaning if there are more featured songs (which shouldnt happen), we will miss them. while (data.artist.albums.pageInfo.hasNextPage) { data = await get_albums(data.artist.albums.pageInfo.endCursor); for (let album of data.artist.albums.edges) { if (does_string_match(album.node.displayTitle, regexes.whitelist.album, true) && !does_string_match(album.node.displayTitle, regexes.blacklist.album, false)) { albums.push([album.node.id, album.node.displayTitle]); } else { output(INFO, `Album ${album.node.displayTitle} is blacklisted`); } } } return albums; } async function get_all_songs_from_album(album_id) { const r = await fetch("https://www.deezer.com/ajax/gw-light.php?method=song.getListByAlbum&input=3&api_version=1.0&api_token="+get_api_token(), { "body": JSON.stringify({ "alb_id": album_id, "start": 0, "nb": 500 }), "method": "POST", "credentials": "include" }); const resp = await r.json(); const album_songs = []; for (let album_song of resp.results.data) { const song_title = `${album_song.SNG_TITLE} ${album_song.VERSION}`; // if song is whitelisted but not blacklisted if (does_string_match(song_title, regexes.whitelist.song, true) && !does_string_match(song_title, regexes.blacklist.song, false)) { // if the current artist contributed and if every artist is whitelisted but not blacklisted if (album_song.ARTISTS.some( (artist) => ( artist.ART_ID === artist_id && does_string_match(artist.ART_NAME, regexes.whitelist.artist, true) && !does_string_match(artist.ART_NAME, regexes.blacklist.artist, false) ) )) { if (Number(album_song.DURATION) >= config.min_length) { album_songs.push([album_song.SNG_ID, `${album_song.SNG_TITLE} ${album_song.VERSION}`.trim()]); } else { output(INFO, `${song_title} is too short`); } } else { output(INFO, `An artist in ${song_title} is blacklisted or the artist didn't contribute in the song`); } } else { output(INFO, `Song ${song_title} is blacklisted`); } } return album_songs; } // get all songs from albums asynchronous, 10 at a time to avoid ratelimits const albums = await get_all_albums(); const songs = {}; for (let i = 0; i < albums.length; i += 10) { const chunk = albums.slice(i, i + 10); let albumPromises = chunk.map(async album => { output(INFO, "Getting songs for " + album[1]); const albumSongs = await get_all_songs_from_album(album[0]); for (let song of albumSongs) { songs[song[0]] = song[1]; } }); await Promise.all(albumPromises); } for (let last_dump_song_id of last_dump_song_ids) { if (songs[last_dump_song_id] !== undefined) { output(INFO, `${songs[last_dump_song_id]} was present in another dump`); delete songs[last_dump_song_id]; } } return songs; } async function create_playlist(songs, artist_name) { const time = new Date() const formatted_time = time.toLocaleDateString(); const r = await fetch("https://www.deezer.com/ajax/gw-light.php?method=playlist.create&input=3&api_version=1.0&api_token="+get_api_token(), { "body": JSON.stringify({ "title": artist_name, "description": `A playlist containing all of ${artist_name} songs as of ${formatted_time}.`, "songs": songs.map((s) => [s]), "status": 1 }), "method": "POST", }); const resp = await r.json(); return resp; } async function add_songs_to_playlist(playlist_id, songs) { const r = await fetch("https://www.deezer.com/ajax/gw-light.php?method=playlist.addSongs&input=3&api_version=1.0&api_token="+get_api_token(), { "body": JSON.stringify({ "playlist_id": playlist_id, "songs": songs.map((s) => [s, 0]), "offset": -1, "ctxt": { "id": null, "t": null, } }), "method": "POST", "credentials": "include" }); const resp = await r.json(); return resp; } async function update_playlist_picture_to_current_artist(playlist_id) { const img_url = document.querySelector("#page_naboo_artist > div.container > div > div > div > img").src let r = await fetch(img_url); const img_blob = await r.blob(); const form_data = new FormData(); form_data.append("image", img_blob, "img.jpg") r = await fetch(`https://upload.deezer.com/?sid=${user_data.results.SESSION_ID}&id=${playlist_id}&resize=1&directory=playlist&type=picture&referer=FR&file=img.jpg`, { "body": form_data, "method": "POST", }); const resp = await r.json() return resp; } async function get_songs_in_playlist(playlist_id) { const r = await fetch("https://www.deezer.com/ajax/gw-light.php?method=playlist.getSongs&input=3&api_version=1.0&api_token="+get_api_token(), { "body": JSON.stringify({ "playlist_id": playlist_id, "start": 0, "nb": 2000 }), "method": "POST", "credentials": "include" }); const resp = await r.json() return resp; } function validate_regex(regex_str, flags) { try { return RegExp(regex_str, flags); } catch (e) { return null; } } function does_string_match(str, regexes, return_if_empty) { return regexes.length === 0 ? return_if_empty : regexes.some(regex => regex.test(str)); } function parse_regexes() { const regexes = { blacklist: { song: [], artist: [], album: [] }, whitelist: { song: [], artist: [], album: [] } } const curr_artist_id = get_current_artist_id(); for (let regex of config.regexes) { if (regex.str.trim() === "" || (regex.for_artist !== -1 && regex.for_artist !== curr_artist_id )) { continue; } const regex_exp = validate_regex(regex.str, regex.flags); if (!regex_exp) { output(ERROR, `Regex "${regex.str}" with flags "${regex.flags}" is not valid, exiting`, true); return null; } for (let applies_to of Object.entries(regex.applies_to)) { if (applies_to[1]) { console.log(`Regex "${regex_exp}" is valid (${["blacklist", "whitelist"][regex.type]}) (${applies_to[0]})`); regexes[["blacklist", "whitelist"][regex.type]][applies_to[0]].push(regex_exp); } } output(INFO, "Regexes valid", true); } return regexes; } function download_dump(data, time) { const formatted_time = time.toLocaleString('sv-SE', { year: 'numeric', month: '2-digit', day: '2-digit', hour: '2-digit', minute: '2-digit', second: '2-digit' }).replaceAll("-", "").replaceAll(':', '').replace(" ", "_"); const link = document.createElement('a'); link.download = `artistdump_${get_current_artist_name().replaceAll(" ", "-")}_${formatted_time}.json`; if (typeof(data) === "object") { data = JSON.stringify(data, null, 4) } const blob = new Blob([data], { type: 'application/json' }); link.href = URL.createObjectURL(blob); document.body.appendChild(link); link.click(); document.body.removeChild(link); } async function submit() { const start_time = Date.now(); const regexes = parse_regexes(); if (!regexes) { return; } set_config(); download_btn?.remove(); // only remove if new data is there in case the user forgot to download from the last run const data = { artist_name: get_current_artist_name(), artist_id: get_current_artist_id(), regexes: config.regexes, song_ids: [] } download_btn = create_download_btn(data, new Date()); // reference to data not by value main_div.appendChild(download_btn); const auth_token = await get_auth_token(); output(INFO, "Getting songs"); const songs = await get_all_songs(auth_token, data.artist_id, regexes); let text = ""; const selected_playlist_id = selected_playlist.getAttribute("data-id") if (selected_playlist_id !== "-1") { const songs_already_in_playlist = await get_songs_in_playlist(selected_playlist_id); if (songs_already_in_playlist.error.length === 0) { for (let song_already_in_playlist of songs_already_in_playlist.results.data) { if (songs[song_already_in_playlist.SNG_ID] !== undefined) { output(INFO, `${songs[song_already_in_playlist.SNG_ID]} is already in the playlist`); delete songs[song_already_in_playlist.SNG_ID]; } } } } for (let song of Object.entries(songs)) { data.song_ids.push(song[0]); text+=song[1]+", "; } if (data.song_ids.length === 0) { output(INFO, "There are no songs to add, exiting"); return; } data.song_ids.reverse(); // the order we receive is fifo but we need filo (basically). doesnt matter rly tho as sorting playlist afterwards doesnt really work as we add all songs at the same time const artist_name = get_current_artist_name(); if (selected_playlist.getAttribute("data-id") === "-1") { output(INFO, "Creating new playlist for "+artist_name); output(INFO, `Adding ${data.song_ids.length} songs (${text.substr(0, text.length-3)})`); let r = await create_playlist(data.song_ids, artist_name); if (r.error.length !== 0) { output(ERROR, "Failed to create playlist, see console"); console.error("Failed to create playlist", r.error); return; } output(SUCCESS, "Created playlist with songs in it"); r = await update_playlist_picture_to_current_artist(r.results) if (r.error.length !== 0) { output(ERROR, "Failed to add picture to playlist, see console"); console.error("Failed to add picture to playlist", r.error); return; } output(SUCCESS, "Added picture to playlist"); output(SUCCESS, "Finished"); } else { output(INFO, "Adding songs to "+selected_playlist.textContent); output(INFO, `Adding ${data.song_ids.length} songs (${text.substr(0, text.length-2)})`); const r = await add_songs_to_playlist(selected_playlist.getAttribute("data-id"), data.song_ids); if (r.error.length !== 0) { console.error("Failed to add songs to playlist", r.error); if (r.error.ERROR_DATA_EXISTS !== undefined) { output(ERROR, "Failed to add songs as at least 1 song is already in playlist"); } else { output(ERROR, "Failed to add songs to playlist, see console"); } return; } output(SUCCESS, "Added songs to playlist "+selected_playlist.textContent); output(SUCCESS, "Finished"); } output(INFO, `Process took ${(Date.now()-start_time)/1000} seconds.`); download_btn.click(); } // more or less only visual stuff function output(type, text, clean) { const time = new Date(); if (clean) { output_textarea.value = ""; } output_textarea.value += `[${time.toLocaleTimeString()}] [${type}] ${text}\n` output_textarea.scrollTop = output_textarea.scrollHeight; } function change_selected_playlist(new_playlist) { if (new_playlist !== selected_playlist) { selected_playlist?.removeAttribute("selected"); new_playlist.setAttribute("selected", ""); selected_playlist = new_playlist; } } function create_main_btn(main_div) { const main_btn = document.createElement("button"); main_btn.className = "main_btn"; const text_span = document.createElement("span"); text_span.className = "main_btn_text"; text_span.textContent = "⁺"; main_btn.appendChild(text_span); let show = false; main_btn.onclick = () => { show = !show main_div.style.display = show ? "block" : "none"; main_btn.className = show ? "main_btn active": "main_btn"; } return main_btn; } function create_main_div() { const main_div = document.createElement("div"); main_div.className = "main_div"; return main_div; } function create_regexes_dropdown() { function create_item(regex_ref) { const dropdown_item = document.createElement("div"); dropdown_item.className = "regex_dropdown_item"; const allowed_flags = ["d", "g", "i", "m", "s", "u", "v", "y"] const regex_input = document.createElement("input") regex_input.className = "regex_input"; regex_input.placeholder = "Regex"; regex_input.value = regex_ref.str; regex_input.oninput = () => { regex_ref.str = regex_input.value; // this will also update if its wrong, but this is better imo if (!validate_regex(regex_input.value)) { regex_input.classList.add("error"); } else { regex_input.classList.remove("error"); } } regex_input.onchange = () => { set_config(); } const regex_flags_input = document.createElement("input") regex_flags_input.className = "regex_input"; regex_flags_input.placeholder = "Flags"; regex_flags_input.value = regex_ref.flags; regex_flags_input.oninput = () => { regex_ref.flags = regex_flags_input.value; // this will also update if its wrong, but this is better imo const flags = regex_flags_input.value.split(""); if (!flags.every(e => allowed_flags.includes(e)) || new Set(flags).size !== flags.length) { regex_flags_input.classList.add("error"); } else { regex_flags_input.classList.remove("error"); } } regex_flags_input.onchange = () => { set_config(); } const type_dropdown = document.createElement("select"); type_dropdown.className = "my_dropdown"; const blacklist_opt = document.createElement("option"); blacklist_opt.textContent = "Blacklist"; const whitelist_opt = document.createElement("option"); whitelist_opt.textContent = "Whitelist"; type_dropdown.onchange = () => { regex_ref.type = type_dropdown.selectedIndex; set_config(); } type_dropdown.append(blacklist_opt, whitelist_opt); type_dropdown.selectedIndex = regex_ref.type; const for_artist_dropdown = document.createElement("select"); for_artist_dropdown.style.marginLeft = "3px"; for_artist_dropdown.className = "my_dropdown"; const all_artists_opt = document.createElement("option"); all_artists_opt.textContent = "All⠀ Artists"; const this_artist_opt = document.createElement("option"); this_artist_opt.textContent = "This Artist"; for_artist_dropdown.onchange = () => { regex_ref.for_artist = for_artist_dropdown.selectedIndex === 0 ? -1 : curr_artist_id; set_config(); } for_artist_dropdown.append(all_artists_opt, this_artist_opt); for_artist_dropdown.selectedIndex = regex_ref.for_artist === -1 ? 0 : 1; const applies_to_song_checkbox = document.createElement("input"); applies_to_song_checkbox.type = "checkbox"; applies_to_song_checkbox.className = "applies_for_checkbox"; applies_to_song_checkbox.checked = regex_ref.applies_to.song; applies_to_song_checkbox.onclick = () => { regex_ref.applies_to.song = !regex_ref.applies_to.song; set_config(); } const applies_to_artist_checkbox = applies_to_song_checkbox.cloneNode(); applies_to_artist_checkbox.checked = regex_ref.applies_to.artist; applies_to_artist_checkbox.onclick = () => { regex_ref.applies_to.artist = !regex_ref.applies_to.artist; set_config(); } const applies_to_album_checkbox = applies_to_song_checkbox.cloneNode(); applies_to_album_checkbox.checked = regex_ref.applies_to.album; applies_to_album_checkbox.onclick = () => { regex_ref.applies_to.album = !regex_ref.applies_to.album; set_config(); } const delete_btn = document.createElement("button") delete_btn.textContent = "🗑"; delete_btn.className = "regex_delete_btn"; delete_btn.onclick = () => { config.regexes.splice(config.regexes.indexOf(regex_ref), 1); dropdown_item.remove(); set_config(); } dropdown_item.append(regex_input, regex_flags_input, type_dropdown, for_artist_dropdown, applies_to_song_checkbox, applies_to_artist_checkbox, applies_to_album_checkbox, delete_btn); return dropdown_item; } // create fundamental structure const dropdown = document.createElement("div"); dropdown.className = "regex_dropdown"; const dropdown_menu = document.createElement("div"); dropdown_menu.className = "regex_dropdown_menu"; // create the button to toggle and the button to create a new regex const dropdown_btn_and_create_new_btn_group = document.createElement("ul"); dropdown_btn_and_create_new_btn_group.setAttribute("data-orientation", "horizontal"); dropdown_btn_and_create_new_btn_group.className = "regex_parent_group"; const dropdown_btn = document.createElement("button"); dropdown_btn.textContent = " Regexes"; dropdown_btn.title = "Use deezer_artist_dumper_config in console to get every regex and other stuff"; dropdown_btn.className = "regex_dropdown_toggle_btn"; dropdown_btn.onclick = () => { dropdown.classList.toggle("open"); } const create_new_btn = document.createElement("button"); create_new_btn.className = "create_new_regex_btn"; create_new_btn.textContent = "➕"; create_new_btn.onclick = () => { dropdown.classList.add("open"); const new_regex = { str: "", flags: "i", type: 0, // 0 = blacklist, 1 = whitelist for_artist: get_current_artist_id(), applies_to: { song: true, artist: false, album: false } } config.regexes.push(new_regex); const new_item = create_item(config.regexes[config.regexes.length-1]) dropdown_menu.appendChild(new_item); set_config(); } dropdown_btn_and_create_new_btn_group.append(dropdown_btn, create_new_btn); // create headers const header_item = document.createElement("div"); header_item.className = "regex_dropdown_item"; const regex_inpt_header = document.createElement("span"); regex_inpt_header.textContent = "Regex"; regex_inpt_header.title = "The regex used to filter"; const regex_flags_inpt_header = document.createElement("span"); regex_flags_inpt_header.textContent = "Flags"; regex_flags_inpt_header.title = "The regex flags"; const type_header = document.createElement("span"); type_header.textContent = "Type"; type_header.title = "Wether to use this regex to blacklist or whitelist"; const for_artist_header = document.createElement("span"); for_artist_header.textContent = "For"; for_artist_header.title = "Apply this regex to the current artist or every artist"; const song_header = document.createElement("span"); song_header.textContent = "Song"; song_header.title = "Apply this regex to song names"; const artist_header = document.createElement("span"); artist_header.textContent = "Artist"; artist_header.title = "Apply this regex to artist/contributer names"; const album_header = document.createElement("span"); album_header.textContent = "Album"; album_header.title = "Apply this regex to album names"; header_item.append(regex_inpt_header, regex_flags_inpt_header, type_header, for_artist_header, song_header, artist_header, album_header); dropdown_menu.appendChild(header_item); const curr_artist_id = get_current_artist_id(); dropdown_menu.append( ...(config.regexes.filter( (regex) => (regex.for_artist === -1 || regex.for_artist === curr_artist_id) ).map( (regex) => create_item(regex) ) ) ); dropdown.append(dropdown_btn_and_create_new_btn_group, dropdown_menu) return dropdown; } function create_options() { const options_div = document.createElement("div"); options_div.className = "options_div"; const song_type_options = document.createElement("div"); song_type_options.className = "song_type_options_div"; const types = ["EP", "Singles", "Album", "Featured"] let input, lbl; for (let type of types) { input = document.createElement("input"); input.type = "checkbox"; input.title = `Wether to include ${type} or not` lbl = document.createElement("label"); lbl.textContent = type; lbl.appendChild(input); type = type.toLowerCase(); input.checked = config.toggles[type] input.onclick = () => { config.toggles[type] = !config.toggles[type]; set_config(); } song_type_options.appendChild(lbl); } const opts = [document.createElement('option'), document.createElement('option')]; opts[0].textContent = "Release Date"; opts[1].textContent = "Popularity"; const order_dropdown = document.createElement("select"); order_dropdown.className = "my_dropdown"; order_dropdown.title = "Order of songs. Does not really affect anything as the songs get added all at once so deezer sorts them by song_id internally which is MOSTLY equal to release date, but can have exceptions."; order_dropdown.append(...opts) order_dropdown.selectedIndex = config.order; order_dropdown.onchange = () => { config.order = order_dropdown.selectedIndex; set_config(); } const min_song_length_input = document.createElement("input"); min_song_length_input.type = "number"; min_song_length_input.className = "min_song_length_input"; min_song_length_input.placeholder = "Min. Length"; min_song_length_input.title = "Minimum Song Length in seconds"; min_song_length_input.value = config.min_length; min_song_length_input.onchange = () => { config.min_length = Number(min_song_length_input.value); set_config(); } options_div.append(song_type_options, order_dropdown, min_song_length_input); return options_div; } function create_search_bar(playlists, playlist_ul) { const input = document.createElement("input") input.placeholder = "Search Playlist 🔎︎"; input.className = "searchbar"; input.oninput = (e) => { for (let playlist of playlists) { playlist_ul.querySelector(`button[data-id='${playlist.PLAYLIST_ID}']`).style.display = playlist.TITLE.toLowerCase().includes(input.value.toLowerCase()) ? "" : "none"; } } return input; } function create_new_playlist_btn() { const new_playlist_btn = document.createElement("button"); new_playlist_btn.type = "button"; new_playlist_btn.className = "new_playlist_btn"; new_playlist_btn.title = "(Recommended) Creates a new private playlist with the name and picture of the artist where the songs will be added to."; new_playlist_btn.setAttribute("data-id", "-1"); const plus_sign_span = document.createElement("span"); plus_sign_span.textContent = "⁺"; plus_sign_span.className = "plus_sign"; const text_span = document.createElement("span"); text_span.textContent = "New Playlist"; new_playlist_btn.append(plus_sign_span, text_span); new_playlist_btn.onclick = () => { change_selected_playlist(new_playlist_btn); } return new_playlist_btn; } function create_playlists_btns(playlists, new_playlist_btn) { const playlist_ul = document.createElement("ul"); playlist_ul.className = "playlist_ul"; let playlist_li = document.createElement("li"); playlist_li.appendChild(new_playlist_btn); playlist_ul.appendChild(playlist_li); let playlist, playlist_btn; for (playlist of playlists) { playlist_btn = document.createElement("button"); playlist_btn.title = `Add the songs to ${playlist.TITLE}` playlist_btn.textContent = playlist.TITLE playlist_btn.onclick = (e) => { change_selected_playlist(e.target); } playlist_btn.setAttribute("data-id", playlist.PLAYLIST_ID); playlist_li = document.createElement("li"); playlist_li.appendChild(playlist_btn); playlist_ul.appendChild(playlist_li); } return playlist_ul; } function create_submit_btn() { const submit_btn = document.createElement("button"); submit_btn.textContent = "Submit"; submit_btn.className = "action_btn"; submit_btn.style.top = "10px"; submit_btn.style.marginBottom = "10px"; submit_btn.title = "Starts the whole process. The settings (regex, checkboxes) will be saved locally for the next use." submit_btn.onclick = submit; return submit_btn; } function create_output_textarea() { const output_textarea = document.createElement("textarea"); output_textarea.className = "my_textarea"; output_textarea.placeholder = "Output (Click to Copy)"; output_textarea.title = "Outputs information about the process. Click to Copy."; output_textarea.readOnly = true; output_textarea.onmouseup = () => { if (window.getSelection().toString() === "") { navigator.clipboard.writeText(output_textarea.value); } } return output_textarea; } function create_load_btn(data, time) { const file_input = document.createElement("input"); file_input.type = "file"; file_input.multiple = true; file_input.style.display = "none"; const load_btn = document.createElement("button"); load_btn.textContent = "Load Dump"; load_btn.className = "action_btn"; load_btn.title = "Load data from an earlier dump." load_btn.onclick = () => { file_input.click(); }; file_input.onchange = (e) => { last_dump_song_ids = []; const files = e.target.files; load_btn.textContent = "0 Dumps (Check JSON/console)"; load_btn.title = ""; const readers = []; for (let file of files) { const reader = new FileReader(); readers.push(reader); reader.readAsText(file, "UTF-8"); reader.onerror = e => { console.error("File reading error:", e); }; reader.onload = re => { let last_dump; try { last_dump = JSON.parse(re.target.result); } catch (e) { output(ERROR, "Error parsing dump "+file.name); console.error("Error parsing dump "+file.name, e); return; } last_dump_song_ids = [...last_dump_song_ids, ...last_dump.song_ids]; const file_count = Number(load_btn.textContent.split(" ", 1)[0] ) + 1; load_btn.textContent = file_count.toString() + " Dump" + (file_count > 1 ? "s": ""); load_btn.title += file.name+"\n"; } } const wait_for_readers = setInterval(() => { // race condition but ig the file loading should always be quicker than the user pressing submit if (readers.every(v => v.result !== null)) { clearInterval(wait_for_readers); last_dump_song_ids = [...new Set(last_dump_song_ids)]; // deduplicate } }, 10) } return load_btn; } function create_download_btn(data, time) { const download_btn = document.createElement("button"); download_btn.textContent = "Download Dump"; download_btn.className = "action_btn"; download_btn.title = "Download data for this dump."; download_btn.style.marginTop = "1px"; download_btn.onclick = () => download_dump(data, time); return download_btn; } // globals let config; let user_data; let last_dump_song_ids; let selected_playlist; let output_textarea; let download_btn; let main_div; const ERROR = "!";//"ERROR"; const INFO = "?";//"INFO"; const SUCCESS = "*";//"SUCCESS"; let last_url = location.href; window.navigation.addEventListener('navigate', (e) => { const target_url = e.destination.url; console.log("change", last_url, target_url); const last_id = last_url.split("/artist/") const target_id = target_url.split("/artist/"); if (target_id.length > 1) { // current page is an artist if (last_id.length > 1) { // the last page was also an artist if (target_id[1].split("/", 1)[0] !== last_id[1].split("/", 1)[0]) { // the current and last artist arent the same artist_main(); } } else { artist_main(); } } last_url = target_url; }); if (location.pathname.includes("/artist/")) { artist_main(); } async function artist_main() { user_data = await get_user_data(); const wait = setInterval(() => { console.log("waiting"); let main_ul = document.querySelector("#page_naboo_artist > div.container > div > ul[role='group']"); if (main_ul !== null) { clearInterval(wait); console.log("found"); if (document.querySelector(".main_btn") !== null) { return; } config = get_config(); unsafeWindow.deezer_artist_dumper_config = config; last_dump_song_ids = []; set_css(); main_ul.style.position = "relative"; main_div = create_main_div(); const regex_dropdown = create_regexes_dropdown(); const options_div = create_options(); let new_playlist_btn = create_new_playlist_btn(); new_playlist_btn.setAttribute("selected", ""); selected_playlist = new_playlist_btn; const playlists = get_playlists() const playlist_ul = create_playlists_btns(playlists, new_playlist_btn); const search_bar = create_search_bar(playlists, playlist_ul); const submit_btn = create_submit_btn(); const load_btn = create_load_btn(); output_textarea = create_output_textarea(); const main_btn = create_main_btn(main_div); main_div.append(regex_dropdown, options_div, search_bar, playlist_ul, submit_btn, output_textarea, load_btn); main_ul.append(main_btn, main_div); } }, 200) }