forked from TrueCloudLab/frostfs-api
e6b2810648
Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
114 lines
3.3 KiB
Protocol Buffer
114 lines
3.3 KiB
Protocol Buffer
syntax = "proto3";
|
|
|
|
package service;
|
|
|
|
option go_package = "github.com/nspcc-dev/neofs-api-go/service";
|
|
option csharp_namespace = "NeoFS.API.Service";
|
|
|
|
import "acl/types.proto";
|
|
import "refs/types.proto";
|
|
|
|
// RequestVerificationHeader is a set of signatures of every NeoFS Node that processed request.
|
|
message RequestVerificationHeader {
|
|
message Signature {
|
|
// Key is compressed public key used for signature.
|
|
bytes key = 1;
|
|
|
|
// Sign is signature of the request or session key.
|
|
bytes sign = 2;
|
|
}
|
|
|
|
// Signatures is a set of signatures of every passed NeoFS Node
|
|
repeated Signature signatures = 1;
|
|
|
|
// Token is a token of the session within which the request is sent
|
|
Token token = 2;
|
|
|
|
// Bearer is a Bearer token of the request
|
|
BearerTokenMsg bearer = 3;
|
|
}
|
|
|
|
// User token granting rights for object manipulation
|
|
message Token {
|
|
message Info {
|
|
// ID is a token identifier. valid UUIDv4 represented in bytes
|
|
bytes id = 1;
|
|
|
|
// OwnerID carries identifier of the manipulation object owner.
|
|
refs.OwnerID owner_id = 2;
|
|
|
|
// Verb is an enumeration of session request types
|
|
enum Verb {
|
|
// Put refers to object.Put RPC call
|
|
PUT = 0;
|
|
// Get refers to object.Get RPC call
|
|
GET = 1;
|
|
// Head refers to object.Head RPC call
|
|
HEAD = 2;
|
|
// Search refers to object.Search RPC call
|
|
SEARCH = 3;
|
|
// Delete refers to object.Delete RPC call
|
|
DELETE = 4;
|
|
// Range refers to object.GetRange RPC call
|
|
RANGE = 5;
|
|
// RangeHash refers to object.GetRangeHash RPC call
|
|
RANGEHASH = 6;
|
|
}
|
|
|
|
// Verb is a type of request for which the token is issued
|
|
Verb verb = 3;
|
|
|
|
// Lifetime is a lifetime of the session
|
|
TokenLifetime lifetime = 4;
|
|
|
|
// SessionKey is a public key of session key
|
|
bytes session_key = 5;
|
|
|
|
// OwnerKey is a public key of the token owner
|
|
bytes owner_key = 6;
|
|
|
|
// Carries context of the session.
|
|
oneof context {
|
|
// object_address represents the object session context.
|
|
refs.Address object_address = 7;
|
|
}
|
|
}
|
|
|
|
// token_info is a grouped information about token
|
|
Info token_info = 1;
|
|
|
|
// Signature is a signature of session token information
|
|
bytes signature = 2;
|
|
}
|
|
|
|
// TokenLifetime carries a group of lifetime parameters of the token
|
|
message TokenLifetime {
|
|
// created carries an initial epoch of token lifetime
|
|
uint64 created = 1;
|
|
|
|
// valid_until carries a last epoch of token lifetime
|
|
uint64 valid_until = 2;
|
|
}
|
|
|
|
// BearerTokenMsg carries information about request ACL rules with limited lifetime
|
|
message BearerTokenMsg {
|
|
message Info {
|
|
// EACLTable carries table of extended ACL rules.
|
|
acl.EACLTable eacl_table = 1;
|
|
|
|
// OwnerID carries identifier of the token owner.
|
|
refs.OwnerID owner_id = 2;
|
|
|
|
// ValidUntil carries a last epoch of token lifetime
|
|
uint64 valid_until = 3;
|
|
}
|
|
|
|
// token_info is a grouped information about token
|
|
Info token_info = 1;
|
|
|
|
// owner_key is a public key of the token owner
|
|
bytes owner_key = 2;
|
|
|
|
// Signature is a signature of token information
|
|
bytes signature = 3;
|
|
}
|