GithubHelp home page GithubHelp logo

node-file-server's Introduction

file-storage-server

Simple service of file storage. (stores files in encrypted form)

How use

Save file

Request:

  POST localhost:5007/file
  body:
    ---------------------------acebdf13572468
      Content-Disposition: form-data; name="file"; filename="filename.jpg"
      Content-Type: image/jpeg

      <@INCLUDE *C:\filename.jpg*@>
    ---------------------------acebdf13572468--

Response:

  {
    "success":true,
    "id":"30b6d952-35ea-42b1-a19f-af37a2a8a8d6",
    "message":"Encrypted file written to disk!"
  }

Get file

Request

  GET localhost:5007file/{id}

Delete file

Request

  DELETE localhost:5007/file/{id}

Response

  {
    "success":true,
    "id":"30b6d952-35ea-42b1-a19f-af37a2a8a8d6",
    "message":"File is deleted!"
  }

Get statistic

Request

  GET localhost:5007/stat

Response

  {
    "success":true,
    "freeSpaceGb":117,
    "totalSpaceGb":238,
    "usedSpaceGb":121,
    "numbersOfFiles":23
  }

Response if free disk space ends

  {
    "success":true,
    "freeSpaceGb":117,
    "totalSpaceGb":238,
    "usedSpaceGb":121,
    "numbersOfFiles":23,
    "message": "Free space ends!"
  }

Response if not enough disk space

  {
    "success":false,
    "freeSpaceGb":117,
    "totalSpaceGb":238,
    "usedSpaceGb":121,
    "message": "Not enough disk space!"
  }

node-file-server's People

Contributors

dark-dao avatar

Watchers

 avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.