from gitlab

This commit is contained in:
Jörg Henke
2023-12-04 11:52:12 +01:00
parent 05fa4e7209
commit 5fd979c3a4
585 changed files with 400301 additions and 0 deletions

20
common/resources/node_modules/filesaver/LICENSE generated vendored Normal file
View File

@ -0,0 +1,20 @@
The MIT License (MIT)
Copyright (c) 2014 jacoborus
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.

View File

@ -0,0 +1,213 @@
'use strict';
var mkdirp = require('mkdirp'),
fs = require('fs'),
changeName = require('./changename'),
path = require('path'),
safename = require('safename');
/*!
* Rename file and launch callback
* @param {String} oldPath path to file to move
* @param {String} newPath path of destination
* @param {Function} callback signature: null, {filename, filepath}
*/
var move = function (oldPath, newPath, callback) {
fs.rename( oldPath, newPath, function (err) {
if (err) {
callback( err );
} else {
callback( null, {
filename: newPath.split( '/' ).pop(),
filepath: newPath
});
}
});
};
/*!
* return safename file path
* @param {String} route target to analyze
* @return {String} route analyze
*/
var checkSafeName = function (route) {
if ( this.safenames ) {
route = route.split( '/' );
var name = route.pop();
name = safename( name );
route.push( name );
return route.join( '/' );
} else {
return route;
}
};
/*!
* check if params are right
*/
var checker = function (folder, oldPath, newPath, callback) {
var cb = callback || function () {};
if (typeof newPath === 'function') {
cb = newPath;
newPath = oldPath.split( '/' ).pop();
} else if (!newPath) {
newPath = oldPath.split( '/' ).pop();
}
// check for valid arguments
if (folder && oldPath && (typeof folder === 'string') && (typeof oldPath === 'string') && fs.existsSync( oldPath )) {
// check for existing folder
if (this.folders[folder]) {
// set target
newPath = path.resolve( this.folders[folder], newPath );
newPath = checkSafeName.call( this, newPath );
return {newPath: newPath, callback: cb};
} else {
cb( 'invalid folder' );
return false;
}
} else {
cb( 'folder or origin not valid' );
return false;
}
};
/**
* Filesaver constructor.
*
* Options:
*
* - folders: *Object* with folder routes
* - safename: *Boolean* use safe name for files
*
* Example:
*
* ```js
* var folders = {
* images: './images',
* books: './books'
* }
* var filesaver = new Filesaver({
* folders: folders,
* safenames: true
* });
* ```
*
* @param {Object} options folders and safenames
*/
var Filesaver = function (options) {
var x;
options = options || {};
// Store folders
this.folders = options.folders || {};
this.safenames = options.safenames || false;
// check for existing folders
for (x in this.folders) {
if (!fs.existsSync( this.folders[x] )){
// create folder if not exists
mkdirp( this.folders[x] );
}
}
};
/**
* Add a new folder
*
* Example:
*
* ```js
* filesaver.folder( 'documents', './path/to/folder', function () {
* // do something
* });
* ```
* @param {String} name name of new folder collection
* @param {Object} path path to its folder
* @param {Function} callback no signature callback
*/
Filesaver.prototype.folder = function (name, folderPath, callback) {
var _this = this;
fs.exists( folderPath, function (exists) {
if (!exists) {
// create folder if not exists
mkdirp( folderPath );
}
// add folder
_this.folders[name] = folderPath;
// optional callback
if (callback){
callback();
}
});
};
/**
* Write or overwrite file
*
* Example:
*
* ```js
* filesaver.put( 'images', '/path/temp/file.jpg', 'photo.jpg', function (err, data) {
* console.log( data );
* // ->
* // filename: 'photo.jpg',
* // filepath: './images/photo.jpg'
* });
* ```
*
* @param {String} folder name of parent folder folder
* @param {String} oldPath path to origin file
* @param {String} newPath name of newPath file
* @param {Function} callback Signature: error, data. Data signature:{filename, filepath}
*/
Filesaver.prototype.put = function (folder, oldPath, newPath, callback) {
var data = checker.call( this, folder, oldPath, newPath, callback );
if (data) {
move( oldPath, data.newPath, data.callback );
}
};
/**
* Write a file without overwriting anyone.
*
* Example:
*
* ```js
* filesaver.add( 'images', '/path/temp/file.jpg', 'photo_1.jpg', function (err, data) {
* console.log( data );
* // ->
* // filename: 'photo_2.jpg',
* // filepath: './images/photo_2.jpg'
* });
* ```
*
* @param {String} folder name of parent folder folder
* @param {String} oldPath path to origin file
* @param {String} newPath Optional: name of newPath file
* @param {Function} callback Optional: Signature: error, data. Data signature:{filename, filepath}
*/
Filesaver.prototype.add = function (folder, oldPath, newPath, callback) {
var data = checker.call( this, folder, oldPath, newPath, callback );
if (data) {
newPath = changeName( data.newPath );
move( oldPath, newPath, data.callback );
}
};
module.exports = Filesaver;

View File

@ -0,0 +1,81 @@
var fs = require('fs');
/*!
* add 1 to suffix number
* @param {String} name file basename
* @return {String} name with addition
*/
var addOne = function (name) {
name = name.split( '_' );
var n = Number( name.pop()) + 1;
name.push( n );
return name.join( '_' );
};
/*!
* detect if name has a number suffix after '_'
* (example: picture_5.jpg)
* @param {string} name basename to examinate
* @return {Boolean|Number} if has not suffix: false, else: name with addition
*/
var hasSuffix = function (name) {
var suffix, splitted;
if (!isNaN( name )) {
return false;
} else {
splitted = name.split( '_' );
if (splitted.length > 1) {
suffix = splitted.pop();
if (isNaN( suffix )) {
return false;
} else {
return addOne( name );
}
} else {
return false;
}
}
};
/*!
* separate basename from file path and send it to rename
* @param {String} route route of the file
* @return {String} new name
*/
var newName = function ( route ) {
// get filename
route = route.split( '/' );
var filename = route.pop();
var splitted = filename.split( '.' );
var basename = splitted.shift();
var ext = splitted.join( '.' );
var suffix = hasSuffix( basename );
// check if filefileName has suffix
if (suffix) {
basename = suffix;
} else {
basename = basename + '_1';
}
filename = [basename, ext].join( '.' );
route.push( filename );
return route.join('/');
};
/*!
* detects if file route exist and send it to rename
* @param {String} route file path
* @return {String} unique path
*/
var finalName = function (route) {
if (fs.existsSync( route )) {
return finalName( newName( route ));
} else {
return route;
}
};
module.exports = finalName;