mirror of
https://github.com/crystelf/crystelf-core.git
synced 2025-12-05 18:41:56 +00:00
Compare commits
3 Commits
fc2ffeb145
...
a055ea2407
| Author | SHA1 | Date | |
|---|---|---|---|
| a055ea2407 | |||
| 9fc89b0608 | |||
| 01609a1d27 |
231
README.md
231
README.md
@ -1,9 +1,224 @@
|
||||
## 构建:
|
||||
- npm i pnpm -g
|
||||
- pnpm i
|
||||
- pnpm build
|
||||
- bash start.sh
|
||||
# Crystelf Core
|
||||
|
||||
## 使用:
|
||||
- .env 环境变量
|
||||
- 其他使用说明请参考[Crystelf-docs](https://docs.crystelf.top)
|
||||
Crystelf Core is a modern backend service built with NestJS that provides comprehensive API support for the Crystelf project. It integrates WebSocket communication, Redis caching, file management, and automatic updates.
|
||||
|
||||
## Core Features
|
||||
|
||||
### API Services
|
||||
- **RESTful APIs**: Standardized API interfaces built on NestJS
|
||||
- **Swagger Documentation**: Auto-generated API docs at `/docs`
|
||||
- **Unified Response Format**: Standardized API response structure
|
||||
- **Global Exception Handling**: Centralized error handling and logging
|
||||
|
||||
### Real-time Communication
|
||||
- **WebSocket Support**: Real-time communication using `@nestjs/websockets`
|
||||
- **Client Management**: Intelligent WebSocket client connection management
|
||||
- **Message Routing**: Flexible message processing and distribution
|
||||
- **Heartbeat Monitoring**: Automatic client connection status monitoring
|
||||
|
||||
### Data Management
|
||||
- **Redis Integration**: High-performance caching and data storage
|
||||
- **File System**: Local file management with CDN support
|
||||
- **Data Persistence**: Local JSON file data storage
|
||||
- **Automatic Sync**: Scheduled data updates
|
||||
|
||||
### Security & Monitoring
|
||||
- **Token Authentication**: API access control via Bearer tokens
|
||||
- **Request Rate Limiting**: IP-level request frequency control
|
||||
- **Traffic Control**: Granular traffic monitoring and control
|
||||
- **Logging**: Detailed request and error logs
|
||||
|
||||
## Architecture
|
||||
|
||||
### Technology Stack
|
||||
- **Framework**: NestJS v11
|
||||
- **Language**: TypeScript
|
||||
- **Runtime**: Node.js
|
||||
- **Package Manager**: pnpm
|
||||
|
||||
### Key Dependencies
|
||||
- **WebSocket**: `@nestjs/websockets`, `ws`
|
||||
- **Caching**: `ioredis`
|
||||
- **Documentation**: `@nestjs/swagger`
|
||||
- **File Processing**: `multer`, `stream-throttle`
|
||||
- **Git Operations**: `simple-git`
|
||||
- **Image Processing**: `image-type`
|
||||
|
||||
## Quick Start
|
||||
|
||||
### Prerequisites
|
||||
- Node.js (v18+ recommended)
|
||||
- Redis server
|
||||
- pnpm package manager
|
||||
|
||||
### Installation
|
||||
```bash
|
||||
pnpm install
|
||||
```
|
||||
|
||||
### Environment Setup
|
||||
1. Copy the environment example file:
|
||||
```bash
|
||||
cp .envExample .env
|
||||
```
|
||||
|
||||
2. Edit `.env` with your configuration:
|
||||
```env
|
||||
# Redis Configuration
|
||||
RD_PORT=6379
|
||||
RD_ADD=127.0.0.1
|
||||
|
||||
# WebSocket Secret
|
||||
WS_SECRET=your-secret-key
|
||||
|
||||
# API Access Token
|
||||
TOKEN=your-api-token
|
||||
|
||||
# OpenList API Configuration
|
||||
OPENLIST_API_BASE_URL=http://127.0.0.1:5244
|
||||
OPENLIST_API_BASE_USERNAME=username
|
||||
OPENLIST_API_BASE_PASSWORD=password
|
||||
OPENLIST_API_MEME_PATH=//crystelf//meme
|
||||
OPENLIST_API_CDN_PATH=//crystelf//cdn
|
||||
OPENLIST_API_BASE_PATH=D:\alist
|
||||
```
|
||||
|
||||
### Start the Service
|
||||
```bash
|
||||
# Development mode
|
||||
pnpm start:dev
|
||||
|
||||
# Production mode
|
||||
pnpm start:prod
|
||||
|
||||
# Using startup script (auto-restart)
|
||||
./start.sh
|
||||
```
|
||||
|
||||
After startup:
|
||||
- API Service: http://localhost:6868/api
|
||||
- API Documentation: http://localhost:6868/docs
|
||||
|
||||
## API Endpoints
|
||||
|
||||
### Bot Management
|
||||
- `POST /api/bot/getBotId` - Get online bot list
|
||||
- `POST /api/bot/getGroupInfo` - Get group information
|
||||
- `POST /api/bot/reportBots` - Broadcast bot status sync
|
||||
- `POST /api/bot/sendMessage` - Send group message
|
||||
- `POST /api/bot/broadcast` - Broadcast to all groups
|
||||
|
||||
### Text Management (Words)
|
||||
- `POST /api/words/getText` - Get random text
|
||||
- `POST /api/words/reloadText` - Reload specified text (auth required)
|
||||
- `POST /api/words/listWords` - Get text list
|
||||
|
||||
### Meme Management
|
||||
- `GET /api/meme` - Get random meme
|
||||
- `POST /api/meme/get` - Get random meme
|
||||
- `POST /api/meme/upload` - Upload meme (auth required)
|
||||
|
||||
### System Management
|
||||
- `POST /api/system/systemRestart` - System restart (auth required)
|
||||
- `POST /api/system/getRestartTime` - Get last restart duration (auth required)
|
||||
|
||||
### CDN Services
|
||||
- `GET /cdn/*` - Access CDN resources
|
||||
- `GET /public/files/*` - Access public files
|
||||
- `GET /public/cdn/*` - Access public CDN resources
|
||||
|
||||
## Key Functionality
|
||||
|
||||
### Auto-Update System
|
||||
- **Git Integration**: Automatically detects and pulls code updates
|
||||
- **Dependency Management**: Auto-installs dependencies and builds
|
||||
- **Scheduled Checks**: Configurable update checking intervals
|
||||
- **Multi-Repository Support**: Handles main repo and submodules
|
||||
|
||||
### File Sync Service
|
||||
- **OpenList Integration**: Seamless integration with OpenList service
|
||||
- **Smart Comparison**: Intelligent local vs remote file comparison
|
||||
- **Resume Support**: Large file transfer with resume capability
|
||||
- **Directory Recursion**: Complete directory structure synchronization
|
||||
|
||||
### Traffic Control System
|
||||
- **IP Rate Limiting**: Request frequency limits based on IP
|
||||
- **Traffic Statistics**: Real-time usage statistics
|
||||
- **Smart Throttling**: Intelligent speed limiting based on user permissions
|
||||
- **Concurrency Control**: Connection limits to prevent resource abuse
|
||||
|
||||
### Data Caching
|
||||
- **Redis Cache**: High-performance Redis caching system
|
||||
- **Local Cache**: Fast in-memory caching
|
||||
- **Cache Strategy**: Intelligent expiration and cleanup policies
|
||||
- **Data Synchronization**: Local and Redis data sync mechanisms
|
||||
|
||||
## Security Features
|
||||
|
||||
### Authentication
|
||||
- **Token Authentication**: Bearer token-based API authentication
|
||||
- **WebSocket Authentication**: Secret key authentication for WebSocket connections
|
||||
- **Access Control**: Fine-grained API permission control
|
||||
|
||||
### Security Protection
|
||||
- **Path Validation**: Strict file path access verification
|
||||
- **Input Filtering**: Comprehensive user input validation
|
||||
- **Error Handling**: Secure error message responses
|
||||
- **Audit Logging**: Complete operation logs
|
||||
|
||||
## Monitoring & Operations
|
||||
|
||||
### Logging System
|
||||
- **Request Logs**: Detailed HTTP request access logs
|
||||
- **Error Logs**: System errors and exception logs
|
||||
- **Operation Logs**: Important system operation records
|
||||
- **Performance Logs**: System performance metrics
|
||||
|
||||
### Health Checks
|
||||
- **System Status**: Real-time system health monitoring
|
||||
- **Dependency Checks**: External service health verification
|
||||
- **Resource Monitoring**: System resource usage tracking
|
||||
|
||||
## Configuration
|
||||
|
||||
### Environment Variables
|
||||
| Variable | Description | Default |
|
||||
|----------|-------------|---------|
|
||||
| RD_PORT | Redis port | 6379 |
|
||||
| RD_ADD | Redis address | 127.0.0.1 |
|
||||
| WS_SECRET | WebSocket auth secret | - |
|
||||
| TOKEN | API access token | - |
|
||||
| OPENLIST_API_BASE_URL | OpenList API URL | http://127.0.0.1:5244 |
|
||||
| OPENLIST_API_MEME_PATH | Meme remote path | //crystelf//meme |
|
||||
| OPENLIST_API_CDN_PATH | CDN remote path | //crystelf//cdn |
|
||||
|
||||
### Directory Structure
|
||||
- `logs/`: Log file storage
|
||||
- `config/`: Configuration files
|
||||
- `temp/`: Temporary files
|
||||
- `private/data/`: User data storage
|
||||
- `private/words/`: Text file storage
|
||||
- `private/meme/`: Meme file storage
|
||||
- `public/`: Public files and CDN resources
|
||||
|
||||
## Contributing
|
||||
|
||||
1. Fork the repository
|
||||
2. Create your feature branch (`git checkout -b feature/amazing-feature`)
|
||||
3. Commit your changes (`git commit -m 'Add some amazing feature'`)
|
||||
4. Push to the branch (`git push origin feature/amazing-feature`)
|
||||
5. Create a Pull Request
|
||||
|
||||
## License
|
||||
|
||||
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
|
||||
|
||||
## Links
|
||||
|
||||
- [NestJS Documentation](https://docs.nestjs.com/)
|
||||
- [Project Repository](https://github.com/your-repo/crystelf-core)
|
||||
- [Issue Tracker](https://github.com/your-repo/crystelf-core/issues)
|
||||
|
||||
---
|
||||
|
||||
Crystelf Core provides stable and efficient backend support for the Crystelf project.
|
||||
@ -3,8 +3,8 @@
|
||||
"version": "1.0.0",
|
||||
"description": "crystelf - working together for a bright future",
|
||||
"author": "Jerryplusy",
|
||||
"private": true,
|
||||
"license": "UNLICENSED",
|
||||
"private": false,
|
||||
"license": "MIT",
|
||||
"scripts": {
|
||||
"build": "nest build",
|
||||
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
|
||||
|
||||
@ -141,7 +141,7 @@ export class FilesService {
|
||||
this.logger.error(`下载文件失败: ${localFilePath}`, error);
|
||||
}
|
||||
} else {
|
||||
this.logger.log('本地文件已是最新..');
|
||||
//this.logger.log('本地文件已是最新..');
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -46,6 +46,8 @@ class MemeRequestDto {
|
||||
@ApiTags('Meme')
|
||||
export class MemeController {
|
||||
private readonly logger = new Logger(MemeController.name);
|
||||
private static readonly activeConnections = new Map<string, number>();
|
||||
private static readonly maxConnectionsPerIp = 3; // 每IP最大并发连接数
|
||||
|
||||
constructor(
|
||||
@Inject(MemeService)
|
||||
@ -96,6 +98,33 @@ export class MemeController {
|
||||
return this.handleMemeRequest(query, res, ip, 'GET');
|
||||
}
|
||||
|
||||
/**
|
||||
* 增加IP活跃连接数
|
||||
* @param ip IP地址
|
||||
* @returns 是否成功增加
|
||||
*/
|
||||
private incrementActiveConnections(ip: string): boolean {
|
||||
const current = MemeController.activeConnections.get(ip) || 0;
|
||||
if (current >= MemeController.maxConnectionsPerIp) {
|
||||
return false;
|
||||
}
|
||||
MemeController.activeConnections.set(ip, current + 1);
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* 减少IP活跃连接数
|
||||
* @param ip IP地址
|
||||
*/
|
||||
private decrementActiveConnections(ip: string): void {
|
||||
const current = MemeController.activeConnections.get(ip) || 0;
|
||||
if (current <= 1) {
|
||||
MemeController.activeConnections.delete(ip);
|
||||
} else {
|
||||
MemeController.activeConnections.set(ip, current - 1);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 处理请求
|
||||
* @param dto
|
||||
@ -111,6 +140,15 @@ export class MemeController {
|
||||
method: string,
|
||||
) {
|
||||
try {
|
||||
if (!this.incrementActiveConnections(ip)) {
|
||||
this.logger.warn(`[${method}] ${ip} 并发连接数超限`);
|
||||
res.status(429).json({
|
||||
success: false,
|
||||
message: '请求过于频繁,请稍后再试',
|
||||
});
|
||||
return;
|
||||
}
|
||||
|
||||
const realToken = dto.token;
|
||||
const hasValidToken =
|
||||
realToken && this.toolsService.checkToken(realToken);
|
||||
@ -121,6 +159,7 @@ export class MemeController {
|
||||
);
|
||||
|
||||
if (!memePath) {
|
||||
this.decrementActiveConnections(ip);
|
||||
throw ErrorUtil.createNotFoundError('表情包');
|
||||
}
|
||||
|
||||
@ -146,38 +185,79 @@ export class MemeController {
|
||||
type?.mime === 'image/webp' ||
|
||||
type?.mime === 'image/apng';
|
||||
|
||||
//this.logger.debug(type?.mime);
|
||||
const singleRate = 200 * 1024; // 100 KB/s * 3
|
||||
const singleRate = 400 * 1024; // 400 KB/s
|
||||
const maxThreads = 2;
|
||||
const maxRate = singleRate * maxThreads;
|
||||
const maxRate = singleRate * maxThreads; // 800 KB/s 每IP
|
||||
const trafficWindow = 60; // 流量统计窗口:60秒
|
||||
const cleanup = () => {
|
||||
this.decrementActiveConnections(ip);
|
||||
};
|
||||
|
||||
if (hasValidToken) {
|
||||
this.logger.log(`[${method}] 有token的入不限速 => ${memePath}`);
|
||||
stream.pipe(res);
|
||||
stream.on('end', cleanup);
|
||||
stream.on('error', cleanup);
|
||||
} else {
|
||||
stream.on('data', async (chunk) => {
|
||||
const bytes = chunk.length;
|
||||
const total = await this.redisService.incrementIpTraffic(
|
||||
let totalBytes = 0;
|
||||
|
||||
stream.on('data', (chunk) => {
|
||||
totalBytes += chunk.length;
|
||||
});
|
||||
|
||||
stream.on('end', async () => {
|
||||
cleanup();
|
||||
try {
|
||||
await this.redisService.incrementIpTraffic(
|
||||
ip,
|
||||
bytes,
|
||||
1,
|
||||
totalBytes,
|
||||
trafficWindow,
|
||||
);
|
||||
if (total > maxRate && !isAnimatedImage) {
|
||||
this.logger.warn(`[${method}] ${ip} 超过速率限制,断开连接..`);
|
||||
stream.destroy();
|
||||
res.end();
|
||||
} catch (error) {
|
||||
this.logger.error(`更新流量统计失败: ${error.message}`);
|
||||
}
|
||||
});
|
||||
|
||||
stream.on('error', (error) => {
|
||||
cleanup();
|
||||
this.logger.error(`流传输错误: ${error.message}`);
|
||||
});
|
||||
try {
|
||||
const currentTraffic = await this.redisService.getIpTraffic(ip);
|
||||
if (currentTraffic > maxRate && !isAnimatedImage) {
|
||||
this.logger.warn(
|
||||
`[${method}] ${ip} 流量超限 (${currentTraffic} > ${maxRate}), 拒绝请求`,
|
||||
);
|
||||
stream.destroy();
|
||||
this.decrementActiveConnections(ip);
|
||||
res.status(429).json({
|
||||
success: false,
|
||||
message: '请求过于频繁,请稍后再试',
|
||||
});
|
||||
return;
|
||||
}
|
||||
} catch (error) {
|
||||
this.logger.error(`检查流量失败: ${error.message}`);
|
||||
}
|
||||
|
||||
const throttle = new Throttle({ rate: singleRate });
|
||||
this.logger.log(
|
||||
`[${method}] 白嫖入限速! (${ip}) => ${memePath}
|
||||
`,
|
||||
`[${method}] 白嫖入限速! (${ip}) => ${memePath} (${isAnimatedImage ? '动态图片不限速' : '静态图片限速'})`,
|
||||
);
|
||||
|
||||
if (isAnimatedImage) {
|
||||
stream.pipe(res);
|
||||
} else {
|
||||
stream.pipe(throttle).pipe(res);
|
||||
}
|
||||
}
|
||||
} catch (e) {
|
||||
throw ErrorUtil.handleUnknownError(e, '获取表情包失败', 'handleMemeRequest');
|
||||
this.decrementActiveConnections(ip);
|
||||
throw ErrorUtil.handleUnknownError(
|
||||
e,
|
||||
'获取表情包失败',
|
||||
'handleMemeRequest',
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user