2021-04-30 16:45:03 +00:00
|
|
|
<p align="center">
|
|
|
|
<img src="./.github/logo.svg" width="500px" alt="NeoFS">
|
|
|
|
</p>
|
|
|
|
<p align="center">
|
|
|
|
<a href="https://fs.neo.org">NeoFS</a> is a decentralized distributed object storage integrated with the <a href="https://neo.org">NEO Blockchain</a>.
|
|
|
|
</p>
|
|
|
|
|
|
|
|
---
|
2021-05-18 11:18:50 +00:00
|
|
|
[![Report](https://goreportcard.com/badge/github.com/nspcc-dev/neofs-http-gw)](https://goreportcard.com/report/github.com/nspcc-dev/neofs-http-gw)
|
|
|
|
![GitHub release (latest SemVer)](https://img.shields.io/github/v/release/nspcc-dev/neofs-http-gw?sort=semver)
|
|
|
|
![License](https://img.shields.io/github/license/nspcc-dev/neofs-http-gw.svg?style=popout)
|
2021-04-30 16:45:03 +00:00
|
|
|
|
2021-04-09 15:29:18 +00:00
|
|
|
# NeoFS HTTP Protocol Gateway
|
2019-11-07 17:29:29 +00:00
|
|
|
|
2021-04-09 15:29:18 +00:00
|
|
|
NeoFS HTTP Protocol Gateway bridges NeoFS internal protocol and HTTP standard.
|
|
|
|
- you can download one file per request from NeoFS Network
|
|
|
|
- you can upload one file per request into the NeoFS Network
|
2019-11-07 17:29:29 +00:00
|
|
|
|
2021-04-29 21:15:04 +00:00
|
|
|
## Installation
|
|
|
|
|
2021-05-18 11:18:50 +00:00
|
|
|
```go get -u github.com/nspcc-dev/neofs-http-gw```
|
2021-04-29 21:15:04 +00:00
|
|
|
|
|
|
|
Or you can call `make` to build it from the cloned repository (the binary will
|
|
|
|
end up in `bin/neofs-http-gw`).
|
|
|
|
|
2021-05-04 15:19:11 +00:00
|
|
|
Notable make targets:
|
2021-02-05 14:13:37 +00:00
|
|
|
|
|
|
|
```
|
2021-04-09 15:29:18 +00:00
|
|
|
dep Check and ensure dependencies
|
|
|
|
image Build clean docker image
|
2021-04-29 21:15:04 +00:00
|
|
|
dirty-image Build dirty docker image with host-built binaries
|
2021-04-09 15:29:18 +00:00
|
|
|
fmts Run all code formatters
|
|
|
|
lint Run linters
|
|
|
|
version Show current version
|
2021-02-05 14:13:37 +00:00
|
|
|
```
|
|
|
|
|
2021-05-04 15:19:11 +00:00
|
|
|
Or you can also use a [Docker
|
|
|
|
image](https://hub.docker.com/r/nspccdev/neofs-http-gw) provided for released
|
|
|
|
(and occasionaly unreleased) versions of gateway (`:latest` points to the
|
|
|
|
latest stable release).
|
|
|
|
|
2021-04-29 21:15:04 +00:00
|
|
|
## Execution
|
2019-11-07 17:29:29 +00:00
|
|
|
|
2021-04-29 21:15:04 +00:00
|
|
|
HTTP gateway itself is not a NeoFS node, so to access NeoFS it uses node's
|
|
|
|
gRPC interface and you need to provide some node that it will connect to. This
|
|
|
|
can be done either via `-p` parameter or via `HTTP_GW_PEERS_<N>_ADDRESS` and
|
|
|
|
`HTTP_GW_PEERS_<N>_WEIGHT` environment variables (the gate supports multiple
|
|
|
|
NeoFS nodes with weighted load balancing).
|
|
|
|
|
2021-05-17 14:30:16 +00:00
|
|
|
If you're launching HTTP gateway in bundle with [neofs-dev-env](https://github.com/nspcc-dev/neofs-dev-env),
|
|
|
|
you can get an IP address of the node in output of `make hosts` command
|
|
|
|
(with s0*.neofs.devenv name).
|
|
|
|
|
2021-04-29 21:15:04 +00:00
|
|
|
These two commands are functionally equivalent, they run the gate with one
|
|
|
|
backend node (and otherwise default settings):
|
|
|
|
```
|
|
|
|
$ neofs-http-gw -p 192.168.130.72:8080
|
|
|
|
$ HTTP_GW_PEERS_0_ADDRESS=192.168.130.72:8080 neofs-http-gw
|
|
|
|
```
|
2021-06-09 16:26:27 +00:00
|
|
|
It's also possible to specify uri scheme (grpc or grpcs) when using `-p`:
|
|
|
|
```
|
|
|
|
$ neofs-http-gw -p grpc://192.168.130.72:8080
|
|
|
|
$ HTTP_GW_PEERS_0_ADDRESS=grpcs://192.168.130.72:8080 neofs-http-gw
|
|
|
|
```
|
2021-04-29 21:15:04 +00:00
|
|
|
|
2021-05-04 15:19:11 +00:00
|
|
|
## Configuration
|
2021-04-29 21:15:04 +00:00
|
|
|
|
|
|
|
In general, everything available as CLI parameter can also be specified via
|
|
|
|
environment variables, so they're not specifically mentioned in most cases
|
|
|
|
(see `--help` also).
|
|
|
|
|
2021-05-04 15:19:11 +00:00
|
|
|
### Nodes and weights
|
2021-04-29 21:15:04 +00:00
|
|
|
|
|
|
|
You can specify multiple `-p` options to add more NeoFS nodes, this will make
|
|
|
|
gateway spread requests equally among them (using weight 1 for every node):
|
|
|
|
|
|
|
|
```
|
|
|
|
$ neofs-http-gw -p 192.168.130.72:8080 -p 192.168.130.71:8080
|
|
|
|
```
|
|
|
|
If you want some specific load distribution proportions, use weights, but they
|
|
|
|
can only be specified via environment variables:
|
|
|
|
|
|
|
|
```
|
|
|
|
$ HTTP_GW_PEERS_0_ADDRESS=192.168.130.72:8080 HTTP_GW_PEERS_0_WEIGHT=9 \
|
|
|
|
HTTP_GW_PEERS_1_ADDRESS=192.168.130.71:8080 HTTP_GW_PEERS_1_WEIGHT=1 neofs-http-gw
|
|
|
|
```
|
|
|
|
This command will make gateway use 192.168.130.72 for 90% of requests and
|
|
|
|
192.168.130.71 for remaining 10%.
|
|
|
|
|
2021-05-04 15:19:11 +00:00
|
|
|
### Keys
|
2021-04-29 21:15:04 +00:00
|
|
|
|
|
|
|
By default gateway autogenerates key pair it will use for NeoFS requests. If
|
2021-05-17 14:30:16 +00:00
|
|
|
for some reason you need to have static keys you can pass them via `--key`
|
|
|
|
(or `-k`) parameter. The key can be a path to private key file (as raw bytes),
|
|
|
|
a hex string or (unencrypted) WIF string:
|
|
|
|
```
|
|
|
|
$ neofs-http-gw -p $NEOFS_NODE -k $KEY
|
|
|
|
```
|
|
|
|
For example:
|
2021-04-29 21:15:04 +00:00
|
|
|
|
|
|
|
```
|
|
|
|
$ neofs-http-gw -p 192.168.130.72:8080 -k KxDgvEKzgSBPPfuVfw67oPQBSjidEiqTHURKSDL1R7yGaGYAeYnr
|
|
|
|
```
|
2019-11-07 17:29:29 +00:00
|
|
|
|
2021-05-04 15:19:11 +00:00
|
|
|
### Binding and TLS
|
2021-04-29 21:15:04 +00:00
|
|
|
|
|
|
|
Gateway binds to `0.0.0.0:8082` by default and you can change that with
|
|
|
|
`--listen_address` option.
|
|
|
|
|
|
|
|
It can also provide TLS interface for its users, just specify paths to key and
|
|
|
|
certificate files via `--tls_key` and `--tls_certificate` parameters. Note
|
|
|
|
that using these options makes gateway TLS-only, if you need to serve both TLS
|
|
|
|
and plain text HTTP you either have to run two gateway instances or use some
|
|
|
|
external redirecting solution.
|
|
|
|
|
|
|
|
Example to bind to `192.168.130.130:443` and serve TLS there:
|
|
|
|
|
|
|
|
```
|
|
|
|
$ neofs-http-gw -p 192.168.130.72:8080 --listen_address 192.168.130.130:443 \
|
|
|
|
--tls_key=key.pem --tls_certificate=cert.pem
|
|
|
|
```
|
|
|
|
|
2021-05-04 15:19:11 +00:00
|
|
|
### HTTP parameters
|
2021-04-29 21:15:04 +00:00
|
|
|
|
|
|
|
You can tune HTTP read and write buffer sizes as well as timeouts with
|
|
|
|
`HTTP_GW_WEB_READ_BUFFER_SIZE`, `HTTP_GW_WEB_READ_TIMEOUT`,
|
|
|
|
`HTTP_GW_WEB_WRITE_BUFFER_SIZE` and `HTTP_GW_WEB_WRITE_TIMEOUT` environment
|
|
|
|
variables.
|
|
|
|
|
|
|
|
`HTTP_GW_WEB_STREAM_REQUEST_BODY` environment variable can be used to disable
|
|
|
|
request body streaming (effectively it'll make gateway accept file completely
|
|
|
|
first and only then try sending it to NeoFS).
|
|
|
|
|
|
|
|
`HTTP_GW_WEB_MAX_REQUEST_BODY_SIZE` controls maximum request body size
|
|
|
|
limiting uploads to files slightly lower than this limit.
|
|
|
|
|
2021-05-04 15:19:11 +00:00
|
|
|
### NeoFS parameters
|
2021-04-29 21:15:04 +00:00
|
|
|
|
|
|
|
Gateway can automatically set timestamps for uploaded files based on local
|
|
|
|
time source, use `HTTP_GW_UPLOAD_HEADER_USE_DEFAULT_TIMESTAMP` environment
|
|
|
|
variable to control this behavior.
|
|
|
|
|
2021-05-04 15:19:11 +00:00
|
|
|
### Monitoring and metrics
|
2021-04-29 21:15:04 +00:00
|
|
|
|
|
|
|
Pprof and Prometheus are integrated into the gateway, but not enabled by
|
|
|
|
default. To enable them use `--pprof` and `--metrics` flags or
|
|
|
|
`HTTP_GW_PPROF`/`HTTP_GW_METRICS` environment variables.
|
|
|
|
|
2021-05-04 15:19:11 +00:00
|
|
|
### Timeouts
|
2021-04-29 21:15:04 +00:00
|
|
|
|
|
|
|
You can tune gRPC interface parameters with `--connect_timeout` (for
|
|
|
|
connection to node) and `--request_timeout` (for request processing over
|
2021-06-09 16:26:27 +00:00
|
|
|
established connection) options.
|
2021-04-29 21:15:04 +00:00
|
|
|
|
|
|
|
gRPC-level checks allow gateway to detect dead peers, but it declares them
|
|
|
|
unhealthy at pool level once per `--rebalance_timer` interval, so check for it
|
|
|
|
if needed.
|
|
|
|
|
|
|
|
All timing options accept values with suffixes, so "15s" is 15 seconds and
|
|
|
|
"2m" is 2 minutes.
|
|
|
|
|
2021-05-04 15:19:11 +00:00
|
|
|
### Logging
|
2021-04-29 21:15:04 +00:00
|
|
|
|
|
|
|
`--verbose` flag enables gRPC logging and there is a number of environment
|
|
|
|
variables to tune logging behavior:
|
|
|
|
|
|
|
|
```
|
2021-03-30 22:46:33 +00:00
|
|
|
HTTP_GW_LOGGER_FORMAT=string - Logger format
|
|
|
|
HTTP_GW_LOGGER_LEVEL=string - Logger level
|
|
|
|
HTTP_GW_LOGGER_NO_CALLER=bool - Logger don't show caller
|
|
|
|
HTTP_GW_LOGGER_NO_DISCLAIMER=bool - Logger don't show application name/version
|
|
|
|
HTTP_GW_LOGGER_SAMPLING_INITIAL=int - Logger sampling initial
|
|
|
|
HTTP_GW_LOGGER_SAMPLING_THEREAFTER=int - Logger sampling thereafter
|
|
|
|
HTTP_GW_LOGGER_TRACE_LEVEL=string - Logger show trace on level
|
|
|
|
```
|
2021-04-29 21:15:04 +00:00
|
|
|
|
|
|
|
## HTTP API provided
|
|
|
|
|
|
|
|
This gateway intentionally provides limited feature set and doesn't try to
|
|
|
|
substitute (or completely wrap) regular gRPC NeoFS interface. You can download
|
|
|
|
and upload objects with it, but deleting, searching, managing ACLs, creating
|
2021-05-04 15:19:11 +00:00
|
|
|
containers and other activities are not supported and not planned to be
|
2021-04-29 21:15:04 +00:00
|
|
|
supported.
|
|
|
|
|
2021-05-17 14:30:16 +00:00
|
|
|
### Preparation
|
|
|
|
|
|
|
|
Before uploading or downloading a file make sure you have a prepared container.
|
|
|
|
You can create it with instructions below.
|
|
|
|
|
|
|
|
Also in case of downloading you need to have a file inside a container.
|
|
|
|
|
|
|
|
#### Create a container
|
|
|
|
|
|
|
|
You can create a container via [neofs-cli](https://github.com/nspcc-dev/neofs-node/releases):
|
|
|
|
```
|
|
|
|
$ neofs-cli -r $NEOFS_NODE -k $KEY container create --policy $POLICY --basic-acl $ACL
|
|
|
|
```
|
|
|
|
where `$KEY` can be a path to private key file (as raw bytes), a hex string or
|
|
|
|
(unencrypted) WIF string,
|
2021-06-04 07:38:01 +00:00
|
|
|
`$ACL` -- hex encoded basic ACL value or keywords 'private, 'public-read', 'public-read-write' and
|
2021-05-17 14:30:16 +00:00
|
|
|
`$POLICY` -- QL-encoded or JSON-encoded placement policy or path to file with it
|
|
|
|
|
|
|
|
For example:
|
|
|
|
```
|
|
|
|
$ neofs-cli -r 192.168.130.72:8080 -k 6PYLKJhiSub5imt6WCVy6Quxtd9xu176omev1vWYovzkAQCTSQabAAQXii container create --policy "REP 3" --basic-acl public --await
|
|
|
|
```
|
|
|
|
|
|
|
|
If you launched nodes via [neofs-dev-env](https://github.com/nspcc-dev/neofs-dev-env)
|
|
|
|
you can get the key value from `wallets/wallet.json` or write the path to
|
|
|
|
the file `wallets/wallet.key`.
|
|
|
|
|
|
|
|
#### Prepare a file in a container
|
|
|
|
|
|
|
|
To create a file via [neofs-cli](https://github.com/nspcc-dev/neofs-node/releases), run a command below:
|
|
|
|
```
|
|
|
|
$ neofs-cli -r $NEOFS_NODE -k $KEY object put --file $FILENAME --cid $CID
|
|
|
|
```
|
|
|
|
where
|
|
|
|
`$KEY` -- the key, please read the information [above](#create-a-container),
|
|
|
|
`$CID` -- container ID.
|
|
|
|
|
|
|
|
For example:
|
|
|
|
```
|
|
|
|
$ neofs-cli -r 192.168.130.72:8080 -k 6PYLKJhiSub5imt6WCVy6Quxtd9xu176omev1vWYovzkAQCTSQabAAQXii object put --file cat.png --cid DPL2tpRiuDNmoTj5KZjD1nzDuCS8tVcxa7hsvSLDWpVM --attributes img_type=cat,my_attr=cute
|
|
|
|
```
|
|
|
|
|
|
|
|
|
2021-04-29 21:15:04 +00:00
|
|
|
### Downloading
|
|
|
|
|
|
|
|
#### Requests
|
|
|
|
|
2021-05-17 14:30:16 +00:00
|
|
|
##### By IDs
|
|
|
|
|
|
|
|
Basic downloading involves container ID and object ID and is done via GET
|
|
|
|
requests to `/get/$CID/$OID` path, where `$CID` is a container ID,
|
|
|
|
`$OID` is an object's (i.e. your file's) ID.
|
|
|
|
|
|
|
|
For example:
|
2021-04-29 21:15:04 +00:00
|
|
|
|
|
|
|
```
|
|
|
|
$ wget http://localhost:8082/get/Dxhf4PNprrJHWWTG5RGLdfLkJiSQ3AQqit1MSnEPRkDZ/2m8PtaoricLouCn5zE8hAFr3gZEBDCZFe9BEgVJTSocY
|
|
|
|
```
|
|
|
|
|
2021-05-17 14:30:16 +00:00
|
|
|
##### By attributes
|
2021-04-29 21:15:04 +00:00
|
|
|
There is also more complex interface provided for attribute-based downloads,
|
|
|
|
it's usually used to retrieve files by their names, but any other attribute
|
|
|
|
can be used as well. The generic syntax for it looks like this:
|
|
|
|
|
|
|
|
```/get_by_attribute/$CID/$ATTRIBUTE_NAME/$ATTRIBUTE_VALUE```
|
|
|
|
|
2021-05-17 14:30:16 +00:00
|
|
|
where
|
|
|
|
`$CID` is a container ID,
|
|
|
|
`$ATTRIBUTE_NAME` is the name of the attribute we want to use,
|
|
|
|
`$ATTRIBUTE_VALUE` is the value of this attribute that the target object should have.
|
2021-04-29 21:15:04 +00:00
|
|
|
|
|
|
|
If multiple objects have specified attribute with specified value, then the
|
|
|
|
first one of them is returned (and you can't get others via this interface).
|
|
|
|
|
|
|
|
Example for file name attribute:
|
|
|
|
|
|
|
|
```
|
|
|
|
$ wget http://localhost:8082/get_by_attribute/88GdaZFTcYJn1dqiSECss8kKPmmun6d6BfvC4zhwfLYM/FileName/cat.jpeg
|
|
|
|
```
|
|
|
|
|
|
|
|
Some other user-defined attribute:
|
|
|
|
|
|
|
|
```
|
|
|
|
$ wget http://localhost:8082/get_by_attribute/Dxhf4PNprrJHWWTG5RGLdfLkJiSQ3AQqit1MSnEPRkDZ/Ololo/100500
|
|
|
|
```
|
|
|
|
|
|
|
|
An optional `download=true` argument for `Content-Disposition` management is
|
|
|
|
also supported (more on that below):
|
|
|
|
|
|
|
|
```
|
|
|
|
$ wget http://localhost:8082/get/Dxhf4PNprrJHWWTG5RGLdfLkJiSQ3AQqit1MSnEPRkDZ/2m8PtaoricLouCn5zE8hAFr3gZEBDCZFe9BEgVJTSocY?download=true
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
#### Replies
|
|
|
|
|
|
|
|
You get object contents in the reply body, but at the same time you also get a
|
|
|
|
set of reply headers generated using the following rules:
|
|
|
|
* `Content-Length` is set to the length of the object
|
|
|
|
* `Content-Type` is autodetected dynamically by gateway
|
|
|
|
* `Content-Disposition` is `inline` for regular requests and `attachment` for
|
|
|
|
requests with `download=true` argument, `filename` is also added if there
|
|
|
|
is `FileName` attribute set for this object
|
|
|
|
* `Last-Modified` header is set to `Timestamp` attribute value if it's
|
|
|
|
present for the object
|
|
|
|
* `x-container-id` contains container ID
|
|
|
|
* `x-object-id` contains object ID
|
|
|
|
* `x-owner-id` contains owner address
|
2021-04-30 09:55:51 +00:00
|
|
|
* all the other NeoFS attributes are converted to `X-Attribute-*` headers (but only
|
2021-04-29 21:15:04 +00:00
|
|
|
if they can be safely represented in HTTP header), for example `FileName`
|
2021-04-30 09:55:51 +00:00
|
|
|
attribute becomes `X-Attribute-FileName` header
|
2021-04-29 21:15:04 +00:00
|
|
|
|
|
|
|
### Uploading
|
|
|
|
|
|
|
|
You can POST files to `/upload/$CID` path where `$CID` is container ID. The
|
|
|
|
request must contain multipart form with mandatory `filename` parameter. Only
|
|
|
|
one part in multipart form will be processed, so to upload another file just
|
|
|
|
issue new POST request.
|
|
|
|
|
|
|
|
Example request:
|
|
|
|
|
|
|
|
```
|
|
|
|
$ curl -F 'file=@cat.jpeg;filename=cat.jpeg' http://localhost:8082/upload/Dxhf4PNprrJHWWTG5RGLdfLkJiSQ3AQqit1MSnEPRkDZ
|
|
|
|
```
|
|
|
|
|
|
|
|
Chunked encoding is supported by the server (but check for request read
|
|
|
|
timeouts if you're planning some streaming). You can try streaming support
|
|
|
|
with large file piped through named FIFO pipe:
|
|
|
|
|
|
|
|
```
|
|
|
|
$ mkfifo pipe
|
|
|
|
$ cat video.mp4 > pipe &
|
|
|
|
$ curl --no-buffer -F 'file=@pipe;filename=catvideo.mp4' http://localhost:8082/upload/Dxhf4PNprrJHWWTG5RGLdfLkJiSQ3AQqit1MSnEPRkDZ
|
|
|
|
```
|
|
|
|
|
|
|
|
You can also add some attributes to your file using the following rules:
|
|
|
|
* all "X-Attribute-*" headers get converted to object attributes with
|
|
|
|
"X-Attribute-" prefix stripped, that is if you add "X-Attribute-Ololo:
|
|
|
|
100500" header to your request the resulting object will get "Ololo:
|
|
|
|
100500" attribute
|
|
|
|
* "X-Attribute-NEOFS-*" headers are special, they're used to set internal
|
|
|
|
NeoFS attributes starting with `__NEOFS__` prefix, for these attributes all
|
|
|
|
dashes get converted to underscores and all letters are capitalized. For
|
|
|
|
example, you can use "X-Attribute-NEOFS-Expiration-Epoch" header to set
|
|
|
|
`__NEOFS__EXPIRATION_EPOCH` attribute
|
|
|
|
* `FileName` attribute is set from multipart's `filename` if not set
|
|
|
|
explicitly via `X-Attribute-FileName` header
|
|
|
|
* `Timestamp` attribute can be set using gateway local time if using
|
|
|
|
HTTP_GW_UPLOAD_HEADER_USE_DEFAULT_TIMESTAMP option and if request doesn't
|
|
|
|
provide `X-Attribute-Timestamp` header of its own
|
|
|
|
|
|
|
|
For successful uploads you get JSON data in reply body with container and
|
|
|
|
object ID, like this:
|
|
|
|
```
|
|
|
|
{
|
|
|
|
"object_id": "9ANhbry2ryjJY1NZbcjryJMRXG5uGNKd73kD3V1sVFsX",
|
|
|
|
"container_id": "Dxhf4PNprrJHWWTG5RGLdfLkJiSQ3AQqit1MSnEPRkDZ"
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2021-04-30 10:41:45 +00:00
|
|
|
#### Authentication
|
|
|
|
|
|
|
|
You can always upload files to public containers (open for anyone to put
|
2021-05-04 15:19:11 +00:00
|
|
|
objects into), but for restricted containers you need to explicitly allow PUT
|
|
|
|
operations for request signed with your HTTP Protocol Gateway keys.
|
|
|
|
|
|
|
|
If your don't want to manage gateway's secret keys and adjust eACL rules when
|
|
|
|
gateway configuration changes (new gate, key rotation, etc) or you plan to use
|
|
|
|
public services, there is an option to let your application backend (or you) to
|
|
|
|
issue Bearer Tokens ans pass them from the client via gate down to NeoFS level
|
|
|
|
to grant access.
|
|
|
|
|
|
|
|
NeoFS Bearer Token basically is a container owner-signed ACL data (refer to NeoFS
|
|
|
|
documentation for more details). There are two options to pass them to gateway:
|
2021-04-30 10:41:45 +00:00
|
|
|
* "Authorization" header with "Bearer" type and base64-encoded token in
|
|
|
|
credentials field
|
2021-06-03 12:18:27 +00:00
|
|
|
* "Bearer" cookie with base64-encoded token contents
|
2021-04-30 10:41:45 +00:00
|
|
|
|
2021-05-04 15:19:11 +00:00
|
|
|
For example you have a mobile application frontend with a backend part storing
|
|
|
|
data in NeoFS. When user authorizes in mobile app, the backend issues a NeoFS
|
|
|
|
Bearer token and provides it to the frontend. Then the mobile app may generate
|
|
|
|
some data and upload it via any available NeoFS HTTP Protocol Gateway by adding
|
|
|
|
the corresponding header to the upload request. Accessing the ACL protected data
|
|
|
|
works the same way.
|
|
|
|
|
2021-06-03 14:11:54 +00:00
|
|
|
##### Example
|
|
|
|
In order to generate bearer token, you need to know container owner key and
|
|
|
|
address of sender who will be do request to NeoFS (in our case it's gateway wallet address).
|
|
|
|
|
|
|
|
Suppose we have:
|
|
|
|
* **KxDgvEKzgSBPPfuVfw67oPQBSjidEiqTHURKSDL1R7yGaGYAeYnr** (container owner key)
|
|
|
|
* **NhVtreTTCoqsMQV5Wp55fqnriiUCpEaKm3** (token owner address)
|
|
|
|
* **BJeErH9MWmf52VsR1mLWKkgF3pRm3FkubYxM7TZkBP4K** (container id)
|
|
|
|
|
|
|
|
Firstly we need to encode container id and sender address to base64 (now it's base58).
|
|
|
|
So use **base58** and **base64** utils.
|
|
|
|
|
|
|
|
1. Encoding container id:
|
|
|
|
```
|
|
|
|
$ echo 'BJeErH9MWmf52VsR1mLWKkgF3pRm3FkubYxM7TZkBP4K' | base58 --decode | base64
|
|
|
|
# output: mRnZWzewzxjzIPa7Fqlfqdl3TM1KpJ0YnsXsEhafJJg=
|
|
|
|
```
|
|
|
|
|
|
|
|
2. Encoding token owner id:
|
|
|
|
```
|
|
|
|
$ echo 'NhVtreTTCoqsMQV5Wp55fqnriiUCpEaKm3' | base58 --decode | base64
|
|
|
|
# output: NezFK4ujidF+X7bB88uzREQzRQeAvdj3Gg==
|
|
|
|
```
|
|
|
|
|
|
|
|
Now we can form Bearer token (10000 is liftetime expiration in epoch) and save it to **bearer.json**:
|
|
|
|
```
|
|
|
|
{
|
|
|
|
"body": {
|
|
|
|
"eaclTable": {
|
|
|
|
"version": {
|
|
|
|
"major": 0,
|
|
|
|
"minor": 0
|
|
|
|
},
|
|
|
|
"containerID": {
|
|
|
|
"value": "mRnZWzewzxjzIPa7Fqlfqdl3TM1KpJ0YnsXsEhafJJg="
|
|
|
|
},
|
|
|
|
"records": []
|
|
|
|
},
|
|
|
|
"ownerID": {
|
|
|
|
"value": "NezFK4ujidF+X7bB88uzREQzRQeAvdj3Gg=="
|
|
|
|
},
|
|
|
|
"lifetime": {
|
|
|
|
"exp": "10000",
|
|
|
|
"nbf": "0",
|
|
|
|
"iat": "0"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"signature": null
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
Then sign it with container owner key:
|
|
|
|
```
|
|
|
|
$ neofs-cli util sign bearer-token --from bearer.json --to signed.json -k KxDgvEKzgSBPPfuVfw67oPQBSjidEiqTHURKSDL1R7yGaGYAeYnr
|
|
|
|
```
|
|
|
|
Encoding to base64 to use via header:
|
|
|
|
```
|
|
|
|
$ base64 -w 0 signed.json
|
|
|
|
# output: Ck4KKgoECAIQBhIiCiCZGdlbN7DPGPMg9rsWqV+p2XdMzUqknRiexewSFp8kmBIbChk17MUri6OJ0X5ftsHzy7NERDNFB4C92PcaGgMIkE4SZgohAxpsb7vfAso1F0X6hrm6WpRS14WsT3/Ct1SMoqRsT89KEkEEGxKi8GjKSf52YqhppgaOTQHbUsL3jn7SHLqS3ndAQ7NtAATnmRHleZw2V2xRRSRBQdjDC05KK83LhdSax72Fsw==
|
|
|
|
```
|
|
|
|
|
|
|
|
After that Bearer token can be used:
|
|
|
|
|
|
|
|
```
|
|
|
|
$ curl -F 'file=@cat.jpeg;filename=cat.jpeg' -H "Authorization: Bearer Ck4KKgoECAIQBhIiCiCZGdlbN7DPGPMg9rsWqV+p2XdMzUqknRiexewSFp8kmBIbChk17MUri6OJ0X5ftsHzy7NERDNFB4C92PcaGgMIkE4SZgohAxpsb7vfAso1F0X6hrm6WpRS14WsT3/Ct1SMoqRsT89KEkEEGxKi8GjKSf52YqhppgaOTQHbUsL3jn7SHLqS3ndAQ7NtAATnmRHleZw2V2xRRSRBQdjDC05KK83LhdSax72Fsw==" \
|
|
|
|
http://localhost:8082/upload/BJeErH9MWmf52VsR1mLWKkgF3pRm3FkubYxM7TZkBP4K
|
|
|
|
# output:
|
|
|
|
# {
|
|
|
|
# "object_id": "DhfES9nVrFksxGDD2jQLunGADfrXExxNwqXbDafyBn9X",
|
|
|
|
# "container_id": "BJeErH9MWmf52VsR1mLWKkgF3pRm3FkubYxM7TZkBP4K"
|
|
|
|
# }
|
|
|
|
```
|
|
|
|
|
2021-06-07 12:37:03 +00:00
|
|
|
##### Note
|
|
|
|
For the token to work correctly, you need to create a container with a basic ACL that:
|
|
|
|
1. Allow PUT operation to others
|
|
|
|
2. Doesn't set "final" bit
|
|
|
|
|
|
|
|
For example:
|
|
|
|
```
|
|
|
|
$ neofs-cli --key KxDgvEKzgSBPPfuVfw67oPQBSjidEiqTHURKSDL1R7yGaGYAeYnr --basic-acl 0x0FFFCFFF -r 192.168.130.72:8080 container create --policy "REP 3" --await
|
|
|
|
```
|
|
|
|
|
|
|
|
To deny access to the container without a token, set the eACL rules:
|
|
|
|
```
|
|
|
|
$ neofs-cli --key KxDgvEKzgSBPPfuVfw67oPQBSjidEiqTHURKSDL1R7yGaGYAeYnr -r 192.168.130.72:8080 container set-eacl --table eacl.json --await --cid BJeErH9MWmf52VsR1mLWKkgF3pRm3FkubYxM7TZkBP4K
|
|
|
|
```
|
|
|
|
|
|
|
|
File **eacl.json**:
|
|
|
|
```
|
|
|
|
{
|
|
|
|
"version": {
|
|
|
|
"major": 0,
|
|
|
|
"minor": 0
|
|
|
|
},
|
|
|
|
"containerID": {
|
|
|
|
"value": "mRnZWzewzxjzIPa7Fqlfqdl3TM1KpJ0YnsXsEhafJJg="
|
|
|
|
},
|
|
|
|
"records": [
|
|
|
|
{
|
|
|
|
"operation": "PUT",
|
|
|
|
"action": "DENY",
|
|
|
|
"filters": [],
|
|
|
|
"targets": [
|
|
|
|
{
|
|
|
|
"role": "OTHERS",
|
|
|
|
"keys": []
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2021-04-29 21:15:04 +00:00
|
|
|
### Metrics and Pprof
|
|
|
|
|
|
|
|
If enabled, Prometheus metrics are available at `/metrics/` path and Pprof at
|
|
|
|
`/debug/pprof`.
|