-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
93 additions
and
29 deletions.
There are no files selected for viewing
This file contains 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 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,66 @@ | ||
# Copyright 2023 Hathor Labs | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
from pydantic import validator | ||
|
||
from hathor.utils.pydantic import BaseModel | ||
|
||
|
||
class PayloadBaseModel(BaseModel): | ||
|
||
@classmethod | ||
def convert_hex_to_bytes(cls, value: str | bytes) -> bytes: | ||
if isinstance(value, str): | ||
return bytes.fromhex(value) | ||
elif isinstance(value, bytes): | ||
return value | ||
raise ValueError('invalid type') | ||
|
||
class Config: | ||
json_encoders = { | ||
bytes: lambda x: x.hex() | ||
} | ||
|
||
|
||
class GetNextBlocksPayload(PayloadBaseModel): | ||
start_hash: bytes | ||
end_hash: bytes | ||
quantity: int | ||
|
||
@validator('start_hash', 'end_hash', pre=True) | ||
def validate_bytes_fields(cls, value: str | bytes) -> bytes: | ||
return cls.convert_hex_to_bytes(value) | ||
|
||
|
||
class GetBestBlockPayload(PayloadBaseModel): | ||
block: bytes | ||
height: int | ||
|
||
@validator('block', pre=True) | ||
def validate_bytes_fields(cls, value: str | bytes) -> bytes: | ||
return cls.convert_hex_to_bytes(value) | ||
|
||
|
||
class GetTransactionsBFSPayload(PayloadBaseModel): | ||
start_from: list[bytes] | ||
first_block_hash: bytes | ||
last_block_hash: bytes | ||
|
||
@validator('first_block_hash', 'last_block_hash', pre=True) | ||
def validate_bytes_fields(cls, value: str | bytes) -> bytes: | ||
return cls.convert_hex_to_bytes(value) | ||
|
||
@validator('start_from', pre=True) | ||
def validate_start_from(cls, values: list[str | bytes]) -> list[bytes]: | ||
return [cls.convert_hex_to_bytes(x) for x in values] |