File size: 11,125 Bytes
db78256 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 |
from contextlib import suppress
from re import IGNORECASE, findall, search
import cloudscraper
from imdbinfo import search_title, get_movie
from pycountry import countries as conn
from pyrogram.errors import MediaEmpty, PhotoInvalidDimensions, WebpageMediaEmpty
from ..core.tg_client import TgClient
from ..core.config_manager import Config
from ..helper.ext_utils.status_utils import get_readable_time
from ..helper.telegram_helper.button_build import ButtonMaker
from ..helper.telegram_helper.message_utils import (
send_message,
edit_message,
delete_message,
)
from ..helper.ext_utils.bot_utils import sync_to_async
IMDB_GENRE_EMOJI = {
"Action": "๐",
"Adult": "๐",
"Adventure": "๐",
"Animation": "๐ ",
"Biography": "๐",
"Comedy": "๐ช",
"Crime": "๐ช",
"Documentary": "๐",
"Drama": "๐ญ",
"Family": "๐จโ๐ฉโ๐งโ๐ฆ",
"Fantasy": "๐ซง",
"Film Noir": "๐ฏ",
"Game Show": "๐ฎ",
"History": "๐",
"Horror": "๐ง",
"Musical": "๐ป",
"Music": "๐ธ",
"Mystery": "๐งณ",
"News": "๐ฐ",
"Reality-TV": "๐ฅ",
"Romance": "๐ฅฐ",
"Sci-Fi": "๐ ",
"Short": "๐",
"Sport": "โณ",
"Talk-Show": "๐จโ๐ณ",
"Thriller": "๐ก",
"War": "โ",
"Western": "๐ชฉ",
}
LIST_ITEMS = 4
async def imdb_search(_, message):
if " " in message.text:
k = await send_message(message, "<i>Searching IMDB ...</i>")
title = message.text.split(" ", 1)[1]
user_id = message.from_user.id
buttons = ButtonMaker()
if result := search(r"tt(\d+)", title, IGNORECASE):
movieid = result.group(1)
if movie := await sync_to_async(get_movie, movieid):
buttons.data_button(
f"๐ฌ {movie.title} ({getattr(movie , 'year' , 'N/A')})",
f"imdb {user_id} movie {movieid}",
)
else:
return await edit_message(k, "<i>No Results Found</i>")
else:
movies = get_poster(title, bulk=True)
if not movies:
return edit_message(
"<i>No Results Found</i>, Try Again or Use <b>Title ID</b>", k
)
for movie in movies:
buttons.data_button(
f"๐ฌ {movie.title} ({getattr(movie , 'year' , 'N/A')})",
f"imdb {user_id} movie {movie.id}",
)
buttons.data_button("๐ซ Close ๐ซ", f"imdb {user_id} close")
await edit_message(
k, "<b><i>Search Results found on IMDb.com</i></b>", buttons.build_menu(1)
)
else:
await send_message(
message,
"<i>Send Movie / TV Series Name along with /imdb Command or send IMDB URL</i>",
)
def get_poster(query, bulk=False, id=False, file=None):
if not id:
query = (query.strip()).lower()
title = query
year = findall(r"[1-2]\d{3}$", query, IGNORECASE)
if year:
year = list_to_str(year[:1])
title = (query.replace(year, "")).strip()
elif file is not None:
year = findall(r"[1-2]\d{3}", file, IGNORECASE)
if year:
year = list_to_str(year[:1])
else:
year = None
movieid = search_title(title.lower()).titles
if not movieid:
return None
if year:
filtered = (
list(filter(lambda k: str(k.year or "") == str(year), movieid))
or movieid
)
else:
filtered = movieid
movieid = (
list(filter(lambda k: k.kind in ["movie", "tvSeries"], filtered))
or filtered
)
if bulk:
return movieid
movieid = movieid[0].id
else:
movieid = query
movie = get_movie(movieid)
if getattr(movie, "release_date", None):
date = movie.release_date
elif getattr(movie, "year", None):
date = movie.year
else:
date = "N/A"
plot = None
for keyword in ["plot", "summaries", "synopses"]:
plot_data = getattr(movie, keyword, None)
if type(plot_data) is list:
plot = plot_data[0]
else:
plot = plot_data
if plot:
break
if plot and len(plot) > 300:
plot = f"{plot[:300]}..."
trailer_list = getattr(movie, "trailers", None)
trailer = trailer_list[-1] if trailer_list else None
return {
"title": movie.title,
"trailer": trailer or "https://imdb.com/",
"votes": str(getattr(movie, "votes", "N/A") or "N/A"),
"aka": list_to_str(getattr(movie, "title_akas", []) or []) or "N/A",
"seasons": (
len(movie.info_series.display_seasons)
if getattr(movie, "info_series", None)
and getattr(movie.info_series, "display_seasons", None)
else "N/A"
),
"box_office": getattr(movie, "worldwide_gross", "N/A") or "N/A",
"localized_title": getattr(movie, "title_localized", "N/A") or "N/A",
"kind": (getattr(movie, "kind", "N/A") or "N/A").capitalize(),
"imdb_id": f"tt{movie.imdb_id}",
"cast": list_to_str([i.name for i in getattr(movie, "stars", [])]) or "N/A",
"runtime": get_readable_time(int(getattr(movie, "duration", 0) or "0") * 60)
or "N/A",
"countries": list_to_hash(getattr(movie, "countries", []) or []) or "N/A",
"languages": list_to_hash(getattr(movie, "languages_text", []) or []) or "N/A",
"director": list_to_str([i.name for i in getattr(movie, "directors", [])])
or "N/A",
"writer": list_to_str(
[i.name for i in getattr(movie, "categories", []).get("writer", [])]
)
or "N/A",
"producer": list_to_str(
[i.name for i in getattr(movie, "categories", []).get("producer", [])]
)
or "N/A",
"composer": list_to_str(
[i.name for i in getattr(movie, "categories", []).get("composer", [])]
)
or "N/A",
"cinematographer": list_to_str(
[
i.name
for i in getattr(movie, "categories", []).get("cinematographer", [])
]
)
or "N/A",
"music_team": list_to_str(
[
i.name
for i in getattr(movie, "categories", []).get("music_department", [])
]
)
or "N/A",
"release_date": getattr(movie, "release_date", "N/A") or "N/A",
"year": str(getattr(movie, "year", "N/A") or "N/A"),
"genres": list_to_hash(getattr(movie, "genres", []) or [], emoji=True) or "N/A",
"poster": getattr(
movie, "cover_url", "https://telegra.ph/file/5af8d90a479b0d11df298.jpg"
)
or "https://telegra.ph/file/5af8d90a479b0d11df298.jpg",
"plot": plot or "N/A",
"rating": str(getattr(movie, "rating", "N/A") or "N/A") + " / 10",
"url": getattr(movie, "url", "N/A") or "N/A",
"url_cast": f"https://www.imdb.com/title/tt{movieid}/fullcredits#cast",
"url_releaseinfo": f"https://www.imdb.com/title/tt{movieid}/releaseinfo",
}
def list_to_str(k):
if not k:
return ""
elif len(k) == 1:
return str(k[0])
elif LIST_ITEMS:
k = k[: int(LIST_ITEMS)]
return " ".join(f"{elem}," for elem in k)[:-1] + " ..."
else:
return " ".join(f"{elem}," for elem in k)[:-1]
def list_to_hash(k, flagg=False, emoji=False):
listing = ""
if not k:
return ""
elif len(k) == 1:
if not flagg:
if emoji:
return str(
IMDB_GENRE_EMOJI.get(k[0], "")
+ " #"
+ k[0].replace(" ", "_").replace("-", "_")
)
return str("#" + k[0].replace(" ", "_").replace("-", "_"))
try:
conflag = (conn.get(name=k[0])).flag
return str(f"{conflag} #" + k[0].replace(" ", "_").replace("-", "_"))
except AttributeError:
return str("#" + k[0].replace(" ", "_").replace("-", "_"))
elif LIST_ITEMS:
k = k[: int(LIST_ITEMS)]
for elem in k:
ele = elem.replace(" ", "_").replace("-", "_")
if flagg:
with suppress(AttributeError):
conflag = (conn.get(name=elem)).flag
listing += f"{conflag} "
if emoji:
listing += f"{IMDB_GENRE_EMOJI.get(elem, '')} "
listing += f"#{ele}, "
return f"{listing[:-2]}"
else:
for elem in k:
ele = elem.replace(" ", "_").replace("-", "_")
if flagg:
conflag = (conn.get(name=elem)).flag
listing += f"{conflag} "
listing += f"#{ele}, "
return listing[:-2]
async def imdb_callback(_, query):
message = query.message
user_id = query.from_user.id
data = query.data.split()
if user_id != int(data[1]):
await query.answer("Not Yours!", show_alert=True)
elif data[2] == "movie":
await query.answer("Processing...")
imdb = get_poster(query=data[3], id=True)
buttons = ButtonMaker()
if imdb["trailer"]:
if isinstance(imdb["trailer"], list):
buttons.url_button("โถ๏ธ IMDb Trailer ", imdb["trailer"][-1])
imdb["trailer"] = list_to_str(imdb["trailer"])
else:
buttons.url_button("โถ๏ธ IMDb Trailer ", imdb["trailer"])
buttons.data_button("๐ซ Close ๐ซ", f"imdb {user_id} close")
buttons = buttons.build_menu(1)
template = ""
# if int(data[1]) in user_data and user_data[int(data[1])].get('imdb_temp'):
# template = user_data[int(data[1])].get('imdb_temp')
# if not template:
template = Config.IMDB_TEMPLATE
if imdb and template != "":
cap = template.format(**imdb, **locals())
else:
cap = "No Results"
if imdb.get("poster"):
try:
await TgClient.bot.send_photo(
chat_id=query.message.reply_to_message.chat.id,
caption=cap,
photo=imdb["poster"],
reply_to_message_id=query.message.reply_to_message.id,
reply_markup=buttons,
)
except (MediaEmpty, PhotoInvalidDimensions, WebpageMediaEmpty):
poster = imdb.get("poster").replace(".jpg", "._V1_UX360.jpg")
await send_message(message.reply_to_message, cap, buttons, photo=poster)
else:
await send_message(
message.reply_to_message,
cap,
buttons,
"https://telegra.ph/file/5af8d90a479b0d11df298.jpg",
)
await delete_message(message)
else:
await query.answer()
await delete_message(message, message.reply_to_message)
|