mirror of
https://github.com/cooperhammond/irs.git
synced 2025-01-17 21:17:07 +00:00
-e/--exact flag feature
This commit is contained in:
parent
18ae50b484
commit
aa365b4b85
|
@ -26,6 +26,9 @@ name. Must be used with -s/--song or -A/--album")
|
|||
# Album
|
||||
parser.add_argument("-A", "--album", dest="album", help="Specify album \
|
||||
name")
|
||||
parser.add_argument("-e", "--exact", dest="exact", action="store_true",
|
||||
help="The list will only be chosen if it equals the \
|
||||
user input.")
|
||||
|
||||
# Playlist
|
||||
parser.add_argument("-u", "--username", dest="username", help="Specify \
|
||||
|
|
|
@ -159,7 +159,8 @@ init, or in method arguments.")
|
|||
else:
|
||||
soup = BeautifulSoup(CaptchaCheat.cheat_it(link), 'html.parser')
|
||||
|
||||
# print(soup.prettify())
|
||||
# with open("index.html", "w") as f:
|
||||
# f.write(soup.prettify().encode('utf-8'))
|
||||
|
||||
def find_link(link):
|
||||
try:
|
||||
|
@ -173,7 +174,7 @@ init, or in method arguments.")
|
|||
results = list(filter(None, map(find_link, soup.find_all("a"))))
|
||||
|
||||
garbage_phrases = "cover album live clean rare version full full \
|
||||
album".split(" ")
|
||||
album row at @ session".split(" ")
|
||||
|
||||
self.code = None
|
||||
counter = 0
|
||||
|
@ -181,11 +182,11 @@ album".split(" ")
|
|||
while self.code is None and counter <= 10:
|
||||
counter += 1
|
||||
for link in results:
|
||||
if ObjManip.blank_include(link["title"], song) and \
|
||||
ObjManip.blank_include(link["title"], artist):
|
||||
if ObjManip.check_garbage_phrases(garbage_phrases,
|
||||
link["title"], song):
|
||||
continue
|
||||
if ObjManip.blank_include(link["title"], song) and \
|
||||
ObjManip.blank_include(link["title"], artist):
|
||||
self.code = link
|
||||
break
|
||||
|
||||
|
@ -200,6 +201,15 @@ album".split(" ")
|
|||
self.code = link
|
||||
break
|
||||
|
||||
if self.code is None:
|
||||
for link in results:
|
||||
if ObjManip.check_garbage_phrases(garbage_phrases,
|
||||
link["title"], song):
|
||||
continue
|
||||
if ObjManip.blank_include(link["title"], song):
|
||||
self.code = link
|
||||
break
|
||||
|
||||
if self.code is None:
|
||||
song = ObjManip.limit_song_name(song)
|
||||
|
||||
|
@ -211,6 +221,7 @@ album".split(" ")
|
|||
return ("https://youtube.com" + self.code["href"], self.code["title"])
|
||||
except TypeError:
|
||||
# Assuming Google catches you trying to search youtube for music ;)
|
||||
print("Trying to bypass google captcha.")
|
||||
return self.find_yt_url(song=song, artist=artist, additional_search=additional_search, caught_by_google=True)
|
||||
|
||||
|
||||
|
@ -252,6 +263,23 @@ with init, or in method arguments.")
|
|||
if len(list_of_lists) > 0:
|
||||
the_list = None
|
||||
for list_ in list_of_lists:
|
||||
if Config.parse_exact(self) == True:
|
||||
if list_["name"].encode("utf-8") == title.encode("utf-8"):
|
||||
if Config.parse_artist(self):
|
||||
if list_["artists"][0]["name"].encode("utf-8") == \
|
||||
Config.parse_artist(self).encode('utf-8'):
|
||||
the_list = self.spotify.album(list_["uri"])
|
||||
break
|
||||
else:
|
||||
if type == "album":
|
||||
the_list = self.spotify.album(list_["uri"])
|
||||
else:
|
||||
the_list = self.spotify.user_playlist(
|
||||
list_["owner"]["id"], list_["uri"])
|
||||
the_list["artists"] = [{"name": username}]
|
||||
break
|
||||
|
||||
else:
|
||||
if ObjManip.blank_include(list_["name"], title):
|
||||
if Config.parse_artist(self):
|
||||
if ObjManip.blank_include(list_["artists"][0]["name"],
|
||||
|
|
10
irs/utils.py
10
irs/utils.py
|
@ -90,8 +90,8 @@ class ObjManip: # Object Manipulation
|
|||
|
||||
def check_garbage_phrases(phrases, string, title):
|
||||
for phrase in phrases:
|
||||
if phrase in ObjManip.blank(string):
|
||||
if phrase not in ObjManip.blank(title):
|
||||
if phrase in string.lower():
|
||||
if phrase not in title.lower():
|
||||
return True
|
||||
return False
|
||||
|
||||
|
@ -443,6 +443,12 @@ class Config:
|
|||
else:
|
||||
return True
|
||||
|
||||
def parse_exact(ripper):
|
||||
exact = check_sources(ripper, "exact")
|
||||
if exact in (True, False):
|
||||
return exact
|
||||
|
||||
|
||||
|
||||
#==============
|
||||
# Captcha Cheat
|
||||
|
|
Loading…
Reference in a new issue