Spaces:
Sleeping
Sleeping
File size: 11,020 Bytes
78b07ad |
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 313 314 315 316 317 318 319 |
import datetime
import json
import random
import re
import time
import urllib.parse
from urllib.parse import quote_plus
import httpx
import requests
from pytz import country_names, country_timezones, timezone
from selenium import webdriver
from selenium.webdriver.chrome.options import Options
from selenium.webdriver.chrome.service import Service
from selenium.webdriver.common.by import By
from Hellbot.core import ENV, Config, db
from .formatter import format_text
class ChromeDriver:
def __init__(self) -> None:
self.carbon_theme = [
"3024-night",
"a11y-dark",
"blackboard",
"base16-dark",
"base16-light",
"cobalt",
"duotone-dark",
"hopscotch",
"lucario",
"material",
"monokai",
"night-owl",
"nord",
"oceanic-next",
"one-light",
"one-dark",
"panda-syntax",
"paraiso-dark",
"seti",
"shades-of-purple",
"solarized+dark",
"solarized+light",
"synthwave-84",
"twilight",
"verminal",
"vscode",
"yeti",
"zenburn",
]
def get(self):
if not Config.CHROME_BIN:
return (
None,
"ChromeBinaryErr: No binary path found! Install Chromium or Google Chrome.",
)
try:
options = Options()
options.binary_location = Config.CHROME_BIN
options.add_argument("--disable-dev-shm-usage")
options.add_argument("--ignore-certificate-errors")
options.add_argument("--disable-gpu")
options.add_argument("--headless=new")
options.add_argument("--test-type")
options.add_argument("--no-sandbox")
options.add_argument("--window-size=1920x1080")
options.add_experimental_option(
"prefs", {"download.default_directory": "./"}
)
service = Service(Config.CHROME_DRIVER)
driver = webdriver.Chrome(options, service)
return driver, None
except Exception as e:
return None, f"ChromeDriverErr: {e}"
def close(self, driver: webdriver.Chrome):
driver.close()
driver.quit()
@property
def get_random_carbon(self) -> str:
url = "https://carbon.now.sh/?l=auto"
url += f"&t={random.choice(self.carbon_theme)}"
url += f"&bg=rgba%28{random.randint(1, 255)}%2C{random.randint(1, 255)}%2C{random.randint(1, 255)}%2C1%29"
url += "&code="
return url
async def generate_carbon(
self, driver: webdriver.Chrome, code: str, is_random: bool = False
) -> str:
filename = f"{round(time.time())}"
BASE_URL = (
self.get_random_carbon
if is_random
else "https://carbon.now.sh/?l=auto&code="
)
driver.get(BASE_URL + format_text(quote_plus(code)))
driver.command_executor._commands["send_command"] = (
"POST",
"/session/$sessionId/chromium/send_command",
)
params = {
"cmd": "Page.setDownloadBehavior",
"params": {"behavior": "allow", "downloadPath": Config.DWL_DIR},
}
driver.execute("send_command", params)
driver.find_element(By.XPATH, "//button[@id='export-menu']").click()
driver.find_element(By.XPATH, "//input[@title='filename']").send_keys(filename)
driver.find_element(By.XPATH, "//button[@id='export-png']").click()
return f"{Config.DWL_DIR}/{filename}.png"
class ClimateDriver:
def __init__(self) -> None:
self.weather_api = "https://api.openweathermap.org/data/2.5/weather?lat={0}&lon={1}&appid={2}&units=metric"
self.location_api = (
"https://api.openweathermap.org/geo/1.0/direct?q={0}&limit=1&appid={1}"
)
self.pollution_api = "http://api.openweathermap.org/data/2.5/air_pollution?lat={0}&lon={1}&appid={2}"
self.AQI_DICT = {
1: "Good",
2: "Fair",
3: "Moderate",
4: "Poor",
5: "Very Poor",
}
async def fetchLocation(self, city: str, apiKey: str):
response = httpx.get(self.location_api.format(city, apiKey))
if response.status_code == 200:
data = response.json()
if data:
return data[0]["lat"], data[0]["lon"]
return None, None
async def fetchWeather(self, city: str, apiKey: str):
lattitude, longitude = await self.fetchLocation(city, apiKey)
if not lattitude and not longitude:
return None
response = httpx.get(self.weather_api.format(lattitude, longitude, apiKey))
if response.status_code == 200:
return response.json()
return None
async def fetchAirPollution(self, city: str, apiKey: str):
lattitude, longitude = await self.fetchLocation(city, apiKey)
if not lattitude and not longitude:
return None
response = httpx.get(self.pollution_api.format(lattitude, longitude, apiKey))
if response.status_code == 200:
return response.json()
return None
async def getTime(self, timestamp: int) -> str:
tz = await db.get_env(ENV.time_zone) or "Asia/Kolkata"
tz = timezone(tz)
return datetime.datetime.fromtimestamp(timestamp, tz=tz).strftime("%I:%M %p")
def getCountry(self, country_code: str) -> str:
return country_names.get(country_code, "Unknown")
def getCountryTimezone(self, country_code: str) -> str:
timezones = country_timezones.get(country_code, [])
if timezones:
return ", ".join(timezones)
return "Unknown"
def getWindData(self, windSpeed: str, windDegree: str) -> str:
dirs = ["N", "NE", "E", "SE", "S", "SW", "W", "NW"]
ix = round(windDegree / (360.00 / len(dirs)))
kmph = str(float(windSpeed) * 3.6) + " km/h"
return f"[{dirs[ix % len(dirs)]}] {kmph}"
class YoutubeDriver:
def __init__(self, search_terms: str, max_results: int = 5):
self.base_url = "https://youtube.com/results?search_query={0}"
self.search_terms = search_terms
self.max_results = max_results
self.videos = self._search()
def _search(self):
encoded_search = urllib.parse.quote_plus(self.search_terms)
response = requests.get(self.base_url.format(encoded_search)).text
while "ytInitialData" not in response:
response = requests.get(self.base_url.format(encoded_search)).text
results = self._parse_html(response)
if self.max_results is not None and len(results) > self.max_results:
return results[: self.max_results]
return results
def _parse_html(self, response: str):
results = []
start = response.index("ytInitialData") + len("ytInitialData") + 3
end = response.index("};", start) + 1
json_str = response[start:end]
data = json.loads(json_str)
videos = data["contents"]["twoColumnSearchResultsRenderer"]["primaryContents"][
"sectionListRenderer"
]["contents"][0]["itemSectionRenderer"]["contents"]
for video in videos:
res = {}
if "videoRenderer" in video.keys():
video_data = video.get("videoRenderer", {})
_id = video_data.get("videoId", None)
res["id"] = _id
res["thumbnail"] = f"https://i.ytimg.com/vi/{_id}/hqdefault.jpg"
res["title"] = (
video_data.get("title", {}).get("runs", [[{}]])[0].get("text", None)
)
res["channel"] = (
video_data.get("longBylineText", {})
.get("runs", [[{}]])[0]
.get("text", None)
)
res["duration"] = video_data.get("lengthText", {}).get("simpleText", 0)
res["views"] = video_data.get("viewCountText", {}).get(
"simpleText", "Unknown"
)
res["publish_time"] = video_data.get("publishedTimeText", {}).get(
"simpleText", "Unknown"
)
res["url_suffix"] = (
video_data.get("navigationEndpoint", {})
.get("commandMetadata", {})
.get("webCommandMetadata", {})
.get("url", None)
)
results.append(res)
return results
def to_dict(self, clear_cache=True) -> list[dict]:
result = self.videos
if clear_cache:
self.videos = []
return result
@staticmethod
def check_url(url: str) -> tuple[bool, str]:
if "&" in url:
url = url[: url.index("&")]
if "?si=" in url:
url = url[: url.index("?si=")]
youtube_regex = (
r"(https?://)?(www\.)?"
r"(youtube|youtu|youtube-nocookie)\.(com|be)/"
r'(video|embed|shorts/|watch\?v=|v/|e/|u/\\w+/|\\w+/)?([^"&?\\s]{11})'
)
match = re.match(youtube_regex, url)
if match:
return True, match.group(6)
else:
return False, "Invalid YouTube URL!"
@staticmethod
def song_options() -> dict:
return {
"format": "bestaudio",
"addmetadata": True,
"key": "FFmpegMetadata",
"prefer_ffmpeg": True,
"geo_bypass": True,
"nocheckcertificate": True,
"postprocessors": [
{
"key": "FFmpegExtractAudio",
"preferredcodec": "mp3",
"preferredquality": "480",
}
],
"outtmpl": "%(id)s",
"quiet": True,
"logtostderr": False,
}
@staticmethod
def video_options() -> dict:
return {
"format": "best",
"addmetadata": True,
"key": "FFmpegMetadata",
"prefer_ffmpeg": True,
"geo_bypass": True,
"nocheckcertificate": True,
"postprocessors": [
{
"key": "FFmpegVideoConvertor",
"preferedformat": "mp4",
}
],
"outtmpl": "%(id)s.mp4",
"quiet": True,
"logtostderr": False,
}
Driver = ChromeDriver()
Climate = ClimateDriver()
|