Skip to content

Commit

Permalink
Add single item lookup when parent item completely
Browse files Browse the repository at this point in the history
missing from file
  • Loading branch information
ajparsons committed Dec 9, 2024
1 parent 971ac8c commit c89e23c
Showing 1 changed file with 20 additions and 3 deletions.
23 changes: 20 additions & 3 deletions pyscraper/regmem/commons/process.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,9 +83,21 @@ def recursive_fetch(
if skip >= target_items:
continue_fetching = False

if len(all_items) != target_items:
raise ValueError(f"Expected {target_items} items, got {len(all_items)}")

return all_items


def get_single_item(
interest_id: int,
) -> PublishedInterest:
url = REGISTER_BASE + f"api/v1/Interests/{interest_id}"
item = requests.get(url).json()
interest = PublishedInterest.model_validate(item)
return interest


def get_list_of_registers(quiet: bool = False):
url = REGISTER_BASE + "api/v1/Registers"
items = recursive_fetch(url, quiet=quiet)
Expand Down Expand Up @@ -130,15 +142,20 @@ def move_subitems_under_parent(
for interest in interests:
if interest.parent_interest_id is not None:
if interest.parent_interest_id not in parent_items:
parent_interest = wider_lookup[interest.parent_interest_id]
try:
parent_interest = wider_lookup[interest.parent_interest_id]
except KeyError:
# for some reason this isn't in the register download *at all*
parent_interest = get_single_item(interest.parent_interest_id)
parent_items[parent_interest.id] = parent_interest
all_item_ids.append(parent_interest.id)
parent = parent_items[interest.parent_interest_id]
parent.child_items.append(interest)
all_item_ids.append(interest.id)

if len(all_item_ids) < len(interests):
raise ValueError("Not all items are accounted when moving to subitems.")
for interest in interests:
if interest.id not in all_item_ids:
raise ValueError(f"Interest {interest.id} not moved across")

return list(parent_items.values())

Expand Down

0 comments on commit c89e23c

Please sign in to comment.