forked from mampfes/hacs_waste_collection_schedule
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix Manchester_UK - New service endpoint
- Loading branch information
1 parent
6b985dd
commit 4b7ef1e
Showing
1 changed file
with
79 additions
and
37 deletions.
There are no files selected for viewing
116 changes: 79 additions & 37 deletions
116
...om_components/waste_collection_schedule/waste_collection_schedule/source/manchester_uk.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,63 +1,105 @@ | ||
import json | ||
import logging | ||
from datetime import datetime | ||
from datetime import datetime, timedelta | ||
|
||
import requests | ||
from bs4 import BeautifulSoup | ||
from waste_collection_schedule import Collection # type: ignore[attr-defined] | ||
|
||
TITLE = "Manchester City Council" | ||
DESCRIPTION = "Source for bin collection services for Manchester City Council, UK." | ||
URL = "https://www.manchester.gov.uk" | ||
TEST_CASES = { | ||
"domestic": {"uprn": "000077065560"}, | ||
"large_domestic": {"uprn": 77116538}, | ||
"domestic #1": {"uprn": "77065560"}, | ||
"domestic #2": {"uprn": "77121299"}, | ||
"domestic #3": {"uprn": "10093076834"}, | ||
"domestic #4": {"uprn": "77100451"}, | ||
"domestic #5": {"uprn": "77141200"}, | ||
} | ||
|
||
API_URL = "https://www.manchester.gov.uk/bincollections/" | ||
API_URL = "https://manchester.form.uk.empro.verintcloudservices.com/api/custom?action=bin_checker-get_bin_col_info&actionedby=_KDF_custom&loadform=true&access=citizen&locale=en" | ||
AUTH_URL = "https://manchester.form.uk.empro.verintcloudservices.com/api/citizen?archived=Y&preview=false&locale=en" | ||
AUTH_KEY = "Authorization" | ||
|
||
ICON_MAP = { | ||
"Black / Grey Bin": "mdi:trash-can", | ||
"Blue Bin": "mdi:recycle", | ||
"Brown Bin": "mdi:glass-fragile", | ||
"Green Bin": "mdi:leaf", | ||
"Large Blue Container": "mdi:recycle", | ||
"Large Brown Container": "mdi:glass-fragile", | ||
"Large Domestic Waste Container": "mdi:trash-can", | ||
"ahtm_dates_black_bin": "mdi:trash-can", | ||
"ahtm_dates_blue_pulpable_bin": "package-variant", | ||
"ahtm_dates_brown_commingled_bin": "mdi:recycle", | ||
"ahtm_dates_green_organic_bin": "mdi:leaf", | ||
} | ||
|
||
COLLECTION_MAP = { | ||
"ahtm_dates_black_bin": "Black bin", | ||
"ahtm_dates_brown_commingled_bin": "Brown bin", | ||
"ahtm_dates_blue_pulpable_bin": "Blue bin", | ||
"ahtm_dates_green_organic_bin": "Green Bin", | ||
} | ||
|
||
|
||
_LOGGER = logging.getLogger(__name__) | ||
|
||
|
||
class Source: | ||
def __init__(self, uprn: int): | ||
self._uprn = str(uprn).zfill(12) | ||
self._uprn = str(uprn) # str(uprn).zfill(12) | ||
self._session = requests.session() | ||
|
||
def fetch(self): | ||
entries = [] | ||
|
||
r = requests.post( | ||
API_URL, | ||
data={"mcc_bin_dates_uprn": self._uprn, "mcc_bin_dates_submit": "Go"}, | ||
) | ||
|
||
soup = BeautifulSoup(r.text, features="html.parser") | ||
results = soup.find_all("div", {"class": "collection"}) | ||
|
||
for result in results: | ||
date = result.find("p", {"class": "caption"}) | ||
dates = [] | ||
dates.append(str(date.text).replace("Next collection ", "", 1)) | ||
for date in result.find_all("li"): | ||
dates.append(date.text) | ||
h3_tag = result.find("h3") | ||
collection_type = h3_tag.text.replace("DUE TODAY", "").strip() | ||
for current_date in dates: | ||
date = datetime.strptime(current_date, "%A %d %b %Y").date() | ||
entries.append( | ||
Collection( | ||
date=date, | ||
t=collection_type, | ||
icon=ICON_MAP.get(collection_type), | ||
r = self._session.get(AUTH_URL) | ||
r.raise_for_status() | ||
auth_token = r.headers[AUTH_KEY] | ||
|
||
post_data = { | ||
"name": "sr_bin_coll_day_checker", | ||
"data": { | ||
"uprn": self._uprn, | ||
"nextCollectionFromDate": (datetime.now() - timedelta(days=1)).strftime( | ||
"%Y-%m-%d" | ||
), | ||
"nextCollectionToDate": (datetime.now() + timedelta(days=365)).strftime( | ||
"%Y-%m-%d" | ||
), | ||
}, | ||
"email": "", | ||
"caseid": "", | ||
"xref": "", | ||
"xref1": "", | ||
"xref2": "", | ||
} | ||
|
||
headers = { | ||
"referer": "https://manchester.portal.uk.empro.verintcloudservices.com/", | ||
"accept": "application/json", | ||
"content-type": "application/json", | ||
AUTH_KEY: auth_token, | ||
} | ||
|
||
r = self._session.post(API_URL, data=json.dumps(post_data), headers=headers) | ||
r.raise_for_status() | ||
|
||
result = r.json() | ||
|
||
for key, value in result["data"].items(): | ||
if key.startswith("ahtm_dates_"): | ||
if key not in COLLECTION_MAP: | ||
_LOGGER.warning( | ||
"Unknow bin type: %s found. Please report back to the creator of this custom_component." | ||
) | ||
|
||
dates_list = [ | ||
datetime.strptime(date.strip(), "%d/%m/%Y %H:%M:%S").date() | ||
for date in value.split(";") | ||
if date.strip() | ||
] | ||
|
||
for current_date in dates_list: | ||
entries.append( | ||
Collection( | ||
date=current_date, | ||
t=COLLECTION_MAP.get(key), | ||
icon=ICON_MAP.get(key), | ||
) | ||
) | ||
) | ||
|
||
return entries |