Skip to content

Commit 04bba53

Browse files
feat: expose publisher countries
1 parent 0295673 commit 04bba53

File tree

5 files changed

+9
-4
lines changed

5 files changed

+9
-4
lines changed

oc4ids_datastore_api/models.py

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ class DatasetSQLModel(SQLModel, table=True):
99
dataset_id: str = Field(primary_key=True)
1010
source_url: str
1111
publisher_name: str
12+
publisher_country: str | None
1213
license_url: str | None
1314
license_title: str | None
1415
license_title_short: str | None

oc4ids_datastore_api/schemas.py

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55

66
class Publisher(BaseModel):
77
name: str
8+
country: str | None
89

910

1011
class License(BaseModel):

oc4ids_datastore_api/services.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,9 @@ def _transform_dataset(dataset: DatasetSQLModel) -> Dataset:
1515
return Dataset(
1616
loaded_at=dataset.updated_at,
1717
source_url=dataset.source_url,
18-
publisher=Publisher(name=dataset.publisher_name),
18+
publisher=Publisher(
19+
name=dataset.publisher_name, country=dataset.publisher_country
20+
),
1921
license=License(
2022
url=dataset.license_url,
2123
title=dataset.license_title,

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ build-backend = "flit_core.buildapi"
55
[project]
66
name = "oc4ids-datastore-api"
77
description = "OC4IDS Datastore API"
8-
version = "0.2.0"
8+
version = "0.3.0"
99
readme = "README.md"
1010
dependencies = [
1111
"fastapi[standard]",

tests/test_services.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ def test_get_all_datasets(mocker: MockerFixture) -> None:
1616
dataset_id="test_dataset",
1717
source_url="https://test-dataset.json",
1818
publisher_name="test_publisher",
19+
publisher_country="ab",
1920
license_url="https://license.com",
2021
license_title="License",
2122
license_title_short="L",
@@ -31,7 +32,7 @@ def test_get_all_datasets(mocker: MockerFixture) -> None:
3132
expected_dataset = Dataset(
3233
loaded_at=now,
3334
source_url="https://test-dataset.json",
34-
publisher=Publisher(name="test_publisher"),
35+
publisher=Publisher(name="test_publisher", country="ab"),
3536
license=License(title="License", title_short="L", url="https://license.com"),
3637
downloads=[
3738
Download(format="json", url="https://downloads/test_dataset.json"),
@@ -66,7 +67,7 @@ def test_get_all_datasets_missing_download_formats(mocker: MockerFixture) -> Non
6667
expected_dataset = Dataset(
6768
loaded_at=now,
6869
source_url="https://test-dataset.json",
69-
publisher=Publisher(name="test_publisher"),
70+
publisher=Publisher(name="test_publisher", country=None),
7071
license=License(title="License", title_short="L", url="https://license.com"),
7172
downloads=[
7273
Download(format="json", url="https://downloads/test_dataset.json"),

0 commit comments

Comments
 (0)