content-store
Version:
Content server with file upload, automatic hashing and hash based naming scheme.
111 lines (72 loc) • 3.93 kB
Markdown
# content-store
An HTTP content server with file upload, automatic hashing and hash based naming scheme.
Or, put it another way: a **content addressable storage** server based on Restify, Multiparty and user defined hashing algorithm.
## Setup
`npm install content-store`
## Usage
```javascript
const ContentStore = require('content-store')
const PORT = 8001
const storageDir = 'data'
// hash function implementation example
const { MetroHash128 } = require('metrohash')
function createHash () {
const SEED = 0 // hard code the seed, can be any integer
return new MetroHash128(SEED)
}
async function start () {
const server = await ContentStore({ storageDir }, createHash)
server.listen(PORT, (err) => {
if (err) {
return console.log('something bad happened', err)
}
console.log(`server is listening on ${server.url}`)
})
}
start()
.catch(console.error)
```
Now one can upload a file:
```
curl -F 'sample=@sample.txt' http://localhost:8001/upload
// with an response like this:
{"result":"upload OK","files":[["sample.txt","ba089843d132af3231990d405f2ac3c0"]]}
```
The `-F` option of cURL means we are sending data as `multipart/form-data`, which is a standard way of uploading files over http.
Download it:
`curl -O http://localhost:8001/ba089843d132af3231990d405f2ac3c0`
Delete it:
`curl -X DELETE http://localhost:8001/ba089843d132af3231990d405f2ac3c0`
## Sample dockerized application
that uses this content-store as a backend microservice can be found [here](https://github.com/heroqu/book-liner)
## Configuration
The `ContentStore` constructor function returns a server promise. The first parameter is `options` object with following defaults:
```javascript
{
name: 'content-store',
storageDir: 'data'
}
```
The specified storage directory is to be resolved against the `process.cwd()` - the directory of current process. If you need an absolute path, then set it here and it will remain as is.
The second parameter is `createHash` function with desired implementation. This function should have no arguments and return a `hash` object, which should support two methods: `hash.update(chunk)` and `hash.digest(format)` with the same logics as in [node crypto module](https://nodejs.org/api/crypto.html#crypto_class_hash).
In the example above we used createHash function based on [metrohash module](https://www.npmjs.com/package/metrohash) implementation, which is one of well known non-cryptographic hashing algorithm out there.
Any other suitable hashing algorithm would do, be it cryptographic or non-cryptographic. Here is as example of `createHash` based on `sha256` algorithm from [node's crypto](https://nodejs.org/api/crypto.html#crypto_crypto_createhash_algorithm):
```javascript
const crypto = require('crypto')
function createHash () {
return crypto.createHash('sha256')
}
```
which illustrates the ease of adopting other hashing algorithms.
## Idea
Imagine a server able to upload files and storing each uploaded file under the name based on hash digest of its content.
In this way the entity identification on the server side is entirely based on content's hash,
so we are safe to consider such a server a **content store**, as opposed to **file store**, because from external point of view it essentially operates on *contents* rather then on *files*.
One consequence of such an approach is that any two uploaded files with the same content are always stored under same name (and absolute path), so there is no way for file duplication on backend side.
Another consequence of the server being a *content store* is that it only supports 3 out of 4 CRUD operations:
```
POST /upload
GET /:hash
DELETE /:hash
```
There is no much sense in *updating a content*. Just like as it is in GIT where *updating a file* leads to two really unrelated (from GIT point of view) operations: deleting old content entry and creating new content entry.