-
Notifications
You must be signed in to change notification settings - Fork 32
♻️ Datcore-adapter refactoring #7270
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
sanderegg
merged 13 commits into
ITISFoundation:master
from
sanderegg:storage/datcore-adapter-refactoring
Feb 25, 2025
Merged
Changes from all commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
aaa2beb
requirements
sanderegg 9ae37bb
refactoring
sanderegg 914fa34
refactoring errors
sanderegg 500e97d
refactoring routes
sanderegg c40198c
refactoring routes
sanderegg b6657f0
refactoring app
sanderegg 954528d
models
sanderegg f122bc6
refactored
sanderegg a38eaf7
removed unused code
sanderegg cbb0033
removed unused code
sanderegg 1262117
missing
sanderegg 7b40354
sort
sanderegg 2521650
ruff
sanderegg File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
File renamed without changes.
41 changes: 41 additions & 0 deletions
41
packages/models-library/src/models_library/api_schemas_datcore_adapter/datasets.py
This file contains hidden or 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 |
|---|---|---|
| @@ -0,0 +1,41 @@ | ||
| from datetime import datetime | ||
| from enum import Enum, unique | ||
| from pathlib import Path | ||
|
|
||
| from pydantic import BaseModel, ByteSize | ||
|
|
||
|
|
||
| class DatasetMetaData(BaseModel): | ||
| id: str | ||
| display_name: str | ||
|
|
||
|
|
||
| @unique | ||
| class DataType(str, Enum): | ||
| FILE = "FILE" | ||
| FOLDER = "FOLDER" | ||
|
|
||
|
|
||
| class PackageMetaData(BaseModel): | ||
pcrespov marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| path: Path | ||
| display_path: Path | ||
| package_id: str | ||
| name: str | ||
| filename: str | ||
| s3_bucket: str | ||
| size: ByteSize | ||
| created_at: datetime | ||
| updated_at: datetime | ||
|
|
||
|
|
||
| class FileMetaData(BaseModel): | ||
| dataset_id: str | ||
| package_id: str | ||
| id: str | ||
| name: str | ||
| type: str | ||
| path: Path | ||
| size: int | ||
| created_at: datetime | ||
| last_modified_at: datetime | ||
| data_type: DataType | ||
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
36 changes: 0 additions & 36 deletions
36
services/datcore-adapter/src/simcore_service_datcore_adapter/api/errors/http_error.py
This file was deleted.
Oops, something went wrong.
28 changes: 0 additions & 28 deletions
28
services/datcore-adapter/src/simcore_service_datcore_adapter/api/errors/validation_error.py
This file was deleted.
Oops, something went wrong.
31 changes: 0 additions & 31 deletions
31
services/datcore-adapter/src/simcore_service_datcore_adapter/api/module_setup.py
This file was deleted.
Oops, something went wrong.
File renamed without changes.
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.