[go: nahoru, domu]

Skip to content

veslo1/dpd-fileupload

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

53 Commits
 
 
 
 
 
 
 
 

Repository files navigation

File uploader Module for Deployd NPM

A working demo is available.

Description

This module provides functionnality to upload files within Deployd. The uploaded files will be stored in the public folder of Deployd and the filenames will be stored in a collection.

Don't hesitate to fill an issue if you find a bug or need a feature.

Installation

Go to the base directory of your Deployd project and enter:

$ npm install dpd-fileupload --save

Once installed, you can add a resource of type fileupload in the dashboard. Installaton

Configuration

By default, the module will create a folder called "upload" inside the public directory. You can then access your files by calling: http://localhost:2403/upload/filename.extension Directory structure

If you need to, you can change the name of the directory in the dashboard under CONFIG. Configuration

Usage

Upload a file (or multiple files)

Method POST or PUT (set content type to "multipart/form-data"), send "subdir" as request param to save the file in a sub directory. Any request parameter sent will be stored in the resource object.

Working demo available here: https://github.com/NicolasRitouet/dpd-fileupload-demo

Response of a successful upload:

[{
	filename: 'screenshot.png',
    subdir: "images",
    creationDate: 1389946339569,
    id: '2f4c752310e2bbae',
    filesize: '75148412',
    optionalParam:'foobar'
}, {
	filename: 'screenshot (1).png',
    subdir: "images",
    creationDate: 1389946339233,
    id: 'ef43f52310e2bbae',
    filesize: '85412',
    optionalParam:'foobar'
}, ...]

Get the list of files

Method GET

dpd.fileupload.get(function(err, result) {
    console.log(result);
});

The response:

[{
	filename: 'screenshot.png',
    subdir: "images",
    creationDate: 1389946339569,
    id: '2f4c752310e2bbae',
    filesize: '75148412',
    optionalParam:'foobar'
}, {
	filename: 'screenshot (1).png',
    subdir: "images",
    creationDate: 1389946339233,
    id: 'ef43f52310e2bbae',
    filesize: '8441547',
    optionalParam:'foobar'
}, ...]

Get one file

Since we upload the files into the /public folder, you can access your files like this: http://localhost:2403/upload/subdir/filename.extension replace:

  • "upload" by the folder your set in the dashboard
  • "subdir" by the value you set for subdir. (nothing if you haven't given a subdir param)
  • "filename.extension" by the name of the file your uploaded

If you would like more security and some rights management to get the files, fill an issue about this and I might work on this feature.

Remove a file from filesystem and from collection

Method DELETE

    dpd.fileupload.delete(id, function(err, result) {
        if (err) alert(err);
        console.log(result);
    });

Changelog

  • 0.0.11
    • Allow internal requests for GET. Close #12
    • Added MIME types and filtering file lists. PR #5
  • 0.0.10
    • Option to store unique file name (add uniqueFilename to the query param. Cf Demo)
      • npm update required (MD5 dependency added)
    • if the name of the resource is the same of the upload directory, it'll automatically append an underscore (_) to the upload directory (cf demo)
  • 0.0.9
    • Store file size
  • 0.0.8
    • any parameter send in the query will be stored in the resource (and its value will be parsed as JSON if applicable)
    • if a parameter property name is "subdir", file will be placed under this subdir in the upload directory
  • 0.0.7
    • fix empty response issue
  • 0.0.6
  • 0.0.5

Todo

  • send an event with progress of upload
  • add tests
  • improve demo (add implementation with angularJS, send a param in the query)
  • check if file already exist (upload anyway and put a (1) in the filename or return an error?)
  • Find a cleaner way to get the path of the upload directory
  • Implement GET of one file (stream file ?)

About

File upload module for Deployd

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 100.0%