-
Notifications
You must be signed in to change notification settings - Fork 105
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Adding Horsham District Council
- Loading branch information
Showing
1 changed file
with
112 additions
and
0 deletions.
There are no files selected for viewing
112 changes: 112 additions & 0 deletions
112
uk_bin_collection/uk_bin_collection/councils/HorshamDistrictCouncil.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 |
---|---|---|
@@ -0,0 +1,112 @@ | ||
import time | ||
|
||
import requests | ||
from dateutil.relativedelta import relativedelta | ||
|
||
from uk_bin_collection.uk_bin_collection.common import * | ||
from uk_bin_collection.uk_bin_collection.get_bin_data import AbstractGetBinDataClass | ||
|
||
|
||
# import the wonderful Beautiful Soup and the URL grabber | ||
class CouncilClass(AbstractGetBinDataClass): | ||
""" | ||
Concrete classes have to implement all abstract operations of the | ||
base class. They can also override some operations with a default | ||
implementation. | ||
""" | ||
|
||
def parse_data(self, page: str, **kwargs) -> dict: | ||
# Make a BS4 object | ||
uprn = kwargs.get("uprn") | ||
usrn = kwargs.get("paon") | ||
check_uprn(uprn) | ||
check_usrn(usrn) | ||
bindata = {"bins": []} | ||
|
||
SESSION_URL = "https://horshamdc-self.achieveservice.com/authapi/isauthenticated?uri=https%253A%252F%252Fhorshamdc-self.achieveservice.com%252Fen%252FAchieveForms%252F%253Fform_uri%253Dsandbox-publish%253A%252F%252FAF-Process-fb73f73e-e8f5-4441-9f83-8b5d04d889d6%252FAF-Stage-ec9ada91-d2d9-43bc-9730-597d15fc8108%252Fdefinition.json%2526redirectlink%253D%252Fen%2526cancelRedirectLink%253D%252Fen%2526noLoginPrompt%253D1%2526accept%253Dyes&hostname=horshamdc-self.achieveservice.com&withCredentials=true" | ||
|
||
API_URL = "https://horshamdc-self.achieveservice.com/apibroker/" | ||
|
||
currentdate = datetime.now().strftime("%d/%m/%Y") | ||
|
||
data = { | ||
"formValues": { | ||
"Address": { | ||
"address": { | ||
"value": { | ||
"Address": { | ||
"usrn": { | ||
"value": usrn, | ||
}, | ||
"uprn": { | ||
"value": uprn, | ||
}, | ||
} | ||
}, | ||
}, | ||
"dayConverted": { | ||
"value": currentdate, | ||
}, | ||
"getCollection": { | ||
"value": "true", | ||
}, | ||
"getWorksheets": { | ||
"value": "false", | ||
}, | ||
}, | ||
}, | ||
} | ||
|
||
headers = { | ||
"Content-Type": "application/json", | ||
"Accept": "application/json", | ||
"User-Agent": "Mozilla/5.0", | ||
"X-Requested-With": "XMLHttpRequest", | ||
"Referer": "https://horshamdc-self.achieveservice.com/fillform/?iframe_id=fillform-frame-1&db_id=", | ||
} | ||
s = requests.session() | ||
r = s.get(SESSION_URL) | ||
r.raise_for_status() | ||
session_data = r.json() | ||
sid = session_data["auth-session"] | ||
params = { | ||
"api": "RunLookup", | ||
"id": "5b4f0ec5f13f4", | ||
"repeat_against": "", | ||
"noRetry": "true", | ||
"getOnlyTokens": "undefined", | ||
"log_id": "", | ||
"app_name": "AF-Renderer::Self", | ||
# unix_timestamp | ||
"_": str(int(time.time() * 1000)), | ||
"sid": sid, | ||
} | ||
|
||
r = s.post(API_URL, json=data, headers=headers, params=params) | ||
r.raise_for_status() | ||
|
||
data = r.json() | ||
rows_data = data["integration"]["transformed"]["rows_data"]["0"] | ||
if not isinstance(rows_data, dict): | ||
raise ValueError("Invalid data returned from API") | ||
|
||
# Extract each service's relevant details for the bin schedule | ||
for key, value in rows_data.items(): | ||
if key.endswith("DateNext"): | ||
BinType = key.replace("DateNext", "Service") | ||
for key2, value2 in rows_data.items(): | ||
if key2 == BinType: | ||
BinType = value2 | ||
next_collection = datetime.strptime(value, "%A %d %B").replace( | ||
year=datetime.now().year | ||
) | ||
if datetime.now().month == 12 and next_collection.month == 1: | ||
next_collection = next_collection + relativedelta(years=1) | ||
|
||
dict_data = { | ||
"type": BinType, | ||
"collectionDate": next_collection.strftime(date_format), | ||
} | ||
bindata["bins"].append(dict_data) | ||
|
||
return bindata |