Skip to content

Commit

Permalink
Merge pull request #1318 from dandi/bf-api
Browse files Browse the repository at this point in the history
Check if URL matches the API URL so we do not hardcode wrong "False" for is_api
  • Loading branch information
yarikoptic authored Aug 10, 2023
2 parents 4d5b46b + 11eac91 commit aad09af
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion dandi/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -596,6 +596,7 @@ class ServerInfo(BaseModel):

def get_instance(dandi_instance_id: str | DandiInstance) -> DandiInstance:
dandi_id = None
is_api = True
redirector_url = None
if isinstance(dandi_instance_id, DandiInstance):
instance = dandi_instance_id
Expand All @@ -605,8 +606,10 @@ def get_instance(dandi_instance_id: str | DandiInstance) -> DandiInstance:
dandi_id = known_instances_rev.get(redirector_url.rstrip("/"))
if dandi_id is not None:
instance = known_instances[dandi_id]
is_api = instance.api.rstrip("/") == redirector_url.rstrip("/")
else:
instance = None
is_api = False
bits = urlparse(redirector_url)
redirector_url = urlunparse((bits[0], bits[1], "", "", "", ""))
else:
Expand All @@ -616,7 +619,7 @@ def get_instance(dandi_instance_id: str | DandiInstance) -> DandiInstance:
assert instance is not None
return _get_instance(instance.api.rstrip("/"), True, instance, dandi_id)
else:
return _get_instance(redirector_url.rstrip("/"), False, instance, dandi_id)
return _get_instance(redirector_url.rstrip("/"), is_api, instance, dandi_id)


@lru_cache
Expand Down

0 comments on commit aad09af

Please sign in to comment.