forked from Backblaze/B2_Command_Line_Tool
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add --lifecycleRule option with improved validation
- Loading branch information
1 parent
7211c98
commit 7c6f460
Showing
11 changed files
with
174 additions
and
19 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
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 |
---|---|---|
@@ -1,2 +1,4 @@ | ||
include requirements.txt | ||
include requirements-full.txt | ||
include requirements-license.txt | ||
include LICENSE |
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,57 @@ | ||
###################################################################### | ||
# | ||
# File: b2/_cli/obj_loads.py | ||
# | ||
# Copyright 2023 Backblaze Inc. All Rights Reserved. | ||
# | ||
# License https://www.backblaze.com/using_b2_code.html | ||
# | ||
###################################################################### | ||
from __future__ import annotations | ||
|
||
import argparse | ||
import io | ||
import json | ||
from typing import TypeVar | ||
|
||
from b2sdk.v2 import get_b2sdk_doc_urls | ||
|
||
try: | ||
import pydantic | ||
from pydantic import TypeAdapter, ValidationError | ||
except ImportError: | ||
pydantic = None | ||
|
||
|
||
def convert_error_to_human_readable(validation_exc: ValidationError) -> str: | ||
buf = io.StringIO() | ||
for error in validation_exc.errors(): | ||
loc = '.'.join(str(loc) for loc in error['loc']) | ||
buf.write(f' In field {loc!r} input was `{error["input"]!r}`, error: {error["msg"]}\n') | ||
return buf.getvalue() | ||
|
||
|
||
def describe_type(type_) -> str: | ||
urls = get_b2sdk_doc_urls(type_) | ||
if urls: | ||
url_links = ', '.join(f'{name} <{url}>' for name, url in urls.items()) | ||
return f'{type_.__name__} ({url_links})' | ||
return type_.__name__ | ||
|
||
|
||
T = TypeVar('T') | ||
|
||
|
||
def validated_loads(data: str, expected_type: type[T] | None = None) -> T: | ||
if expected_type is not None and pydantic is not None: | ||
ta = TypeAdapter(expected_type) | ||
try: | ||
val = ta.validate_json(data) | ||
except ValidationError as e: | ||
errors = convert_error_to_human_readable(e) | ||
raise argparse.ArgumentTypeError( | ||
f'Invalid value inputted, expected {describe_type(expected_type)}, got {data!r}, more detail below:\n{errors}' | ||
) from e | ||
else: | ||
val = json.loads(data) | ||
return val |
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 @@ | ||
pydantic>=2.0.1 |
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
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