mirror of
https://github.com/mollersuite/monofile.git
synced 2024-11-21 21:36:26 -08:00
ok i'll need to figure more out later
This commit is contained in:
parent
3de215ee35
commit
5fd6073503
|
@ -36,10 +36,10 @@ export function generateFileId(length: number = 5) {
|
|||
* @param conditions
|
||||
*/
|
||||
|
||||
function multiAssert(conditions: Map<boolean, any>) {
|
||||
conditions.forEach((err, cond) => {
|
||||
if (cond) throw err
|
||||
})
|
||||
function multiAssert(conditions: Map<boolean, { message: string, status: number }>) {
|
||||
for (let [cond, err] of conditions.entries()) {
|
||||
if (cond) return err
|
||||
}
|
||||
}
|
||||
|
||||
export type FileUploadSettings = Partial<Pick<FilePointer, "mime" | "owner">> &
|
||||
|
@ -97,12 +97,12 @@ async function pushWebStream(stream: Readable, webStream: ReadableStream) {
|
|||
|
||||
namespace StreamHelpers {
|
||||
|
||||
interface UploadStream {
|
||||
export interface UploadStream {
|
||||
uploaded: number // number of bytes uploaded
|
||||
stream : Readable
|
||||
}
|
||||
|
||||
class StreamBuffer {
|
||||
export class StreamBuffer {
|
||||
|
||||
readonly targetSize: number
|
||||
filled: number = 0
|
||||
|
@ -160,51 +160,78 @@ export default class Files {
|
|||
.catch(console.error)
|
||||
}
|
||||
|
||||
writeFileStream(metadata: FileUploadSettings & { size: number }) {
|
||||
|
||||
let uploadId = (metadata.uploadId || generateFileId()).toString()
|
||||
let processor = new Promise((resolve, reject) => {
|
||||
|
||||
multiAssert(
|
||||
validateUpload(metadata: FileUploadSettings & { size : number, uploadId: string }) {
|
||||
return multiAssert(
|
||||
new Map()
|
||||
.set(!metadata.filename, {status: 400, message: "missing filename"})
|
||||
.set(metadata.filename.length > 128, {status: 400, message: "filename too long"})
|
||||
.set(!metadata.mime, {status: 400, message: "missing mime type"})
|
||||
.set(metadata.mime.length > 128, {status: 400, message: "mime type too long"})
|
||||
.set(
|
||||
uploadId.match(id_check_regex)?.[0] != uploadId
|
||||
|| uploadId.length > this.config.maxUploadIdLength,
|
||||
metadata.uploadId.match(id_check_regex)?.[0] != metadata.uploadId
|
||||
|| metadata.uploadId.length > this.config.maxUploadIdLength,
|
||||
{ status: 400, message: "invalid file ID" }
|
||||
)
|
||||
.set(
|
||||
this.files[uploadId] &&
|
||||
this.files[metadata.uploadId] &&
|
||||
(metadata.owner
|
||||
? this.files[uploadId].owner != metadata.owner
|
||||
? this.files[metadata.uploadId].owner != metadata.owner
|
||||
: true),
|
||||
{ status: 403, message: "you don't own this file" }
|
||||
)
|
||||
.set(
|
||||
this.files[uploadId]?.reserved,
|
||||
this.files[metadata.uploadId]?.reserved,
|
||||
{
|
||||
status: 400,
|
||||
message: "already uploading this file. if your file is stuck in this state, contact an administrator"
|
||||
}
|
||||
)
|
||||
)
|
||||
}
|
||||
|
||||
writeFileStream(metadata: FileUploadSettings & { size: number }) {
|
||||
|
||||
let uploadId = (metadata.uploadId || generateFileId()).toString()
|
||||
|
||||
let validation = this.validateUpload(
|
||||
{...metadata, uploadId}
|
||||
)
|
||||
if (validation) return validation
|
||||
|
||||
let buf = new StreamHelpers.StreamBuffer(this.api, metadata.size)
|
||||
let fs_obj = this
|
||||
|
||||
return new Writable({
|
||||
async write(data: Buffer) {
|
||||
let positionInBuf = 0
|
||||
while (positionInBuf < data.byteLength) {
|
||||
let ns = (await buf.getNextStream())
|
||||
if (!ns) {
|
||||
this.destroy()
|
||||
return
|
||||
}
|
||||
|
||||
let bytesToPush = Math.min(
|
||||
data.byteLength,
|
||||
fs_obj.config.maxDiscordFileSize-ns.uploaded
|
||||
)
|
||||
|
||||
ns.stream.push(data.subarray(positionInBuf, positionInBuf + bytesToPush))
|
||||
ns.uploaded += bytesToPush
|
||||
buf.filled += bytesToPush
|
||||
positionInBuf += bytesToPush
|
||||
|
||||
if (ns.uploaded == fs_obj.config.maxDiscordFileSize)
|
||||
buf.buffer.splice(0, 1)
|
||||
|
||||
if (buf.filled == buf.targetSize) {
|
||||
this.destroy()
|
||||
return
|
||||
}
|
||||
}
|
||||
}
|
||||
})
|
||||
|
||||
return {
|
||||
stream: new Writable({
|
||||
write(data: any) {
|
||||
|
||||
|
||||
|
||||
}
|
||||
}),
|
||||
processor
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue