2022-05-27 14:42:42 +00:00
|
|
|
import base64
|
|
|
|
import json
|
2022-09-20 15:03:52 +00:00
|
|
|
import logging
|
2022-05-27 14:42:42 +00:00
|
|
|
import os
|
|
|
|
import uuid
|
2022-11-10 14:56:25 +00:00
|
|
|
from dataclasses import dataclass
|
|
|
|
from typing import Optional
|
2022-05-27 14:42:42 +00:00
|
|
|
|
2022-09-20 15:03:52 +00:00
|
|
|
import allure
|
2022-06-13 20:33:09 +00:00
|
|
|
import json_transformers
|
2022-10-04 07:52:12 +00:00
|
|
|
from common import ASSETS_DIR, NEOFS_CLI_EXEC, NEOFS_ENDPOINT, WALLET_CONFIG
|
2022-11-10 14:56:25 +00:00
|
|
|
from data_formatters import get_wallet_public_key
|
|
|
|
from json_transformers import encode_for_json
|
2022-11-07 07:10:11 +00:00
|
|
|
from neo3 import wallet
|
2022-11-01 09:30:05 +00:00
|
|
|
from neofs_testlib.cli import NeofsCli
|
|
|
|
from neofs_testlib.shell import Shell
|
2022-11-10 14:56:25 +00:00
|
|
|
from storage_object_info import StorageObjectInfo
|
|
|
|
from wallet import WalletFile
|
2022-06-09 13:08:11 +00:00
|
|
|
|
2022-09-20 15:03:52 +00:00
|
|
|
logger = logging.getLogger("NeoLogger")
|
2022-05-27 14:42:42 +00:00
|
|
|
|
2022-11-10 14:56:25 +00:00
|
|
|
PUT_VERB = "PUT"
|
|
|
|
DELETE_VERB = "DELETE"
|
|
|
|
LOCK_VERB = "LOCK"
|
|
|
|
|
|
|
|
GET_VERB = "GET"
|
|
|
|
RANGEHASH_VERB = "RANGEHASH"
|
|
|
|
RANGE_VERB = "RANGE"
|
|
|
|
HEAD_VERB = "HEAD"
|
|
|
|
SEARCH_VERB = "SEARCH"
|
|
|
|
|
|
|
|
UNRELATED_KEY = "unrelated key in the session"
|
|
|
|
UNRELATED_OBJECT = "unrelated object in the session"
|
|
|
|
UNRELATED_CONTAINER = "unrelated container in the session"
|
|
|
|
WRONG_VERB = "wrong verb of the session"
|
|
|
|
INVALID_SIGNATURE = "invalid signature of the session data"
|
|
|
|
|
|
|
|
|
|
|
|
@dataclass
|
|
|
|
class Lifetime:
|
|
|
|
exp: int = 100000000
|
|
|
|
nbf: int = 0
|
|
|
|
iat: int = 0
|
|
|
|
|
2022-05-27 14:42:42 +00:00
|
|
|
|
2022-09-20 15:03:52 +00:00
|
|
|
@allure.step("Generate Session Token")
|
2022-09-05 09:35:46 +00:00
|
|
|
def generate_session_token(owner: str, session_wallet: str, cid: str = "") -> str:
|
2022-05-27 14:42:42 +00:00
|
|
|
"""
|
2022-09-05 09:35:46 +00:00
|
|
|
This function generates session token for ContainerSessionContext
|
|
|
|
and writes it to the file. It is able to prepare session token file
|
|
|
|
for a specific container (<cid>) or for every container (adds
|
|
|
|
"wildcard" field).
|
|
|
|
Args:
|
|
|
|
owner(str): wallet address of container owner
|
|
|
|
session_wallet(str): the path to wallet to which we grant the
|
|
|
|
access via session token
|
|
|
|
cid(optional, str): container ID of the container; if absent,
|
|
|
|
we assume the session token is generated for any
|
|
|
|
container
|
|
|
|
Returns:
|
|
|
|
(str): the path to the generated session token file
|
2022-05-27 14:42:42 +00:00
|
|
|
"""
|
2022-10-18 07:11:57 +00:00
|
|
|
file_path = os.path.join(os.getcwd(), ASSETS_DIR, str(uuid.uuid4()))
|
2022-05-27 14:42:42 +00:00
|
|
|
|
2022-09-05 09:35:46 +00:00
|
|
|
session_wlt_content = ""
|
2022-05-27 14:42:42 +00:00
|
|
|
with open(session_wallet) as fout:
|
|
|
|
session_wlt_content = json.load(fout)
|
|
|
|
session_wlt = wallet.Wallet.from_json(session_wlt_content, password="")
|
2022-09-20 15:03:52 +00:00
|
|
|
pub_key_64 = base64.b64encode(bytes.fromhex(str(session_wlt.accounts[0].public_key))).decode(
|
|
|
|
"utf-8"
|
|
|
|
)
|
2022-05-27 14:42:42 +00:00
|
|
|
|
|
|
|
session_token = {
|
2022-06-09 13:08:11 +00:00
|
|
|
"body": {
|
|
|
|
"id": f"{base64.b64encode(uuid.uuid4().bytes).decode('utf-8')}",
|
2022-09-05 09:35:46 +00:00
|
|
|
"ownerID": {"value": f"{json_transformers.encode_for_json(owner)}"},
|
|
|
|
"lifetime": {"exp": "100000000", "nbf": "0", "iat": "0"},
|
2022-06-09 13:08:11 +00:00
|
|
|
"sessionKey": f"{pub_key_64}",
|
|
|
|
"container": {
|
|
|
|
"verb": "PUT",
|
2022-09-05 09:35:46 +00:00
|
|
|
"wildcard": cid != "",
|
2022-11-10 14:56:25 +00:00
|
|
|
**({"containerID": {"value": f"{encode_for_json(cid)}"}} if cid != "" else {}),
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
logger.info(f"Got this Session Token: {session_token}")
|
|
|
|
with open(file_path, "w", encoding="utf-8") as session_token_file:
|
|
|
|
json.dump(session_token, session_token_file, ensure_ascii=False, indent=4)
|
|
|
|
|
|
|
|
return file_path
|
|
|
|
|
|
|
|
|
|
|
|
@allure.step("Generate Session Token For Object")
|
|
|
|
def generate_object_session_token(
|
|
|
|
owner_wallet: WalletFile,
|
|
|
|
session_wallet: WalletFile,
|
|
|
|
oids: list[str],
|
|
|
|
cid: str,
|
|
|
|
verb: str,
|
|
|
|
tokens_dir: str,
|
|
|
|
lifetime: Optional[Lifetime] = None,
|
|
|
|
) -> str:
|
|
|
|
"""
|
|
|
|
This function generates session token for ObjectSessionContext
|
|
|
|
and writes it to the file. It is able to prepare session token file
|
|
|
|
for a specific container (<cid>) or for every container (adds
|
|
|
|
"wildcard" field).
|
|
|
|
Args:
|
|
|
|
owner_wallet: wallet of container owner
|
|
|
|
session_wallet: wallet to which we grant the
|
|
|
|
access via session token
|
|
|
|
cid: container ID of the container
|
|
|
|
oids: list of objectIDs to put into session
|
|
|
|
verb: verb to grant access to;
|
|
|
|
Valid verbs are: GET, RANGE, RANGEHASH, HEAD, SEARCH.
|
|
|
|
lifetime: lifetime options for session
|
|
|
|
Returns:
|
|
|
|
The path to the generated session token file
|
|
|
|
"""
|
|
|
|
|
|
|
|
file_path = os.path.join(tokens_dir, str(uuid.uuid4()))
|
|
|
|
|
|
|
|
pub_key_64 = get_wallet_public_key(session_wallet.path, session_wallet.password, "base64")
|
|
|
|
|
|
|
|
lifetime = lifetime if lifetime else Lifetime()
|
|
|
|
|
|
|
|
session_token = {
|
|
|
|
"body": {
|
|
|
|
"id": f"{base64.b64encode(uuid.uuid4().bytes).decode('utf-8')}",
|
|
|
|
"ownerID": {
|
|
|
|
"value": f"{json_transformers.encode_for_json(owner_wallet.get_address())}"
|
|
|
|
},
|
|
|
|
"lifetime": {
|
|
|
|
"exp": f"{lifetime.exp}",
|
|
|
|
"nbf": f"{lifetime.nbf}",
|
|
|
|
"iat": f"{lifetime.iat}",
|
|
|
|
},
|
|
|
|
"sessionKey": pub_key_64,
|
|
|
|
"object": {
|
|
|
|
"verb": verb,
|
|
|
|
"target": {
|
|
|
|
"container": {"value": encode_for_json(cid)},
|
|
|
|
"objects": [{"value": encode_for_json(oid)} for oid in oids],
|
|
|
|
},
|
2022-09-05 09:35:46 +00:00
|
|
|
},
|
2022-06-09 13:08:11 +00:00
|
|
|
}
|
|
|
|
}
|
2022-05-27 14:42:42 +00:00
|
|
|
|
|
|
|
logger.info(f"Got this Session Token: {session_token}")
|
2022-09-05 09:35:46 +00:00
|
|
|
with open(file_path, "w", encoding="utf-8") as session_token_file:
|
2022-05-27 14:42:42 +00:00
|
|
|
json.dump(session_token, session_token_file, ensure_ascii=False, indent=4)
|
|
|
|
|
|
|
|
return file_path
|
|
|
|
|
|
|
|
|
2022-11-10 14:56:25 +00:00
|
|
|
@allure.step("Get signed token for object session")
|
|
|
|
def get_object_signed_token(
|
|
|
|
owner_wallet: WalletFile,
|
|
|
|
user_wallet: WalletFile,
|
|
|
|
storage_objects: list[StorageObjectInfo],
|
|
|
|
verb: str,
|
|
|
|
shell: Shell,
|
|
|
|
tokens_dir: str,
|
|
|
|
lifetime: Optional[Lifetime] = None,
|
|
|
|
) -> str:
|
|
|
|
"""
|
|
|
|
Returns signed token file path for static object session
|
|
|
|
"""
|
|
|
|
storage_object_ids = [storage_object.oid for storage_object in storage_objects]
|
|
|
|
session_token_file = generate_object_session_token(
|
|
|
|
owner_wallet,
|
|
|
|
user_wallet,
|
|
|
|
storage_object_ids,
|
|
|
|
owner_wallet.containers[0],
|
|
|
|
verb,
|
|
|
|
tokens_dir,
|
|
|
|
lifetime=lifetime,
|
|
|
|
)
|
|
|
|
return sign_session_token(shell, session_token_file, owner_wallet.path)
|
|
|
|
|
|
|
|
|
2022-09-20 15:03:52 +00:00
|
|
|
@allure.step("Create Session Token")
|
2022-11-01 09:30:05 +00:00
|
|
|
def create_session_token(
|
|
|
|
shell: Shell,
|
|
|
|
owner: str,
|
|
|
|
wallet_path: str,
|
|
|
|
wallet_password: str,
|
|
|
|
rpc_endpoint: str = NEOFS_ENDPOINT,
|
|
|
|
) -> str:
|
2022-09-05 09:35:46 +00:00
|
|
|
"""
|
|
|
|
Create session token for an object.
|
|
|
|
Args:
|
2022-11-01 09:30:05 +00:00
|
|
|
shell: Shell instance.
|
|
|
|
owner: User that writes the token.
|
|
|
|
wallet_path: The path to wallet to which we grant the access via session token.
|
|
|
|
wallet_password: Wallet password.
|
|
|
|
rpc_endpoint: Remote node address (as 'multiaddr' or '<host>:<port>').
|
2022-09-05 09:35:46 +00:00
|
|
|
Returns:
|
2022-11-01 09:30:05 +00:00
|
|
|
The path to the generated session token file.
|
2022-09-05 09:35:46 +00:00
|
|
|
"""
|
2022-10-18 07:11:57 +00:00
|
|
|
session_token = os.path.join(os.getcwd(), ASSETS_DIR, str(uuid.uuid4()))
|
2022-11-01 09:30:05 +00:00
|
|
|
neofscli = NeofsCli(shell=shell, neofs_cli_exec_path=NEOFS_CLI_EXEC)
|
|
|
|
neofscli.session.create(
|
|
|
|
rpc_endpoint=rpc_endpoint,
|
|
|
|
address=owner,
|
|
|
|
wallet=wallet_path,
|
|
|
|
wallet_password=wallet_password,
|
|
|
|
out=session_token,
|
2022-09-05 09:35:46 +00:00
|
|
|
)
|
|
|
|
return session_token
|
|
|
|
|
|
|
|
|
2022-09-20 15:03:52 +00:00
|
|
|
@allure.step("Sign Session Token")
|
2022-11-01 09:30:05 +00:00
|
|
|
def sign_session_token(shell: Shell, session_token_file: str, wlt: str) -> str:
|
2022-05-27 14:42:42 +00:00
|
|
|
"""
|
2022-09-05 09:35:46 +00:00
|
|
|
This function signs the session token by the given wallet.
|
2022-11-01 09:30:05 +00:00
|
|
|
|
2022-09-05 09:35:46 +00:00
|
|
|
Args:
|
2022-11-01 09:30:05 +00:00
|
|
|
shell: Shell instance.
|
|
|
|
session_token_file: The path to the session token file.
|
|
|
|
wlt: The path to the signing wallet.
|
|
|
|
|
2022-09-05 09:35:46 +00:00
|
|
|
Returns:
|
2022-11-01 09:30:05 +00:00
|
|
|
The path to the signed token.
|
2022-05-27 14:42:42 +00:00
|
|
|
"""
|
2022-11-01 09:30:05 +00:00
|
|
|
signed_token_file = os.path.join(os.getcwd(), ASSETS_DIR, str(uuid.uuid4()))
|
|
|
|
neofscli = NeofsCli(shell=shell, neofs_cli_exec_path=NEOFS_CLI_EXEC, config_file=WALLET_CONFIG)
|
|
|
|
neofscli.util.sign_session_token(
|
|
|
|
wallet=wlt, from_file=session_token_file, to_file=signed_token_file
|
2022-05-27 14:42:42 +00:00
|
|
|
)
|
2022-11-01 09:30:05 +00:00
|
|
|
return signed_token_file
|