mirror of
https://github.com/Garmelon/PFERD.git
synced 2026-04-11 23:15:04 +02:00
Crawl the info tab of courses again
This got lost in a refactor
This commit is contained in:
parent
3f5637366e
commit
e246053de2
3 changed files with 7 additions and 2 deletions
|
|
@ -29,6 +29,7 @@ ambiguous situations.
|
|||
## Fixed
|
||||
- Event loop errors on Windows with Python 3.14
|
||||
- Sanitize `/` in headings in kit-ipd crawler
|
||||
- Crawl info tab again
|
||||
|
||||
## 3.8.3 - 2025-07-01
|
||||
|
||||
|
|
|
|||
|
|
@ -297,6 +297,8 @@ instance's greatest bottleneck.
|
|||
|
||||
page = cast(IliasPage, page)
|
||||
elements.extend(page.get_child_elements())
|
||||
if current_element is None and (info_tab := page.get_info_tab()):
|
||||
elements.append(info_tab)
|
||||
if description_string := page.get_description():
|
||||
description.append(description_string)
|
||||
|
||||
|
|
|
|||
|
|
@ -739,9 +739,10 @@ class IliasPage:
|
|||
links: list[Tag] = self._soup.select("a.il_ContainerItemCommand")
|
||||
|
||||
for link in links:
|
||||
if "cmdClass=ilobjcoursegui" not in link["href"]:
|
||||
log.explain(f"Found info tab link: {self._abs_url_from_link(link)}")
|
||||
if "cmdclass=ilobjcoursegui" not in cast(str, link["href"]).lower():
|
||||
continue
|
||||
if "cmd=sendfile" not in link["href"]:
|
||||
if "cmd=sendfile" not in cast(str, link["href"]).lower():
|
||||
continue
|
||||
items.append(
|
||||
IliasPageElement.create_new(
|
||||
|
|
@ -749,6 +750,7 @@ class IliasPage:
|
|||
)
|
||||
)
|
||||
|
||||
log.explain(f"Found {len(items)} info tab entries {items}")
|
||||
return items
|
||||
|
||||
def _find_opencast_video_entries(self) -> list[IliasPageElement]:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue