Spaces:
Running
Running
File size: 30,409 Bytes
519a20c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 |
import crypto from 'node:crypto';
import fs from 'node:fs';
import path from 'node:path';
import express from 'express';
import mime from 'mime-types';
import { getSettingsBackupFilePrefix } from './settings.js';
import { CHAT_BACKUPS_PREFIX } from './chats.js';
import { isPathUnderParent, tryParse } from '../util.js';
import { SETTINGS_FILE } from '../constants.js';
const sha256 = str => crypto.createHash('sha256').update(str).digest('hex');
/**
* @typedef {object} DataMaidRawReport
* @property {string[]} images - List of loose user images
* @property {string[]} files - List of loose user files
* @property {string[]} chats - List of loose character chats
* @property {string[]} groupChats - List of loose group chats
* @property {string[]} avatarThumbnails - List of loose avatar thumbnails
* @property {string[]} backgroundThumbnails - List of loose background thumbnails
* @property {string[]} chatBackups - List of chat backups
* @property {string[]} settingsBackups - List of settings backups
*/
/**
* @typedef {object} DataMaidSanitizedRecord - The entry excluding the sensitive paths.
* @property {string} name - The name of the file.
* @property {string} hash - The SHA-256 hash of the file path.
* @property {string} [parent] - The name of the parent directory, if applicable.
* @property {number} [size] - The size of the file in bytes, if available.
* @property {number} [mtime] - The last modification time of the file, if available.
*/
/**
* @typedef {object} DataMaidSanitizedReport - The report containing loose user data.
* @property {DataMaidSanitizedRecord[]} images - List of sanitized loose user images
* @property {DataMaidSanitizedRecord[]} files - List of sanitized loose user files
* @property {DataMaidSanitizedRecord[]} chats - List of sanitized loose character chats
* @property {DataMaidSanitizedRecord[]} groupChats - List of sanitized loose group chats
* @property {DataMaidSanitizedRecord[]} avatarThumbnails - List of sanitized loose avatar thumbnails
* @property {DataMaidSanitizedRecord[]} backgroundThumbnails - List of sanitized loose background thumbnails
* @property {DataMaidSanitizedRecord[]} chatBackups - List of sanitized chat backups
* @property {DataMaidSanitizedRecord[]} settingsBackups - List of sanitized settings backups
*/
/**
* @typedef {object} DataMaidMessage - The chat message object.
* @property {DataMaidMessageExtra} [extra] - The extra data object.
* @property {DataMaidChatMetadata} [chat_metadata] - The chat metadata object.
*/
/**
* @typedef {object} DataMaidFile - The file object.
* @property {string} url - The file URL
*/
/**
* @typedef {object} DataMaidChatMetadata - The chat metadata object.
* @property {DataMaidFile[]} [attachments] - The array of attachments, if any.
*/
/**
* @typedef {object} DataMaidMessageExtra - The extra data object.
* @property {string} [image] - The link to the image, if any.
* @property {string[]} [image_swipes] - The links to the image swipes, if any.
* @property {DataMaidFile} [file] - The file object, if any.
*/
/**
* @typedef {object} DataMaidTokenEntry
* @property {string} handle - The user's handle or identifier.
* @property {{path: string, hash: string}[]} paths - The list of file paths and their hashes that can be cleaned up.
*/
/**
* Service for detecting and managing loose user data files.
* Helps identify orphaned files that are no longer referenced by the application.
*/
export class DataMaidService {
/**
* @type {Map<string, DataMaidTokenEntry>} Map clean-up tokens to user IDs
*/
static TOKENS = new Map();
/**
* Creates a new DataMaidService instance for a specific user.
* @param {string} handle - The user's handle.
* @param {import('../users.js').UserDirectoryList} directories - List of user directories to scan for loose data.
*/
constructor(handle, directories) {
this.handle = handle;
this.directories = directories;
}
/**
* Generates a report of loose user data.
* @returns {Promise<DataMaidRawReport>} A report containing lists of loose user data.
*/
async generateReport() {
/** @type {DataMaidRawReport} */
const report = {
images: await this.#collectImages(),
files: await this.#collectFiles(),
chats: await this.#collectChats(),
groupChats: await this.#collectGroupChats(),
avatarThumbnails: await this.#collectAvatarThumbnails(),
backgroundThumbnails: await this.#collectBackgroundThumbnails(),
chatBackups: await this.#collectChatBackups(),
settingsBackups: await this.#collectSettingsBackups(),
};
return report;
}
/**
* Sanitizes a record by hashing the file name and removing sensitive information.
* Additionally, adds metadata like size and modification time.
* @param {string} name The file or directory name to sanitize.
* @param {boolean} withParent If the model should include the parent directory name.
* @returns {Promise<DataMaidSanitizedRecord>} A sanitized record with the file name, hash, parent directory name, size, and modification time.
*/
async #sanitizeRecord(name, withParent) {
const stat = fs.existsSync(name) ? await fs.promises.stat(name) : null;
return {
name: path.basename(name),
hash: sha256(name),
parent: withParent ? path.basename(path.dirname(name)) : void 0,
size: stat?.size,
mtime: stat?.mtimeMs,
};
}
/**
* Sanitizes the report by hashing the file paths and removing sensitive information.
* @param {DataMaidRawReport} report - The raw report containing loose user data.
* @returns {Promise<DataMaidSanitizedReport>} A sanitized report with sensitive paths removed.
*/
async sanitizeReport(report) {
const sanitizedReport = {
images: await Promise.all(report.images.map(i => this.#sanitizeRecord(i, true))),
files: await Promise.all(report.files.map(i => this.#sanitizeRecord(i, false))),
chats: await Promise.all(report.chats.map(i => this.#sanitizeRecord(i, true))),
groupChats: await Promise.all(report.groupChats.map(i => this.#sanitizeRecord(i, false))),
avatarThumbnails: await Promise.all(report.avatarThumbnails.map(i => this.#sanitizeRecord(i, false))),
backgroundThumbnails: await Promise.all(report.backgroundThumbnails.map(i => this.#sanitizeRecord(i, false))),
chatBackups: await Promise.all(report.chatBackups.map(i => this.#sanitizeRecord(i, false))),
settingsBackups: await Promise.all(report.settingsBackups.map(i => this.#sanitizeRecord(i, false))),
};
return sanitizedReport;
}
/**
* Collects loose user images from the provided directories.
* Images are considered loose if they exist in the user images directory
* but are not referenced in any chat messages.
* @returns {Promise<string[]>} List of paths to loose user images
*/
async #collectImages() {
const result = [];
try {
const messages = await this.#parseAllChats(x => !!x?.extra?.image || Array.isArray(x?.extra?.image_swipes));
const knownImages = new Set();
for (const message of messages) {
if (message?.extra?.image) {
knownImages.add(message.extra.image);
}
if (Array.isArray(message?.extra?.image_swipes)) {
for (const swipe of message.extra.image_swipes) {
knownImages.add(swipe);
}
}
}
const knownImageFullPaths = new Set();
knownImages.forEach(image => {
if (image.startsWith('http') || image.startsWith('data:')) {
return; // Skip URLs and data URIs
}
knownImageFullPaths.add(path.normalize(path.join(this.directories.root, image)));
});
const images = await fs.promises.readdir(this.directories.userImages, { withFileTypes: true });
for (const dirent of images) {
const direntPath = path.join(dirent.parentPath, dirent.name);
if (dirent.isFile() && !knownImageFullPaths.has(direntPath)) {
result.push(direntPath);
}
if (dirent.isDirectory()) {
const subdirFiles = await fs.promises.readdir(direntPath, { withFileTypes: true });
for (const file of subdirFiles) {
const subdirFilePath = path.join(direntPath, file.name);
if (file.isFile() && !knownImageFullPaths.has(subdirFilePath)) {
result.push(subdirFilePath);
}
}
}
}
} catch (error) {
console.error('[Data Maid] Error collecting user images:', error);
}
return result;
}
/**
* Collects loose user files from the provided directories.
* Files are considered loose if they exist in the files directory
* but are not referenced in chat messages, metadata, or settings.
* @returns {Promise<string[]>} List of paths to loose user files
*/
async #collectFiles() {
const result = [];
try {
const messages = await this.#parseAllChats(x => !!x?.extra?.file?.url);
const knownFiles = new Set();
for (const message of messages) {
if (message?.extra?.file?.url) {
knownFiles.add(message.extra.file.url);
}
}
const metadata = await this.#parseAllMetadata(x => Array.isArray(x?.attachments) && x.attachments.length > 0);
for (const meta of metadata) {
if (Array.isArray(meta?.attachments)) {
for (const attachment of meta.attachments) {
if (attachment?.url) {
knownFiles.add(attachment.url);
}
}
}
}
const pathToSettings = path.join(this.directories.root, SETTINGS_FILE);
if (fs.existsSync(pathToSettings)) {
try {
const settingsContent = await fs.promises.readFile(pathToSettings, 'utf-8');
const settings = tryParse(settingsContent);
if (Array.isArray(settings?.extension_settings?.attachments)) {
for (const file of settings.extension_settings.attachments) {
if (file?.url) {
knownFiles.add(file.url);
}
}
}
if (typeof settings?.extension_settings?.character_attachments === 'object') {
for (const files of Object.values(settings.extension_settings.character_attachments)) {
if (!Array.isArray(files)) {
continue;
}
for (const file of files) {
if (file?.url) {
knownFiles.add(file.url);
}
}
}
}
} catch (error) {
console.error('[Data Maid] Error reading settings file:', error);
}
}
const knownFileFullPaths = new Set();
knownFiles.forEach(file => {
knownFileFullPaths.add(path.normalize(path.join(this.directories.root, file)));
});
const files = await fs.promises.readdir(this.directories.files, { withFileTypes: true });
for (const file of files) {
const filePath = path.join(this.directories.files, file.name);
if (file.isFile() && !knownFileFullPaths.has(filePath)) {
result.push(filePath);
}
}
} catch (error) {
console.error('[Data Maid] Error collecting user files:', error);
}
return result;
}
/**
* Collects loose character chats from the provided directories.
* Chat folders are considered loose if they don't have corresponding character files.
* @returns {Promise<string[]>} List of paths to loose character chats
*/
async #collectChats() {
const result = [];
try {
const knownChatFolders = new Set();
const characters = await fs.promises.readdir(this.directories.characters, { withFileTypes: true });
for (const file of characters) {
if (file.isFile() && path.parse(file.name).ext === '.png') {
knownChatFolders.add(file.name.replace('.png', ''));
}
}
const chatFolders = await fs.promises.readdir(this.directories.chats, { withFileTypes: true });
for (const folder of chatFolders) {
if (folder.isDirectory() && !knownChatFolders.has(folder.name)) {
const chatFiles = await fs.promises.readdir(path.join(this.directories.chats, folder.name), { withFileTypes: true });
for (const file of chatFiles) {
if (file.isFile() && path.parse(file.name).ext === '.jsonl') {
result.push(path.join(this.directories.chats, folder.name, file.name));
}
}
}
}
} catch (error) {
console.error('[Data Maid] Error collecting character chats:', error);
}
return result;
}
/**
* Collects loose group chats from the provided directories.
* Group chat files are considered loose if they're not referenced by any group definition.
* @returns {Promise<string[]>} List of paths to loose group chats
*/
async #collectGroupChats() {
const result = [];
try {
const groups = await fs.promises.readdir(this.directories.groups, { withFileTypes: true });
const knownGroupChats = new Set();
for (const file of groups) {
if (file.isFile() && path.parse(file.name).ext === '.json') {
try {
const pathToFile = path.join(this.directories.groups, file.name);
const fileContent = await fs.promises.readFile(pathToFile, 'utf-8');
const groupData = tryParse(fileContent);
if (groupData?.chat_id) {
knownGroupChats.add(groupData.chat_id);
}
if (Array.isArray(groupData?.chats)) {
for (const chat of groupData.chats) {
knownGroupChats.add(chat);
}
}
} catch (error) {
console.error(`[Data Maid] Error parsing group chat file ${file.name}:`, error);
}
}
}
const groupChats = await fs.promises.readdir(this.directories.groupChats, { withFileTypes: true });
for (const file of groupChats) {
if (file.isFile() && path.parse(file.name).ext === '.jsonl') {
if (!knownGroupChats.has(path.parse(file.name).name)) {
result.push(path.join(this.directories.groupChats, file.name));
}
}
}
} catch (error) {
console.error('[Data Maid] Error collecting group chats:', error);
}
return result;
}
/**
* Collects loose avatar thumbnails from the provided directories.
* @returns {Promise<string[]>} List of paths to loose avatar thumbnails
*/
async #collectAvatarThumbnails() {
const result = [];
try {
const knownAvatars = new Set();
const avatars = await fs.promises.readdir(this.directories.characters, { withFileTypes: true });
for (const file of avatars) {
if (file.isFile()) {
knownAvatars.add(file.name);
}
}
const avatarThumbnails = await fs.promises.readdir(this.directories.thumbnailsAvatar, { withFileTypes: true });
for (const file of avatarThumbnails) {
if (file.isFile() && !knownAvatars.has(file.name)) {
result.push(path.join(this.directories.thumbnailsAvatar, file.name));
}
}
} catch (error) {
console.error('[Data Maid] Error collecting avatar thumbnails:', error);
}
return result;
}
/**
* Collects loose background thumbnails from the provided directories.
* @returns {Promise<string[]>} List of paths to loose background thumbnails
*/
async #collectBackgroundThumbnails() {
const result = [];
try {
const knownBackgrounds = new Set();
const backgrounds = await fs.promises.readdir(this.directories.backgrounds, { withFileTypes: true });
for (const file of backgrounds) {
if (file.isFile()) {
knownBackgrounds.add(file.name);
}
}
const backgroundThumbnails = await fs.promises.readdir(this.directories.thumbnailsBg, { withFileTypes: true });
for (const file of backgroundThumbnails) {
if (file.isFile() && !knownBackgrounds.has(file.name)) {
result.push(path.join(this.directories.thumbnailsBg, file.name));
}
}
} catch (error) {
console.error('[Data Maid] Error collecting background thumbnails:', error);
}
return result;
}
/**
* Collects chat backups from the provided directories.
* @returns {Promise<string[]>} List of paths to chat backups
*/
async #collectChatBackups() {
const result = [];
try {
const prefix = CHAT_BACKUPS_PREFIX;
const backups = await fs.promises.readdir(this.directories.backups, { withFileTypes: true });
for (const file of backups) {
if (file.isFile() && file.name.startsWith(prefix)) {
result.push(path.join(this.directories.backups, file.name));
}
}
} catch (error) {
console.error('[Data Maid] Error collecting chat backups:', error);
}
return result;
}
/**
* Collects settings backups from the provided directories.
* @returns {Promise<string[]>} List of paths to settings backups
*/
async #collectSettingsBackups() {
const result = [];
try {
const prefix = getSettingsBackupFilePrefix(this.handle);
const backups = await fs.promises.readdir(this.directories.backups, { withFileTypes: true });
for (const file of backups) {
if (file.isFile() && file.name.startsWith(prefix)) {
result.push(path.join(this.directories.backups, file.name));
}
}
} catch (error) {
console.error('[Data Maid] Error collecting settings backups:', error);
}
return result;
}
/**
* Parses all chat files and returns an array of chat messages.
* Searches both individual character chats and group chats.
* @param {function(DataMaidMessage): boolean} filterFn - Filter function to apply to each message.
* @returns {Promise<DataMaidMessage[]>} Array of chat messages
*/
async #parseAllChats(filterFn) {
try {
const allChats = [];
const groupChats = await fs.promises.readdir(this.directories.groupChats, { withFileTypes: true });
for (const file of groupChats) {
if (file.isFile() && path.parse(file.name).ext === '.jsonl') {
const chatMessages = await this.#parseChatFile(path.join(this.directories.groupChats, file.name));
allChats.push(...chatMessages.filter(filterFn));
}
}
const chatDirectories = await fs.promises.readdir(this.directories.chats, { withFileTypes: true });
for (const directory of chatDirectories) {
if (directory.isDirectory()) {
const chatFiles = await fs.promises.readdir(path.join(this.directories.chats, directory.name), { withFileTypes: true });
for (const file of chatFiles) {
if (file.isFile() && path.parse(file.name).ext === '.jsonl') {
const chatMessages = await this.#parseChatFile(path.join(this.directories.chats, directory.name, file.name));
allChats.push(...chatMessages.filter(filterFn));
}
}
}
}
return allChats;
} catch (error) {
console.error('[Data Maid] Error parsing chats:', error);
return [];
}
}
/**
* Parses all metadata from chat files and group definitions.
* Extracts metadata from both active and historical chat data.
* @param {function(DataMaidChatMetadata): boolean} filterFn - Filter function to apply to each metadata entry.
* @returns {Promise<DataMaidChatMetadata[]>} Parsed chat metadata as an array.
*/
async #parseAllMetadata(filterFn) {
try {
const allMetadata = [];
const groups = await fs.promises.readdir(this.directories.groups, { withFileTypes: true });
for (const file of groups) {
if (file.isFile() && path.parse(file.name).ext === '.json') {
try {
const pathToFile = path.join(this.directories.groups, file.name);
const fileContent = await fs.promises.readFile(pathToFile, 'utf-8');
const groupData = tryParse(fileContent);
if (groupData?.chat_metadata && filterFn(groupData.chat_metadata)) {
allMetadata.push(groupData.chat_metadata);
}
if (groupData?.past_metadata) {
allMetadata.push(...Object.values(groupData.past_metadata).filter(filterFn));
}
} catch (error) {
console.error(`[Data Maid] Error parsing group chat file ${file.name}:`, error);
}
}
}
const chatDirectories = await fs.promises.readdir(this.directories.chats, { withFileTypes: true });
for (const directory of chatDirectories) {
if (directory.isDirectory()) {
const chatFiles = await fs.promises.readdir(path.join(this.directories.chats, directory.name), { withFileTypes: true });
for (const file of chatFiles) {
if (file.isFile() && path.parse(file.name).ext === '.jsonl') {
const chatMessages = await this.#parseChatFile(path.join(this.directories.chats, directory.name, file.name));
const chatMetadata = chatMessages?.[0]?.chat_metadata;
if (chatMetadata && filterFn(chatMetadata)) {
allMetadata.push(chatMetadata);
}
}
}
}
}
return allMetadata;
} catch (error) {
console.error('[Data Maid] Error parsing chats:', error);
return [];
}
}
/**
* Parses a single chat file and returns an array of chat messages.
* Each line in the JSONL file represents one message.
* @param {string} filePath Path to the chat file to parse.
* @returns {Promise<DataMaidMessage[]>} Parsed chat messages as an array.
*/
async #parseChatFile(filePath) {
try {
const content = await fs.promises.readFile(filePath, 'utf-8');
const chatData = content.split('\n').map(tryParse).filter(Boolean);
return chatData;
} catch (error) {
console.error(`[Data Maid] Error reading chat file ${filePath}:`, error);
return [];
}
}
/**
* Generates a unique token for the user to clean up their data.
* Replaces any existing token for the same user.
* @param {string} handle - The user's handle or identifier.
* @param {DataMaidRawReport} report - The report containing loose user data.
* @returns {string} A unique token.
*/
static generateToken(handle, report) {
// Remove any existing token for this user
for (const [token, entry] of this.TOKENS.entries()) {
if (entry.handle === handle) {
this.TOKENS.delete(token);
}
}
const token = crypto.randomBytes(32).toString('hex');
const tokenEntry = {
handle,
paths: Object.values(report).filter(v => Array.isArray(v)).flat().map(x => ({ path: x, hash: sha256(x) })),
};
this.TOKENS.set(token, tokenEntry);
return token;
}
}
export const router = express.Router();
router.post('/report', async (req, res) => {
try {
if (!req.user || !req.user.directories) {
return res.sendStatus(403);
}
const dataMaid = new DataMaidService(req.user.profile.handle, req.user.directories);
const rawReport = await dataMaid.generateReport();
const report = await dataMaid.sanitizeReport(rawReport);
const token = DataMaidService.generateToken(req.user.profile.handle, rawReport);
return res.json({ report, token });
} catch (error) {
console.error('[Data Maid] Error generating data maid report:', error);
return res.sendStatus(500);
}
});
router.post('/finalize', async (req, res) => {
try {
if (!req.user || !req.user.directories) {
return res.sendStatus(403);
}
if (!req.body.token) {
return res.sendStatus(400);
}
const token = req.body.token.toString();
if (!DataMaidService.TOKENS.has(token)) {
return res.sendStatus(403);
}
const tokenEntry = DataMaidService.TOKENS.get(token);
if (!tokenEntry || tokenEntry.handle !== req.user.profile.handle) {
return res.sendStatus(403);
}
// Remove the token after finalization
DataMaidService.TOKENS.delete(token);
return res.sendStatus(204);
} catch (error) {
console.error('[Data Maid] Error finalizing the token:', error);
return res.sendStatus(500);
}
});
router.get('/view', async (req, res) => {
try {
if (!req.user || !req.user.directories) {
return res.sendStatus(403);
}
if (!req.query.token || !req.query.hash) {
return res.sendStatus(400);
}
const token = req.query.token.toString();
const hash = req.query.hash.toString();
if (!DataMaidService.TOKENS.has(token)) {
return res.sendStatus(403);
}
const tokenEntry = DataMaidService.TOKENS.get(token);
if (!tokenEntry || tokenEntry.handle !== req.user.profile.handle) {
return res.sendStatus(403);
}
const fileEntry = tokenEntry.paths.find(entry => entry.hash === hash);
if (!fileEntry) {
return res.sendStatus(404);
}
if (!isPathUnderParent(req.user.directories.root, fileEntry.path)) {
console.warn('[Data Maid] Attempted access to a file outside of the user directory:', fileEntry.path);
return res.sendStatus(403);
}
const pathToFile = fileEntry.path;
const fileExists = fs.existsSync(pathToFile);
if (!fileExists) {
return res.sendStatus(404);
}
const fileBuffer = await fs.promises.readFile(pathToFile);
const mimeType = mime.lookup(pathToFile) || 'text/plain';
res.setHeader('Content-Type', mimeType);
return res.send(fileBuffer);
} catch (error) {
console.error('[Data Maid] Error viewing file:', error);
return res.sendStatus(500);
}
});
router.post('/delete', async (req, res) => {
try {
if (!req.user || !req.user.directories) {
return res.sendStatus(403);
}
const { token, hashes } = req.body;
if (!token || !Array.isArray(hashes) || hashes.length === 0) {
return res.sendStatus(400);
}
if (!DataMaidService.TOKENS.has(token)) {
return res.sendStatus(403);
}
const tokenEntry = DataMaidService.TOKENS.get(token);
if (!tokenEntry || tokenEntry.handle !== req.user.profile.handle) {
return res.sendStatus(403);
}
for (const hash of hashes) {
const fileEntry = tokenEntry.paths.find(entry => entry.hash === hash);
if (!fileEntry) {
continue;
}
if (!isPathUnderParent(req.user.directories.root, fileEntry.path)) {
console.warn('[Data Maid] Attempted deletion of a file outside of the user directory:', fileEntry.path);
continue;
}
const pathToFile = fileEntry.path;
const fileExists = fs.existsSync(pathToFile);
if (!fileExists) {
continue;
}
await fs.promises.unlink(pathToFile);
}
return res.sendStatus(204);
} catch (error) {
console.error('[Data Maid] Error deleting files:', error);
return res.sendStatus(500);
}
});
|