Fixed Spotify Playlist and Album search issues

This commit is contained in:
killer069
2021-12-15 13:11:16 +05:30
parent 2958e65728
commit 6fbb0e96de
3 changed files with 30 additions and 176 deletions

View File

@@ -215,14 +215,19 @@ export class SpotifyPlaylist {
* @private
*/
private fetched_tracks: Map<string, SpotifyTrack[]>;
/**
* Boolean to tell whether it is a searched result or not.
*/
private readonly search : boolean
/**
* Constructor for Spotify Playlist Class
* @param data JSON parsed data of playlist
* @param spotifyData Data about sporify token for furhter fetching.
*/
constructor(data: any, spotifyData: SpotifyDataOptions) {
constructor(data: any, spotifyData: SpotifyDataOptions, search : boolean) {
this.name = data.name;
this.type = 'playlist';
this.search = search
this.collaborative = data.collaborative;
this.description = data.description;
this.url = data.external_urls.spotify;
@@ -235,7 +240,7 @@ export class SpotifyPlaylist {
};
this.tracksCount = Number(data.tracks.total);
const videos: SpotifyTrack[] = [];
data.tracks.items.forEach((v: any) => {
if(!this.search) data.tracks.items.forEach((v: any) => {
if(v.track) videos.push(new SpotifyTrack(v.track));
});
this.fetched_tracks = new Map();
@@ -249,10 +254,11 @@ export class SpotifyPlaylist {
* @returns Playlist Class.
*/
async fetch() {
if(this.search) return this;
let fetching: number;
if (this.tracksCount > 1000) fetching = 1000;
else fetching = this.tracksCount;
if (fetching <= 100) return;
if (fetching <= 100) return this;
const work = [];
for (let i = 2; i <= Math.ceil(fetching / 100); i++) {
work.push(
@@ -325,6 +331,7 @@ export class SpotifyPlaylist {
* Spotify Playlist total no of tracks that have been fetched so far.
*/
get total_tracks() {
if(this.search) return this.tracksCount;
const page_number: number = this.total_pages;
return (page_number - 1) * 100 + (this.fetched_tracks.get(`${page_number}`) as SpotifyTrack[]).length;
}
@@ -401,15 +408,20 @@ export class SpotifyAlbum {
* @private
*/
private fetched_tracks: Map<string, SpotifyTrack[]>;
/**
* Boolean to tell whether it is a searched result or not.
*/
private readonly search : boolean
/**
* Constructor for Spotify Album Class
* @param data Json parsed album data
* @param spotifyData Spotify credentials
*/
constructor(data: any, spotifyData: SpotifyDataOptions) {
constructor(data: any, spotifyData: SpotifyDataOptions, search : boolean) {
this.name = data.name;
this.type = 'album';
this.id = data.id;
this.search = search
this.url = data.external_urls.spotify;
this.thumbnail = data.images[0];
const artists: SpotifyArtists[] = [];
@@ -426,7 +438,7 @@ export class SpotifyAlbum {
this.release_date_precision = data.release_date_precision;
this.tracksCount = data.total_tracks;
const videos: SpotifyTrack[] = [];
data.tracks.items.forEach((v: any) => {
if(!this.search) data.tracks.items.forEach((v: any) => {
videos.push(new SpotifyTrack(v));
});
this.fetched_tracks = new Map();
@@ -440,10 +452,11 @@ export class SpotifyAlbum {
* @returns Album Class.
*/
async fetch() {
if(this.search) return this
let fetching: number;
if (this.tracksCount > 500) fetching = 500;
else fetching = this.tracksCount;
if (fetching <= 50) return;
if (fetching <= 50) return this;
const work = [];
for (let i = 2; i <= Math.ceil(fetching / 50); i++) {
work.push(
@@ -516,165 +529,11 @@ export class SpotifyAlbum {
* Spotify Album total no of tracks that have been fetched so far.
*/
get total_tracks() {
if(this.search) return this.tracksCount
const page_number: number = this.total_pages;
return (page_number - 1) * 100 + (this.fetched_tracks.get(`${page_number}`) as SpotifyTrack[]).length;
}
toJSON(): AlbumJSON {
return {
name: this.name,
id: this.id,
type: this.type,
url: this.url,
thumbnail: this.thumbnail,
artists: this.artists,
copyrights: this.copyrights,
release_date: this.release_date,
release_date_precision: this.release_date_precision,
tracksCount: this.tracksCount
};
}
}
export class SpotifySearchPlaylist{
/**
* Spotify Playlist Name
*/
name: string;
/**
* Spotify Class type. == "playlist"
*/
type: 'track' | 'playlist' | 'album';
/**
* Spotify Playlist collaborative boolean.
*/
collaborative: boolean;
/**
* Spotify Playlist Description
*/
description: string;
/**
* Spotify Playlist URL
*/
url: string;
/**
* Spotify Playlist ID
*/
id: string;
/**
* Spotify Playlist Thumbnail Data
*/
thumbnail: SpotifyThumbnail;
/**
* Spotify Playlist Owner Artist data
*/
owner: SpotifyArtists;
/**
* Spotify Playlist total tracks Count
*/
tracksCount: number;
constructor(data : any){
this.name = data.name;
this.type = 'playlist';
this.collaborative = data.collaborative;
this.description = data.description;
this.url = data.external_urls.spotify;
this.id = data.id;
this.thumbnail = data.images[0];
this.owner = {
name: data.owner.display_name,
url: data.owner.external_urls.spotify,
id: data.owner.id
};
this.tracksCount = Number(data.tracks.total);
}
/**
* Converts Class to JSON
* @returns JSON data
*/
toJSON(): PlaylistJSON {
return {
name: this.name,
collaborative: this.collaborative,
description: this.description,
url: this.url,
id: this.id,
thumbnail: this.thumbnail,
owner: this.owner,
tracksCount: this.tracksCount
};
}
}
export class SpotifySearchAlbum{
/**
* Spotify Album Name
*/
name: string;
/**
* Spotify Class type. == "album"
*/
type: 'track' | 'playlist' | 'album';
/**
* Spotify Album url
*/
url: string;
/**
* Spotify Album id
*/
id: string;
/**
* Spotify Album Thumbnail data
*/
thumbnail: SpotifyThumbnail;
/**
* Spotify Album artists [ array ]
*/
artists: SpotifyArtists[];
/**
* Spotify Album copyright data [ array ]
*/
copyrights: SpotifyCopyright[];
/**
* Spotify Album Release date
*/
release_date: string;
/**
* Spotify Album Release Date **precise**
*/
release_date_precision: string;
/**
* Spotify Album total no of tracks
*/
tracksCount: number;
/**
* Spotify Album Spotify data
*
* @private
*/
constructor(data : any){
this.name = data.name;
this.type = 'album';
this.id = data.id;
this.url = data.external_urls.spotify;
this.thumbnail = data.images[0];
const artists: SpotifyArtists[] = [];
data.artists.forEach((v: any) => {
artists.push({
name: v.name,
id: v.id,
url: v.external_urls.spotify
});
});
this.artists = artists;
this.copyrights = data.copyrights;
this.release_date = data.release_date;
this.release_date_precision = data.release_date_precision;
this.tracksCount = data.total_tracks;
}
toJSON(): AlbumJSON {
return {
name: this.name,