-
-
Notifications
You must be signed in to change notification settings - Fork 415
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: revisões em sistema atende Layout 2
- Loading branch information
Showing
1 changed file
with
64 additions
and
63 deletions.
There are no files selected for viewing
127 changes: 64 additions & 63 deletions
127
data_collection/gazette/spiders/base/atende_layoutdois.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,91 +1,92 @@ | ||
import re | ||
|
||
import dateparser | ||
from scrapy import Request | ||
from scrapy import FormRequest | ||
|
||
from gazette.items import Gazette | ||
from gazette.spiders.base import BaseGazetteSpider | ||
|
||
|
||
class BaseAtendeL2Spider(BaseGazetteSpider): | ||
""" | ||
Base spider for Gazzetes that are available from cities listed on https://{city_subdomain}.atende.net | ||
This base class deals with layout 'Type 2' gazette pages, usually requested | ||
Base spider for Gazettes that are available from cities listed on | ||
https://{city_subdomain}.atende.net | ||
This base class deals with 'Layout 2' gazette pages, usually requested | ||
from 'https://{city_subdomain}.atende.net/diariooficial'. | ||
""" | ||
|
||
allowed_domains = ["atende.net"] | ||
BASE_URL = "" | ||
|
||
# Must be defined into child classes | ||
city_subdomain = "" | ||
|
||
power = "executive_legislative" | ||
def start_requests(self): | ||
self.BASE_URL = f"https://{self.city_subdomain}.atende.net/diariooficial/edicao/pagina/atende.php" | ||
|
||
start_page = 1 | ||
end_page = 0 | ||
extra_edition_options = ("suplementar", "retificação", "extraordinária", "extra") | ||
allowed_domains = ["atende.net"] | ||
yield FormRequest( | ||
url=self.BASE_URL, | ||
method="GET", | ||
formdata=self.get_params("pagina", 1), | ||
cb_kwargs={"page": 1}, | ||
) | ||
|
||
def start_requests(self): | ||
yield Request(self.get_url(self.start_page)) | ||
|
||
def parse(self, response, page=start_page): | ||
lines = response.css("div.nova_listagem div.linha") | ||
for line in lines: | ||
date_raw = line.css("div.data::text").get() | ||
date_time = dateparser.parse(date_raw, languages=["pt"]) | ||
if date_time is None: | ||
self.logger.debug(f"Unable to parse date from text {date_raw}!") | ||
continue | ||
date = date_time.date() | ||
def parse(self, response, page): | ||
for item in response.css("div.nova_listagem div.linha"): | ||
date_raw = item.css("div.data::text").get() | ||
date = dateparser.parse(date_raw, languages=["pt"]).date() | ||
|
||
if date > self.end_date: | ||
continue | ||
if date < self.start_date: | ||
return | ||
|
||
edition_type = line.css("div.tipo::text").get() | ||
is_extra = ( | ||
edition_type.lower() in self.extra_edition_options | ||
if edition_type | ||
else False | ||
edition_type = item.css("div.tipo::text").get() | ||
is_extra = bool( | ||
re.search( | ||
r"suplementar | retificação | extraordinária | extra", | ||
edition_type, | ||
re.IGNORECASE, | ||
) | ||
) | ||
edition_number = line.css("div.titulo::text").get() | ||
# edition_number = lines.css("div.titulo::text").re_first(r"[^\s][\d.]+") | ||
gazette = Gazette( | ||
|
||
edition_number = item.css("div.titulo::text").re_first(r"\d+") | ||
download_url = item.css("button::attr(data-link)")[-1].get() | ||
|
||
yield Gazette( | ||
date=date, | ||
edition_number=edition_number, | ||
is_extra_edition=is_extra, | ||
power=self.power, | ||
file_urls=[download_url], | ||
power="executive_legislative", | ||
) | ||
download_urls = line.css("button::attr(data-link)") | ||
if len(download_urls) > 0: | ||
gazette["file_urls"] = [download_urls[-1].get()] | ||
yield gazette | ||
else: | ||
# self.logger.debug("Unable to find an url for download! Trying edition details.") | ||
edition_id = line.css("span.bt_detalhes::attr(data-id)").get() | ||
edition_url = f"{self.get_base_url()}¶metro=%7B%22codigoPlugin%22%3A2,%22filtroPlugin%22%3A%7B%22codigoEdicao%22%3A%22{edition_id}%22%7D%7D" | ||
yield Request( | ||
edition_url, self.parse_edition, cb_kwargs={"gazette": gazette} | ||
) | ||
|
||
if self.end_page < 1: | ||
pages = response.css("div#paginacao li.dst button::attr(value)").getall() | ||
if len(pages) > 1: | ||
self.end_page = int(pages[-1]) | ||
else: | ||
self.logger.debug("Unable to find the last page!") | ||
|
||
page += 1 | ||
if page <= self.end_page: | ||
yield response.follow(self.get_url(page), cb_kwargs={"page": page}) | ||
|
||
def parse_edition(self, response, gazette): | ||
download_url = response.css( | ||
"button.visualizacao_versao_completa::attr(data-link)" | ||
).get() | ||
gazette["file_urls"] = [download_url] | ||
yield gazette | ||
|
||
def get_base_url(self): | ||
return f"https://{self.city_subdomain}.atende.net/diariooficial/edicao/pagina/atende.php?rot=54015&aca=101&ajax=t&processo=loadPluginDiarioOficial" | ||
|
||
def get_url(self, page): | ||
return f"{self.get_base_url()}¶metro=%7B%22codigoPlugin%22%3A1,%22filtroPlugin%22%3A%7B%22pagina%22%3A%22{page}%22%7D%7D" | ||
if page < self.get_last_page(response): | ||
yield FormRequest( | ||
url=self.BASE_URL, | ||
method="GET", | ||
formdata=self.get_params("pagina", page + 1), | ||
cb_kwargs={"page": page + 1}, | ||
) | ||
|
||
def get_params(self, filtro, value): | ||
params = { | ||
"rot": "54015", | ||
"aca": "101", | ||
"ajax": "t", | ||
"processo": "loadPluginDiarioOficial", | ||
} | ||
if filtro == "pagina": | ||
params[ | ||
"parametro" | ||
] = f'{{"codigoPlugin":1,"filtroPlugin":{{"pagina":"{value}"}}}}' | ||
elif filtro == "edicao": | ||
params[ | ||
"parametro" | ||
] = f'{{"codigoPlugin":2,"filtroPlugin":{{"codigoEdicao":"{value}"}}}}' | ||
|
||
return params | ||
|
||
def get_last_page(self, response): | ||
pages = response.css("div#paginacao li.dst button::attr(value)").getall()[-1] | ||
return int(pages) |