-
Notifications
You must be signed in to change notification settings - Fork 100
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1010 from m26dvd/master
feat: Council Pack 16
- Loading branch information
Showing
11 changed files
with
823 additions
and
46 deletions.
There are no files selected for viewing
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
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
93 changes: 93 additions & 0 deletions
93
uk_bin_collection/uk_bin_collection/councils/CopelandBoroughCouncil.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,93 @@ | ||
from xml.etree import ElementTree | ||
|
||
from bs4 import BeautifulSoup | ||
|
||
from uk_bin_collection.uk_bin_collection.common import * | ||
from uk_bin_collection.uk_bin_collection.get_bin_data import AbstractGetBinDataClass | ||
|
||
|
||
class CouncilClass(AbstractGetBinDataClass): | ||
""" | ||
Concrete classes have to implement all abstract operations of the | ||
baseclass. They can also override some | ||
operations with a default implementation. | ||
""" | ||
|
||
def parse_data(self, page: str, **kwargs) -> dict: | ||
uprn = kwargs.get("uprn") | ||
check_uprn(uprn) | ||
council = "CPL" | ||
|
||
# Make SOAP request | ||
headers = { | ||
"Content-Type": "text/xml; charset=UTF-8", | ||
"Referer": "https://collections-copeland.azurewebsites.net/calendar.html", | ||
"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Safari/537.36", | ||
} | ||
requests.packages.urllib3.disable_warnings() | ||
post_data = ( | ||
'<?xml version="1.0" encoding="utf-8"?>' | ||
'<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">' | ||
'<soap:Body><getRoundCalendarForUPRN xmlns="http://webaspx-collections.azurewebsites.net/">' | ||
"<council>" + council + "</council><UPRN>" + uprn + "</UPRN>" | ||
"<from>Chtml</from></getRoundCalendarForUPRN></soap:Body></soap:Envelope>" | ||
) | ||
response = requests.post( | ||
"https://collections-copeland.azurewebsites.net/WSCollExternal.asmx", | ||
headers=headers, | ||
data=post_data, | ||
) | ||
|
||
if response.status_code != 200: | ||
raise ValueError("No bin data found for provided UPRN.") | ||
|
||
# Get HTML from SOAP response | ||
xmltree = ElementTree.fromstring(response.text) | ||
html = xmltree.find( | ||
".//{http://webaspx-collections.azurewebsites.net/}getRoundCalendarForUPRNResult" | ||
).text | ||
# Parse with BS4 | ||
soup = BeautifulSoup(html, features="html.parser") | ||
soup.prettify() | ||
|
||
data = {"bins": []} | ||
for bin_type in ["Refuse", "Recycling", "Garden"]: | ||
bin_el = soup.find("b", string=bin_type) | ||
if bin_el: | ||
bin_info = bin_el.next_sibling.split(": ")[1] | ||
collection_date = "" | ||
results = re.search("([A-Za-z]+ \\d\\d? [A-Za-z]+) then", bin_info) | ||
if results: | ||
if results[1] == "Today": | ||
date = datetime.now() | ||
elif results[1] == "Tomorrow": | ||
date = datetime.now() + timedelta(days=1) | ||
else: | ||
date = get_next_occurrence_from_day_month( | ||
datetime.strptime( | ||
results[1] + " " + datetime.now().strftime("%Y"), | ||
"%a %d %b %Y", | ||
) | ||
) | ||
if date: | ||
collection_date = date.strftime(date_format) | ||
else: | ||
results2 = re.search("([A-Za-z]+) then", bin_info) | ||
if results2: | ||
if results2[1] == "Today": | ||
collection_date = datetime.now().strftime(date_format) | ||
elif results2[1] == "Tomorrow": | ||
collection_date = ( | ||
datetime.now() + timedelta(days=1) | ||
).strftime(date_format) | ||
else: | ||
collection_date = results2[1] | ||
|
||
if collection_date != "": | ||
dict_data = { | ||
"type": bin_type, | ||
"collectionDate": collection_date, | ||
} | ||
data["bins"].append(dict_data) | ||
|
||
return data |
Oops, something went wrong.