Files
pixiv/backend/services/history-manager.js
T

226 lines
5.2 KiB
JavaScript

const fs = require('fs-extra');
const path = require('path');
const { defaultLogger } = require('../utils/logger');
// 创建logger实例
const logger = defaultLogger.child('HistoryManager');
/**
* 历史记录管理器 - 负责下载历史的管理
*/
class HistoryManager {
constructor(dataPath) {
this.dataPath = dataPath;
this.historyFile = path.join(dataPath, 'download_history.json');
this.history = [];
this.initialized = false;
// 配置
this.maxHistoryItems = 500; // 最多保存500条历史记录
this.cleanupThreshold = 600; // 超过600条时开始清理
}
/**
* 初始化历史记录管理器
*/
async init() {
try {
await fs.ensureDir(this.dataPath);
await this.loadHistory();
// 初始化时清理历史记录
await this.cleanupHistory();
this.initialized = true;
logger.info('历史记录管理器初始化完成');
} catch (error) {
logger.error('历史记录管理器初始化失败:', error);
this.initialized = false;
}
}
/**
* 加载下载历史
*/
async loadHistory() {
try {
if (await fs.pathExists(this.historyFile)) {
this.history = await fs.readJson(this.historyFile);
}
} catch (error) {
logger.error('加载下载历史失败:', error);
this.history = [];
}
}
/**
* 保存下载历史
*/
async saveHistory() {
try {
await fs.writeJson(this.historyFile, this.history, { spaces: 2 });
} catch (error) {
logger.error('保存下载历史失败:', error);
}
}
/**
* 添加历史记录(简化版本)
*/
async addHistoryItem(item) {
// 简化历史记录信息
const simplifiedItem = {
id: item.id,
type: item.type,
status: item.status,
total_files: item.total_files,
completed_files: item.completed_files,
failed_files: item.failed_files,
start_time: item.start_time,
end_time: item.end_time,
// 只保存关键信息
artwork_id: item.artwork_id,
artist_name: item.artist_name,
artist_id: item.artist_id,
artwork_title: item.artwork_title,
mode: item.mode,
ranking_type: item.ranking_type,
task_description: item.task_description
};
this.history.unshift(simplifiedItem);
// 检查是否需要清理
if (this.history.length > this.cleanupThreshold) {
await this.cleanupHistory();
} else {
await this.saveHistory();
}
}
/**
* 清理历史记录
*/
async cleanupHistory() {
if (this.history.length <= this.maxHistoryItems) {
return;
}
logger.info(`清理历史记录: ${this.history.length} -> ${this.maxHistoryItems}`);
// 保留最新的记录
this.history = this.history.slice(0, this.maxHistoryItems);
await this.saveHistory();
}
/**
* 获取下载历史
*/
getDownloadHistory(offset = 0, limit = 50) {
const start = offset;
const end = offset + limit;
const history = this.history.slice(start, end);
return {
history,
total: this.history.length,
offset,
limit
};
}
/**
* 根据作品ID查找历史记录
*/
findHistoryByArtworkId(artworkId) {
return this.history.find(item => item.artwork_id === artworkId);
}
/**
* 根据作者ID查找历史记录
*/
findHistoryByArtistId(artistId) {
return this.history.filter(item => item.artist_id === artistId);
}
/**
* 删除历史记录
*/
async removeHistoryItem(artworkId) {
const index = this.history.findIndex(item => item.artwork_id === artworkId);
if (index > -1) {
this.history.splice(index, 1);
await this.saveHistory();
return true;
}
return false;
}
/**
* 清理历史记录
*/
async clearHistory() {
this.history = [];
await this.saveHistory();
}
/**
* 获取历史统计信息
*/
getHistoryStats() {
const stats = {
total: this.history.length,
completed: 0,
failed: 0,
partial: 0,
totalFiles: 0
};
for (const item of this.history) {
if (stats.hasOwnProperty(item.status)) {
stats[item.status]++;
}
if (item.completed_files) {
stats.totalFiles += item.completed_files;
}
}
return stats;
}
/**
* 获取最近下载的作品
*/
getRecentDownloads(limit = 10) {
return this.history.slice(0, limit);
}
/**
* 搜索历史记录
*/
searchHistory(query) {
const lowerQuery = query.toLowerCase();
return this.history.filter(item =>
(item.artwork_title && item.artwork_title.toLowerCase().includes(lowerQuery)) ||
(item.artist_name && item.artist_name.toLowerCase().includes(lowerQuery))
);
}
/**
* 手动清理历史记录(保留指定数量)
*/
async cleanupHistoryManually(keepCount = this.maxHistoryItems) {
if (this.history.length <= keepCount) {
return { cleaned: 0, remaining: this.history.length };
}
const cleanedCount = this.history.length - keepCount;
this.history = this.history.slice(0, keepCount);
await this.saveHistory();
return { cleaned: cleanedCount, remaining: this.history.length };
}
}
module.exports = HistoryManager;