chore: MAKE LINIT HAPPT

This commit is contained in:
CrescentLeaf
2025-08-29 23:43:09 +08:00
parent 91bfbcb3b3
commit f79fe55fe5

View File

@@ -1,65 +1,69 @@
import { DatabaseSync } from "node:sqlite" import { DatabaseSync, SQLInputValue } from "node:sqlite"
import { Buffer } from "node:buffer" import { Buffer } from "node:buffer"
import path from 'node:path' import path from 'node:path'
import crypto from 'node:crypto' import crypto from 'node:crypto'
import fs_sync from 'node:fs' import fs_sync from 'node:fs'
import { fileTypeFromBuffer } from 'file-type' import { fileTypeFromBuffer } from 'file-type'
export default class FileManager { import config from "../config.ts"
static FileBean = class {
declare count: number
declare name: string
declare hash: string
declare mime: string
declare chatid: string | null
declare upload_time: number
declare last_used_time: number
}
static File = class { class FileBean {
declare bean: FileManager.FileBean declare count: number
constructor(bean: FileManager.FileBean) { declare name: string
this.bean = bean declare hash: string
} declare mime: string
private setAttr(key: string, value: unknown): void { declare chatid?: string
FileManager.database.prepare(`UPDATE ${FileManager.table_name} SET ${key} = ? WHERE count = ?`).run(value, this.bean.count) declare upload_time: number
this.bean[key] = value declare last_used_time: number
} }
getMime(): string {
return this.bean.mime class File {
} declare bean: FileBean
getName(): string { constructor(bean: FileBean) {
return this.bean.name this.bean = bean
}
getFilePath(): string {
const hash = this.bean.hash
return path.join(
config.data_path,
"files",
hash.substring(0, 1),
hash.substring(2, 3),
hash.substring(3, 4),
this.bean.hash
)
}
getChatId(): string | null {
return this.bean.chatid
}
getUploadTime(): number {
return this.bean.upload_time
}
getLastUsedTime(): number {
return this.bean.last_used_time
}
readSync(): Buffer {
this.setAttr("last_used_time", Date.now())
return fs_sync.readFileSync(this.getFilePath())
}
} }
private setAttr(key: string, value: SQLInputValue) {
FileManager.database.prepare(`UPDATE ${FileManager.table_name} SET ${key} = ? WHERE count = ?`).run(value, this.bean.count)
this.bean[key] = value
}
getMime() {
return this.bean.mime
}
getName() {
return this.bean.name
}
getFilePath() {
const hash = this.bean.hash
return path.join(
config.data_path,
"files",
hash.substring(0, 1),
hash.substring(2, 3),
hash.substring(3, 4),
this.bean.hash
)
}
getChatId() {
return this.bean.chatid
}
getUploadTime() {
return this.bean.upload_time
}
getLastUsedTime() {
return this.bean.last_used_time
}
readSync() {
this.setAttr("last_used_time", Date.now())
return fs_sync.readFileSync(this.getFilePath())
}
}
export default class FileManager {
static FileBean = FileBean
static File = File
static table_name: string = "FileReferences" static table_name: string = "FileReferences"
private static database: DatabaseSync = FileManager.init() static database: DatabaseSync = FileManager.init()
private static init(): DatabaseSync { private static init(): DatabaseSync {
const db: DatabaseSync = new DatabaseSync(path.join(config.data_path, FileManager.table_name + '.db')) const db: DatabaseSync = new DatabaseSync(path.join(config.data_path, FileManager.table_name + '.db'))
db.exec(` db.exec(`
@@ -73,18 +77,18 @@ export default class FileManager {
/* 最后使用时间 */ last_used_time INT8 NOT NULL /* 最后使用时间 */ last_used_time INT8 NOT NULL
); );
`) `)
return db return db
} }
static uploadFile(fileName: string, data: Buffer, chatId: string | null) { static async uploadFile(fileName: string, data: Buffer, chatId?: string) {
const hash = crypto.createHash('sha256').update(data).digest('hex') const hash = crypto.createHash('sha256').update(data).digest('hex')
try { try {
return FileManager.findByHash(hash) return FileManager.findByHash(hash)
} catch(_e) { } catch (_e) {
// Do nothing... // Do nothing...
} }
const mime = fileTypeFromBuffer(data) const mime = (await fileTypeFromBuffer(data))?.mime || 'application/octet-stream'
fs_sync.writeFileSync( fs_sync.writeFileSync(
path.join( path.join(
config.data_path, config.data_path,
@@ -118,15 +122,15 @@ export default class FileManager {
) )
} }
private static findAllBeansByCondition(condition: string, ...args: unknown[]): FileManager.FileBean[] { private static findAllBeansByCondition(condition: string, ...args: SQLInputValue[]): FileBean[] {
return FileManager.database.prepare(`SELECT * FROM ${FileManager.table_name} WHERE ${condition};`).all(...args) return FileManager.database.prepare(`SELECT * FROM ${FileManager.table_name} WHERE ${condition};`).all(...args) as unknown as FileBean[]
} }
static findByHash(hash: string): FileManager.File { static findByHash(hash: string): File {
const beans = FileManager.findAllBeansByCondition('hash = ?', hash) const beans = FileManager.findAllBeansByCondition('hash = ?', hash)
if (beans.length == 0) if (beans.length == 0)
throw new Error(`找不到 hash 为 ${hash} 的文件`) throw new Error(`找不到 hash 为 ${hash} 的文件`)
else if (beans.length > 1) else if (beans.length > 1)
console.error(chalk.red(`警告: 查询 hash = ${id} 时, 查询到多个相同 Hash 的文件`)) console.error(chalk.red(`警告: 查询 hash = ${hash} 时, 查询到多个相同 Hash 的文件`))
return new FileManager.File(beans[0]) return new FileManager.File(beans[0])
} }
} }