2023-04-18 09:18:17 +00:00
|
|
|
from enum import Enum
|
|
|
|
|
|
|
|
|
|
|
|
class SourceTypes(Enum):
|
|
|
|
SONG = "song"
|
|
|
|
ALBUM = "album"
|
|
|
|
ARTIST = "artist"
|
|
|
|
LYRICS = "lyrics"
|
|
|
|
|
|
|
|
|
|
|
|
class SourcePages(Enum):
|
|
|
|
YOUTUBE = "youtube"
|
|
|
|
MUSIFY = "musify"
|
2023-07-26 22:27:08 +00:00
|
|
|
YOUTUBE_MUSIC = "youtube music"
|
2023-04-18 09:18:17 +00:00
|
|
|
GENIUS = "genius"
|
|
|
|
MUSICBRAINZ = "musicbrainz"
|
|
|
|
ENCYCLOPAEDIA_METALLUM = "encyclopaedia metallum"
|
|
|
|
BANDCAMP = "bandcamp"
|
|
|
|
DEEZER = "deezer"
|
|
|
|
SPOTIFY = "spotify"
|
|
|
|
|
|
|
|
# This has nothing to do with audio, but bands can be here
|
|
|
|
WIKIPEDIA = "wikipedia"
|
|
|
|
INSTAGRAM = "instagram"
|
|
|
|
FACEBOOK = "facebook"
|
|
|
|
TWITTER = "twitter" # I will use nitter though lol
|
|
|
|
MYSPACE = "myspace" # Yes somehow this ancient site is linked EVERYWHERE
|
|
|
|
|
2023-04-23 10:08:39 +00:00
|
|
|
MANUAL = "manual"
|
2023-05-24 08:12:03 +00:00
|
|
|
|
|
|
|
PRESET = "preset"
|
2023-04-23 10:08:39 +00:00
|
|
|
|
2023-04-18 09:18:17 +00:00
|
|
|
@classmethod
|
|
|
|
def get_homepage(cls, attribute) -> str:
|
|
|
|
homepage_map = {
|
|
|
|
cls.YOUTUBE: "https://www.youtube.com/",
|
|
|
|
cls.MUSIFY: "https://musify.club/",
|
|
|
|
cls.MUSICBRAINZ: "https://musicbrainz.org/",
|
|
|
|
cls.ENCYCLOPAEDIA_METALLUM: "https://www.metal-archives.com/",
|
|
|
|
cls.GENIUS: "https://genius.com/",
|
|
|
|
cls.BANDCAMP: "https://bandcamp.com/",
|
|
|
|
cls.DEEZER: "https://www.deezer.com/",
|
|
|
|
cls.INSTAGRAM: "https://www.instagram.com/",
|
|
|
|
cls.FACEBOOK: "https://www.facebook.com/",
|
|
|
|
cls.SPOTIFY: "https://open.spotify.com/",
|
|
|
|
cls.TWITTER: "https://twitter.com/",
|
|
|
|
cls.MYSPACE: "https://myspace.com/",
|
|
|
|
cls.WIKIPEDIA: "https://en.wikipedia.org/wiki/Main_Page"
|
|
|
|
}
|
|
|
|
return homepage_map[attribute]
|