Fpark
File server
File server with batteries included :
- Clusters
- Containers
- Authorization
- Image compression
- Image resizing on the fly
- File encryption by design
- File replication
- Logger (included with rotation)
Table of content
Installation
Node
npm install fpark
vi config.json
./fpark start -c config.json
Usage
Configuration
{
"ID" : null,
"SERVER_PORT" : 6000,
"SERVER_CLUSTERS" : 4,
"NODES" : [],
"REPLICATION_NB_REPLICAS" : 3,
"LOGS_DIRECTORY" : "logs",
"FILES_DIRECTORY" : "data",
"KEYS_DIRECTORY" : "keys",
"IS_REGISTRATION_ENABLED" : false,
"ENCRYPTION_IV" : "srp9zyldyxdzmddx",
"ENCRYPTION_IV_LENGTH" : 16,
"ENCRYPTION_ALGORITHM" : "aes-128-ctr",
"HASH_SECRET" : "2VVqHZ2x2qr54GUa",
"HASH_ALGORITHM" : "sha256",
"CACHE_CONTROL_MAX_AGE": 7776000,
"IMAGE_COMPRESSION_LIMIT" : 80,
"IMAGE_COMPRESSION_LIMIT_JPEG" : 80,
"IMAGE_COMPRESSION_LIMIT_WEBP" : 80,
"IMAGE_SIZE_DEFAULT_WIDTH" : 1280,
"IMAGE_SIZES" : {},
"MAX_FILE_SIZE" : 15000000
}
API
GET /file/:container/:filename
The url is public.
Get a file identified by filename
from a container container
.
filename
is the complete name of the file : fileId.extension
Query options for the url are:
size
: a valid size in config.SIZES
to resize on the fly a file of type image.
PUT /file/:container/:filename
Put a file with id filename
to a container container
.
A JsonWebToken token issued by container
is required to perform the action. See Token section.
DELETE /file/:container/:filename
Delete a file given by filename
from a container container
.
A JsonWebToken token issued by container
is required to perform the action. See Token section.
POST /node/register
Create a container.
The body must be a valid JSON object with :
{
"container" : "a unique key",
"key" : "public key"
}
The url can be disabled with IS_REGISTRATION_ENABLED
.
Token
Only the owner of a container can PUT and DELETE files. Make sure to always define the token as follows:
- Register a container by calling the API
POST /node/register
or put the public key of the container in the keys directory as container.pub
where container
is the name of the container to create. - Create a JsonWebToken token with the field
aud
equals to the registered container
. - Add the token in the header
authorization
as Authorization: Bearer <token>
.
To disable container registration, set IS_REGISTRATION_ENABLED
to false
in the configuration.
Multi-instances
To enable multi-instances & replication, you must define nodes in config.NODES
. A node is a running Fpark instance.
A node is defined as:
{
"id" : Number,
"host" : String
}
Then, you are able to define the number of replicas for a file with REPLICATION_NB_REPLICAS
.
Each instance of Fpark must share the same configuration in NODES
configuration parameter.
Region
As a standard, Fpark allows you to define regions. As a result, Fpark will try to replicate a file between different regions (according to REPLICATION_NB_REPLICAS
)
A region is defined by node.id
. By convention, a region is represented by a hundred (1XX, 2XX, 3XX, etc.). For instance, if a node has id = 201
, the region is 2
, id = 300
-> 3
and so on.
Write & Read
Fpark serves files from its data storage (config.FILES_DIRECTORY
) or from another Fpark instance if multiple instances are defined (config.NODES
).
If only one Fpark instance is running (no config.NODES
defined), files are saved in the current Fpark instance.
In multiple instances configuration, an uploaded file is saved on a certain amount of instances as defined by config.REPLICATION_NB_REPLICAS
.
Cluster & File replication
Fpark replicates files among a number of Fpark instances (REPLICATION_NB_REPLICAS
). When a file is uploaded, Fpark:
- determine the nodes to save the file.
- makes a hash of the filename (
HASH_ALGORITHM
, HASH_SECRET
). - encrypts the content of the file with the filename (
ENCRYPTION_IV
, ENCRYPTION_IV_LENGTH
, ENCRYPTION_ALGORITHM
). - saves the file to the determined nodes.
When reading, Fpark:
- determines where the file is stored.
- decrypts the file
- serves the file
File encryption
All the files are encrypted by design. When posting a file to Fpark with PUT /file/container/:containerId/:filename
, the parameter filemname
is used to encrypt the content of the file.
The following config parameters allow you to customize encryption settings "ENCRYPTION_IV", "ENCRYPTION_IV_LENGTH", "ENCRYPTION_ALGORITHM"
.
Internally, Fpark encrypts files with crypto.createCipheriv(algorithm, key, iv[, options])
.
The only way to decrypt a file is to know the filename and the ENCRYPTION_IV
.
License
Apache 2.0