Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
filestorage
Advanced tools
npm install filestorage
Directory contains max 1000 files. Each file has .data extension and each file contains internal META information (2 kB). Each directory contains the config file with the informations about all files.
/your-path/000-000-001/000000001.data
if directory contains more than 999 files then storage automatically create a new directory:
/your-path/000-000-002/000001000.data
The benefit: querying by the file ID {Number} and auto-pipe to HttpResponse
var storage = require('filestorage').create('/path/to/directory/');
// Do you want to re-assign id of removed files? If yes, set:
// storage.reassign = true;
// You can create more file storages
// EXAMPLE:
var storage_users = require('filestorage').create('/path/to/users/');
var storage_products = require('filestorage').create('/path/to/products/');
var storage_logs = require('filestorage').create('/path/to/logs/');
var storage_default = require('filestorage').create();
// default path: /process–directory/filestorage/
// ================================================
// FILESTORAGE INSERT
// ================================================
/*
Insert a file
@name {String}
@buffer {String, Stream, Buffer}
@custom {String, Object} :: optional
@fnCallback {Function} :: optional, params: @err {Error}, @id {Number}, @stat {Object}
@change {String} :: optional, changelog
return {Number} :: file id
*/
storage.insert(name, buffer, [custom], [fnCallback], [changelog]);
// EXAMPLE:
storage.insert('logo.png', '/users/petersirka/desktop/logo.png', 'my custom data', function(err, id, stat) {
console.log(id);
console.log(stat);
// stat.name - file name
// stat.extension - file extension
// stat.length - file length
// stat.type - content type
// stat.width - picture width
// stat.height - picture height
// stat.custom - your custom value
// stat.stamp - date created ticks, new Date(stat.stamp)
}, 'new logo');
// OR
var id = storage.insert('logo.png', fs.createReadStream('/users/petersirka/desktop/logo.png'));
console.log(id);
// OR
var id = storage.insert('plaintext.txt', 'YW55IGNhcm5hbCBwbGVhc3VyZS4=');
console.log(id);
// OR
var id = storage.insert('plaintext.txt', new Buffer('YW55IGNhcm5hbCBwbGVhc3VyZS4=', 'base64'));
console.log(id);
// ================================================
// FILESTORAGE UPDATE
// ================================================
/*
Update a file
@id {String or Number}
@name {String}
@buffer {String, Stream, Buffer}
@custom {String, Object} :: optional
@fnCallback {Function} :: optional, params: @err {Error}, @id {Number}, @stat {Object}
@change {String} :: optional, changelog
return {Number}
*/
storage.update(id, name, buffer, [custom], [fnCallback], [change]);
// EXAMPLE:
storage.update(1, 'logo.jpg', '/users/petersirka/desktop/logo.jpg', function(err, id, stat) {
console.log(id);
console.log(stat);
// stat.name - file name
// stat.extension - file extension
// stat.length - file length
// stat.type - content type
// stat.width - picture width
// stat.height - picture height
// stat.custom - your custom value
// stat.stamp - date created ticks, new Date(stat.stamp)
}, 'update logo');
// OR
storage.update(1, 'plaintext.txt', new Buffer('YW55IGNhcm5hbCBwbGVhc3VyZS4=', 'base64'));
/*
Update a file
@id {String or Number}
@fnCallback {Function(err, header)} ---> MUST RETURN A NEW HEADER
@change {String} :: optional, changelog
return {Number}
*/
storage.update(id, fnCallback, [change]);
// EXAMPLE:
storage.update(1, function(err, header) {
if (err)
return;
header.custom = 'SOME NEW VAUE';
return header;
});
// ================================================
// FILESTORAGE REMOVE
// ================================================
/*
Remove a file
@id {String or Number}
@fnCallback {Function} :: optional, params: @err {Error}
@change {String} :: optional, changelog
return {FileStorage}
*/
storage.remove(id, [fnCallback], [change]);
// EXAMPLE:
storage.remove(1, function(err) {
// your code here
}, 'remove logo');
// OR
storage.remove(1);
// ================================================
// FILESTORAGE STAT
// ================================================
/*
A file information
@id {String or Number}
@fnCallback {Function} :: params: @err {Error}, @stat {Object}
return {FileStorage}
*/
storage.stat(id, fnCallback);
// EXAMPLE:
storage.stat(1, function(err, stat) {
// stat.name - file name
// stat.extension - file extension
// stat.length - file length
// stat.type - content type
// stat.width - picture width
// stat.height - picture height
// stat.custom - your custom value
// stat.stamp - date created ticks, new Date(stat.stamp)
});
// ================================================
// FILESTORAGE READ
// ================================================
/*
Read a file
@id {String or Number}
@fnCallback {Function} :: params: @err {Error}, @stream {ReadStream}, @stat {Object}
return {FileStorage}
*/
storage.read(id, fnCallback);
// EXAMPLE:
storage.read(1, function(err, stream, stat) {
// stat.name - file name
// stat.extension - file extension
// stat.length - file length
// stat.type - content type
// stat.width - picture width
// stat.height - picture height
// stat.custom - your custom value
// stat.stamp - date created ticks, new Date(stat.stamp)
// stream.pipe(yourstream)
});
// ================================================
// FILESTORAGE PIPE
// ================================================
/*
Pipe a stream to Stream or HttpResponse
@id {String or Number}
@req {HttpRequest} :: optional,
@res {HttpResponse or Stream}
@download {String or Boolean} :: optional, attachment - if string filename is download else if boolean filename will a stat.name
return {FileStorage}
*/
storage.pipe(id, req, res, download);
// EXAMPLE:
storage.pipe(1, request, response, true);
// OR
storage.pipe(1, request, response, 'mynewlogo.jpg');
// OR
storage.pipe(1, mystream);
// ================================================
// FILESTORAGE SEND
// ================================================
/*
Send a file through HTTP
@id {String or Number}
@url {String}
@fnCallback {Function} :: optional, params: @err {Error}, @response {String}
@headers {Object} :: optional, additional headers
return {FileStorage}
*/
storage.send(id, url, [fnCallback], [headers]);
// EXAMPLE:
// <form method="POST" action="http://yoururladdress.com/upload/" enctype="multipart/form-data">
// <input type="file" name="File" />
storage.send(1, 'http://yoururladdress.com/upload/', function(err, response) {
if (!err)
console.log(response);
});
storage.send(1, 'http://yoururladdress.com/upload/');
// ================================================
// FILESTORAGE COPY
// ================================================
/*
Copy file
@id {String or Number}
@directory {String}
@fnCallback {Function} :: params: @err {Error}
@name {String} :: optional, new filename
return {FileStorage}
*/
storage.copy(id, directory, [fnCallback], [name]);
// EXAMPLE:
storage.copy(1, '/users/petersirka/desktop/');
storage.copy(1, '/users/petersirka/desktop/', 'mynewlogofromstorage.jpg');
storage.copy(1, '/users/petersirka/desktop/', function(err) {
});
// ================================================
// FILESTORAGE LISTING
// ================================================
/*
Get all file names
@fnCallback {Function} :: params: @err {Error}, @arr {String Array}
return {FileStorage}
*/
storage.listing(fnCallback);
// EXAMPLE:
storage.listing(function(err, arr) {
// Array contains JSON strings (not parsed)
console.log(arr);
});
// ================================================
// +v1.7.0 FIND FILES
// ================================================
storage.find(function(file) {
/* Example of "file" object:
{
id: 5,
stamp: 1509097785616,
custom: { 'license': true },
length: 13,
height: 0,
width: 0,
type: 'text/plain',
extension: 'txt',
name: 'test.txt'
}
*/
// This method needs to return a Boolean value
// "true" the file will be added in response list, "false" skips a file from the response
return file.custom && file.custom.license === true;
}, function(err, response) {
// response === Array of Files
console.log(response);
});
// ================================================
// FILESTORAGE CHANGELOG
// ================================================
/*
Read the changelog
@fnCallback {Function} :: params: @err {Error}, @changes {String Array}
return {FileStorage}
*/
storage.changelog(fnCallback);
// EXAMPLE:
storage.changelog(function(err, changes) {
console.log(changes);
});
// HOW TO REMOVE CHANGELOG?
storage.remove('changelog');
// ================================================
// FILESTORAGE PROPERTIES
// ================================================
// {String}, readonly
storage.path;
// {Object}, readonly
storage.options;
// ================================================
// FILESTORAGE DELEGATES
// ================================================
//
/*
Prepare file before store in storage
@filename {String} :: path to TEMPORARY FILE in a storage, this file will be replaced
@stat {Object}
@next {Function}
*/
storage.onPrepare = function(filename, stat, next) {
// stat.name - file name
// stat.extension - file extension
// stat.length - file length
// stat.type - content type
// stat.width - picture width
// stat.height - picture height
// stat.custom - your custom value
next();
};
// ================================================
// FILESTORAGE EVENTS
// ================================================
storage.on('error', function(err) {
});
storage.on('insert', function(id, stat) {
});
storage.on('update', function(id, stat) {
});
storage.on('remove', function(id) {
});
storage.on('send', function(id, stat, url) {
});
storage.on('copy', function(id, stat, stream, directory) {
});
storage.on('read', function(id, stat, stream) {
});
storage.on('pipe', function(id, stat, stream, req) {
});
storage.on('listing', function(arr) {
});
storage.on('changelog', function(arr) {
});
Copyright (c) 2012-2017 Peter Širka petersirka@gmail.com
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
FAQs
File storage for file uploading.
We found that filestorage demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.