mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2026-02-25 03:29:40 +00:00
Remove archiver dependency
This commit is contained in:
parent
415e0a7b5a
commit
ab08d83c04
35 changed files with 4046 additions and 194 deletions
22
server/libs/archiver/crc32-stream/LICENSE
Normal file
22
server/libs/archiver/crc32-stream/LICENSE
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
Copyright (c) 2014 Chris Talkington, contributors.
|
||||
|
||||
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.
|
||||
48
server/libs/archiver/crc32-stream/crc32-stream.js
Normal file
48
server/libs/archiver/crc32-stream/crc32-stream.js
Normal file
|
|
@ -0,0 +1,48 @@
|
|||
/**
|
||||
* node-crc32-stream
|
||||
*
|
||||
* Copyright (c) 2014 Chris Talkington, contributors.
|
||||
* Licensed under the MIT license.
|
||||
* https://github.com/archiverjs/node-crc32-stream/blob/master/LICENSE-MIT
|
||||
*/
|
||||
|
||||
'use strict';
|
||||
|
||||
const { Transform } = require('readable-stream');
|
||||
|
||||
const crc32 = require('../crc32');
|
||||
|
||||
class CRC32Stream extends Transform {
|
||||
constructor(options) {
|
||||
super(options);
|
||||
this.checksum = Buffer.allocUnsafe(4);
|
||||
this.checksum.writeInt32BE(0, 0);
|
||||
|
||||
this.rawSize = 0;
|
||||
}
|
||||
|
||||
_transform(chunk, encoding, callback) {
|
||||
if (chunk) {
|
||||
this.checksum = crc32.buf(chunk, this.checksum) >>> 0;
|
||||
this.rawSize += chunk.length;
|
||||
}
|
||||
|
||||
callback(null, chunk);
|
||||
}
|
||||
|
||||
digest(encoding) {
|
||||
const checksum = Buffer.allocUnsafe(4);
|
||||
checksum.writeUInt32BE(this.checksum >>> 0, 0);
|
||||
return encoding ? checksum.toString(encoding) : checksum;
|
||||
}
|
||||
|
||||
hex() {
|
||||
return this.digest('hex').toUpperCase();
|
||||
}
|
||||
|
||||
size() {
|
||||
return this.rawSize;
|
||||
}
|
||||
}
|
||||
|
||||
module.exports = CRC32Stream;
|
||||
62
server/libs/archiver/crc32-stream/deflate-crc32-stream.js
Normal file
62
server/libs/archiver/crc32-stream/deflate-crc32-stream.js
Normal file
|
|
@ -0,0 +1,62 @@
|
|||
/**
|
||||
* node-crc32-stream
|
||||
*
|
||||
* Copyright (c) 2014 Chris Talkington, contributors.
|
||||
* Licensed under the MIT license.
|
||||
* https://github.com/archiverjs/node-crc32-stream/blob/master/LICENSE-MIT
|
||||
*/
|
||||
|
||||
'use strict';
|
||||
|
||||
const { DeflateRaw } = require('zlib');
|
||||
|
||||
const crc32 = require('../crc32');
|
||||
|
||||
class DeflateCRC32Stream extends DeflateRaw {
|
||||
constructor(options) {
|
||||
super(options);
|
||||
|
||||
this.checksum = Buffer.allocUnsafe(4);
|
||||
this.checksum.writeInt32BE(0, 0);
|
||||
|
||||
this.rawSize = 0;
|
||||
this.compressedSize = 0;
|
||||
}
|
||||
|
||||
push(chunk, encoding) {
|
||||
if (chunk) {
|
||||
this.compressedSize += chunk.length;
|
||||
}
|
||||
|
||||
return super.push(chunk, encoding);
|
||||
}
|
||||
|
||||
_transform(chunk, encoding, callback) {
|
||||
if (chunk) {
|
||||
this.checksum = crc32.buf(chunk, this.checksum) >>> 0;
|
||||
this.rawSize += chunk.length;
|
||||
}
|
||||
|
||||
super._transform(chunk, encoding, callback)
|
||||
}
|
||||
|
||||
digest(encoding) {
|
||||
const checksum = Buffer.allocUnsafe(4);
|
||||
checksum.writeUInt32BE(this.checksum >>> 0, 0);
|
||||
return encoding ? checksum.toString(encoding) : checksum;
|
||||
}
|
||||
|
||||
hex() {
|
||||
return this.digest('hex').toUpperCase();
|
||||
}
|
||||
|
||||
size(compressed = false) {
|
||||
if (compressed) {
|
||||
return this.compressedSize;
|
||||
} else {
|
||||
return this.rawSize;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
module.exports = DeflateCRC32Stream;
|
||||
14
server/libs/archiver/crc32-stream/index.js
Normal file
14
server/libs/archiver/crc32-stream/index.js
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
/**
|
||||
* node-crc32-stream
|
||||
*
|
||||
* Copyright (c) 2014 Chris Talkington, contributors.
|
||||
* Licensed under the MIT license.
|
||||
* https://github.com/archiverjs/node-crc32-stream/blob/master/LICENSE-MIT
|
||||
*/
|
||||
|
||||
'use strict';
|
||||
|
||||
module.exports = {
|
||||
CRC32Stream: require('./crc32-stream'),
|
||||
DeflateCRC32Stream: require('./deflate-crc32-stream')
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue