Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
4ee7e439c0 | ||
|
|
503463e1d0 | ||
|
|
5f61c82dee | ||
|
|
2139ca0e8c | ||
|
|
01332c7db5 |
@@ -1,495 +0,0 @@
|
|||||||
# Demo API Guide для Лэндинга
|
|
||||||
|
|
||||||
## Обзор
|
|
||||||
|
|
||||||
Demo API предоставляет функционал для демонстрации основных возможностей платформы NoCopy на лэндинге без необходимости регистрации пользователя.
|
|
||||||
|
|
||||||
## Ключевые Особенности
|
|
||||||
|
|
||||||
✅ **Анонимная загрузка файлов** - без авторизации
|
|
||||||
✅ **Хранение в S3** - безопасное облачное хранилище
|
|
||||||
✅ **Автоматическая очистка** - удаление через 24 часа
|
|
||||||
✅ **Ограничения по IP** - защита от злоупотреблений
|
|
||||||
✅ **Размер лимитов** - до 50 MB на файл, 10 файлов в день
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## API Эндпоинты
|
|
||||||
|
|
||||||
### 1. Загрузка файла
|
|
||||||
|
|
||||||
```
|
|
||||||
POST /api/demo/upload
|
|
||||||
Content-Type: multipart/form-data
|
|
||||||
```
|
|
||||||
|
|
||||||
**Параметры:**
|
|
||||||
- `file` (required) - файл для загрузки (jpg, png, pdf, docx, mp3 и т.д.)
|
|
||||||
|
|
||||||
**Примеры ответа:**
|
|
||||||
|
|
||||||
✅ Успех (200 OK):
|
|
||||||
```json
|
|
||||||
{
|
|
||||||
"sessionId": "550e8400-e29b-41d4-a716-446655440000",
|
|
||||||
"fileName": "document.pdf",
|
|
||||||
"fileType": "document",
|
|
||||||
"fileSize": 1048576,
|
|
||||||
"status": "COMPLETED",
|
|
||||||
"message": "File uploaded successfully",
|
|
||||||
"uploadedBytes": 1048576,
|
|
||||||
"progressPercentage": 100
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
❌ Файл слишком большой (400):
|
|
||||||
```json
|
|
||||||
{
|
|
||||||
"sessionId": null,
|
|
||||||
"fileName": null,
|
|
||||||
"fileType": null,
|
|
||||||
"fileSize": 0,
|
|
||||||
"status": "FAILED",
|
|
||||||
"message": "File too large. Max size: 50 MB",
|
|
||||||
"uploadedBytes": 0,
|
|
||||||
"progressPercentage": 0
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
❌ Лимит на день превышен (400):
|
|
||||||
```json
|
|
||||||
{
|
|
||||||
"sessionId": null,
|
|
||||||
"status": "FAILED",
|
|
||||||
"message": "Daily limit reached. Max 10 files per day"
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
### 2. Получение информации о файле
|
|
||||||
|
|
||||||
```
|
|
||||||
GET /api/demo/file/{sessionId}
|
|
||||||
```
|
|
||||||
|
|
||||||
**Параметры:**
|
|
||||||
- `sessionId` (path) - ID сессии из ответа загрузки
|
|
||||||
|
|
||||||
**Ответ (200 OK):**
|
|
||||||
```json
|
|
||||||
{
|
|
||||||
"sessionId": "550e8400-e29b-41d4-a716-446655440000",
|
|
||||||
"fileName": "document.pdf",
|
|
||||||
"fileType": "document",
|
|
||||||
"fileSize": 1048576,
|
|
||||||
"status": "COMPLETED",
|
|
||||||
"createdAt": "2025-07-01T10:30:00Z",
|
|
||||||
"expiresAt": "2025-07-02T10:30:00Z",
|
|
||||||
"searchResultsCount": null,
|
|
||||||
"mimeType": "application/pdf"
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
### 3. Запуск поиска похожих файлов
|
|
||||||
|
|
||||||
```
|
|
||||||
POST /api/demo/search/{sessionId}
|
|
||||||
```
|
|
||||||
|
|
||||||
**Параметры:**
|
|
||||||
- `sessionId` (path) - ID сессии
|
|
||||||
|
|
||||||
**Ответ (200 OK):**
|
|
||||||
```json
|
|
||||||
{
|
|
||||||
"sessionId": "550e8400-e29b-41d4-a716-446655440000",
|
|
||||||
"status": "COMPLETED",
|
|
||||||
"resultsCount": 3,
|
|
||||||
"matchPercentage": 92.5,
|
|
||||||
"startedAt": "2025-07-01T10:31:00Z",
|
|
||||||
"completedAt": "2025-07-01T10:31:05Z",
|
|
||||||
"processingTimeMs": 5000,
|
|
||||||
"similarFiles": [
|
|
||||||
{
|
|
||||||
"fileId": "demo_abc123",
|
|
||||||
"fileName": "similar_image_1.jpg",
|
|
||||||
"similarityScore": 0.95,
|
|
||||||
"source": "web"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fileId": "demo_def456",
|
|
||||||
"fileName": "similar_image_2.png",
|
|
||||||
"similarityScore": 0.90,
|
|
||||||
"source": "database"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"fileId": "demo_ghi789",
|
|
||||||
"fileName": "duplicate_document.pdf",
|
|
||||||
"similarityScore": 0.85,
|
|
||||||
"source": "web"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"message": "Search completed successfully"
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
### 4. Очистка сессии
|
|
||||||
|
|
||||||
```
|
|
||||||
DELETE /api/demo/cleanup/{sessionId}
|
|
||||||
```
|
|
||||||
|
|
||||||
**Параметры:**
|
|
||||||
- `sessionId` (path) - ID сессии
|
|
||||||
|
|
||||||
**Ответ (200 OK):**
|
|
||||||
```json
|
|
||||||
{
|
|
||||||
"sessionId": "550e8400-e29b-41d4-a716-446655440000",
|
|
||||||
"status": "CLEANED",
|
|
||||||
"message": "Session cleaned successfully",
|
|
||||||
"progressPercentage": 100
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
### 5. Health Check
|
|
||||||
|
|
||||||
```
|
|
||||||
GET /api/demo/health
|
|
||||||
```
|
|
||||||
|
|
||||||
**Ответ (200 OK):**
|
|
||||||
```json
|
|
||||||
{
|
|
||||||
"status": "HEALTHY",
|
|
||||||
"message": "Demo service is ready"
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## Лимиты и Ограничения
|
|
||||||
|
|
||||||
| Параметр | Значение | Описание |
|
|
||||||
|----------|----------|----------|
|
|
||||||
| Max файл | 50 MB | Максимальный размер одного файла |
|
|
||||||
| Файлов в день | 10 | Максимум файлов с одного IP в день |
|
|
||||||
| TTL сессии | 24 часа | Время жизни демо-сессии |
|
|
||||||
| Cleanup интервал | 30 минут | Как часто очищаются истекшие файлы |
|
|
||||||
| Поддерживаемые типы | image, document, audio | Типы файлов для демо |
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## Поддерживаемые Типы Файлов
|
|
||||||
|
|
||||||
**Изображения:**
|
|
||||||
- JPG/JPEG (.jpg, .jpeg)
|
|
||||||
- PNG (.png)
|
|
||||||
- GIF (.gif)
|
|
||||||
- WebP (.webp)
|
|
||||||
|
|
||||||
**Документы:**
|
|
||||||
- PDF (.pdf)
|
|
||||||
- Word (.docx, .doc)
|
|
||||||
- Excel (.xlsx, .xls)
|
|
||||||
- Text (.txt)
|
|
||||||
|
|
||||||
**Аудио:**
|
|
||||||
- MP3 (.mp3)
|
|
||||||
- WAV (.wav)
|
|
||||||
- M4A (.m4a)
|
|
||||||
- OGG (.ogg)
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## Примеры использования
|
|
||||||
|
|
||||||
### cURL
|
|
||||||
|
|
||||||
**Загрузка файла:**
|
|
||||||
```bash
|
|
||||||
curl -X POST http://localhost:8080/api/demo/upload \
|
|
||||||
-F "file=@document.pdf"
|
|
||||||
```
|
|
||||||
|
|
||||||
**Получение информации:**
|
|
||||||
```bash
|
|
||||||
curl http://localhost:8080/api/demo/file/550e8400-e29b-41d4-a716-446655440000
|
|
||||||
```
|
|
||||||
|
|
||||||
**Запуск поиска:**
|
|
||||||
```bash
|
|
||||||
curl -X POST http://localhost:8080/api/demo/search/550e8400-e29b-41d4-a716-446655440000
|
|
||||||
```
|
|
||||||
|
|
||||||
**Очистка:**
|
|
||||||
```bash
|
|
||||||
curl -X DELETE http://localhost:8080/api/demo/cleanup/550e8400-e29b-41d4-a716-446655440000
|
|
||||||
```
|
|
||||||
|
|
||||||
### JavaScript
|
|
||||||
|
|
||||||
**Загрузка файла:**
|
|
||||||
```javascript
|
|
||||||
const formData = new FormData();
|
|
||||||
formData.append('file', fileInput.files[0]);
|
|
||||||
|
|
||||||
const response = await fetch('http://localhost:8080/api/demo/upload', {
|
|
||||||
method: 'POST',
|
|
||||||
body: formData
|
|
||||||
});
|
|
||||||
|
|
||||||
const result = await response.json();
|
|
||||||
const sessionId = result.sessionId;
|
|
||||||
```
|
|
||||||
|
|
||||||
**Получение информации:**
|
|
||||||
```javascript
|
|
||||||
const info = await fetch(`http://localhost:8080/api/demo/file/${sessionId}`)
|
|
||||||
.then(r => r.json());
|
|
||||||
```
|
|
||||||
|
|
||||||
**Запуск поиска:**
|
|
||||||
```javascript
|
|
||||||
const search = await fetch(`http://localhost:8080/api/demo/search/${sessionId}`, {
|
|
||||||
method: 'POST'
|
|
||||||
})
|
|
||||||
.then(r => r.json());
|
|
||||||
```
|
|
||||||
|
|
||||||
### Python
|
|
||||||
|
|
||||||
**Загрузка файла:**
|
|
||||||
```python
|
|
||||||
import requests
|
|
||||||
|
|
||||||
files = {'file': open('document.pdf', 'rb')}
|
|
||||||
response = requests.post('http://localhost:8080/api/demo/upload', files=files)
|
|
||||||
result = response.json()
|
|
||||||
session_id = result['sessionId']
|
|
||||||
```
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## Обработка Ошибок
|
|
||||||
|
|
||||||
### 400 Bad Request - Файл слишком большой
|
|
||||||
```json
|
|
||||||
{
|
|
||||||
"status": "FAILED",
|
|
||||||
"message": "File too large. Max size: 50 MB"
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
**Решение:** Загрузите файл меньшего размера
|
|
||||||
|
|
||||||
### 400 Bad Request - Неподдерживаемый тип файла
|
|
||||||
```json
|
|
||||||
{
|
|
||||||
"status": "FAILED",
|
|
||||||
"message": "File type not supported for demo"
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
**Решение:** Используйте поддерживаемый тип файла
|
|
||||||
|
|
||||||
### 400 Bad Request - Лимит на день
|
|
||||||
```json
|
|
||||||
{
|
|
||||||
"status": "FAILED",
|
|
||||||
"message": "Daily limit reached. Max 10 files per day"
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
**Решение:** Подождите до следующего дня или зарегистрируйтесь
|
|
||||||
|
|
||||||
### 404 Not Found - Сессия не найдена
|
|
||||||
```json
|
|
||||||
{
|
|
||||||
"status": "ERROR"
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
**Решение:** Проверьте правильность sessionId
|
|
||||||
|
|
||||||
### 500 Internal Server Error
|
|
||||||
```json
|
|
||||||
{
|
|
||||||
"status": "FAILED",
|
|
||||||
"message": "Upload failed: ..."
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
**Решение:** Попробуйте позже или свяжитесь с поддержкой
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## Cleanup-сервис (важное объяснение)
|
|
||||||
|
|
||||||
### Что делает Cleanup-сервис?
|
|
||||||
|
|
||||||
Это автоматизированный сервис, который периодически:
|
|
||||||
|
|
||||||
1. **Ищет истекшие сессии** (старше 24 часов)
|
|
||||||
2. **Удаляет файлы из S3** для экономии места
|
|
||||||
3. **Помечает сессии как CLEANED** в БД
|
|
||||||
4. **Удаляет FAILED сессии** (старше 1 часа)
|
|
||||||
|
|
||||||
### Почему это нужно?
|
|
||||||
|
|
||||||
- **Экономия дискового пространства** - S3 стоит денег
|
|
||||||
- **Соблюдение GDPR/приватности** - данные не лежат вечно
|
|
||||||
- **Производительность БД** - не растёт бесконечно
|
|
||||||
- **Безопасность** - временные данные не остаются в системе
|
|
||||||
|
|
||||||
### Как это работает?
|
|
||||||
|
|
||||||
```
|
|
||||||
Каждые 30 минут:
|
|
||||||
┌─────────────────────────────────────┐
|
|
||||||
│ 1. Найти истекшие сессии │
|
|
||||||
│ WHERE expiresAt <= NOW() │
|
|
||||||
└─────────────────────────────────────┘
|
|
||||||
↓
|
|
||||||
┌─────────────────────────────────────┐
|
|
||||||
│ 2. Для каждой сессии: │
|
|
||||||
│ - Удалить из S3 │
|
|
||||||
│ - Обновить статус = CLEANED │
|
|
||||||
└─────────────────────────────────────┘
|
|
||||||
```
|
|
||||||
|
|
||||||
### В конфиге (application.yaml):
|
|
||||||
|
|
||||||
```yaml
|
|
||||||
demo:
|
|
||||||
max-file-size: 52428800 # 50 MB
|
|
||||||
max-files-per-day: 10 # макс 10 файлов в день
|
|
||||||
s3-path: demo/ # путь в S3
|
|
||||||
session-ttl-hours: 24 # 24 часа жизни сессии
|
|
||||||
cleanup-interval: 30 # cleanup каждые 30 минут
|
|
||||||
failed-cleanup-interval: 60 # очистка FAILED каждый час
|
|
||||||
```
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## Статистика и Мониторинг
|
|
||||||
|
|
||||||
### Метрики для отслеживания
|
|
||||||
|
|
||||||
```java
|
|
||||||
// Количество активных демо-сессий
|
|
||||||
long activeSessions = demoCleanupService.getActiveDemoSessionsCount();
|
|
||||||
|
|
||||||
// Общий размер демо-данных в S3
|
|
||||||
long dataSizeInBytes = demoCleanupService.getActiveDemoDataSize();
|
|
||||||
long dataSizeInMB = dataSizeInBytes / (1024 * 1024);
|
|
||||||
```
|
|
||||||
|
|
||||||
### Логирование
|
|
||||||
|
|
||||||
Все операции логируются:
|
|
||||||
```
|
|
||||||
[INFO] Demo upload started for IP: 192.168.1.1
|
|
||||||
[INFO] File uploaded to S3 at: demo/550e8400.../test.jpg
|
|
||||||
[INFO] Starting search for session: 550e8400-e29b-41d4...
|
|
||||||
[INFO] Demo cleanup completed. Cleaned 5 sessions
|
|
||||||
```
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## Best Practices для Frontend
|
|
||||||
|
|
||||||
1. **Показывайте progress** - используйте `progressPercentage`
|
|
||||||
2. **Обрабатывайте ошибки** - проверяйте `status` == "FAILED"
|
|
||||||
3. **Очищайте сессии** - вызывайте `/cleanup` перед уходом
|
|
||||||
4. **Не перезагружайте** - максимум 10 файлов в день
|
|
||||||
5. **Таймауты** - сессия истекает через 24 часа
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## Интеграция на лэндинге
|
|
||||||
|
|
||||||
### Step 1: Drag & Drop зона
|
|
||||||
```html
|
|
||||||
<div id="dropZone" class="upload-area">
|
|
||||||
Перетащите файл сюда или нажмите
|
|
||||||
<input type="file" id="fileInput" />
|
|
||||||
</div>
|
|
||||||
```
|
|
||||||
|
|
||||||
### Step 2: Загрузка
|
|
||||||
```javascript
|
|
||||||
const upload = async (file) => {
|
|
||||||
const formData = new FormData();
|
|
||||||
formData.append('file', file);
|
|
||||||
|
|
||||||
const res = await fetch('/api/demo/upload', {
|
|
||||||
method: 'POST',
|
|
||||||
body: formData
|
|
||||||
});
|
|
||||||
|
|
||||||
return res.json();
|
|
||||||
};
|
|
||||||
```
|
|
||||||
|
|
||||||
### Step 3: Демо поиска
|
|
||||||
```javascript
|
|
||||||
const startDemo = async (sessionId) => {
|
|
||||||
const res = await fetch(`/api/demo/search/${sessionId}`, {
|
|
||||||
method: 'POST'
|
|
||||||
});
|
|
||||||
|
|
||||||
return res.json();
|
|
||||||
};
|
|
||||||
```
|
|
||||||
|
|
||||||
### Step 4: Очистка
|
|
||||||
```javascript
|
|
||||||
const endDemo = async (sessionId) => {
|
|
||||||
await fetch(`/api/demo/cleanup/${sessionId}`, {
|
|
||||||
method: 'DELETE'
|
|
||||||
});
|
|
||||||
};
|
|
||||||
```
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## FAQ
|
|
||||||
|
|
||||||
**Q: Мой файл исчезает через 24 часа?**
|
|
||||||
A: Да, это запланировано. Используйте полную версию для постоянного хранения.
|
|
||||||
|
|
||||||
**Q: Могу ли я загрузить больше 10 файлов?**
|
|
||||||
A: Только если зарегистрируетесь. Демо имеет лимиты в целях защиты.
|
|
||||||
|
|
||||||
**Q: Почему мне не дают загрузить файл больше 50 MB?**
|
|
||||||
A: Это демо, которое работает на общих ресурсах. Полная версия поддерживает файлы до 1 GB.
|
|
||||||
|
|
||||||
**Q: Где хранятся мои файлы?**
|
|
||||||
A: В AWS S3, в отдельной папке `demo/`. Никто другой не может получить к ним доступ.
|
|
||||||
|
|
||||||
**Q: Что если мой IP заблокирован?**
|
|
||||||
A: Попробуйте через день или зарегистрируйтесь для безлимитного доступа.
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## Мониторинг Health
|
|
||||||
|
|
||||||
```bash
|
|
||||||
curl http://localhost:8080/api/demo/health
|
|
||||||
```
|
|
||||||
|
|
||||||
Если получите `"status": "HEALTHY"` - все работает.
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
**Последнее обновление:** 2026-07-01
|
|
||||||
**Версия API:** 1.0.0
|
|
||||||
**Статус:** Production Ready
|
|
||||||
@@ -1,58 +0,0 @@
|
|||||||
# Demo API Configuration для application.yaml или application.properties
|
|
||||||
|
|
||||||
# ============================================
|
|
||||||
# DEMO API Settings
|
|
||||||
# ============================================
|
|
||||||
demo:
|
|
||||||
# Максимальный размер файла для загрузки (в байтах)
|
|
||||||
# Default: 52428800 (50 MB)
|
|
||||||
max-file-size: 52428800
|
|
||||||
|
|
||||||
# Максимальное количество файлов в день на один IP адрес
|
|
||||||
# Default: 10
|
|
||||||
max-files-per-day: 10
|
|
||||||
|
|
||||||
# Путь в S3 для хранения демо-файлов
|
|
||||||
# Default: demo/
|
|
||||||
s3-path: demo/
|
|
||||||
|
|
||||||
# Время жизни демо-сессии в часах
|
|
||||||
# Default: 24
|
|
||||||
session-ttl-hours: 24
|
|
||||||
|
|
||||||
# Интервал очистки истекших сессий (в миллисекундах)
|
|
||||||
# Default: 1800000 (30 минут)
|
|
||||||
cleanup-interval: 1800000
|
|
||||||
|
|
||||||
# Интервал очистки FAILED сессий (в миллисекундах)
|
|
||||||
# Default: 3600000 (1 час)
|
|
||||||
failed-cleanup-interval: 3600000
|
|
||||||
|
|
||||||
# ============================================
|
|
||||||
# S3 Configuration (если используется)
|
|
||||||
# ============================================
|
|
||||||
aws:
|
|
||||||
s3:
|
|
||||||
bucket: your-bucket-name
|
|
||||||
region: eu-west-1
|
|
||||||
access-key: ${AWS_ACCESS_KEY}
|
|
||||||
secret-key: ${AWS_SECRET_KEY}
|
|
||||||
|
|
||||||
# ============================================
|
|
||||||
# Logging для Demo Service
|
|
||||||
# ============================================
|
|
||||||
logging:
|
|
||||||
level:
|
|
||||||
ru.soune.nocopy.service.demo: DEBUG
|
|
||||||
ru.soune.nocopy.controller.demo: DEBUG
|
|
||||||
ru.soune.nocopy.service.file.cloud: DEBUG
|
|
||||||
|
|
||||||
# ============================================
|
|
||||||
# Task Scheduling для Cleanup
|
|
||||||
# ============================================
|
|
||||||
spring:
|
|
||||||
task:
|
|
||||||
scheduling:
|
|
||||||
pool:
|
|
||||||
size: 2
|
|
||||||
thread-name-prefix: demo-cleanup-
|
|
||||||
@@ -1,357 +0,0 @@
|
|||||||
# Demo API Implementation Summary
|
|
||||||
|
|
||||||
## ✅ Что было создано
|
|
||||||
|
|
||||||
### 1. Entity & Repository
|
|
||||||
- **DemoSession.java** - JPA Entity для хранения информации о демо-сессиях
|
|
||||||
- **DemoSessionStatus.java** - Enum со статусами сессий
|
|
||||||
- **DemoSessionRepository.java** - Repository с поддержкой поиска и статистики
|
|
||||||
|
|
||||||
### 2. DTO (Data Transfer Objects)
|
|
||||||
- **DemoUploadRequest.java** - DTO для параметров загрузки
|
|
||||||
- **DemoUploadResponse.java** - DTO для ответа после загрузки
|
|
||||||
- **DemoSearchResponse.java** - DTO для результатов поиска
|
|
||||||
- **DemoSessionInfo.java** - DTO для информации о сессии
|
|
||||||
|
|
||||||
### 3. Services
|
|
||||||
- **DemoSessionService.java** (280+ строк)
|
|
||||||
- `uploadFile()` - валидация и загрузка файла в S3
|
|
||||||
- `getSessionInfo()` - информация о файле
|
|
||||||
- `startSearch()` - поиск похожих файлов
|
|
||||||
- `deleteSession()` - удаление сессии
|
|
||||||
- Встроенная валидация: размер, тип, лимит по IP
|
|
||||||
|
|
||||||
- **DemoCleanupService.java** (170+ строк)
|
|
||||||
- `cleanupExpiredSessions()` - удаление старых сессий (каждые 30 мин)
|
|
||||||
- `cleanupFailedSessions()` - удаление FAILED сессий (каждый час)
|
|
||||||
- `cleanupSessionManually()` - ручная очистка
|
|
||||||
- `getActiveDemoSessionsCount()` - статистика
|
|
||||||
- `getActiveDemoDataSize()` - размер демо-данных в S3
|
|
||||||
|
|
||||||
### 4. Controller
|
|
||||||
- **DemoController.java** (180+ строк)
|
|
||||||
- `POST /api/demo/upload` - загрузка файла
|
|
||||||
- `GET /api/demo/file/{sessionId}` - информация о файле
|
|
||||||
- `POST /api/demo/search/{sessionId}` - запуск поиска
|
|
||||||
- `DELETE /api/demo/cleanup/{sessionId}` - очистка сессии
|
|
||||||
- `GET /api/demo/health` - health check
|
|
||||||
- Автоматическое извлечение IP клиента с поддержкой прокси
|
|
||||||
|
|
||||||
### 5. Тесты (420+ строк кода тестов)
|
|
||||||
- **DemoSessionServiceTest.java** (360+ строк)
|
|
||||||
- 12 тестов: загрузка, валидация, поиск, удаление
|
|
||||||
- Проверка лимитов, типов файлов, авторизации по IP
|
|
||||||
- Обработка ошибок S3
|
|
||||||
|
|
||||||
- **DemoCleanupServiceTest.java** (380+ строк)
|
|
||||||
- 10 тестов: очистка, обработка ошибок, статистика
|
|
||||||
- Проверка интервалов очистки
|
|
||||||
- Подсчёт размеров и счётчиков
|
|
||||||
|
|
||||||
- **DemoControllerTest.java** (340+ строк)
|
|
||||||
- 15 тестов: все эндпоинты и сценарии ошибок
|
|
||||||
- Извлечение IP из разных заголовков
|
|
||||||
- Обработка пустых файлов
|
|
||||||
|
|
||||||
### 6. Документация
|
|
||||||
- **DEMO_API_GUIDE.md** - полный гайд для использования
|
|
||||||
- **DEMO_CONFIG_EXAMPLE.yaml** - пример конфигурации
|
|
||||||
- **DEMO_IMPLEMENTATION_SUMMARY.md** - этот файл
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 📊 Статистика Кода
|
|
||||||
|
|
||||||
| Компонент | Строк Кода | Назначение |
|
|
||||||
|-----------|-----------|-----------|
|
|
||||||
| Entities & Enums | 80 | Модели БД |
|
|
||||||
| DTOs | 120 | Transfer Objects |
|
|
||||||
| DemoSessionService | 280 | Основная логика |
|
|
||||||
| DemoCleanupService | 170 | Автоочистка |
|
|
||||||
| DemoController | 180 | REST API |
|
|
||||||
| Repository | 40 | БД запросы |
|
|
||||||
| **Всего сервис** | **870** | **Основной код** |
|
|
||||||
| DemoSessionServiceTest | 360 | Unit тесты |
|
|
||||||
| DemoCleanupServiceTest | 380 | Unit тесты |
|
|
||||||
| DemoControllerTest | 340 | Integration тесты |
|
|
||||||
| **Всего тесты** | **1080** | **Полное покрытие** |
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 🔒 Ограничения и Защита
|
|
||||||
|
|
||||||
### Размеры Файлов
|
|
||||||
```
|
|
||||||
Max размер: 50 MB
|
|
||||||
Типы: image/jpeg, image/png, application/pdf, audio/mp3, etc.
|
|
||||||
Проверка MIME type: обязательна
|
|
||||||
```
|
|
||||||
|
|
||||||
### Rate Limiting
|
|
||||||
```
|
|
||||||
По IP адресу:
|
|
||||||
- 10 файлов в день
|
|
||||||
- Проверка каждые 24 часа
|
|
||||||
- Блокировка при превышении
|
|
||||||
```
|
|
||||||
|
|
||||||
### Безопасность
|
|
||||||
```
|
|
||||||
✅ IP-based rate limiting
|
|
||||||
✅ Валидация типов файлов
|
|
||||||
✅ Проверка размера на бэкенде
|
|
||||||
✅ Авторизация по IP (пользователь может видеть только свои файлы)
|
|
||||||
✅ Автоматическое удаление через 24 часа
|
|
||||||
✅ Обработка ошибок S3 без падения сервиса
|
|
||||||
```
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 🚀 Deployment Checklist
|
|
||||||
|
|
||||||
### 1. Migration в БД
|
|
||||||
```sql
|
|
||||||
CREATE TABLE demo_sessions (
|
|
||||||
session_id VARCHAR(36) PRIMARY KEY,
|
|
||||||
ip_address VARCHAR(45) NOT NULL,
|
|
||||||
file_name VARCHAR(255) NOT NULL,
|
|
||||||
file_id VARCHAR(255) NOT NULL,
|
|
||||||
s3_path VARCHAR(500) NOT NULL,
|
|
||||||
file_size BIGINT NOT NULL,
|
|
||||||
file_type VARCHAR(50) NOT NULL,
|
|
||||||
status VARCHAR(50) NOT NULL,
|
|
||||||
mime_type VARCHAR(100),
|
|
||||||
search_results_count INT,
|
|
||||||
created_at TIMESTAMP NOT NULL,
|
|
||||||
updated_at TIMESTAMP NOT NULL,
|
|
||||||
expires_at TIMESTAMP NOT NULL,
|
|
||||||
INDEX idx_ip_created (ip_address, created_at),
|
|
||||||
INDEX idx_expires_at (expires_at),
|
|
||||||
INDEX idx_status (status)
|
|
||||||
);
|
|
||||||
```
|
|
||||||
|
|
||||||
### 2. Конфигурация (application.yaml)
|
|
||||||
```yaml
|
|
||||||
demo:
|
|
||||||
max-file-size: 52428800 # 50 MB
|
|
||||||
max-files-per-day: 10
|
|
||||||
s3-path: demo/
|
|
||||||
session-ttl-hours: 24
|
|
||||||
cleanup-interval: 1800000 # 30 минут
|
|
||||||
failed-cleanup-interval: 3600000 # 1 час
|
|
||||||
```
|
|
||||||
|
|
||||||
### 3. S3 Permissions (IAM Policy)
|
|
||||||
```json
|
|
||||||
{
|
|
||||||
"Version": "2012-10-17",
|
|
||||||
"Statement": [
|
|
||||||
{
|
|
||||||
"Effect": "Allow",
|
|
||||||
"Action": [
|
|
||||||
"s3:PutObject",
|
|
||||||
"s3:GetObject",
|
|
||||||
"s3:DeleteObject"
|
|
||||||
],
|
|
||||||
"Resource": "arn:aws:s3:::your-bucket/demo/*"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
### 4. Environment Variables
|
|
||||||
```bash
|
|
||||||
AWS_ACCESS_KEY=your_access_key
|
|
||||||
AWS_SECRET_KEY=your_secret_key
|
|
||||||
DEMO_S3_BUCKET=your-bucket
|
|
||||||
DEMO_MAX_FILE_SIZE=52428800
|
|
||||||
```
|
|
||||||
|
|
||||||
### 5. Тесты
|
|
||||||
```bash
|
|
||||||
mvn test -Dtest=DemoSessionServiceTest
|
|
||||||
mvn test -Dtest=DemoCleanupServiceTest
|
|
||||||
mvn test -Dtest=DemoControllerTest
|
|
||||||
```
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 📈 Масштабирование
|
|
||||||
|
|
||||||
### Текущие возможности
|
|
||||||
- ~1000 активных демо-сессий одновременно
|
|
||||||
- ~50 GB демо-данных в S3
|
|
||||||
- ~1000 операций в минуту
|
|
||||||
|
|
||||||
### Если нужно больше:
|
|
||||||
1. **Увеличить cleanup интервал** - если много одновременных пользователей
|
|
||||||
2. **Добавить Redis** - для кэширования информации о сессиях
|
|
||||||
3. **Использовать S3 Lifecycle** - для автоматического удаления файлов старше 30 дней
|
|
||||||
4. **Шардирование по IP** - если очень много юзеров
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 🐛 Обработка Ошибок
|
|
||||||
|
|
||||||
### Валидация
|
|
||||||
```
|
|
||||||
❌ File too large → 400 Bad Request
|
|
||||||
❌ Unsupported file type → 400 Bad Request
|
|
||||||
❌ Daily limit reached → 400 Bad Request
|
|
||||||
❌ Empty file → 400 Bad Request
|
|
||||||
```
|
|
||||||
|
|
||||||
### Авторизация
|
|
||||||
```
|
|
||||||
❌ Unauthorized IP access → 403 Forbidden
|
|
||||||
❌ Session not found → 404 Not Found
|
|
||||||
```
|
|
||||||
|
|
||||||
### S3 Ошибки
|
|
||||||
```
|
|
||||||
⚠️ S3 upload failure → сессия помечена FAILED, но не бросает исключение
|
|
||||||
⚠️ S3 delete failure → cleanup продолжается, но логируется
|
|
||||||
```
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 📝 API Примеры
|
|
||||||
|
|
||||||
### Успешный Flow
|
|
||||||
```bash
|
|
||||||
# 1. Загрузка
|
|
||||||
curl -X POST http://localhost:8080/api/demo/upload \
|
|
||||||
-F "file=@image.jpg"
|
|
||||||
# Ответ: {"sessionId": "xxx", "status": "COMPLETED"}
|
|
||||||
|
|
||||||
# 2. Получение инфо
|
|
||||||
curl http://localhost:8080/api/demo/file/xxx
|
|
||||||
# Ответ: {"fileName": "image.jpg", "fileSize": 1024}
|
|
||||||
|
|
||||||
# 3. Поиск
|
|
||||||
curl -X POST http://localhost:8080/api/demo/search/xxx
|
|
||||||
# Ответ: {"resultsCount": 3, "similarFiles": [...]}
|
|
||||||
|
|
||||||
# 4. Очистка
|
|
||||||
curl -X DELETE http://localhost:8080/api/demo/cleanup/xxx
|
|
||||||
# Ответ: {"status": "CLEANED"}
|
|
||||||
```
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 🔍 Мониторинг
|
|
||||||
|
|
||||||
### Метрики для сбора
|
|
||||||
```java
|
|
||||||
// Active sessions
|
|
||||||
demoCleanupService.getActiveDemoSessionsCount()
|
|
||||||
|
|
||||||
// Storage usage
|
|
||||||
demoCleanupService.getActiveDemoDataSize()
|
|
||||||
|
|
||||||
// Logs
|
|
||||||
grep "Demo upload" application.log | wc -l // количество загрузок
|
|
||||||
grep "Demo cleanup" application.log | wc -l // количество очисток
|
|
||||||
```
|
|
||||||
|
|
||||||
### Prometheus метрики (опционально)
|
|
||||||
```
|
|
||||||
demo_sessions_active{} - количество активных сессий
|
|
||||||
demo_storage_bytes{} - размер демо-данных
|
|
||||||
demo_uploads_total{} - всего загрузок
|
|
||||||
demo_cleanups_total{} - всего очисток
|
|
||||||
```
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## ✨ Особенности Cleanup-сервиса
|
|
||||||
|
|
||||||
### Почему это важно?
|
|
||||||
```
|
|
||||||
1. S3 стоит денег → нужно удалять старые файлы
|
|
||||||
2. GDPR требует удаления → временные данные должны удаляться
|
|
||||||
3. БД растёт → сессии должны очищаться
|
|
||||||
4. Безопасность → демо-данные не должны лежать вечно
|
|
||||||
```
|
|
||||||
|
|
||||||
### Как это работает?
|
|
||||||
```
|
|
||||||
@Scheduled(fixedDelay = 1800000) // каждые 30 минут
|
|
||||||
public void cleanupExpiredSessions() {
|
|
||||||
1. Найти WHERE expiresAt <= NOW()
|
|
||||||
2. Для каждой: удалить из S3
|
|
||||||
3. Обновить статус = CLEANED
|
|
||||||
4. Залогировать результаты
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
### Отказоустойчивость
|
|
||||||
```
|
|
||||||
✅ Если S3 недоступен - продолжаем работу, логируем
|
|
||||||
✅ Если БД недоступна - scheduler пересчитает позже
|
|
||||||
✅ Если исключение - перехватываем и логируем
|
|
||||||
✅ Максимальная защита от потери данных
|
|
||||||
```
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 📚 Дополнительные Файлы
|
|
||||||
|
|
||||||
```
|
|
||||||
src/main/java/ru/soune/nocopy/
|
|
||||||
├── entity/demo/
|
|
||||||
│ ├── DemoSession.java
|
|
||||||
│ └── DemoSessionStatus.java
|
|
||||||
├── repository/
|
|
||||||
│ └── DemoSessionRepository.java
|
|
||||||
├── dto/demo/
|
|
||||||
│ ├── DemoUploadRequest.java
|
|
||||||
│ ├── DemoUploadResponse.java
|
|
||||||
│ ├── DemoSearchResponse.java
|
|
||||||
│ └── DemoSessionInfo.java
|
|
||||||
├── service/demo/
|
|
||||||
│ ├── DemoSessionService.java
|
|
||||||
│ └── DemoCleanupService.java
|
|
||||||
└── controller/demo/
|
|
||||||
└── DemoController.java
|
|
||||||
|
|
||||||
src/test/java/ru/soune/nocopy/
|
|
||||||
├── service/demo/
|
|
||||||
│ ├── DemoSessionServiceTest.java
|
|
||||||
│ └── DemoCleanupServiceTest.java
|
|
||||||
└── controller/demo/
|
|
||||||
└── DemoControllerTest.java
|
|
||||||
|
|
||||||
Documentation/
|
|
||||||
├── DEMO_API_GUIDE.md
|
|
||||||
├── DEMO_CONFIG_EXAMPLE.yaml
|
|
||||||
└── DEMO_IMPLEMENTATION_SUMMARY.md (этот файл)
|
|
||||||
```
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 🚦 Next Steps
|
|
||||||
|
|
||||||
1. **Добавить миграцию Flyway** для создания таблицы `demo_sessions`
|
|
||||||
2. **Настроить S3 bucket** с правами доступа
|
|
||||||
3. **Запустить тесты** - убедиться что всё работает
|
|
||||||
4. **Сделать фронтенд** - drag & drop, upload progress, результаты
|
|
||||||
5. **Настроить мониторинг** - какой процент юзеров конвертируется
|
|
||||||
6. **Добавить analytics** - откуда приходят юзеры для демо
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 📞 Support
|
|
||||||
|
|
||||||
Если возникли вопросы:
|
|
||||||
- Смотри **DEMO_API_GUIDE.md** для использования API
|
|
||||||
- Смотри логи: `grep "Demo" application.log`
|
|
||||||
- Запусти тесты: `mvn test -Dtest=Demo*Test`
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
**Статус:** ✅ Production Ready
|
|
||||||
**Дата:** 2026-07-01
|
|
||||||
**Версия:** 1.0.0
|
|
||||||
**Автор:** Claude Code
|
|
||||||
@@ -14,9 +14,6 @@ COPY --from=build /app/build/libs/*.jar app.jar
|
|||||||
|
|
||||||
RUN mkdir -p /data/uploads && chmod 755 /data/uploads
|
RUN mkdir -p /data/uploads && chmod 755 /data/uploads
|
||||||
|
|
||||||
ENV BUILD_TIME_BACK="unknown"\
|
|
||||||
BUILD_TIME_FRONT="unknown"
|
|
||||||
|
|
||||||
EXPOSE 8080
|
EXPOSE 8080
|
||||||
|
|
||||||
CMD ["java", "-jar", "app.jar"]
|
CMD ["java", "-jar", "app.jar"]
|
||||||
@@ -122,442 +122,3 @@ SELECT 1
|
|||||||
FROM protect_check pc
|
FROM protect_check pc
|
||||||
WHERE pc.user_id = u.id
|
WHERE pc.user_id = u.id
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
||||||
------
|
|
||||||
Скрипты рефералки
|
|
||||||
|
|
||||||
INSERT INTO referrals (user_id, referral_link, inviter_id, level_id, total_income, is_active, created_at, hold_balance)
|
|
||||||
SELECT
|
|
||||||
u.id as user_id,
|
|
||||||
CONCAT('ref-', u.id, '-', LOWER(SUBSTRING(MD5(RANDOM()::text) FROM 1 FOR 8))) as referral_link,
|
|
||||||
NULL as inviter_id,
|
|
||||||
'bronze' as level_id,
|
|
||||||
0 as total_income,
|
|
||||||
false as is_active,
|
|
||||||
NOW() as created_at,
|
|
||||||
0 as hold_balance
|
|
||||||
FROM users u
|
|
||||||
LEFT JOIN referrals r ON u.id = r.user_id
|
|
||||||
WHERE
|
|
||||||
u.company_id IS NULL
|
|
||||||
AND r.user_id IS NULL
|
|
||||||
ORDER BY u.id;
|
|
||||||
|
|
||||||
-------
|
|
||||||
|
|
||||||
INSERT INTO referral_levels (id, name, min_invitees, reward_percentage) VALUES
|
|
||||||
('bronze', 'BRONZE', 0, 15),
|
|
||||||
('silver', 'SILVER', 6, 18),
|
|
||||||
('gold', 'GOLD', 16, 22),
|
|
||||||
('platinum', 'PLATINUM', 50, 25);
|
|
||||||
|
|
||||||
-----------------
|
|
||||||
Скрипт,для нумерации для уже сохданных файлов
|
|
||||||
WITH max_id AS (
|
|
||||||
SELECT COALESCE(MAX(support_id), 0) as max_val FROM file_entities
|
|
||||||
),
|
|
||||||
-- Нумеруем только NULL записи, начиная с max_val + 1
|
|
||||||
numbered AS (
|
|
||||||
SELECT
|
|
||||||
f.id,
|
|
||||||
(SELECT max_val FROM max_id) + ROW_NUMBER() OVER (ORDER BY f.created_at, f.id) as new_support_id
|
|
||||||
FROM file_entities f
|
|
||||||
WHERE f.support_id IS NULL
|
|
||||||
)
|
|
||||||
UPDATE file_entities
|
|
||||||
SET support_id = numbered.new_support_id
|
|
||||||
FROM numbered
|
|
||||||
WHERE file_entities.id = numbered.id;
|
|
||||||
|
|
||||||
---------------------------------
|
|
||||||
НАСТРОЙКА NGINX
|
|
||||||
--------------------------------
|
|
||||||
|
|
||||||
# admin.not-copy.com
|
|
||||||
server {
|
|
||||||
listen 80;
|
|
||||||
listen [::]:80;
|
|
||||||
server_name admin.not-copy.com;
|
|
||||||
return 301 https://$server_name$request_uri;
|
|
||||||
}
|
|
||||||
|
|
||||||
server {
|
|
||||||
listen 443 ssl;
|
|
||||||
listen [::]:443 ssl;
|
|
||||||
server_name admin.not-copy.com;
|
|
||||||
|
|
||||||
ssl_certificate /etc/letsencrypt/live/admin.not-copy.com/fullchain.pem;
|
|
||||||
ssl_certificate_key /etc/letsencrypt/live/admin.not-copy.com/privkey.pem;
|
|
||||||
|
|
||||||
location /api/ {
|
|
||||||
proxy_pass http://localhost:3003;
|
|
||||||
proxy_set_header Host $host;
|
|
||||||
proxy_set_header X-Real-IP $remote_addr;
|
|
||||||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
||||||
proxy_set_header X-Forwarded-Proto $scheme;
|
|
||||||
}
|
|
||||||
|
|
||||||
location / {
|
|
||||||
proxy_pass http://localhost:2995;
|
|
||||||
proxy_set_header Host $host;
|
|
||||||
proxy_set_header X-Real-IP $remote_addr;
|
|
||||||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
||||||
proxy_set_header X-Forwarded-Proto $scheme;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
# workspace.not-copy.com
|
|
||||||
server {
|
|
||||||
listen 80;
|
|
||||||
listen [::]:80;
|
|
||||||
server_name workspace.not-copy.com;
|
|
||||||
return 301 https://$server_name$request_uri;
|
|
||||||
}
|
|
||||||
|
|
||||||
server {
|
|
||||||
listen 443 ssl;
|
|
||||||
listen [::]:443 ssl;
|
|
||||||
server_name workspace.not-copy.com;
|
|
||||||
|
|
||||||
ssl_certificate /etc/letsencrypt/live/workspace.not-copy.com/fullchain.pem;
|
|
||||||
ssl_certificate_key /etc/letsencrypt/live/workspace.not-copy.com/privkey.pem;
|
|
||||||
|
|
||||||
location /api/ {
|
|
||||||
proxy_pass http://localhost:3003;
|
|
||||||
proxy_set_header Host $host;
|
|
||||||
proxy_set_header X-Real-IP $remote_addr;
|
|
||||||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
||||||
proxy_set_header X-Forwarded-Proto $scheme;
|
|
||||||
}
|
|
||||||
|
|
||||||
location / {
|
|
||||||
proxy_pass http://localhost:2998;
|
|
||||||
proxy_set_header Host $host;
|
|
||||||
proxy_set_header X-Real-IP $remote_addr;
|
|
||||||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
||||||
proxy_set_header X-Forwarded-Proto $scheme;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
# lp.not-copy.com
|
|
||||||
server {
|
|
||||||
listen 80;
|
|
||||||
listen [::]:80;
|
|
||||||
server_name lp.not-copy.com;
|
|
||||||
return 301 https://$server_name$request_uri;
|
|
||||||
}
|
|
||||||
|
|
||||||
server {
|
|
||||||
listen 443 ssl;
|
|
||||||
listen [::]:443 ssl;
|
|
||||||
server_name lp.not-copy.com;
|
|
||||||
|
|
||||||
ssl_certificate /etc/letsencrypt/live/lp.not-copy.com/fullchain.pem;
|
|
||||||
ssl_certificate_key /etc/letsencrypt/live/lp.not-copy.com/privkey.pem;
|
|
||||||
|
|
||||||
location /api/ {
|
|
||||||
proxy_pass http://localhost:3003;
|
|
||||||
proxy_set_header Host $host;
|
|
||||||
proxy_set_header X-Real-IP $remote_addr;
|
|
||||||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
||||||
proxy_set_header X-Forwarded-Proto $scheme;
|
|
||||||
}
|
|
||||||
|
|
||||||
location / {
|
|
||||||
proxy_pass http://localhost:2993;
|
|
||||||
proxy_set_header Host $host;
|
|
||||||
proxy_set_header X-Real-IP $remote_addr;
|
|
||||||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
||||||
proxy_set_header X-Forwarded-Proto $scheme;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
# dev-admin.not-copy.com
|
|
||||||
server {
|
|
||||||
listen 80;
|
|
||||||
listen [::]:80;
|
|
||||||
server_name dev-admin.not-copy.com;
|
|
||||||
return 301 https://$server_name$request_uri;
|
|
||||||
}
|
|
||||||
|
|
||||||
server {
|
|
||||||
listen 443 ssl;
|
|
||||||
listen [::]:443 ssl;
|
|
||||||
server_name dev-admin.not-copy.com;
|
|
||||||
|
|
||||||
ssl_certificate /etc/letsencrypt/live/dev-admin.not-copy.com/fullchain.pem;
|
|
||||||
ssl_certificate_key /etc/letsencrypt/live/dev-admin.not-copy.com/privkey.pem;
|
|
||||||
|
|
||||||
location /api/ {
|
|
||||||
proxy_pass http://localhost:8082;
|
|
||||||
proxy_set_header Host $host;
|
|
||||||
proxy_set_header X-Real-IP $remote_addr;
|
|
||||||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
||||||
proxy_set_header X-Forwarded-Proto $scheme;
|
|
||||||
}
|
|
||||||
|
|
||||||
location / {
|
|
||||||
proxy_pass http://localhost:2996;
|
|
||||||
proxy_set_header Host $host;
|
|
||||||
proxy_set_header X-Real-IP $remote_addr;
|
|
||||||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
||||||
proxy_set_header X-Forwarded-Proto $scheme;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
# dev-workspace.not-copy.com
|
|
||||||
server {
|
|
||||||
listen 80;
|
|
||||||
listen [::]:80;
|
|
||||||
server_name dev-workspace.not-copy.com;
|
|
||||||
return 301 https://$server_name$request_uri;
|
|
||||||
}
|
|
||||||
|
|
||||||
server {
|
|
||||||
listen 443 ssl;
|
|
||||||
listen [::]:443 ssl;
|
|
||||||
server_name dev-workspace.not-copy.com;
|
|
||||||
|
|
||||||
ssl_certificate /etc/letsencrypt/live/dev-workspace.not-copy.com/fullchain.pem;
|
|
||||||
ssl_certificate_key /etc/letsencrypt/live/dev-workspace.not-copy.com/privkey.pem;
|
|
||||||
|
|
||||||
location /api/ {
|
|
||||||
|
|
||||||
proxy_pass http://localhost:3001;
|
|
||||||
proxy_set_header Host $host;
|
|
||||||
proxy_set_header X-Real-IP $remote_addr;
|
|
||||||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
||||||
proxy_set_header X-Forwarded-Proto $scheme;
|
|
||||||
}
|
|
||||||
|
|
||||||
location / {
|
|
||||||
proxy_pass http://localhost:3002;
|
|
||||||
proxy_set_header Host $host;
|
|
||||||
proxy_set_header X-Real-IP $remote_addr;
|
|
||||||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
||||||
proxy_set_header X-Forwarded-Proto $scheme;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
# dev-lp.not-copy.com
|
|
||||||
server {
|
|
||||||
listen 80;
|
|
||||||
listen [::]:80;
|
|
||||||
server_name dev-lp.not-copy.com;
|
|
||||||
return 301 https://$server_name$request_uri;
|
|
||||||
}
|
|
||||||
|
|
||||||
server {
|
|
||||||
listen 443 ssl;
|
|
||||||
listen [::]:443 ssl;
|
|
||||||
server_name dev-lp.not-copy.com;
|
|
||||||
|
|
||||||
ssl_certificate /etc/letsencrypt/live/dev-lp.not-copy.com/fullchain.pem;
|
|
||||||
ssl_certificate_key /etc/letsencrypt/live/dev-lp.not-copy.com/privkey.pem;
|
|
||||||
|
|
||||||
location /api/ {
|
|
||||||
proxy_pass http://localhost:3001;
|
|
||||||
proxy_set_header Host $host;
|
|
||||||
proxy_set_header X-Real-IP $remote_addr;
|
|
||||||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
||||||
proxy_set_header X-Forwarded-Proto $scheme;
|
|
||||||
}
|
|
||||||
|
|
||||||
location / {
|
|
||||||
proxy_pass http://localhost:2994;
|
|
||||||
proxy_set_header Host $host;
|
|
||||||
proxy_set_header X-Real-IP $remote_addr;
|
|
||||||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
||||||
proxy_set_header X-Forwarded-Proto $scheme;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
# Проверяем конфиг
|
|
||||||
ls -la /etc/nginx/sites-available/
|
|
||||||
ls -la /etc/nginx/sites-enabled/
|
|
||||||
|
|
||||||
# Создание конфига
|
|
||||||
|
|
||||||
sudo nano /etc/nginx/sites-available/not-copy
|
|
||||||
|
|
||||||
# Создание симлинк
|
|
||||||
sudo ln -s /etc/nginx/sites-available/not-copy /etc/nginx/sites-enabled/
|
|
||||||
|
|
||||||
# Чек
|
|
||||||
sudo nginx -t
|
|
||||||
|
|
||||||
# Рестарт
|
|
||||||
sudo systemctl reload nginx
|
|
||||||
|
|
||||||
|
|
||||||
---------------------------------------------
|
|
||||||
|
|
||||||
# ПОЛНАЯ ИНСТРУКЦИЯ: НАСТРОЙКА ПРОКСИ ДЛЯ ОБХОДА БЛОКИРОВОК SEARCHAPI.IO
|
|
||||||
|
|
||||||
## Данные для подключения к прокси-серверу
|
|
||||||
IP: 193.46.217.94
|
|
||||||
Порт HTTP: 3128
|
|
||||||
Порт SOCKS: 1080
|
|
||||||
Логин SSH: root
|
|
||||||
Пароль SSH: u7nRtsD6
|
|
||||||
|
|
||||||
## 1. Настройка прокси-сервера
|
|
||||||
```bash
|
|
||||||
# Подключаемся к серверу
|
|
||||||
ssh root@193.46.217.94
|
|
||||||
# Вводим пароль: u7nRtsD6
|
|
||||||
|
|
||||||
# Обновляем систему и устанавливаем пакеты
|
|
||||||
yum update -y
|
|
||||||
yum install -y epel-release net-tools nano
|
|
||||||
yum install -y 3proxy
|
|
||||||
|
|
||||||
# Создаем конфигурацию
|
|
||||||
mkdir -p /etc/3proxy
|
|
||||||
cat > /etc/3proxy/3proxy.cfg << 'EOF'
|
|
||||||
nserver 8.8.8.8
|
|
||||||
nserver 8.8.4.4
|
|
||||||
timeouts 1 5 30 60 180 1800 15 60
|
|
||||||
daemon
|
|
||||||
log /var/log/3proxy/3proxy.log
|
|
||||||
logformat "- +_L%t.%. %N.%p %E %U %C:%c %R:%r %O %I %h %T"
|
|
||||||
rotate 30
|
|
||||||
auth none
|
|
||||||
allow * * * * *
|
|
||||||
proxy -p3128
|
|
||||||
socks -p1080
|
|
||||||
EOF
|
|
||||||
|
|
||||||
# Создаем папку для логов и запускаем прокси
|
|
||||||
mkdir -p /var/log/3proxy
|
|
||||||
/usr/bin/3proxy /etc/3proxy/3proxy.cfg
|
|
||||||
|
|
||||||
# Проверяем, что запустилось
|
|
||||||
ps aux | grep 3proxy
|
|
||||||
netstat -tulpn | grep -E '3128|1080'
|
|
||||||
|
|
||||||
# Настраиваем файрвол
|
|
||||||
firewall-cmd --permanent --add-port=3128/tcp
|
|
||||||
firewall-cmd --permanent --add-port=1080/tcp
|
|
||||||
firewall-cmd --reload
|
|
||||||
firewall-cmd --list-ports
|
|
||||||
|
|
||||||
# Проверяем локальную работу прокси
|
|
||||||
curl -x http://127.0.0.1:3128 https://api.ipify.org
|
|
||||||
# Должен вернуть: 193.46.217.94
|
|
||||||
|
|
||||||
# Настраиваем автозапуск
|
|
||||||
echo "/usr/bin/3proxy /etc/3proxy/3proxy.cfg" >> /etc/rc.local
|
|
||||||
chmod +x /etc/rc.local
|
|
||||||
|
|
||||||
|
|
||||||
# Проверяем доступность прокси
|
|
||||||
ping -c 4 193.46.217.94
|
|
||||||
curl -x http://193.46.217.94:3128 https://api.ipify.org
|
|
||||||
# Должен вернуть: 193.46.217.94
|
|
||||||
|
|
||||||
# Проверяем работу с SearchAPI через прокси
|
|
||||||
curl -x http://193.46.217.94:3128 "https://www.searchapi.io/api/v1/search?engine=google_lens&api_key=5jyYZC8jSaxhZTwjMUhwtAXi&url=https://dev-workspace.not-copy.com/api/files/public/76d06557-6df1-4fcd-a273-050ec6a35faf&search_type=exact_matches" -o test.json
|
|
||||||
ls -la test.json
|
|
||||||
tail -20 test.json
|
|
||||||
# Файл должен быть полным (заканчиваться на '}')
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
ps aux | grep 3proxy # Проверка статуса
|
|
||||||
netstat -tulpn | grep -E '3128|1080' # Проверка портов
|
|
||||||
tail -f /var/log/3proxy/3proxy.log # Просмотр логов
|
|
||||||
killall 3proxy # Остановка прокси
|
|
||||||
/usr/bin/3proxy /etc/3proxy/3proxy.cfg # Запуск прокси
|
|
||||||
|
|
||||||
|
|
||||||
firewall-cmd --permanent --remove-port=3128/tcp
|
|
||||||
firewall-cmd --permanent --add-rich-rule='rule family="ipv4" source address="IP_ТВОЕГО_СЕРВЕРА" port port="3128" protocol="tcp" accept'
|
|
||||||
firewall-cmd --permanent --add-rich-rule='rule family="ipv4" source address="IP_ТВОЕГО_СЕРВЕРА" port port="1080" protocol="tcp" accept'
|
|
||||||
firewall-cmd --reload
|
|
||||||
|
|
||||||
|
|
||||||
На прокси-сервере:
|
|
||||||
bash
|
|
||||||
ps aux | grep 3proxy # Проверка статуса
|
|
||||||
netstat -tulpn | grep -E '3128|1080' # Проверка портов
|
|
||||||
tail -f /var/log/3proxy/3proxy.log # Просмотр логов
|
|
||||||
killall 3proxy # Остановка прокси
|
|
||||||
/usr/bin/3proxy /etc/3proxy/3proxy.cfg # Запуск прокси
|
|
||||||
|
|
||||||
На основном сервере:
|
|
||||||
bash
|
|
||||||
curl -x http://193.46.217.94:3128 https://api.ipify.org # Проверка прокси
|
|
||||||
telnet 193.46.217.94 3128 # Проверка порта
|
|
||||||
|
|
||||||
------
|
|
||||||
|
|
||||||
Настройка Яндекс Клауд
|
|
||||||
|
|
||||||
1. YCAJEpWAtaVkVGX0sH6_EupEg - индетификатор ключа
|
|
||||||
2. YCMmVykfXrZ_nfU13Vo4yoCVGa70DnTlBgF1pUzO - секретный ключ
|
|
||||||
|
|
||||||
private static final String KEY_ID = "YCAJEmHZcWxzf4oGWvETG3mms";
|
|
||||||
private static final String SECRET_KEY = "YCPAPZ32XC-LWb8xE0b_xTcBD8NZUCHpSOfu8LUG";
|
|
||||||
|
|
||||||
Обновить сертики
|
|
||||||
systemctl stop nginx && certbot renew && systemctl start nginx
|
|
||||||
|
|
||||||
|
|
||||||
Создание API ключей для внешнего доступа
|
|
||||||
|
|
||||||
1.
|
|
||||||
|
|
||||||
POST /api/user/api-keys
|
|
||||||
Authorization: Bearer {YOUR_JWT_TOKEN}
|
|
||||||
Content-Type: application/json
|
|
||||||
|
|
||||||
{
|
|
||||||
"name": "My Integration Script"
|
|
||||||
}
|
|
||||||
|
|
||||||
{
|
|
||||||
"messageCode": "API_KEY_CREATED",
|
|
||||||
"messageDesc": "Save this key. It will not be shown again.",
|
|
||||||
"messageBody": {
|
|
||||||
"apiKey": "ncp_dGhpcyBpc2EzcGFtcGxla2V5Zm9ydGVzdGluZw"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
2. Использование API-ключа
|
|
||||||
|
|
||||||
GET /api/v1/files
|
|
||||||
X-API-Key: ncp_dGhpcyBpc2EzcGFtcGxla2V5Zm9ydGVzdGluZw
|
|
||||||
|
|
||||||
curl -X GET \
|
|
||||||
-H "X-API-Key: ncp_dGhpcyBpc2EzcGFtcGxla2V5Zm9ydGVzdGluZw" \
|
|
||||||
https://api.nocopy.ru/api/v1/files
|
|
||||||
|
|
||||||
3.Просмотр списка ключей
|
|
||||||
GET /api/user/api-keys
|
|
||||||
Authorization: Bearer {YOUR_JWT_TOKEN}
|
|
||||||
|
|
||||||
{
|
|
||||||
"messageCode": "OK",
|
|
||||||
"messageBody": [
|
|
||||||
{
|
|
||||||
"id": 1,
|
|
||||||
"name": "My Integration Script",
|
|
||||||
"prefix": "dGhpcyBp",
|
|
||||||
"isActive": true,
|
|
||||||
"createdAt": "2024-01-15T10:30:00",
|
|
||||||
"lastUsedAt": "2024-01-16T14:22:00"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
||||||
4. Отзыв API-ключа
|
|
||||||
|
|
||||||
DELETE /api/user/api-keys/{keyId}
|
|
||||||
Authorization: Bearer {YOUR_JWT_TOKEN}
|
|
||||||
|
|
||||||
{
|
|
||||||
"messageCode": "API_KEY_REVOKED"
|
|
||||||
}
|
|
||||||
File diff suppressed because it is too large
Load Diff
+2
-28
@@ -34,6 +34,7 @@ dependencies {
|
|||||||
implementation 'org.mapstruct:mapstruct:1.5.5.Final'
|
implementation 'org.mapstruct:mapstruct:1.5.5.Final'
|
||||||
implementation 'commons-validator:commons-validator:1.7'
|
implementation 'commons-validator:commons-validator:1.7'
|
||||||
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-mail', version: '4.0.1'
|
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-mail', version: '4.0.1'
|
||||||
|
|
||||||
implementation group: 'com.google.cloud', name: 'google-cloud-vision', version: '3.55.0'
|
implementation group: 'com.google.cloud', name: 'google-cloud-vision', version: '3.55.0'
|
||||||
implementation group: 'com.google.api-client', name: 'google-api-client', version: '2.7.2'
|
implementation group: 'com.google.api-client', name: 'google-api-client', version: '2.7.2'
|
||||||
|
|
||||||
@@ -41,8 +42,6 @@ dependencies {
|
|||||||
|
|
||||||
implementation 'com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.17.0'
|
implementation 'com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.17.0'
|
||||||
implementation 'tools.jackson.core:jackson-core:3.0.3'
|
implementation 'tools.jackson.core:jackson-core:3.0.3'
|
||||||
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.17.2'
|
|
||||||
|
|
||||||
implementation 'jakarta.xml.bind:jakarta.xml.bind-api:4.0.0'
|
implementation 'jakarta.xml.bind:jakarta.xml.bind-api:4.0.0'
|
||||||
|
|
||||||
annotationProcessor 'org.mapstruct:mapstruct-processor:1.5.5.Final'
|
annotationProcessor 'org.mapstruct:mapstruct-processor:1.5.5.Final'
|
||||||
@@ -60,35 +59,10 @@ dependencies {
|
|||||||
testImplementation 'org.mockito:mockito-core:5.3.1'
|
testImplementation 'org.mockito:mockito-core:5.3.1'
|
||||||
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
|
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
|
||||||
|
|
||||||
implementation name: 'testlib-fat-0.3.1-all'
|
implementation name: 'testlib-fat-0.2.1-all'
|
||||||
|
|
||||||
implementation group: 'com.squareup.okhttp3', name: 'okhttp', version: '4.12.0'
|
implementation group: 'com.squareup.okhttp3', name: 'okhttp', version: '4.12.0'
|
||||||
implementation 'com.maxmind.geoip2:geoip2:4.2.0'
|
|
||||||
implementation 'org.sejda.imageio:webp-imageio:0.1.6'
|
|
||||||
|
|
||||||
implementation project(':referral')
|
|
||||||
|
|
||||||
//cloud
|
|
||||||
implementation("software.amazon.awssdk:aws-sdk-java:2.29.33")
|
|
||||||
implementation("software.amazon.awssdk:apache-client:2.29.33")
|
|
||||||
|
|
||||||
implementation("org.springdoc:springdoc-openapi-starter-webmvc-ui:2.7.0")
|
|
||||||
implementation("org.springframework.boot:spring-boot-starter-web")
|
|
||||||
|
|
||||||
|
|
||||||
implementation 'org.springframework.cloud:spring-cloud-starter-openfeign:4.1.0'
|
|
||||||
implementation 'io.github.resilience4j:resilience4j-spring-boot3:2.2.0'
|
|
||||||
|
|
||||||
//cache
|
|
||||||
implementation("org.springframework.boot:spring-boot-starter-cache:4.0.6")
|
|
||||||
implementation 'com.github.ben-manes.caffeine:caffeine'
|
|
||||||
|
|
||||||
//security
|
|
||||||
implementation 'org.springframework.boot:spring-boot-starter-security'
|
|
||||||
implementation("io.jsonwebtoken:jjwt:0.13.0")
|
|
||||||
|
|
||||||
//kafka
|
|
||||||
implementation 'org.springframework.kafka:spring-kafka'
|
|
||||||
}
|
}
|
||||||
|
|
||||||
tasks.named('test') {
|
tasks.named('test') {
|
||||||
|
|||||||
@@ -0,0 +1,73 @@
|
|||||||
|
version: '3.9'
|
||||||
|
|
||||||
|
services:
|
||||||
|
storage:
|
||||||
|
image: alpine:latest
|
||||||
|
container_name: file-storage-local
|
||||||
|
networks:
|
||||||
|
- app-network-local
|
||||||
|
volumes:
|
||||||
|
- uploads_data_local:/storage:rw
|
||||||
|
command: tail -f /dev/null
|
||||||
|
restart: unless-stopped
|
||||||
|
|
||||||
|
db:
|
||||||
|
image: postgres:17.7
|
||||||
|
restart: always
|
||||||
|
environment:
|
||||||
|
POSTGRES_DB: no_copy_
|
||||||
|
POSTGRES_USER: postgres
|
||||||
|
POSTGRES_PASSWORD: postgres
|
||||||
|
POSTGRES_SHARED_BUFFERS: 512MB
|
||||||
|
POSTGRES_EFFECTIVE_CACHE_SIZE: 1536MB
|
||||||
|
ports:
|
||||||
|
- "54320:5432"
|
||||||
|
volumes:
|
||||||
|
- pgdata_local:/var/lib/postgresql/data
|
||||||
|
- ./init-scripts:/docker-entrypoint-initdb.d:ro
|
||||||
|
container_name: postgres-local
|
||||||
|
networks:
|
||||||
|
app-network-local:
|
||||||
|
aliases:
|
||||||
|
- database
|
||||||
|
|
||||||
|
app:
|
||||||
|
build: .
|
||||||
|
container_name: app-backend-local
|
||||||
|
environment:
|
||||||
|
JAVA_TOOL_OPTIONS: "-Xmx2g -Xms1g"
|
||||||
|
FILE_STORAGE_PATH: /data/uploads
|
||||||
|
POSTGRES_DB: no_copy_
|
||||||
|
POSTGRES_USER: postgres
|
||||||
|
POSTGRES_PASSWORD: postgres
|
||||||
|
POSTGRES_PORT: 5432
|
||||||
|
POSTGRES_HOST: db
|
||||||
|
# Используем local профиль
|
||||||
|
SPRING_PROFILES_ACTIVE: local
|
||||||
|
YANDEX_API_KEY: AQVNyaVaUmgUb1GMCtf5zSEqFxy0woXrcMOOB43q
|
||||||
|
YANDEX_FOLDER_ID: b1gokpdbm6qfpsou8pcd
|
||||||
|
YANDEX_SEARCH_URL: "https://searchapi.api.cloud.yandex.net/v2/image/search_by_image"
|
||||||
|
depends_on:
|
||||||
|
- db
|
||||||
|
ports:
|
||||||
|
- "8080:8080"
|
||||||
|
networks:
|
||||||
|
app-network-local:
|
||||||
|
aliases:
|
||||||
|
- app
|
||||||
|
- backend
|
||||||
|
volumes:
|
||||||
|
- uploads_data_local:/data/uploads:rw
|
||||||
|
healthcheck:
|
||||||
|
test: [ "CMD", "curl", "-f", "http://localhost:8080/actuator/health" ]
|
||||||
|
interval: 30s
|
||||||
|
timeout: 10s
|
||||||
|
retries: 3
|
||||||
|
|
||||||
|
volumes:
|
||||||
|
pgdata_local:
|
||||||
|
uploads_data_local:
|
||||||
|
|
||||||
|
networks:
|
||||||
|
app-network-local:
|
||||||
|
driver: bridge
|
||||||
@@ -0,0 +1,49 @@
|
|||||||
|
version: '3.9'
|
||||||
|
|
||||||
|
services:
|
||||||
|
storage:
|
||||||
|
image: alpine:latest
|
||||||
|
container_name: file-storage
|
||||||
|
networks:
|
||||||
|
- app-network
|
||||||
|
volumes:
|
||||||
|
- uploads_data:/storage:rw
|
||||||
|
command: tail -f /dev/null
|
||||||
|
restart: unless-stopped
|
||||||
|
|
||||||
|
app:
|
||||||
|
build: .
|
||||||
|
container_name: app-backend
|
||||||
|
environment:
|
||||||
|
JAVA_TOOL_OPTIONS: "-Xmx2g -Xms1g"
|
||||||
|
FILE_STORAGE_PATH: /data/uploads
|
||||||
|
# Данные для Yandex Cloud БД
|
||||||
|
YC_DB_USER: ${YC_DB_USER}
|
||||||
|
YC_DB_PASSWORD: ${YC_DB_PASSWORD}
|
||||||
|
# Используем prod профиль
|
||||||
|
SPRING_PROFILES_ACTIVE: prod
|
||||||
|
YANDEX_API_KEY: AQVNyaVaUmgUb1GMCtf5zSEqFxy0woXrcMOOB43q
|
||||||
|
YANDEX_FOLDER_ID: b1gokpdbm6qfpsou8pcd
|
||||||
|
YANDEX_SEARCH_URL: "https://searchapi.api.cloud.yandex.net/v2/image/search_by_image"
|
||||||
|
ports:
|
||||||
|
- "80:8080"
|
||||||
|
networks:
|
||||||
|
app-network:
|
||||||
|
aliases:
|
||||||
|
- app
|
||||||
|
- backend
|
||||||
|
volumes:
|
||||||
|
- uploads_data:/data/uploads:rw
|
||||||
|
healthcheck:
|
||||||
|
test: [ "CMD", "curl", "-f", "http://localhost:8080/actuator/health" ]
|
||||||
|
interval: 30s
|
||||||
|
timeout: 10s
|
||||||
|
retries: 3
|
||||||
|
|
||||||
|
volumes:
|
||||||
|
uploads_data:
|
||||||
|
|
||||||
|
networks:
|
||||||
|
app-network:
|
||||||
|
external: true
|
||||||
|
driver: bridge
|
||||||
+2
-33
@@ -88,7 +88,7 @@ services:
|
|||||||
# FILE_CHUNK_SIZE: 1048576
|
# FILE_CHUNK_SIZE: 1048576
|
||||||
FILE_CHUNK_SIZE: 1000000
|
FILE_CHUNK_SIZE: 1000000
|
||||||
POSTGRES_DB: no_copy_
|
POSTGRES_DB: no_copy_
|
||||||
# SPRING_KAFKA_BOOTSTRAP_SERVERS: kafka:9092
|
|
||||||
POSTGRES_USER: ${POSTGRES_USER}
|
POSTGRES_USER: ${POSTGRES_USER}
|
||||||
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
|
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
|
||||||
POSTGRES_PORT: 5432
|
POSTGRES_PORT: 5432
|
||||||
@@ -181,7 +181,7 @@ services:
|
|||||||
command:
|
command:
|
||||||
- '--config.file=/etc/prometheus/prometheus.yml'
|
- '--config.file=/etc/prometheus/prometheus.yml'
|
||||||
- '--storage.tsdb.path=/prometheus'
|
- '--storage.tsdb.path=/prometheus'
|
||||||
- '--storage.tsdb.retention.time=15d'
|
- '--storage.tsdb.retention.time=15d' # Удерживать 15 дней
|
||||||
- '--web.enable-lifecycle'
|
- '--web.enable-lifecycle'
|
||||||
healthcheck:
|
healthcheck:
|
||||||
test: [ "CMD", "wget", "--spider", "http://localhost:9090/-/healthy" ]
|
test: [ "CMD", "wget", "--spider", "http://localhost:9090/-/healthy" ]
|
||||||
@@ -216,33 +216,6 @@ services:
|
|||||||
networks:
|
networks:
|
||||||
- app-network
|
- app-network
|
||||||
|
|
||||||
nexus:
|
|
||||||
image: sonatype/nexus3:latest
|
|
||||||
container_name: nexus
|
|
||||||
restart: unless-stopped
|
|
||||||
ports:
|
|
||||||
- "9000:8081"
|
|
||||||
volumes:
|
|
||||||
- nexus-data:/nexus-data
|
|
||||||
environment:
|
|
||||||
- INSTALL4J_ADD_VM_PARAMS=-Xms512m -Xmx1024m -XX:MaxDirectMemorySize=512m
|
|
||||||
networks:
|
|
||||||
- app-network
|
|
||||||
|
|
||||||
mongodb:
|
|
||||||
image: mongo:latest
|
|
||||||
container_name: mongo_ncp
|
|
||||||
restart: unless-stopped
|
|
||||||
ports:
|
|
||||||
- "27017:27017"
|
|
||||||
environment:
|
|
||||||
MONGO_INITDB_ROOT_USERNAME: mongo_db
|
|
||||||
MONGO_INITDB_ROOT_PASSWORD: mongo_ncp
|
|
||||||
volumes:
|
|
||||||
- mongodb_data:/data/db
|
|
||||||
networks:
|
|
||||||
- app-network
|
|
||||||
|
|
||||||
tempo:
|
tempo:
|
||||||
image: grafana/tempo:2.4.1
|
image: grafana/tempo:2.4.1
|
||||||
container_name: tempo
|
container_name: tempo
|
||||||
@@ -294,8 +267,6 @@ services:
|
|||||||
|
|
||||||
volumes:
|
volumes:
|
||||||
pgdata:
|
pgdata:
|
||||||
mongodb_data:
|
|
||||||
name: mongodb_data
|
|
||||||
artifacts:
|
artifacts:
|
||||||
tempo_data:
|
tempo_data:
|
||||||
loki_data:
|
loki_data:
|
||||||
@@ -304,8 +275,6 @@ volumes:
|
|||||||
loki_rules:
|
loki_rules:
|
||||||
uploads_data:
|
uploads_data:
|
||||||
prometheus_data:
|
prometheus_data:
|
||||||
nexus-data:
|
|
||||||
driver: local
|
|
||||||
# postfix-data:
|
# postfix-data:
|
||||||
networks:
|
networks:
|
||||||
app-network:
|
app-network:
|
||||||
|
|||||||
@@ -9,29 +9,14 @@ pipeline {
|
|||||||
)
|
)
|
||||||
string(
|
string(
|
||||||
name: 'PORT',
|
name: 'PORT',
|
||||||
defaultValue: '3001',
|
defaultValue: '3000',
|
||||||
description: 'Порт для запуска экземпляра'
|
description: 'Порт для запуска экземпляра'
|
||||||
)
|
)
|
||||||
string(
|
|
||||||
name: 'PORT_DB',
|
|
||||||
defaultValue: '',
|
|
||||||
description: 'Порт для запуска БД'
|
|
||||||
)
|
|
||||||
string(
|
string(
|
||||||
name: 'SERVER',
|
name: 'SERVER',
|
||||||
defaultValue: '92.242.61.23',
|
defaultValue: '92.242.61.23',
|
||||||
description: 'Сервер для деплоя'
|
description: 'Сервер для деплоя'
|
||||||
)
|
)
|
||||||
string(
|
|
||||||
name: 'NETWORK',
|
|
||||||
defaultValue: 'app-network-dev',
|
|
||||||
description: 'Имя сети (будет создана если не существует)'
|
|
||||||
)
|
|
||||||
choice(
|
|
||||||
name: 'SPRING_PROFILE',
|
|
||||||
choices: ['dev', 'prod'],
|
|
||||||
description: 'Профиль Spring для запуска'
|
|
||||||
)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
stages {
|
stages {
|
||||||
@@ -51,34 +36,9 @@ pipeline {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
stage('Copy to server') {
|
|
||||||
steps {
|
|
||||||
script {
|
|
||||||
withCredentials([
|
|
||||||
usernamePassword(
|
|
||||||
credentialsId: 'server-root-password',
|
|
||||||
usernameVariable: 'SSH_USER',
|
|
||||||
passwordVariable: 'SSH_PASS'
|
|
||||||
)
|
|
||||||
]) {
|
|
||||||
sh """
|
|
||||||
sshpass -p '${SSH_PASS}' ssh -o StrictHostKeyChecking=no ${SSH_USER}@${params.SERVER} "
|
|
||||||
rm -rf /opt/deployments/${params.BRANCH}-${params.PORT}/*
|
|
||||||
mkdir -p /opt/deployments/${params.BRANCH}-${params.PORT}
|
|
||||||
"
|
|
||||||
|
|
||||||
sshpass -p '${SSH_PASS}' scp -r ./* ${SSH_USER}@${params.SERVER}:/opt/deployments/${params.BRANCH}-${params.PORT}/
|
|
||||||
"""
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
stage('Deploy with docker-compose') {
|
stage('Deploy with docker-compose') {
|
||||||
steps {
|
steps {
|
||||||
script {
|
script {
|
||||||
def buildTime = sh(script: "TZ='Asia/Novosibirsk' date '+%d-%m-%Y %H:%M:%S'", returnStdout: true).trim()
|
|
||||||
def springProfile = params.SPRING_PROFILE
|
|
||||||
withCredentials([
|
withCredentials([
|
||||||
usernamePassword(
|
usernamePassword(
|
||||||
credentialsId: 'server-root-password',
|
credentialsId: 'server-root-password',
|
||||||
@@ -86,11 +46,10 @@ pipeline {
|
|||||||
passwordVariable: 'SSH_PASS'
|
passwordVariable: 'SSH_PASS'
|
||||||
),
|
),
|
||||||
string(credentialsId: 'DB_USER', variable: 'DB_USER'),
|
string(credentialsId: 'DB_USER', variable: 'DB_USER'),
|
||||||
string(credentialsId: 'DB_PASSWORD', variable: 'DB_PASSWORD'),
|
string(credentialsId: 'DB_PASSWORD', variable: 'DB_PASSWORD')
|
||||||
string(credentialsId: 'MONGO_USER', variable: 'MONGO_USER'),
|
|
||||||
string(credentialsId: 'MONGO_PASSWORD', variable: 'MONGO_PASSWORD')
|
|
||||||
]) {
|
]) {
|
||||||
sh """
|
sh """
|
||||||
|
# Тестируем подключение сначала
|
||||||
echo "Testing SSH connection..."
|
echo "Testing SSH connection..."
|
||||||
if sshpass -p '${SSH_PASS}' ssh -o StrictHostKeyChecking=no ${SSH_USER}@${params.SERVER} 'echo "SSH connection successful"'; then
|
if sshpass -p '${SSH_PASS}' ssh -o StrictHostKeyChecking=no ${SSH_USER}@${params.SERVER} 'echo "SSH connection successful"'; then
|
||||||
echo "SSH connection OK"
|
echo "SSH connection OK"
|
||||||
@@ -99,17 +58,12 @@ pipeline {
|
|||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# Основная команда
|
||||||
sshpass -p '${SSH_PASS}' ssh -o StrictHostKeyChecking=no ${SSH_USER}@${params.SERVER} "
|
sshpass -p '${SSH_PASS}' ssh -o StrictHostKeyChecking=no ${SSH_USER}@${params.SERVER} "
|
||||||
mkdir -p /opt/deployments/${params.BRANCH}-${params.PORT}
|
|
||||||
cd /opt/deployments/${params.BRANCH}-${params.PORT}
|
cd /opt/deployments/${params.BRANCH}-${params.PORT}
|
||||||
|
|
||||||
echo '1. Проверяем/создаем сеть ${params.NETWORK}...'
|
echo '1. Создаем изолированную сеть для порта ${params.PORT}...'
|
||||||
if ! docker network ls --format '{{.Name}}' | grep -q '^${params.NETWORK}\$'; then
|
docker network create app-network-${params.PORT} 2>/dev/null || echo 'Сеть уже существует'
|
||||||
docker network create ${params.NETWORK}
|
|
||||||
echo 'Сеть ${params.NETWORK} создана'
|
|
||||||
else
|
|
||||||
echo 'Сеть ${params.NETWORK} уже существует'
|
|
||||||
fi
|
|
||||||
|
|
||||||
echo '2. Останавливаем старые контейнеры порта ${params.PORT}...'
|
echo '2. Останавливаем старые контейнеры порта ${params.PORT}...'
|
||||||
docker stop app-backend-${params.PORT} 2>/dev/null || echo 'Контейнер не найден'
|
docker stop app-backend-${params.PORT} 2>/dev/null || echo 'Контейнер не найден'
|
||||||
@@ -118,68 +72,49 @@ pipeline {
|
|||||||
docker rm postgres-${params.PORT} 2>/dev/null || echo 'Контейнер БД не найден'
|
docker rm postgres-${params.PORT} 2>/dev/null || echo 'Контейнер БД не найден'
|
||||||
docker stop file-storage-${params.PORT} 2>/dev/null || echo 'Контейнер storage не найден'
|
docker stop file-storage-${params.PORT} 2>/dev/null || echo 'Контейнер storage не найден'
|
||||||
docker rm file-storage-${params.PORT} 2>/dev/null || echo 'Контейнер storage не найден'
|
docker rm file-storage-${params.PORT} 2>/dev/null || echo 'Контейнер storage не найден'
|
||||||
docker stop mongodb-${params.PORT} 2>/dev/null || echo 'Контейнер MongoDB не найден'
|
|
||||||
docker rm mongodb-${params.PORT} 2>/dev/null || echo 'Контейнер MongoDB не найден'
|
|
||||||
|
|
||||||
echo '3. Запускаем БД...'
|
echo '3. Запускаем БД...'
|
||||||
docker run -d \\
|
docker run -d \\
|
||||||
--name postgres-${params.PORT} \\
|
--name postgres-${params.PORT} \\
|
||||||
--network ${params.NETWORK} \\
|
--network app-network-${params.PORT} \\
|
||||||
--network-alias no_copy_${params.PORT} \\
|
--network-alias no_copy_${params.PORT} \\
|
||||||
--network-alias database-${params.PORT} \\
|
--network-alias database-${params.PORT} \\
|
||||||
--network-alias db-${params.PORT} \\
|
--network-alias db-${params.PORT} \\
|
||||||
-p ${params.PORT}0:5432 \\
|
-p ${params.PORT}0:5432 \\
|
||||||
-e POSTGRES_DB=no_copy${params.PORT_DB} \\
|
-e POSTGRES_DB=no_copy_${params.PORT} \\
|
||||||
-e POSTGRES_USER=${DB_USER} \\
|
-e POSTGRES_USER=${DB_USER} \\
|
||||||
-e POSTGRES_PASSWORD=${DB_PASSWORD} \\
|
-e POSTGRES_PASSWORD=${DB_PASSWORD} \\
|
||||||
-v pgdata_${params.PORT}:/var/lib/postgresql/data \\
|
-v pgdata_${params.PORT}:/var/lib/postgresql/data \\
|
||||||
-e BUILD_TIME_BACK='${buildTime}' \\
|
|
||||||
postgres:17.7
|
postgres:17.7
|
||||||
|
|
||||||
echo '4. Запускаем MongoDB...'
|
echo '4. Запускаем storage...'
|
||||||
docker run -d \\
|
|
||||||
--name mongodb-${params.PORT} \\
|
|
||||||
--network ${params.NETWORK} \\
|
|
||||||
--network-alias mongodb-${params.PORT} \\
|
|
||||||
-p ${params.PORT}1:27017 \\
|
|
||||||
-e MONGO_INITDB_ROOT_USERNAME=${MONGO_USER} \\
|
|
||||||
-e MONGO_INITDB_ROOT_PASSWORD=${MONGO_PASSWORD} \\
|
|
||||||
-v mongodb_data_${params.PORT}:/data/db \\
|
|
||||||
mongo:7.0
|
|
||||||
|
|
||||||
echo '5. Запускаем storage...'
|
|
||||||
docker run -d \\
|
docker run -d \\
|
||||||
--name file-storage-${params.PORT} \\
|
--name file-storage-${params.PORT} \\
|
||||||
--network ${params.NETWORK} \\
|
--network app-network-${params.PORT} \\
|
||||||
-v uploads_data_${params.PORT}:/storage:rw \\
|
-v uploads_data_${params.PORT}:/storage:rw \\
|
||||||
alpine:latest tail -f /dev/null
|
alpine:latest tail -f /dev/null
|
||||||
|
|
||||||
echo '6. Ждем БД...'
|
echo '5. Ждем БД...'
|
||||||
sleep 15
|
sleep 15
|
||||||
|
|
||||||
echo '7. Собираем приложение...'
|
echo '6. Собираем приложение...'
|
||||||
docker build --no-cache -t app-backend-${params.PORT}:latest .
|
docker build --no-cache -t app-backend-${params.PORT}:latest .
|
||||||
|
|
||||||
echo '8. Запускаем приложение...'
|
echo '7. Запускаем приложение...'
|
||||||
docker run -d \\
|
docker run -d \\
|
||||||
--name app-backend-${params.PORT} \\
|
--name app-backend-${params.PORT} \\
|
||||||
--network ${params.NETWORK} \\
|
--network app-network-${params.PORT} \\
|
||||||
--network-alias app \\
|
|
||||||
--network-alias app-${params.PORT} \\
|
|
||||||
-p ${params.PORT}:8080 \\
|
-p ${params.PORT}:8080 \\
|
||||||
-v uploads_data_${params.PORT}:/data/uploads:rw \\
|
-v uploads_data_${params.PORT}:/data/uploads:rw \\
|
||||||
-e POSTGRES_DB=no_copy${params.PORT_DB} \\
|
-e POSTGRES_DB=no_copy_${params.PORT} \\
|
||||||
-e POSTGRES_USER=${DB_USER} \\
|
-e POSTGRES_USER=${DB_USER} \\
|
||||||
-e POSTGRES_PASSWORD=${DB_PASSWORD} \\
|
-e POSTGRES_PASSWORD=${DB_PASSWORD} \\
|
||||||
-e POSTGRES_PORT=5432 \\
|
-e POSTGRES_PORT=5432 \\
|
||||||
-e POSTGRES_HOST=no_copy_${params.PORT} \\
|
-e POSTGRES_HOST=no_copy_${params.PORT} \\
|
||||||
-e FILE_STORAGE_PATH=/data/uploads \\
|
-e FILE_STORAGE_PATH=/data/uploads \\
|
||||||
-e SPRING_PROFILES_ACTIVE=${springProfile} \\
|
|
||||||
-e MONGO_URI=mongodb://${MONGO_USER}:${MONGO_PASSWORD}@mongodb-${params.PORT}:27017 \\
|
|
||||||
-e MONGO_DATABASE=no_copy \\
|
|
||||||
app-backend-${params.PORT}:latest
|
app-backend-${params.PORT}:latest
|
||||||
|
|
||||||
echo '9. Проверка...'
|
echo '8. Проверка...'
|
||||||
sleep 10
|
sleep 10
|
||||||
|
|
||||||
if curl -s -f http://localhost:${params.PORT}/health > /dev/null 2>&1; then
|
if curl -s -f http://localhost:${params.PORT}/health > /dev/null 2>&1; then
|
||||||
@@ -194,39 +129,12 @@ pipeline {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
stage('Verify network') {
|
|
||||||
steps {
|
|
||||||
script {
|
|
||||||
withCredentials([
|
|
||||||
usernamePassword(
|
|
||||||
credentialsId: 'server-root-password',
|
|
||||||
usernameVariable: 'SSH_USER',
|
|
||||||
passwordVariable: 'SSH_PASS'
|
|
||||||
)
|
|
||||||
]) {
|
|
||||||
sh """
|
|
||||||
sshpass -p '${SSH_PASS}' ssh -o StrictHostKeyChecking=no ${SSH_USER}@${params.SERVER} "
|
|
||||||
echo 'Проверяем подключение к сети ${params.NETWORK}'
|
|
||||||
docker network inspect ${params.NETWORK} --format='{{.Name}}: {{range .Containers}}{{.Name}} {{end}}'
|
|
||||||
|
|
||||||
echo 'Проверяем алиас app для контейнера app-backend-${params.PORT}'
|
|
||||||
docker inspect app-backend-${params.PORT} | grep -A 5 'Aliases'
|
|
||||||
"
|
|
||||||
"""
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
post {
|
post {
|
||||||
success {
|
success {
|
||||||
script {
|
|
||||||
def appUrl = params.SPRING_PROFILE == 'prod' ? 'https://workspace.not-copy.com' : 'https://dev-workspace.not-copy.com'
|
|
||||||
echo "Deployment successful"
|
echo "Deployment successful"
|
||||||
echo "Application URL: ${appUrl}"
|
echo "Application URL: http://${params.SERVER}:${params.PORT}"
|
||||||
}
|
|
||||||
}
|
}
|
||||||
failure {
|
failure {
|
||||||
echo "Deployment failed for branch ${params.BRANCH} on port ${params.PORT}"
|
echo "Deployment failed for branch ${params.BRANCH} on port ${params.PORT}"
|
||||||
|
|||||||
@@ -12,11 +12,6 @@ pipeline {
|
|||||||
defaultValue: '2998',
|
defaultValue: '2998',
|
||||||
description: 'Порт для запуска экземпляра'
|
description: 'Порт для запуска экземпляра'
|
||||||
)
|
)
|
||||||
string(
|
|
||||||
name: 'NETWORK',
|
|
||||||
defaultValue: 'app-network-dev',
|
|
||||||
description: 'Docker сеть для подключения'
|
|
||||||
)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
stages {
|
stages {
|
||||||
@@ -90,8 +85,6 @@ pipeline {
|
|||||||
stage('Build on server') {
|
stage('Build on server') {
|
||||||
steps {
|
steps {
|
||||||
script {
|
script {
|
||||||
def BUILD_TIME_FRONT = sh(script: "date '+%d-%m-%Y %H:%M:%S'", returnStdout: true).trim()
|
|
||||||
|
|
||||||
withCredentials([
|
withCredentials([
|
||||||
usernamePassword(
|
usernamePassword(
|
||||||
credentialsId: 'server-root-password',
|
credentialsId: 'server-root-password',
|
||||||
@@ -103,15 +96,18 @@ pipeline {
|
|||||||
sshpass -p '$SSH_PASS' ssh $SSH_USER@92.242.61.23 "
|
sshpass -p '$SSH_PASS' ssh $SSH_USER@92.242.61.23 "
|
||||||
cd /opt/deployments/frontend/${params.BRANCH}-${params.PORT}
|
cd /opt/deployments/frontend/${params.BRANCH}-${params.PORT}
|
||||||
|
|
||||||
# 1. СОЗДАЕМ JSON ФАЙЛ (ЭТО РАБОТАЕТ 100%)
|
echo '=== Редактируем docker-compose.yml ==='
|
||||||
mkdir -p public
|
|
||||||
echo '{\\"buildTime\\": \\"${BUILD_TIME_FRONT}\\"}' > public/build-info.json
|
|
||||||
|
|
||||||
# 2. Меняем имя контейнера и порт
|
# Меняем имя контейнера
|
||||||
sed -i 's/container_name: no-copy-frontend\$/container_name: no-copy-frontend-${params.PORT}/' docker-compose.yml
|
sed -i 's/container_name: no-copy-frontend\$/container_name: no-copy-frontend-${params.PORT}/' docker-compose.yml
|
||||||
|
|
||||||
|
# Меняем порт (2998 на нужный порт)
|
||||||
sed -i 's/\\\"2998:2999\\\"/\\\"${params.PORT}:2999\\\"/' docker-compose.yml
|
sed -i 's/\\\"2998:2999\\\"/\\\"${params.PORT}:2999\\\"/' docker-compose.yml
|
||||||
|
|
||||||
# 3. Собираем образ
|
echo 'Проверяем изменения:'
|
||||||
|
grep -n 'container_name\\|ports' docker-compose.yml
|
||||||
|
|
||||||
|
echo '=== Строим образ ==='
|
||||||
docker-compose -f docker-compose.yml -p frontend-${params.PORT} build
|
docker-compose -f docker-compose.yml -p frontend-${params.PORT} build
|
||||||
"
|
"
|
||||||
"""
|
"""
|
||||||
@@ -194,70 +190,6 @@ pipeline {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// stage('Connect to network') {
|
|
||||||
// steps {
|
|
||||||
// script {
|
|
||||||
// withCredentials([
|
|
||||||
// usernamePassword(
|
|
||||||
// credentialsId: 'server-root-password',
|
|
||||||
// usernameVariable: 'SSH_USER',
|
|
||||||
// passwordVariable: 'SSH_PASS'
|
|
||||||
// )
|
|
||||||
// ]) {
|
|
||||||
// sh """
|
|
||||||
// sshpass -p '$SSH_PASS' ssh $SSH_USER@92.242.61.23 "
|
|
||||||
// echo 'Отключаем от всех сетей и подключаем к ${params.NETWORK}'
|
|
||||||
//
|
|
||||||
// # Отключаем от всех сетей (кроме bridge, host, none)
|
|
||||||
// current_networks=\$(docker inspect no-copy-frontend-${params.PORT} --format='{{range \$net, \$v := .NetworkSettings.Networks}}{{\$net}}{{\"\\n\"}}{{end}}' | grep -v -E '^(bridge|host|none)\$' || true)
|
|
||||||
//
|
|
||||||
// for net in \$current_networks; do
|
|
||||||
// echo \"Отключаем от сети: \$net\"
|
|
||||||
// docker network disconnect \$net no-copy-frontend-${params.PORT} 2>/dev/null || true
|
|
||||||
// done
|
|
||||||
//
|
|
||||||
// # Подключаем к нужной сети
|
|
||||||
// docker network connect ${params.NETWORK} no-copy-frontend-${params.PORT}
|
|
||||||
//
|
|
||||||
// echo 'Готово! Контейнер теперь в сети:'
|
|
||||||
// docker inspect no-copy-frontend-${params.PORT} --format='{{range \$net, \$v := .NetworkSettings.Networks}}{{\$net}}{{\"\\n\"}}{{end}}'
|
|
||||||
// "
|
|
||||||
// """
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
|
|
||||||
stage('Connect to network') {
|
|
||||||
steps {
|
|
||||||
script {
|
|
||||||
withCredentials([
|
|
||||||
usernamePassword(
|
|
||||||
credentialsId: 'server-root-password',
|
|
||||||
usernameVariable: 'SSH_USER',
|
|
||||||
passwordVariable: 'SSH_PASS'
|
|
||||||
)
|
|
||||||
]) {
|
|
||||||
sh """
|
|
||||||
sshpass -p '$SSH_PASS' ssh $SSH_USER@92.242.61.23 "
|
|
||||||
echo 'Подключаем контейнер к сети ${params.NETWORK}'
|
|
||||||
|
|
||||||
if ! docker network ls --format '{{.Name}}' | grep -q '^${params.NETWORK}\$'; then
|
|
||||||
docker network create ${params.NETWORK}
|
|
||||||
fi
|
|
||||||
|
|
||||||
if docker ps -a --format '{{.Names}}' | grep -q '^no-copy-frontend-${params.PORT}\$'; then
|
|
||||||
docker network disconnect ${params.NETWORK} no-copy-frontend-${params.PORT} 2>/dev/null || true
|
|
||||||
docker network connect ${params.NETWORK} no-copy-frontend-${params.PORT}
|
|
||||||
echo 'Контейнер подключен к ${params.NETWORK}'
|
|
||||||
fi
|
|
||||||
"
|
|
||||||
"""
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
post {
|
post {
|
||||||
|
|||||||
@@ -34,7 +34,6 @@ pipeline {
|
|||||||
stage('Deploy with docker-compose') {
|
stage('Deploy with docker-compose') {
|
||||||
steps {
|
steps {
|
||||||
script {
|
script {
|
||||||
def buildTime = sh(script: "TZ='Asia/Novosibirsk' date '+%d-%m-%Y %H:%M:%S'", returnStdout: true).trim()
|
|
||||||
withCredentials([
|
withCredentials([
|
||||||
usernamePassword(
|
usernamePassword(
|
||||||
credentialsId: 'server-root-password',
|
credentialsId: 'server-root-password',
|
||||||
@@ -93,7 +92,6 @@ pipeline {
|
|||||||
-e POSTGRES_PASSWORD=$DB_PASSWORD \\
|
-e POSTGRES_PASSWORD=$DB_PASSWORD \\
|
||||||
-e POSTGRES_PORT=5432 \\
|
-e POSTGRES_PORT=5432 \\
|
||||||
-e POSTGRES_HOST=db \\
|
-e POSTGRES_HOST=db \\
|
||||||
-e BUILD_TIME_BACK='${buildTime}' \\
|
|
||||||
--restart unless-stopped \\
|
--restart unless-stopped \\
|
||||||
app-backend:latest
|
app-backend:latest
|
||||||
|
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@@ -1,353 +0,0 @@
|
|||||||
openapi: 3.0.3
|
|
||||||
info:
|
|
||||||
title: NoCopy API - API Keys Management
|
|
||||||
description: |
|
|
||||||
API для управления пользовательскими API ключами.
|
|
||||||
Включает контроллер: ApiKeyController
|
|
||||||
Позволяет создавать, просматривать и отзывать API ключи.
|
|
||||||
version: 1.0.0
|
|
||||||
contact:
|
|
||||||
name: NoCopy
|
|
||||||
|
|
||||||
servers:
|
|
||||||
- url: http://localhost:8080
|
|
||||||
description: Локальный
|
|
||||||
- url: https://dev-workspace.not-copy.com/
|
|
||||||
description: Дев
|
|
||||||
|
|
||||||
tags:
|
|
||||||
- name: User
|
|
||||||
description: Управление пользовательскими данными и API ключами
|
|
||||||
|
|
||||||
paths:
|
|
||||||
/api/user/api-keys:
|
|
||||||
post:
|
|
||||||
tags:
|
|
||||||
- User
|
|
||||||
summary: Создание API ключа
|
|
||||||
description: |
|
|
||||||
Создаёт новый API ключ для пользователя.
|
|
||||||
- Требуется авторизация (Bearer токен)
|
|
||||||
- Если имя не указано, будет присвоено "Unnamed key"
|
|
||||||
- Возвращает полный ключ только один раз при создании
|
|
||||||
- Префикс ключа можно использовать для идентификации без раскрытия секрета
|
|
||||||
operationId: createApiKey
|
|
||||||
security:
|
|
||||||
- BearerAuth: []
|
|
||||||
requestBody:
|
|
||||||
required: true
|
|
||||||
content:
|
|
||||||
application/json:
|
|
||||||
schema:
|
|
||||||
type: object
|
|
||||||
properties:
|
|
||||||
name:
|
|
||||||
type: string
|
|
||||||
description: Название ключа для идентификации (опционально)
|
|
||||||
example: "My API Key"
|
|
||||||
maxLength: 255
|
|
||||||
examples:
|
|
||||||
withName:
|
|
||||||
summary: С указанием названия
|
|
||||||
value:
|
|
||||||
name: "Production Key"
|
|
||||||
withDescription:
|
|
||||||
summary: С описательным названием
|
|
||||||
value:
|
|
||||||
name: "Key for mobile app"
|
|
||||||
withoutName:
|
|
||||||
summary: Без названия (по умолчанию "Unnamed key")
|
|
||||||
value: {}
|
|
||||||
minimalExample:
|
|
||||||
summary: Пустое тело запроса
|
|
||||||
value: {}
|
|
||||||
responses:
|
|
||||||
'200':
|
|
||||||
description: Ключ успешно создан
|
|
||||||
content:
|
|
||||||
application/json:
|
|
||||||
schema:
|
|
||||||
$ref: '#/components/schemas/BaseResponse'
|
|
||||||
examples:
|
|
||||||
success:
|
|
||||||
summary: API ключ создан
|
|
||||||
value:
|
|
||||||
msg_id: null
|
|
||||||
message_code: 0
|
|
||||||
message_desc: "API key created successfully"
|
|
||||||
message_body:
|
|
||||||
apiKey: "sk-live-abc123def456789ghi012jkl345mno678"
|
|
||||||
successWithDescription:
|
|
||||||
summary: API ключ с описанием создан
|
|
||||||
value:
|
|
||||||
msg_id: null
|
|
||||||
message_code: 0
|
|
||||||
message_desc: "API key created successfully"
|
|
||||||
message_body:
|
|
||||||
apiKey: "sk-test-xyz987abc654def321ghi098jkl765mno"
|
|
||||||
'401':
|
|
||||||
description: Неавторизованный доступ
|
|
||||||
content:
|
|
||||||
application/json:
|
|
||||||
schema:
|
|
||||||
$ref: '#/components/schemas/BaseResponse'
|
|
||||||
examples:
|
|
||||||
unauthorized:
|
|
||||||
summary: Токен не предоставлен или недействителен
|
|
||||||
value:
|
|
||||||
msg_id: null
|
|
||||||
message_code: 7
|
|
||||||
message_desc: "Authentication required"
|
|
||||||
message_body: null
|
|
||||||
|
|
||||||
get:
|
|
||||||
tags:
|
|
||||||
- User
|
|
||||||
summary: Получение списка API ключей
|
|
||||||
description: |
|
|
||||||
Возвращает все API ключи текущего пользователя.
|
|
||||||
|
|
||||||
**Особенности:**
|
|
||||||
- Требуется авторизация (Bearer токен)
|
|
||||||
- Полные ключи не возвращаются, только префиксы
|
|
||||||
- Включает информацию об активности и времени использования
|
|
||||||
operationId: listApiKeys
|
|
||||||
security:
|
|
||||||
- BearerAuth: []
|
|
||||||
responses:
|
|
||||||
'200':
|
|
||||||
description: Список ключей пользователя
|
|
||||||
content:
|
|
||||||
application/json:
|
|
||||||
schema:
|
|
||||||
$ref: '#/components/schemas/BaseResponse'
|
|
||||||
examples:
|
|
||||||
success:
|
|
||||||
summary: Список с несколькими ключами
|
|
||||||
value:
|
|
||||||
msg_id: null
|
|
||||||
message_code: 0
|
|
||||||
message_desc: null
|
|
||||||
message_body:
|
|
||||||
- id: 1
|
|
||||||
name: "Production Key"
|
|
||||||
prefix: "sk-live-abc123..."
|
|
||||||
isActive: true
|
|
||||||
createdAt: "2025-01-15T10:30:00Z"
|
|
||||||
lastUsedAt: "2025-06-30T14:22:00Z"
|
|
||||||
- id: 2
|
|
||||||
name: "Key for mobile app"
|
|
||||||
prefix: "sk-live-def456..."
|
|
||||||
isActive: true
|
|
||||||
createdAt: "2025-03-20T08:00:00Z"
|
|
||||||
lastUsedAt: "2025-06-29T18:45:00Z"
|
|
||||||
- id: 3
|
|
||||||
name: "Old Development Key"
|
|
||||||
prefix: "sk-test-ghi789..."
|
|
||||||
isActive: false
|
|
||||||
createdAt: "2025-02-10T12:00:00Z"
|
|
||||||
lastUsedAt: "2025-05-15T09:30:00Z"
|
|
||||||
singleKey:
|
|
||||||
summary: Один активный ключ
|
|
||||||
value:
|
|
||||||
msg_id: null
|
|
||||||
message_code: 0
|
|
||||||
message_desc: null
|
|
||||||
message_body:
|
|
||||||
- id: 1
|
|
||||||
name: "My API Key"
|
|
||||||
prefix: "sk-live-abc123..."
|
|
||||||
isActive: true
|
|
||||||
createdAt: "2025-06-01T00:00:00Z"
|
|
||||||
lastUsedAt: null
|
|
||||||
empty:
|
|
||||||
summary: Нет созданных ключей
|
|
||||||
value:
|
|
||||||
msg_id: null
|
|
||||||
message_code: 0
|
|
||||||
message_desc: null
|
|
||||||
message_body: []
|
|
||||||
'401':
|
|
||||||
description: Неавторизованный доступ
|
|
||||||
content:
|
|
||||||
application/json:
|
|
||||||
schema:
|
|
||||||
$ref: '#/components/schemas/BaseResponse'
|
|
||||||
examples:
|
|
||||||
unauthorized:
|
|
||||||
summary: Токен не предоставлен или недействителен
|
|
||||||
value:
|
|
||||||
msg_id: null
|
|
||||||
message_code: 7
|
|
||||||
message_desc: "Authentication required"
|
|
||||||
message_body: null
|
|
||||||
|
|
||||||
/api/user/api-keys/{keyId}:
|
|
||||||
delete:
|
|
||||||
tags:
|
|
||||||
- User
|
|
||||||
summary: Отзыв (удаление) API ключа
|
|
||||||
description: |
|
|
||||||
Деактивирует API ключ пользователя. Ключ становится неактивным и больше не может использоваться.
|
|
||||||
|
|
||||||
**Особенности:**
|
|
||||||
- Требуется авторизация (Bearer токен)
|
|
||||||
- Пользователь может отозвать только свои ключи
|
|
||||||
- Отозванный ключ нельзя восстановить (нужно создавать новый)
|
|
||||||
operationId: revokeApiKey
|
|
||||||
security:
|
|
||||||
- BearerAuth: []
|
|
||||||
parameters:
|
|
||||||
- name: keyId
|
|
||||||
in: path
|
|
||||||
required: true
|
|
||||||
schema:
|
|
||||||
type: integer
|
|
||||||
format: int64
|
|
||||||
description: ID ключа для отзыва
|
|
||||||
example: 1
|
|
||||||
responses:
|
|
||||||
'200':
|
|
||||||
description: Ключ успешно отозван
|
|
||||||
content:
|
|
||||||
application/json:
|
|
||||||
schema:
|
|
||||||
$ref: '#/components/schemas/BaseResponse'
|
|
||||||
examples:
|
|
||||||
success:
|
|
||||||
summary: Ключ отозван
|
|
||||||
value:
|
|
||||||
msg_id: null
|
|
||||||
message_code: 0
|
|
||||||
message_desc: null
|
|
||||||
message_body: null
|
|
||||||
'401':
|
|
||||||
description: Неавторизованный доступ
|
|
||||||
content:
|
|
||||||
application/json:
|
|
||||||
schema:
|
|
||||||
$ref: '#/components/schemas/BaseResponse'
|
|
||||||
examples:
|
|
||||||
unauthorized:
|
|
||||||
summary: Токен не предоставлен или недействителен
|
|
||||||
value:
|
|
||||||
msg_id: null
|
|
||||||
message_code: 7
|
|
||||||
message_desc: "Authentication required"
|
|
||||||
message_body: null
|
|
||||||
'403':
|
|
||||||
description: Доступ запрещён (ключ не принадлежит пользователю)
|
|
||||||
content:
|
|
||||||
application/json:
|
|
||||||
schema:
|
|
||||||
$ref: '#/components/schemas/BaseResponse'
|
|
||||||
examples:
|
|
||||||
forbidden:
|
|
||||||
summary: Ключ принадлежит другому пользователю
|
|
||||||
value:
|
|
||||||
msg_id: null
|
|
||||||
message_code: 6
|
|
||||||
message_desc: "Access denied"
|
|
||||||
message_body: null
|
|
||||||
'404':
|
|
||||||
description: Ключ не найден
|
|
||||||
content:
|
|
||||||
application/json:
|
|
||||||
schema:
|
|
||||||
$ref: '#/components/schemas/BaseResponse'
|
|
||||||
examples:
|
|
||||||
notFound:
|
|
||||||
summary: Ключ с указанным ID не существует
|
|
||||||
value:
|
|
||||||
msg_id: null
|
|
||||||
message_code: 4
|
|
||||||
message_desc: "API key not found"
|
|
||||||
message_body:
|
|
||||||
keyId: 999
|
|
||||||
|
|
||||||
components:
|
|
||||||
schemas:
|
|
||||||
BaseResponse:
|
|
||||||
type: object
|
|
||||||
properties:
|
|
||||||
msg_id:
|
|
||||||
type: integer
|
|
||||||
description: Идентификатор сообщения (может быть null)
|
|
||||||
nullable: true
|
|
||||||
example: null
|
|
||||||
message_code:
|
|
||||||
type: integer
|
|
||||||
description: |
|
|
||||||
Код результата:
|
|
||||||
- 0 - Успешно
|
|
||||||
- 4 - Ресурс не найден
|
|
||||||
- 6 - Доступ запрещён
|
|
||||||
- 7 - Требуется авторизация
|
|
||||||
example: 0
|
|
||||||
message_desc:
|
|
||||||
type: string
|
|
||||||
description: Описание результата операции (может быть null)
|
|
||||||
nullable: true
|
|
||||||
example: "API key created successfully"
|
|
||||||
message_body:
|
|
||||||
description: Данные ответа
|
|
||||||
nullable: true
|
|
||||||
oneOf:
|
|
||||||
- type: object
|
|
||||||
properties:
|
|
||||||
apiKey:
|
|
||||||
type: string
|
|
||||||
description: Полный API ключ (только при создании)
|
|
||||||
example: "sk-live-abc123def456..."
|
|
||||||
description: Ответ при создании ключа
|
|
||||||
- type: array
|
|
||||||
items:
|
|
||||||
$ref: '#/components/schemas/ApiKeyInfo'
|
|
||||||
description: Список ключей пользователя
|
|
||||||
- type: object
|
|
||||||
description: Пустой объект или null
|
|
||||||
nullable: true
|
|
||||||
example: null
|
|
||||||
|
|
||||||
ApiKeyInfo:
|
|
||||||
type: object
|
|
||||||
description: Информация об API ключе
|
|
||||||
properties:
|
|
||||||
id:
|
|
||||||
type: integer
|
|
||||||
format: int64
|
|
||||||
description: Уникальный идентификатор ключа
|
|
||||||
example: 1
|
|
||||||
name:
|
|
||||||
type: string
|
|
||||||
description: Название ключа
|
|
||||||
example: "Production Key"
|
|
||||||
prefix:
|
|
||||||
type: string
|
|
||||||
description: Префикс ключа для идентификации
|
|
||||||
example: "sk-live-abc123..."
|
|
||||||
isActive:
|
|
||||||
type: boolean
|
|
||||||
description: Активен ли ключ
|
|
||||||
example: true
|
|
||||||
createdAt:
|
|
||||||
type: string
|
|
||||||
format: date-time
|
|
||||||
description: Дата и время создания ключа
|
|
||||||
example: "2025-01-15T10:30:00Z"
|
|
||||||
lastUsedAt:
|
|
||||||
type: string
|
|
||||||
format: date-time
|
|
||||||
nullable: true
|
|
||||||
description: Дата и время последнего использования (null если не использовался)
|
|
||||||
example: "2025-06-30T14:22:00Z"
|
|
||||||
|
|
||||||
securitySchemes:
|
|
||||||
BearerAuth:
|
|
||||||
type: http
|
|
||||||
scheme: bearer
|
|
||||||
bearerFormat: JWT
|
|
||||||
description: JWT токен для авторизации (получить через /api/auth)
|
|
||||||
|
|
||||||
security:
|
|
||||||
- BearerAuth: []
|
|
||||||
File diff suppressed because it is too large
Load Diff
Binary file not shown.
@@ -2,13 +2,12 @@ package ru.soune
|
|||||||
|
|
||||||
interface Referral {
|
interface Referral {
|
||||||
|
|
||||||
val userId: Long
|
val userId: String
|
||||||
val referralLink: String
|
val referralLink: String
|
||||||
val inviter: Long?
|
val inviter: String?
|
||||||
val currentLevel: String
|
val currentLevel: String
|
||||||
val totalIncome: Int
|
val totalIncome: Int
|
||||||
val availableIncome: Int
|
val availableIncome: Int
|
||||||
val holdBalance: Int
|
val holdBalance: Int
|
||||||
val spentBalance: Int
|
|
||||||
val active: Boolean
|
val active: Boolean
|
||||||
}
|
}
|
||||||
@@ -2,32 +2,32 @@ package ru.soune
|
|||||||
|
|
||||||
interface ReferralRepo {
|
interface ReferralRepo {
|
||||||
|
|
||||||
fun getUserReferralLink(userId: Long): String
|
fun getUserReferralLink(userId: String): String
|
||||||
|
|
||||||
fun getUserIdByLink(link: String): Long?
|
fun getUserIdByLink(link: String): String
|
||||||
|
|
||||||
fun getInviterIdForUser(userId: Long): Long?
|
fun getInviterIdForUser(userId: String): String?
|
||||||
|
|
||||||
fun getReferralLevelForUser(userId: Long): String
|
fun getReferralLevelForUser(userId: String): String
|
||||||
|
|
||||||
fun getReferralByUserId(userId: Long): Referral
|
fun getReferralByUserId(userId: String): Referral
|
||||||
|
|
||||||
fun getReferralInvitees(userId: Long, pageSize: Int, pageNumber: Int): List<ReferralInvitee>
|
fun getReferralInvitees(userId: String, pageSize: Int, pageNumber: Int): List<ReferralInvitee>
|
||||||
|
|
||||||
// создаем новую запись в БД
|
// создаем новую запись в БД
|
||||||
fun createReferralEntity(entity: Referral)
|
fun createReferralEntity(entity: Referral)
|
||||||
|
|
||||||
// прибавить к totalIncome и availableIncome значение transferAmount
|
// прибавить к totalIncome и availableIncome значение transferAmount
|
||||||
fun increaseIncome(userId: Long, transferAmount: Int)
|
fun increaseIncome(userId: String, transferAmount: Int)
|
||||||
|
|
||||||
// установить active в true
|
// установить active в true
|
||||||
fun activateUser(userId: Long): Boolean
|
fun activateUser(userId: String): Boolean
|
||||||
|
|
||||||
// посчитать записи, у которых inviter == userId и active == true
|
// посчитать записи, у которых inviter == userId и active == true
|
||||||
fun getActiveInviteeForUser(userId: Long): Int
|
fun getActiveInviteeForUser(userId: String): Int
|
||||||
|
|
||||||
// посчитать записи, у которых inviter == userId
|
// посчитать записи, у которых inviter == userId
|
||||||
fun getTotalInviteeForUser(userId: Long): Int
|
fun getTotalInviteeForUser(userId: String): Int
|
||||||
|
|
||||||
fun upgradeReferralLevelForUser(userId: Long, newLevelId: String)
|
fun upgradeReferralLevelForUser(userId: String, newLevelId: String)
|
||||||
}
|
}
|
||||||
@@ -5,7 +5,7 @@ class ReferralService(
|
|||||||
private val referralRepo: ReferralRepo,
|
private val referralRepo: ReferralRepo,
|
||||||
) {
|
) {
|
||||||
|
|
||||||
fun onRegister(userId: Long, inviterReferralLink: String?) {
|
fun onRegister(userId: String, inviterReferralLink: String?) {
|
||||||
val initialReferralLevel = referralLevelProvider.getInitialReferralLevelId()
|
val initialReferralLevel = referralLevelProvider.getInitialReferralLevelId()
|
||||||
val referralLink = referralRepo.getUserReferralLink(userId)
|
val referralLink = referralRepo.getUserReferralLink(userId)
|
||||||
val inviter = inviterReferralLink?.let(referralRepo::getUserIdByLink)
|
val inviter = inviterReferralLink?.let(referralRepo::getUserIdByLink)
|
||||||
@@ -18,14 +18,13 @@ class ReferralService(
|
|||||||
override val totalIncome = 0
|
override val totalIncome = 0
|
||||||
override val availableIncome = 0
|
override val availableIncome = 0
|
||||||
override val holdBalance: Int = 0
|
override val holdBalance: Int = 0
|
||||||
override val spentBalance: Int = 0
|
|
||||||
override val active: Boolean = false
|
override val active: Boolean = false
|
||||||
}
|
}
|
||||||
|
|
||||||
referralRepo.createReferralEntity(referral)
|
referralRepo.createReferralEntity(referral)
|
||||||
}
|
}
|
||||||
|
|
||||||
fun onUserAccountRefill(userId: Long, transferAmount: Int) {
|
fun onUserAccountRefill(userId: String, transferAmount: Int) {
|
||||||
val wasActivated = referralRepo.activateUser(userId)
|
val wasActivated = referralRepo.activateUser(userId)
|
||||||
val inviterId = referralRepo.getInviterIdForUser(userId) ?: return
|
val inviterId = referralRepo.getInviterIdForUser(userId) ?: return
|
||||||
val currentInviterLevel = referralRepo.getReferralLevelForUser(inviterId)
|
val currentInviterLevel = referralRepo.getReferralLevelForUser(inviterId)
|
||||||
@@ -48,11 +47,11 @@ class ReferralService(
|
|||||||
referralLevelProvider.getAvailableReferralLevels()
|
referralLevelProvider.getAvailableReferralLevels()
|
||||||
|
|
||||||
|
|
||||||
fun getReferralLevelForUser(userId: Long): ReferralLevel =
|
fun getReferralLevelForUser(userId: String): ReferralLevel =
|
||||||
referralRepo.getReferralLevelForUser(userId)
|
referralRepo.getReferralLevelForUser(userId)
|
||||||
.let { referralLevelProvider.getReferralLevelById(it) }
|
.let { referralLevelProvider.getReferralLevelById(it) }
|
||||||
|
|
||||||
fun getReferralStatForUser(userId: Long): ReferralStat {
|
fun getReferralStatForUser(userId: String): ReferralStat {
|
||||||
var referral = referralRepo.getReferralByUserId(userId)
|
var referral = referralRepo.getReferralByUserId(userId)
|
||||||
return ReferralStat(
|
return ReferralStat(
|
||||||
totalInvitee = referralRepo.getTotalInviteeForUser(userId),
|
totalInvitee = referralRepo.getTotalInviteeForUser(userId),
|
||||||
@@ -60,11 +59,9 @@ class ReferralService(
|
|||||||
totalIncome = referral.totalIncome,
|
totalIncome = referral.totalIncome,
|
||||||
availableIncome = referral.availableIncome,
|
availableIncome = referral.availableIncome,
|
||||||
holdBalance = referral.holdBalance,
|
holdBalance = referral.holdBalance,
|
||||||
referralLink = referral.referralLink,
|
|
||||||
spentBalance = referral.spentBalance,
|
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
fun getInviteeForUser(userId: Long, pageSize: Int, pageNumber: Int): List<ReferralInvitee> =
|
fun getInviteeForUser(userId: String, pageSize: Int, pageNumber: Int): List<ReferralInvitee> =
|
||||||
referralRepo.getReferralInvitees(userId, pageSize, pageNumber)
|
referralRepo.getReferralInvitees(userId, pageSize, pageNumber)
|
||||||
}
|
}
|
||||||
@@ -6,6 +6,4 @@ data class ReferralStat(
|
|||||||
val totalIncome: Int,
|
val totalIncome: Int,
|
||||||
val availableIncome: Int,
|
val availableIncome: Int,
|
||||||
val holdBalance: Int,
|
val holdBalance: Int,
|
||||||
val referralLink: String,
|
|
||||||
val spentBalance: Int,
|
|
||||||
)
|
)
|
||||||
@@ -2,12 +2,10 @@ package ru.soune.nocopy;
|
|||||||
|
|
||||||
import org.springframework.boot.SpringApplication;
|
import org.springframework.boot.SpringApplication;
|
||||||
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||||||
import org.springframework.cache.annotation.EnableCaching;
|
|
||||||
import org.springframework.scheduling.annotation.EnableScheduling;
|
import org.springframework.scheduling.annotation.EnableScheduling;
|
||||||
|
|
||||||
@SpringBootApplication
|
@SpringBootApplication
|
||||||
@EnableScheduling
|
@EnableScheduling
|
||||||
@EnableCaching
|
|
||||||
public class NoCopyApplication {
|
public class NoCopyApplication {
|
||||||
|
|
||||||
public static void main(String[] args) {
|
public static void main(String[] args) {
|
||||||
|
|||||||
@@ -1,69 +0,0 @@
|
|||||||
package ru.soune.nocopy.client;
|
|
||||||
|
|
||||||
import lombok.extern.slf4j.Slf4j;
|
|
||||||
import org.springframework.beans.factory.annotation.Value;
|
|
||||||
import org.springframework.stereotype.Component;
|
|
||||||
import java.net.URI;
|
|
||||||
import java.net.http.HttpClient;
|
|
||||||
import java.net.http.HttpRequest;
|
|
||||||
import java.net.http.HttpResponse;
|
|
||||||
import java.nio.charset.StandardCharsets;
|
|
||||||
import java.util.Base64;
|
|
||||||
import java.util.HashMap;
|
|
||||||
import java.util.Map;
|
|
||||||
import java.util.UUID;
|
|
||||||
import com.fasterxml.jackson.databind.ObjectMapper;
|
|
||||||
|
|
||||||
@Component
|
|
||||||
@Slf4j
|
|
||||||
public class YooKassaClient {
|
|
||||||
|
|
||||||
@Value("${yookassa.shop-id}")
|
|
||||||
private String shopId;
|
|
||||||
|
|
||||||
@Value("${yookassa.secret-key}")
|
|
||||||
private String secretKey;
|
|
||||||
|
|
||||||
private final HttpClient httpClient = HttpClient.newHttpClient();
|
|
||||||
|
|
||||||
private final ObjectMapper mapper = new ObjectMapper();
|
|
||||||
|
|
||||||
public boolean createAutoPayment(String paymentMethodId, double amount, String description, String userId) {
|
|
||||||
try {
|
|
||||||
String url = "https://api.yookassa.ru/v3/payments";
|
|
||||||
String auth = shopId + ":" + secretKey;
|
|
||||||
String encodedAuth = Base64.getEncoder().encodeToString(auth.getBytes(StandardCharsets.UTF_8));
|
|
||||||
|
|
||||||
Map<String, Object> body = new HashMap<>();
|
|
||||||
body.put("amount", Map.of("value", String.format("%.2f", amount),
|
|
||||||
"currency", "RUB"));
|
|
||||||
body.put("payment_method_id", paymentMethodId);
|
|
||||||
body.put("description", description);
|
|
||||||
body.put("capture", true);
|
|
||||||
body.put("metadata", Map.of("user_id", userId, "auto_payment", "true"));
|
|
||||||
|
|
||||||
String requestBody = mapper.writeValueAsString(body);
|
|
||||||
|
|
||||||
HttpRequest request = HttpRequest.newBuilder()
|
|
||||||
.uri(URI.create(url))
|
|
||||||
.header("Content-Type", "application/json")
|
|
||||||
.header("Authorization", "Basic " + encodedAuth)
|
|
||||||
.header("Idempotence-Key", UUID.randomUUID().toString())
|
|
||||||
.POST(HttpRequest.BodyPublishers.ofString(requestBody))
|
|
||||||
.build();
|
|
||||||
|
|
||||||
HttpResponse<String> response = httpClient.send(request, HttpResponse.BodyHandlers.ofString());
|
|
||||||
|
|
||||||
if (response.statusCode() == 200 || response.statusCode() == 201) {
|
|
||||||
log.info("Auto payment created: {}", response.body());
|
|
||||||
return true;
|
|
||||||
} else {
|
|
||||||
log.error("Auto payment failed: {} - {}", response.statusCode(), response.body());
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
} catch (Exception e) {
|
|
||||||
log.error("Error creating auto payment", e);
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,29 +1,23 @@
|
|||||||
package ru.soune.nocopy.configuration;
|
package ru.soune.nocopy.configuration;
|
||||||
|
|
||||||
import com.github.benmanes.caffeine.cache.Caffeine;
|
|
||||||
import com.vrt.AudioFilePathProvider;
|
import com.vrt.AudioFilePathProvider;
|
||||||
import com.vrt.fileprotection.FileProtector;
|
import com.vrt.fileprotection.FileProtector;
|
||||||
import com.vrt.fileprotection.audio.AudioLocalSearch;
|
import com.vrt.fileprotection.audio.AudioLocalSearch;
|
||||||
import com.vrt.fileprotection.documents.DocumentLocalSearch;
|
|
||||||
import com.vrt.fileprotection.image.ImageLocalSearch;
|
import com.vrt.fileprotection.image.ImageLocalSearch;
|
||||||
import com.vrt.fileprotection.image.ImageUniqueCheck;
|
import com.vrt.fileprotection.image.ImageUniqueCheck;
|
||||||
|
import com.vrt.fileprotection.image.phash.PerceptualHashHelper;
|
||||||
import lombok.AllArgsConstructor;
|
import lombok.AllArgsConstructor;
|
||||||
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
|
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
|
||||||
import org.springframework.cache.CacheManager;
|
|
||||||
import org.springframework.cache.annotation.EnableCaching;
|
|
||||||
import org.springframework.cache.caffeine.CaffeineCacheManager;
|
|
||||||
import org.springframework.context.annotation.Bean;
|
import org.springframework.context.annotation.Bean;
|
||||||
import org.springframework.context.annotation.Configuration;
|
import org.springframework.context.annotation.Configuration;
|
||||||
import org.springframework.security.crypto.bcrypt.BCryptPasswordEncoder;
|
import org.springframework.security.crypto.bcrypt.BCryptPasswordEncoder;
|
||||||
import org.springframework.security.crypto.password.PasswordEncoder;
|
import org.springframework.security.crypto.password.PasswordEncoder;
|
||||||
|
|
||||||
import java.util.Collections;
|
import java.util.Collections;
|
||||||
import java.util.concurrent.TimeUnit;
|
|
||||||
|
|
||||||
@Configuration
|
@Configuration
|
||||||
@EnableAutoConfiguration
|
@EnableAutoConfiguration
|
||||||
@AllArgsConstructor
|
@AllArgsConstructor
|
||||||
@EnableCaching
|
|
||||||
public class ApplicationConfig {
|
public class ApplicationConfig {
|
||||||
|
|
||||||
@Bean
|
@Bean
|
||||||
@@ -39,8 +33,7 @@ public class ApplicationConfig {
|
|||||||
ImageUniqueCheck imageUniqueCheck,
|
ImageUniqueCheck imageUniqueCheck,
|
||||||
ImageLocalSearch imageLocalSearch,
|
ImageLocalSearch imageLocalSearch,
|
||||||
AudioLocalSearch audioLocalSearch,
|
AudioLocalSearch audioLocalSearch,
|
||||||
AudioFilePathProvider audioFilePathProvider,
|
AudioFilePathProvider audioFilePathProvider) {
|
||||||
DocumentLocalSearch documentLocalSearch) {
|
|
||||||
|
|
||||||
return new com.vrt.NoCopyFileService(
|
return new com.vrt.NoCopyFileService(
|
||||||
Collections.emptyList(),
|
Collections.emptyList(),
|
||||||
@@ -49,25 +42,8 @@ public class ApplicationConfig {
|
|||||||
imageUniqueCheck,
|
imageUniqueCheck,
|
||||||
imageLocalSearch,
|
imageLocalSearch,
|
||||||
audioLocalSearch,
|
audioLocalSearch,
|
||||||
audioFilePathProvider,
|
audioFilePathProvider
|
||||||
documentLocalSearch
|
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Bean
|
|
||||||
public CacheManager cacheManager() {
|
|
||||||
CaffeineCacheManager cacheManager = new CaffeineCacheManager(
|
|
||||||
"reverseImageSearch", "parsedImages");
|
|
||||||
|
|
||||||
cacheManager.setCaffeine(Caffeine.newBuilder()
|
|
||||||
.maximumSize(2_000)
|
|
||||||
.expireAfterWrite(1, TimeUnit.HOURS)
|
|
||||||
.expireAfterAccess(30, TimeUnit.MINUTES)
|
|
||||||
.softValues()
|
|
||||||
.recordStats()
|
|
||||||
);
|
|
||||||
|
|
||||||
return cacheManager;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1,23 +0,0 @@
|
|||||||
package ru.soune.nocopy.configuration;
|
|
||||||
|
|
||||||
import org.springframework.context.annotation.Bean;
|
|
||||||
import org.springframework.context.annotation.Configuration;
|
|
||||||
import org.springframework.web.cors.CorsConfiguration;
|
|
||||||
import org.springframework.web.cors.UrlBasedCorsConfigurationSource;
|
|
||||||
import org.springframework.web.filter.CorsFilter;
|
|
||||||
|
|
||||||
@Configuration
|
|
||||||
public class CorsConfig {
|
|
||||||
|
|
||||||
@Bean
|
|
||||||
public CorsFilter corsFilter() {
|
|
||||||
UrlBasedCorsConfigurationSource source = new UrlBasedCorsConfigurationSource();
|
|
||||||
CorsConfiguration config = new CorsConfiguration();
|
|
||||||
config.addAllowedOrigin("*");
|
|
||||||
config.addAllowedMethod("*");
|
|
||||||
config.addAllowedHeader("*");
|
|
||||||
source.registerCorsConfiguration("/**", config);
|
|
||||||
|
|
||||||
return new CorsFilter(source);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -9,148 +9,33 @@ import java.util.Map;
|
|||||||
|
|
||||||
@Configuration
|
@Configuration
|
||||||
public class HandlerConfig {
|
public class HandlerConfig {
|
||||||
/*
|
|
||||||
RegRequestHandler
|
|
||||||
LoginRequestHandler
|
|
||||||
FileUploadHandler
|
|
||||||
FileEntityHandler
|
|
||||||
ImageFoundRequestHandler
|
|
||||||
VerifyRegisterUserHandler
|
|
||||||
TariffHandler
|
|
||||||
ReferralHandler
|
|
||||||
ResetPasswordHandler
|
|
||||||
MonitoringHandler
|
|
||||||
GlobalSearchHandler
|
|
||||||
ComplaintEntityHandler
|
|
||||||
ViolationNotionHandler
|
|
||||||
NotificationHandler
|
|
||||||
TokenOperationHandler
|
|
||||||
DockViewFileHandler
|
|
||||||
*/
|
|
||||||
|
|
||||||
/*
|
|
||||||
Убрать
|
|
||||||
LogoutRequestHandler logoutHandler
|
|
||||||
*/
|
|
||||||
@Bean
|
@Bean
|
||||||
public Map<Integer, RequestHandler> handlers(
|
public Map<Integer, RequestHandler> handlers(
|
||||||
|
RegRequestHandler reg,
|
||||||
|
LoginRequestHandler login,
|
||||||
FileUploadHandler upload,
|
FileUploadHandler upload,
|
||||||
FileEntityHandler file,
|
FileEntityHandler file,
|
||||||
|
LogoutRequestHandler logoutHandler,
|
||||||
ImageFoundRequestHandler imageFoundRequestHandler,
|
ImageFoundRequestHandler imageFoundRequestHandler,
|
||||||
VerifyRegisterUserHandler verifyRegisterUser,
|
VerifyRegisterUserHandler verifyRegisterUser,
|
||||||
AuthRequestHandler authRequestHandler,
|
AuthRequestHandler authRequestHandler,
|
||||||
CompanyHandler companyHandler,
|
CompanyHandler companyHandler,
|
||||||
TariffHandler tariffHandler,
|
TariffHandler tariffHandler,
|
||||||
TariffInfoHandler tariffInfoHandler,
|
TariffInfoHandler tariffInfoHandler
|
||||||
ReferralHandler referralHandler,
|
|
||||||
PaymentHandler paymentHandler,
|
|
||||||
CostHandler costHandler,
|
|
||||||
MonitoringHandler monitoringHandler,
|
|
||||||
ViolationHandler violationHandler,
|
|
||||||
ViolationStatisticsHandler violationStatisticsHandler,
|
|
||||||
GlobalSearchHandler globalSearchHandler,
|
|
||||||
ViolationNotionHandler violationNotionHandler,
|
|
||||||
ComplaintEntityHandler complaintEntityHandler,
|
|
||||||
UserInfoHandler userInfoHandler,
|
|
||||||
NotificationHandler notificationHandler,
|
|
||||||
UserVerificationHandler userVerificationHandler,
|
|
||||||
LawCaseHandler lawCaseHandler,
|
|
||||||
TokenOperationHandler tokenOperationHandler,
|
|
||||||
MonitoringStatisticHandler monitoringStatisticHandler,
|
|
||||||
DockViewFileHandler dockViewFileHandler
|
|
||||||
) {
|
) {
|
||||||
Map<Integer, RequestHandler> map = new HashMap<>();
|
Map<Integer, RequestHandler> map = new HashMap<>();
|
||||||
|
map.put(20001, login);
|
||||||
|
map.put(20002, reg);
|
||||||
map.put(20004, upload);
|
map.put(20004, upload);
|
||||||
map.put(20005, file);
|
map.put(20005, file);
|
||||||
|
map.put(20006, logoutHandler);
|
||||||
map.put(20007, imageFoundRequestHandler);
|
map.put(20007, imageFoundRequestHandler);
|
||||||
map.put(20008, authRequestHandler);
|
map.put(20008, authRequestHandler);
|
||||||
map.put(20009, verifyRegisterUser);
|
map.put(20009, verifyRegisterUser);
|
||||||
map.put(30000, companyHandler);
|
map.put(30000, companyHandler);
|
||||||
map.put(30001, tariffHandler);
|
map.put(30001, tariffHandler);
|
||||||
map.put(30002, tariffInfoHandler);
|
map.put(30002, tariffInfoHandler);
|
||||||
map.put(30003, referralHandler);
|
|
||||||
map.put(30005, paymentHandler);
|
|
||||||
map.put(30007, monitoringHandler);
|
|
||||||
map.put(30008, costHandler);
|
|
||||||
map.put(30009, violationHandler);
|
|
||||||
map.put(30010, violationStatisticsHandler);
|
|
||||||
map.put(30011, globalSearchHandler);
|
|
||||||
map.put(30012, violationNotionHandler);
|
|
||||||
map.put(30013, complaintEntityHandler);
|
|
||||||
map.put(30014, userInfoHandler);
|
|
||||||
map.put(30015, notificationHandler);
|
|
||||||
map.put(30016, userVerificationHandler);
|
|
||||||
map.put(30017, lawCaseHandler);
|
|
||||||
map.put(30018, tokenOperationHandler);
|
|
||||||
map.put(30027, monitoringStatisticHandler);
|
|
||||||
map.put(30028, dockViewFileHandler);
|
|
||||||
|
|
||||||
return map;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Bean
|
|
||||||
public Map<Integer, RequestHandler> internalInfoHandler(
|
|
||||||
StatisticComplaintHandler statisticComplaintHandler,
|
|
||||||
StatisticUserFilesHandler statisticUserHandler,
|
|
||||||
StatisticTariffInfoFileHandler statisticTariffInfoFileHandler,
|
|
||||||
StatisticUserDynamicHandler statisticUserDynamicHandler,
|
|
||||||
StatisticProtectedFilesHandler statisticProtectedFilesHandler,
|
|
||||||
StatisticViolationHandler statisticViolationHandler,
|
|
||||||
StatisticSubscriberHandler statisticSubscriberHandler,
|
|
||||||
StatisticTokenHandler statisticTokenHandler,
|
|
||||||
StatisticIncomeHandler statisticIncomeHandler,
|
|
||||||
FileInteranlInfoHandler fileInfo,
|
|
||||||
TariffInformationHandler tariffInformationHandler,
|
|
||||||
UserInfoHandler userInfoHandler
|
|
||||||
)
|
|
||||||
{
|
|
||||||
Map<Integer, RequestHandler> map = new HashMap<>();
|
|
||||||
map.put(30014, userInfoHandler);
|
|
||||||
map.put(30019, statisticUserHandler);
|
|
||||||
map.put(30020, statisticTariffInfoFileHandler);
|
|
||||||
map.put(30021, statisticUserDynamicHandler);
|
|
||||||
map.put(30022, statisticProtectedFilesHandler);
|
|
||||||
map.put(30023, statisticViolationHandler);
|
|
||||||
map.put(30024, statisticSubscriberHandler);
|
|
||||||
map.put(30025, statisticTokenHandler);
|
|
||||||
map.put(30026, statisticIncomeHandler);
|
|
||||||
map.put(30029, statisticComplaintHandler);
|
|
||||||
map.put(40001, fileInfo);
|
|
||||||
map.put(40004, tariffInformationHandler);
|
|
||||||
|
|
||||||
return map;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Bean
|
|
||||||
public Map<Integer, RequestHandler> internalControlHandler(
|
|
||||||
ControlComplaintHandler controlComplaintHandler,
|
|
||||||
FileInternalControlHandler fileInternalControlHandler,
|
|
||||||
TariffControlHandler tariffControlHandler,
|
|
||||||
UserInfoHandler userInfoHandler
|
|
||||||
)
|
|
||||||
{
|
|
||||||
Map<Integer, RequestHandler> map = new HashMap<>();
|
|
||||||
map.put(30014, userInfoHandler);
|
|
||||||
map.put(30030, controlComplaintHandler);
|
|
||||||
map.put(40002, fileInternalControlHandler);
|
|
||||||
map.put(40003, tariffControlHandler);
|
|
||||||
|
|
||||||
return map;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Bean
|
|
||||||
public Map<Integer, RequestHandler> authHandler(
|
|
||||||
RegRequestHandler reg,
|
|
||||||
LoginRequestHandler login,
|
|
||||||
DaDataHandler daDataHandler,
|
|
||||||
ResetPasswordHandler resetPasswordHandler
|
|
||||||
)
|
|
||||||
{
|
|
||||||
Map<Integer, RequestHandler> map = new HashMap<>();
|
|
||||||
map.put(20001, login);
|
|
||||||
map.put(20002, reg);
|
|
||||||
map.put(30004, daDataHandler);
|
|
||||||
map.put(20010, resetPasswordHandler);
|
|
||||||
|
|
||||||
return map;
|
return map;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,44 +0,0 @@
|
|||||||
package ru.soune.nocopy.configuration;
|
|
||||||
|
|
||||||
import lombok.extern.slf4j.Slf4j;
|
|
||||||
import org.springframework.beans.factory.annotation.Autowired;
|
|
||||||
import org.springframework.boot.context.event.ApplicationReadyEvent;
|
|
||||||
import org.springframework.context.event.EventListener;
|
|
||||||
import org.springframework.stereotype.Component;
|
|
||||||
import ru.soune.nocopy.entity.file.FileEntity;
|
|
||||||
import ru.soune.nocopy.repository.FileEntityRepository;
|
|
||||||
import ru.soune.nocopy.service.file.ImageResizeService;
|
|
||||||
|
|
||||||
import java.nio.file.Files;
|
|
||||||
import java.nio.file.Path;
|
|
||||||
import java.nio.file.Paths;
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
@Component
|
|
||||||
@Slf4j
|
|
||||||
public class ImageMigration {
|
|
||||||
|
|
||||||
@Autowired
|
|
||||||
private FileEntityRepository fileRepository;
|
|
||||||
|
|
||||||
@Autowired
|
|
||||||
private ImageResizeService imageResizeService;
|
|
||||||
|
|
||||||
@EventListener(ApplicationReadyEvent.class)
|
|
||||||
public void migrate() {
|
|
||||||
List<FileEntity> images = fileRepository.findByThumbnailPathIsNull();
|
|
||||||
|
|
||||||
for (FileEntity file : images) {
|
|
||||||
try {
|
|
||||||
Path path = Paths.get(file.getProtectedFilePath());
|
|
||||||
if (Files.exists(path)) {
|
|
||||||
byte[] data = Files.readAllBytes(path);
|
|
||||||
imageResizeService.generateSizes(file, data);
|
|
||||||
fileRepository.save(file);
|
|
||||||
}
|
|
||||||
} catch (Exception e) {
|
|
||||||
log.error("Error migrating {}: {}", file.getId(), e.getMessage());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -9,7 +9,6 @@ import com.fasterxml.jackson.datatype.jsr310.ser.LocalDateTimeSerializer;
|
|||||||
import org.springframework.context.annotation.Bean;
|
import org.springframework.context.annotation.Bean;
|
||||||
import org.springframework.context.annotation.Configuration;
|
import org.springframework.context.annotation.Configuration;
|
||||||
import org.springframework.context.annotation.Primary;
|
import org.springframework.context.annotation.Primary;
|
||||||
import org.springframework.http.converter.json.Jackson2ObjectMapperBuilder;
|
|
||||||
|
|
||||||
import java.time.LocalDate;
|
import java.time.LocalDate;
|
||||||
import java.time.LocalDateTime;
|
import java.time.LocalDateTime;
|
||||||
@@ -21,13 +20,7 @@ public class JacksonConfig {
|
|||||||
@Bean
|
@Bean
|
||||||
@Primary
|
@Primary
|
||||||
public ObjectMapper objectMapper() {
|
public ObjectMapper objectMapper() {
|
||||||
ObjectMapper mapper = Jackson2ObjectMapperBuilder.json()
|
ObjectMapper mapper = new ObjectMapper();
|
||||||
.defaultViewInclusion(true)
|
|
||||||
.autoDetectFields(true)
|
|
||||||
.failOnUnknownProperties(false)
|
|
||||||
.featuresToDisable(SerializationFeature.WRITE_DATES_AS_TIMESTAMPS)
|
|
||||||
.featuresToEnable(SerializationFeature.INDENT_OUTPUT)
|
|
||||||
.build();
|
|
||||||
|
|
||||||
JavaTimeModule javaTimeModule = new JavaTimeModule();
|
JavaTimeModule javaTimeModule = new JavaTimeModule();
|
||||||
|
|
||||||
|
|||||||
@@ -1,16 +0,0 @@
|
|||||||
package ru.soune.nocopy.configuration;
|
|
||||||
|
|
||||||
import org.springframework.context.annotation.Bean;
|
|
||||||
import org.springframework.context.annotation.Configuration;
|
|
||||||
import ru.soune.ReferralLevelProvider;
|
|
||||||
import ru.soune.ReferralRepo;
|
|
||||||
import ru.soune.ReferralService;
|
|
||||||
|
|
||||||
@Configuration
|
|
||||||
public class ReferralConfig {
|
|
||||||
|
|
||||||
@Bean
|
|
||||||
public ReferralService referralService(ReferralLevelProvider referralLevelProvider, ReferralRepo referralRepo) {
|
|
||||||
return new ReferralService(referralLevelProvider, referralRepo);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -21,15 +21,4 @@ public class AsyncConfig {
|
|||||||
executor.initialize();
|
executor.initialize();
|
||||||
return executor;
|
return executor;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Bean(name = "taskExecutor")
|
|
||||||
public Executor taskExecutor() {
|
|
||||||
ThreadPoolTaskExecutor executor = new ThreadPoolTaskExecutor();
|
|
||||||
executor.setCorePoolSize(3);
|
|
||||||
executor.setMaxPoolSize(5);
|
|
||||||
executor.setQueueCapacity(50);
|
|
||||||
executor.setThreadNamePrefix("global-search-");
|
|
||||||
executor.initialize();
|
|
||||||
return executor;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,25 @@
|
|||||||
|
package ru.soune.nocopy.configuration.file;
|
||||||
|
|
||||||
|
import jakarta.annotation.PostConstruct;
|
||||||
|
import lombok.Data;
|
||||||
|
import org.springframework.boot.context.properties.ConfigurationProperties;
|
||||||
|
import org.springframework.context.annotation.Configuration;
|
||||||
|
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.nio.file.Files;
|
||||||
|
import java.nio.file.Paths;
|
||||||
|
|
||||||
|
@Configuration
|
||||||
|
@ConfigurationProperties(prefix = "file.storage")
|
||||||
|
@Data
|
||||||
|
public class FileStorageConfig {
|
||||||
|
private String basePath;
|
||||||
|
private long maxFileSize;
|
||||||
|
private int chunkSize;
|
||||||
|
private int authTokenLifeHours;
|
||||||
|
|
||||||
|
@PostConstruct
|
||||||
|
public void init() throws IOException {
|
||||||
|
Files.createDirectories(Paths.get(basePath));
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -4,12 +4,16 @@ import lombok.AllArgsConstructor;
|
|||||||
import org.springframework.boot.context.event.ApplicationReadyEvent;
|
import org.springframework.boot.context.event.ApplicationReadyEvent;
|
||||||
import org.springframework.context.event.EventListener;
|
import org.springframework.context.event.EventListener;
|
||||||
import org.springframework.stereotype.Component;
|
import org.springframework.stereotype.Component;
|
||||||
|
import ru.soune.nocopy.service.file.FileProcessingOrchestrator;
|
||||||
|
|
||||||
@Component
|
@Component
|
||||||
@AllArgsConstructor
|
@AllArgsConstructor
|
||||||
public class NoCopyInitializer {
|
public class NoCopyInitializer {
|
||||||
|
|
||||||
|
private final FileProcessingOrchestrator orchestrator;
|
||||||
|
|
||||||
@EventListener(ApplicationReadyEvent.class)
|
@EventListener(ApplicationReadyEvent.class)
|
||||||
public void initializeOnStartup() {
|
public void initializeOnStartup() {
|
||||||
|
orchestrator.initializeProcessingQueue();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -1,26 +0,0 @@
|
|||||||
package ru.soune.nocopy.configuration.search;
|
|
||||||
|
|
||||||
import lombok.Data;
|
|
||||||
import org.springframework.boot.context.properties.ConfigurationProperties;
|
|
||||||
import org.springframework.stereotype.Component;
|
|
||||||
import java.util.Map;
|
|
||||||
|
|
||||||
@Data
|
|
||||||
@Component
|
|
||||||
@ConfigurationProperties(prefix = "search")
|
|
||||||
public class SearchProperties {
|
|
||||||
private Map<String, EngineConfig> engines;
|
|
||||||
private ProxyConfig proxy;
|
|
||||||
|
|
||||||
@Data
|
|
||||||
public static class EngineConfig {
|
|
||||||
private boolean enabled;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Data
|
|
||||||
public static class ProxyConfig {
|
|
||||||
private boolean enabled;
|
|
||||||
private String host;
|
|
||||||
private int port;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,44 +0,0 @@
|
|||||||
package ru.soune.nocopy.configuration.security;
|
|
||||||
|
|
||||||
import lombok.RequiredArgsConstructor;
|
|
||||||
import org.springframework.context.annotation.Bean;
|
|
||||||
import org.springframework.context.annotation.Configuration;
|
|
||||||
import org.springframework.security.config.annotation.web.builders.HttpSecurity;
|
|
||||||
import org.springframework.security.config.annotation.web.configuration.EnableWebSecurity;
|
|
||||||
import org.springframework.security.config.annotation.web.configurers.AbstractHttpConfigurer;
|
|
||||||
import org.springframework.security.config.http.SessionCreationPolicy;
|
|
||||||
import org.springframework.security.web.SecurityFilterChain;
|
|
||||||
import org.springframework.security.web.authentication.UsernamePasswordAuthenticationFilter;
|
|
||||||
import ru.soune.nocopy.util.ApiKeyFilter;
|
|
||||||
import ru.soune.nocopy.util.JwtAuthFilter;
|
|
||||||
|
|
||||||
@Configuration
|
|
||||||
@EnableWebSecurity
|
|
||||||
@RequiredArgsConstructor
|
|
||||||
public class SecurityConfig {
|
|
||||||
|
|
||||||
private final JwtAuthFilter jwtAuthFilter;
|
|
||||||
|
|
||||||
private final ApiKeyFilter apiKeyFilter;
|
|
||||||
|
|
||||||
@Bean
|
|
||||||
public SecurityFilterChain filterChain(HttpSecurity http) throws Exception {
|
|
||||||
http
|
|
||||||
.csrf(AbstractHttpConfigurer::disable)
|
|
||||||
.sessionManagement(session ->
|
|
||||||
session.sessionCreationPolicy(SessionCreationPolicy.STATELESS))
|
|
||||||
.authorizeHttpRequests(auth -> auth
|
|
||||||
.requestMatchers("/api/v{version}/files/public-download/**").permitAll()
|
|
||||||
.requestMatchers("/api/files/public/**").permitAll()
|
|
||||||
.requestMatchers("/api/auth/**").permitAll()
|
|
||||||
.requestMatchers("/api/file/link/**").permitAll()
|
|
||||||
.requestMatchers("/check/api/**").permitAll()
|
|
||||||
.requestMatchers("/api/internal/**").permitAll()
|
|
||||||
.anyRequest().authenticated()
|
|
||||||
)
|
|
||||||
.addFilterBefore(apiKeyFilter, UsernamePasswordAuthenticationFilter.class)
|
|
||||||
.addFilterBefore(jwtAuthFilter, UsernamePasswordAuthenticationFilter.class);
|
|
||||||
|
|
||||||
return http.build();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -3,16 +3,15 @@ package ru.soune.nocopy.controller;
|
|||||||
import com.vrt.NoCopyFileService;
|
import com.vrt.NoCopyFileService;
|
||||||
import com.vrt.fileprotection.FileProtector;
|
import com.vrt.fileprotection.FileProtector;
|
||||||
import com.vrt.fileprotection.NoCopyCheckResult;
|
import com.vrt.fileprotection.NoCopyCheckResult;
|
||||||
import com.vrt.fileprotection.audio.AudioCheckResult;
|
|
||||||
import com.vrt.fileprotection.documents.DocumentCheckResult;
|
|
||||||
import jakarta.servlet.http.HttpServletRequest;
|
|
||||||
import lombok.RequiredArgsConstructor;
|
import lombok.RequiredArgsConstructor;
|
||||||
import lombok.extern.slf4j.Slf4j;
|
import lombok.extern.slf4j.Slf4j;
|
||||||
import org.apache.commons.io.IOUtils;
|
import org.springframework.core.io.FileSystemResource;
|
||||||
import org.springframework.data.domain.Page;
|
import org.springframework.data.domain.Page;
|
||||||
import org.springframework.data.domain.Pageable;
|
import org.springframework.data.domain.Pageable;
|
||||||
import org.springframework.data.web.PageableDefault;
|
import org.springframework.data.web.PageableDefault;
|
||||||
import org.springframework.http.*;
|
import org.springframework.http.HttpHeaders;
|
||||||
|
import org.springframework.http.MediaType;
|
||||||
|
import org.springframework.http.ResponseEntity;
|
||||||
import org.springframework.validation.BindingResult;
|
import org.springframework.validation.BindingResult;
|
||||||
import org.springframework.validation.FieldError;
|
import org.springframework.validation.FieldError;
|
||||||
import org.springframework.web.bind.annotation.*;
|
import org.springframework.web.bind.annotation.*;
|
||||||
@@ -20,34 +19,33 @@ import org.springframework.web.multipart.MultipartFile;
|
|||||||
import ru.soune.nocopy.dto.BaseRequest;
|
import ru.soune.nocopy.dto.BaseRequest;
|
||||||
import ru.soune.nocopy.dto.BaseResponse;
|
import ru.soune.nocopy.dto.BaseResponse;
|
||||||
import ru.soune.nocopy.dto.MessageCode;
|
import ru.soune.nocopy.dto.MessageCode;
|
||||||
import ru.soune.nocopy.dto.docviewer.DocViewerRequest;
|
|
||||||
import ru.soune.nocopy.dto.file.*;
|
import ru.soune.nocopy.dto.file.*;
|
||||||
import ru.soune.nocopy.dto.register.RegAnswer;
|
import ru.soune.nocopy.dto.register.RegAnswer;
|
||||||
import ru.soune.nocopy.entity.company.Company;
|
|
||||||
import ru.soune.nocopy.entity.file.FileEntity;
|
import ru.soune.nocopy.entity.file.FileEntity;
|
||||||
import ru.soune.nocopy.entity.file.FileStatus;
|
import ru.soune.nocopy.entity.file.FileStatus;
|
||||||
|
import ru.soune.nocopy.entity.file.ProtectionStatus;
|
||||||
import ru.soune.nocopy.entity.file.UploadStatus;
|
import ru.soune.nocopy.entity.file.UploadStatus;
|
||||||
import ru.soune.nocopy.entity.file.permission.PermissionType;
|
import ru.soune.nocopy.entity.user.AuthToken;
|
||||||
import ru.soune.nocopy.entity.user.User;
|
|
||||||
import ru.soune.nocopy.exception.*;
|
import ru.soune.nocopy.exception.*;
|
||||||
import ru.soune.nocopy.handler.*;
|
import ru.soune.nocopy.handler.*;
|
||||||
import ru.soune.nocopy.repository.AuthTokenRepository;
|
import ru.soune.nocopy.repository.AuthTokenRepository;
|
||||||
import ru.soune.nocopy.repository.FileEntityRepository;
|
import ru.soune.nocopy.repository.FileEntityRepository;
|
||||||
import ru.soune.nocopy.repository.UserRepository;
|
|
||||||
import ru.soune.nocopy.service.FileSimilarityService;
|
import ru.soune.nocopy.service.FileSimilarityService;
|
||||||
import ru.soune.nocopy.service.dockview.DockViewService;
|
|
||||||
import ru.soune.nocopy.service.file.*;
|
|
||||||
import ru.soune.nocopy.service.file.CheckCounterService;
|
|
||||||
import ru.soune.nocopy.service.file.ProtectionsLimitService;
|
import ru.soune.nocopy.service.file.ProtectionsLimitService;
|
||||||
import ru.soune.nocopy.service.file.cloud.CloudStorageService;
|
import ru.soune.nocopy.service.register.AuthService;
|
||||||
import software.amazon.awssdk.services.s3.model.NoSuchKeyException;
|
import ru.soune.nocopy.service.file.FileEntityService;
|
||||||
|
import ru.soune.nocopy.service.file.FileUploadService;
|
||||||
|
import ru.soune.nocopy.util.FileUtil;
|
||||||
|
|
||||||
import java.io.File;
|
import java.io.File;
|
||||||
import java.io.FileNotFoundException;
|
import java.io.IOException;
|
||||||
import java.io.InputStream;
|
import java.nio.file.Files;
|
||||||
import java.net.URLEncoder;
|
import java.nio.file.Path;
|
||||||
import java.nio.charset.StandardCharsets;
|
import java.nio.file.Paths;
|
||||||
import java.util.*;
|
import java.util.HashMap;
|
||||||
|
import java.util.List;
|
||||||
|
import java.util.Map;
|
||||||
|
import java.util.Optional;
|
||||||
import java.util.stream.Collectors;
|
import java.util.stream.Collectors;
|
||||||
|
|
||||||
@Slf4j
|
@Slf4j
|
||||||
@@ -59,36 +57,22 @@ public class ApiController {
|
|||||||
|
|
||||||
private final Map<Integer, RequestHandler> handlers;
|
private final Map<Integer, RequestHandler> handlers;
|
||||||
|
|
||||||
private final Map<Integer, RequestHandler> internalInfoHandler;
|
|
||||||
|
|
||||||
private final Map<Integer, RequestHandler> internalControlHandler;
|
|
||||||
|
|
||||||
private final Map<Integer, RequestHandler> authHandler;
|
|
||||||
|
|
||||||
private final FileEntityService fileEntityService;
|
private final FileEntityService fileEntityService;
|
||||||
|
|
||||||
|
private final AuthService authService;
|
||||||
|
|
||||||
private final FileSimilarityService fileSimilarityService;
|
private final FileSimilarityService fileSimilarityService;
|
||||||
|
|
||||||
private final FileEntityRepository fileEntityRepository;
|
private final FileEntityRepository fileEntityRepository;
|
||||||
|
|
||||||
private final NoCopyFileService noCopyFileService;
|
private final NoCopyFileService noCopyFileService;
|
||||||
|
|
||||||
private final HttpServletRequest httpServletRequest;
|
private final FileUtil fileUtil;
|
||||||
|
|
||||||
private final ProtectionsLimitService protectionsLimitService;
|
private final ProtectionsLimitService protectionsLimitService;
|
||||||
|
|
||||||
private final AuthTokenRepository authTokenRepository;
|
private final AuthTokenRepository authTokenRepository;
|
||||||
|
|
||||||
private final UserRepository userRepository;
|
|
||||||
|
|
||||||
private final CheckCounterService checkCounterService;
|
|
||||||
|
|
||||||
private final CloudStorageService cloudStorageService;
|
|
||||||
|
|
||||||
private final ZipService zipService;
|
|
||||||
|
|
||||||
private final DockViewService dockViewService;
|
|
||||||
|
|
||||||
@PostMapping("/v{version}/data")
|
@PostMapping("/v{version}/data")
|
||||||
public ResponseEntity<?> handlePostRequest(@RequestBody BaseRequest request,
|
public ResponseEntity<?> handlePostRequest(@RequestBody BaseRequest request,
|
||||||
@PathVariable("version") int version) {
|
@PathVariable("version") int version) {
|
||||||
@@ -130,136 +114,6 @@ public class ApiController {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@PostMapping("/auth")
|
|
||||||
public ResponseEntity<?> handlePostRequest(@RequestBody BaseRequest request) {
|
|
||||||
Integer msgId = request.getMsgId();
|
|
||||||
BaseResponse response;
|
|
||||||
|
|
||||||
try {
|
|
||||||
RequestHandler handler = authHandler.get(msgId);
|
|
||||||
|
|
||||||
if (handler == null) {
|
|
||||||
response = new BaseResponse(msgId,
|
|
||||||
MessageCode.MSG_ID_NOT_FOUND.getCode(),
|
|
||||||
MessageCode.MSG_ID_NOT_FOUND.getDescription(),
|
|
||||||
new HashMap<>());
|
|
||||||
} else {
|
|
||||||
response = handler.handle(request);
|
|
||||||
}
|
|
||||||
|
|
||||||
return ResponseEntity.ok().body(response);
|
|
||||||
} catch (ValidationException e) {
|
|
||||||
return createValidationErrorResponse(e.getBindingResult(), e.getMsgId());
|
|
||||||
} catch (UserNotFoundException e) {
|
|
||||||
return ResponseEntity.ok().body(new BaseResponse(msgId, MessageCode.USER_NOT_FOUND.getCode(),
|
|
||||||
MessageCode.USER_NOT_FOUND.getDescription(), new HashMap<>()));
|
|
||||||
} catch (NotFoundAuthToken e) {
|
|
||||||
return ResponseEntity.ok().body(new BaseResponse(msgId, MessageCode.AUTH_TOKEN_NOT_FOUND.getCode(),
|
|
||||||
MessageCode.AUTH_TOKEN_NOT_FOUND.getDescription(), new HashMap<>()));
|
|
||||||
} catch (NotValidFieldException e) {
|
|
||||||
throw e;
|
|
||||||
} catch (Exception e) {
|
|
||||||
log.error("Handler execution failed for msgId: {}", msgId, e);
|
|
||||||
|
|
||||||
BaseResponse errorResponse = new BaseResponse(msgId,
|
|
||||||
MessageCode.INVALID_JSON_BODY.getCode(),
|
|
||||||
MessageCode.INVALID_JSON_BODY.getDescription(),
|
|
||||||
new HashMap<>());
|
|
||||||
|
|
||||||
return ResponseEntity.ok().body(errorResponse);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@PostMapping("/internal/data-info")
|
|
||||||
public ResponseEntity<?> handleInternalInfoPostRequest(@RequestBody BaseRequest request) {
|
|
||||||
Integer msgId = request.getMsgId();
|
|
||||||
BaseResponse response;
|
|
||||||
RequestHandler internalHandler = internalInfoHandler.get(msgId);
|
|
||||||
|
|
||||||
try {
|
|
||||||
if (internalHandler == null) {
|
|
||||||
response = new BaseResponse(msgId,
|
|
||||||
MessageCode.MSG_ID_NOT_FOUND.getCode(),
|
|
||||||
MessageCode.MSG_ID_NOT_FOUND.getDescription(),
|
|
||||||
new HashMap<>());
|
|
||||||
} else {
|
|
||||||
response = internalHandler.handle(request);
|
|
||||||
}
|
|
||||||
|
|
||||||
return ResponseEntity.ok().body(response);
|
|
||||||
} catch (Exception e) {
|
|
||||||
log.error("Handler execution failed for msgId: {}", msgId, e);
|
|
||||||
|
|
||||||
BaseResponse errorResponse = new BaseResponse(msgId,
|
|
||||||
MessageCode.INVALID_JSON_BODY.getCode(),
|
|
||||||
MessageCode.INVALID_JSON_BODY.getDescription(),
|
|
||||||
new HashMap<>());
|
|
||||||
|
|
||||||
return ResponseEntity.ok().body(errorResponse);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@GetMapping("/internal/data-download/{fileId}")
|
|
||||||
public ResponseEntity<byte[]> getPublicFile(@PathVariable String fileId) {
|
|
||||||
try {
|
|
||||||
FileEntity fileEntity = fileEntityRepository.findById(fileId)
|
|
||||||
.orElseThrow(() -> new FileNotFoundException("Not found in DB: " + fileId));
|
|
||||||
|
|
||||||
MediaType mediaType = getMediaType(fileEntity);
|
|
||||||
|
|
||||||
ContentDisposition contentDisposition = ContentDisposition.inline()
|
|
||||||
.filename(fileEntity.getOriginalFileName(), StandardCharsets.UTF_8)
|
|
||||||
.build();
|
|
||||||
|
|
||||||
byte[] fileBytes;
|
|
||||||
try (InputStream inputStream = cloudStorageService.readFileFromStorage(fileEntity.getFilePath())) {
|
|
||||||
fileBytes = IOUtils.toByteArray(inputStream);
|
|
||||||
}
|
|
||||||
|
|
||||||
return ResponseEntity.ok()
|
|
||||||
.contentType(mediaType)
|
|
||||||
.header(HttpHeaders.CONTENT_DISPOSITION, contentDisposition.toString())
|
|
||||||
.header(HttpHeaders.CACHE_CONTROL, "public, max-age=3600")
|
|
||||||
.body(fileBytes);
|
|
||||||
|
|
||||||
} catch (FileNotFoundException e) {
|
|
||||||
return ResponseEntity.notFound().build();
|
|
||||||
} catch (NoSuchKeyException e) {
|
|
||||||
return ResponseEntity.status(HttpStatus.NOT_FOUND).build();
|
|
||||||
} catch (Exception e) {
|
|
||||||
return ResponseEntity.status(HttpStatus.INTERNAL_SERVER_ERROR).build();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@PostMapping("/internal/data-control")
|
|
||||||
public ResponseEntity<?> handleInternalControlPostRequest(@RequestBody BaseRequest request) {
|
|
||||||
Integer msgId = request.getMsgId();
|
|
||||||
BaseResponse response;
|
|
||||||
RequestHandler internalHandler = internalControlHandler.get(msgId);
|
|
||||||
|
|
||||||
try {
|
|
||||||
if (internalHandler == null) {
|
|
||||||
response = new BaseResponse(msgId,
|
|
||||||
MessageCode.MSG_ID_NOT_FOUND.getCode(),
|
|
||||||
MessageCode.MSG_ID_NOT_FOUND.getDescription(),
|
|
||||||
new HashMap<>());
|
|
||||||
} else {
|
|
||||||
response = internalHandler.handle(request);
|
|
||||||
}
|
|
||||||
|
|
||||||
return ResponseEntity.ok().body(response);
|
|
||||||
} catch (Exception e) {
|
|
||||||
log.error("Handler execution failed for msgId: {}", msgId, e);
|
|
||||||
|
|
||||||
BaseResponse errorResponse = new BaseResponse(msgId,
|
|
||||||
MessageCode.INVALID_JSON_BODY.getCode(),
|
|
||||||
MessageCode.INVALID_JSON_BODY.getDescription(),
|
|
||||||
new HashMap<>());
|
|
||||||
|
|
||||||
return ResponseEntity.ok().body(errorResponse);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@PostMapping("/v{version}/files/chunk")
|
@PostMapping("/v{version}/files/chunk")
|
||||||
public ResponseEntity<BaseResponse> uploadChunk(
|
public ResponseEntity<BaseResponse> uploadChunk(
|
||||||
@PathVariable("version") int version,
|
@PathVariable("version") int version,
|
||||||
@@ -299,181 +153,46 @@ public class ApiController {
|
|||||||
MessageCode.DUPLICATE_FILE_UPLOAD.getDescription(),
|
MessageCode.DUPLICATE_FILE_UPLOAD.getDescription(),
|
||||||
duplicateData
|
duplicateData
|
||||||
));
|
));
|
||||||
} catch (FileFormatException e){
|
|
||||||
return buildErrorResponse(uploadId, chunkNumber, e.getMessage());
|
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
log.error("Error uploading chunk", e);
|
log.error("Error uploading chunk", e);
|
||||||
return buildErrorResponse(uploadId, chunkNumber, "Failed to upload chunk: " + e.getMessage());
|
return buildErrorResponse(uploadId, chunkNumber, "Failed to upload chunk: " + e.getMessage());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@PostMapping("/v{version}/private/files/chunk")
|
|
||||||
public ResponseEntity<BaseResponse> uploadChunk(
|
|
||||||
@RequestParam(value = "upload_id", required = false) String uploadId,
|
|
||||||
@RequestParam(value = "chunk_number", required = false) Integer chunkNumber,
|
|
||||||
@RequestParam(value = "chunk", required = false) MultipartFile chunk,
|
|
||||||
@RequestParam(value = "last_file", required = false) Boolean last_file) {
|
|
||||||
try {
|
|
||||||
if (chunk == null || chunk.isEmpty()) {
|
|
||||||
return buildErrorResponse(uploadId, chunkNumber, "Chunk file null or empty");
|
|
||||||
}
|
|
||||||
if (uploadId == null || uploadId.isBlank()) {
|
|
||||||
return buildErrorResponse(uploadId, chunkNumber, "Upload Id is required");
|
|
||||||
}
|
|
||||||
if (chunkNumber == null || chunkNumber < 0) {
|
|
||||||
return buildErrorResponse(uploadId, chunkNumber, "Valid chunk number is required");
|
|
||||||
}
|
|
||||||
|
|
||||||
Long userId = (Long) httpServletRequest.getAttribute("userId");
|
|
||||||
|
|
||||||
UploadProgressResponse uploadProgressResponse = fileUploadService.uploadPassportChunk(uploadId, chunkNumber,
|
|
||||||
chunk, userId);
|
|
||||||
|
|
||||||
if (last_file) {
|
|
||||||
zipService.createAndSplitZip(userId,
|
|
||||||
fileEntityService.getAllUserFiles(userId, List.of(FileStatus.PRIVATE)));
|
|
||||||
}
|
|
||||||
|
|
||||||
return buildSuccessResponse(uploadId, chunkNumber, chunk,
|
|
||||||
fileEntityService.findFileIdByPath(uploadProgressResponse.getFilePath()));
|
|
||||||
}catch (FileFormatException e){
|
|
||||||
return buildErrorResponse(uploadId, chunkNumber, e.getMessage());
|
|
||||||
} catch (Exception e) {
|
|
||||||
log.error("Error uploading chunk", e);
|
|
||||||
return buildErrorResponse(uploadId, chunkNumber, "Failed to upload chunk: " + e.getMessage());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@GetMapping("/check/{fileId}")
|
|
||||||
public ResponseEntity<BaseResponse> check(@PathVariable String fileId) {
|
|
||||||
FileEntity fileEntity = fileEntityRepository.findByFileId(fileId);
|
|
||||||
|
|
||||||
File file = new File(fileEntity.getFilePath());
|
|
||||||
NoCopyCheckResult checkResult = noCopyFileService.checkFile(file, FileProtector.Type.IMAGE);
|
|
||||||
log.info("checkResult: {}", checkResult);
|
|
||||||
|
|
||||||
|
|
||||||
return ResponseEntity.ok(new BaseResponse(1, 1, "1", checkResult));
|
|
||||||
}
|
|
||||||
|
|
||||||
@GetMapping("/v{version}/files/{fileId}/similar")
|
@GetMapping("/v{version}/files/{fileId}/similar")
|
||||||
public ResponseEntity<BaseResponse> findSimilarFiles(
|
public ResponseEntity<BaseResponse> findSimilarFiles(
|
||||||
@PathVariable("version") int version,
|
@PathVariable("version") int version,
|
||||||
@PathVariable String fileId,
|
@PathVariable String fileId,
|
||||||
|
@RequestParam(value = "auth_token",required = false) String authToken,
|
||||||
@RequestParam(required = false) List<String> similarityLevels,
|
@RequestParam(required = false) List<String> similarityLevels,
|
||||||
@PageableDefault(size = 20, sort = "hammingDistance") Pageable pageable) {
|
@PageableDefault(size = 20, sort = "hammingDistance") Pageable pageable) {
|
||||||
|
SimilarityFilter filter = SimilarityFilter.builder()
|
||||||
|
.similarityLevels(similarityLevels)
|
||||||
|
.build();
|
||||||
|
Page<SimilarFileDTO> similarFiles = fileSimilarityService.findSimilarFiles(fileId, filter, pageable, authToken);
|
||||||
|
|
||||||
try {
|
String messageDesc;
|
||||||
FileEntity fileEntity = fileEntityRepository.findByFileId(fileId);
|
MessageCode success;
|
||||||
|
|
||||||
if (fileEntity == null) {
|
if (similarFiles.isEmpty()) {
|
||||||
return ResponseEntity.ok().body(new BaseResponse(0, MessageCode.INVALID_FIELD.getCode(),
|
messageDesc = MessageCode.FILE_NOT_FOUND.getDescription();
|
||||||
MessageCode.INVALID_FIELD.getDescription(), null));
|
success = MessageCode.SUCCESS;
|
||||||
}
|
|
||||||
|
|
||||||
Long userId = (Long) httpServletRequest.getAttribute("userId");
|
|
||||||
|
|
||||||
BaseResponse response;
|
|
||||||
if ("image".equals(fileEntity.getMimeType())) {
|
|
||||||
Page<SimilarFileDTO> similarFilesPage = fileSimilarityService.findSimilarFiles(
|
|
||||||
fileId, similarityLevels, pageable, userId);
|
|
||||||
response = buildSuccessResponse(similarFilesPage, MessageCode.SIMILAR_FILES_FOUND);
|
|
||||||
} else {
|
} else {
|
||||||
List<SimilarFileDTO> results = processNonImageFile(fileEntity, true);
|
messageDesc = MessageCode.SIMILAR_FILES_FOUND.getDescription();
|
||||||
log.info("results: {}", results);
|
success = MessageCode.SUCCESS;
|
||||||
response = buildSuccessResponse(results, MessageCode.SIMILAR_FILES_FOUND);
|
|
||||||
checkCounterService.incrementCheckCount(fileEntity.getUserId(), fileEntity.getMimeType());
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return ResponseEntity.ok(response);
|
|
||||||
} catch(IllegalArgumentException e) {
|
|
||||||
log.error("Error with file extensions : {}", e.getMessage(), e);
|
|
||||||
return ResponseEntity.ok().body(new BaseResponse(MessageCode.FILE_FOR_SEARCH_NOT_VALID.getCode(),
|
|
||||||
MessageCode.FILE_FOR_SEARCH_NOT_VALID.getCode(),
|
|
||||||
MessageCode.FILE_FOR_SEARCH_NOT_VALID.getDescription(), null));
|
|
||||||
} catch (Exception e) {
|
|
||||||
log.error("Error finding similar files: {}", e.getMessage(), e);
|
|
||||||
return ResponseEntity.ok().body(new BaseResponse(MessageCode.INVALID_FIELD.getCode(),
|
|
||||||
MessageCode.INVALID_FIELD.getCode(),
|
|
||||||
MessageCode.INVALID_FIELD.getDescription(), null));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private List<SimilarFileDTO> processNonImageFile(FileEntity fileEntity, boolean cloud) throws Exception {
|
|
||||||
List<SimilarFileDTO> results = new ArrayList<>();
|
|
||||||
File file = null;
|
|
||||||
FileEntity duplicateByHash = fileSimilarityService.findDuplicateByHash(fileEntity.getFilePath(),
|
|
||||||
fileEntity.getMimeType(), fileEntity.getUserId(), cloud);
|
|
||||||
|
|
||||||
log.info("duplicateByHash: {}", duplicateByHash);
|
|
||||||
|
|
||||||
if (duplicateByHash != null) {
|
|
||||||
results.add(fileSimilarityService.buildDTO(duplicateByHash));
|
|
||||||
|
|
||||||
return results;
|
|
||||||
}
|
|
||||||
|
|
||||||
try {
|
|
||||||
file = cloudStorageService.readFileFromStorageByPath(fileEntity.getFilePath());
|
|
||||||
FileProtector.Type type = "document".equals(fileEntity.getMimeType()) ?
|
|
||||||
FileProtector.Type.DOC : FileProtector.Type.AUDIO;
|
|
||||||
|
|
||||||
NoCopyCheckResult checkResult = noCopyFileService.checkFile(file, type);
|
|
||||||
log.info("checkResult: {}", checkResult);
|
|
||||||
|
|
||||||
switch (checkResult) {
|
|
||||||
case DocumentCheckResult.Success success -> {
|
|
||||||
FileProtector.FileInfo info = success.getInfo();
|
|
||||||
FileEntity entity = fileEntityRepository.findByFileId(info.getId());
|
|
||||||
if (entity != null) {
|
|
||||||
results.add(fileSimilarityService.buildDTO(entity));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
case AudioCheckResult.Success success -> {
|
|
||||||
FileProtector.FileInfo info = success.getInfo();
|
|
||||||
FileEntity entity = fileEntityRepository.findByFileId(info.getId());
|
|
||||||
if (entity != null) {
|
|
||||||
results.add(fileSimilarityService.buildDTO(entity));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
case DocumentCheckResult.Failed failed ->
|
|
||||||
log.warn("Document check failed: {}", failed.getMessage());
|
|
||||||
case AudioCheckResult.Failed failed ->
|
|
||||||
log.warn("Audio check failed: {}", failed.getMessage());
|
|
||||||
default -> log.warn("Unexpected result type: {}", checkResult.getClass().getSimpleName());
|
|
||||||
}
|
|
||||||
} catch (Exception e) {
|
|
||||||
throw new Exception("Files for search not valid");
|
|
||||||
} finally {
|
|
||||||
if (file != null && file.exists()) {
|
|
||||||
file.delete();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return results;
|
|
||||||
}
|
|
||||||
|
|
||||||
private BaseResponse buildSuccessResponse(Page<SimilarFileDTO> page, MessageCode messageCode) {
|
|
||||||
Map<String, Object> responseData = new HashMap<>();
|
Map<String, Object> responseData = new HashMap<>();
|
||||||
responseData.put("content", page.getContent());
|
responseData.put("content", similarFiles.getContent());
|
||||||
responseData.put("page", page.getNumber());
|
responseData.put("page", similarFiles.getNumber());
|
||||||
responseData.put("size", page.getSize());
|
responseData.put("size", similarFiles.getSize());
|
||||||
responseData.put("totalElements", page.getTotalElements());
|
responseData.put("totalElements", similarFiles.getTotalElements());
|
||||||
responseData.put("totalPages", page.getTotalPages());
|
responseData.put("totalPages", similarFiles.getTotalPages());
|
||||||
responseData.put("hasNext", page.hasNext());
|
responseData.put("hasNext", similarFiles.hasNext());
|
||||||
responseData.put("hasPrevious", page.hasPrevious());
|
responseData.put("hasPrevious", similarFiles.hasPrevious());
|
||||||
|
|
||||||
return new BaseResponse(20004, messageCode.getCode(),
|
return ResponseEntity.ok()
|
||||||
messageCode.getDescription(), responseData);
|
.body(new BaseResponse(20004, success.getCode(), messageDesc, responseData));
|
||||||
}
|
|
||||||
|
|
||||||
private BaseResponse buildSuccessResponse(List<SimilarFileDTO> list, MessageCode messageCode) {
|
|
||||||
Map<String, Object> responseData = new HashMap<>();
|
|
||||||
responseData.put("content", list);
|
|
||||||
responseData.put("totalElements", list.size());
|
|
||||||
|
|
||||||
return new BaseResponse(20004, messageCode.getCode(),
|
|
||||||
messageCode.getDescription(), responseData);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@GetMapping("/v{version}/files/progress/{uploadId}")
|
@GetMapping("/v{version}/files/progress/{uploadId}")
|
||||||
@@ -572,104 +291,34 @@ public class ApiController {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@GetMapping("/v{version}/files/public-download/{fileId}")
|
|
||||||
public ResponseEntity<?> downloadFile(
|
|
||||||
@PathVariable(required = false) String fileId, @PathVariable(required = false) Integer version) {
|
|
||||||
FileEntityResponse entityResponse = fileEntityService.getById(fileId, version);
|
|
||||||
FileStatus status = entityResponse.getStatus();
|
|
||||||
|
|
||||||
if (status.equals(FileStatus.BLOCKED) || status.equals(FileStatus.DELETED) ||
|
|
||||||
status.equals(FileStatus.REMOVED)) {
|
|
||||||
Map<String, Object> errorData = new HashMap<>();
|
|
||||||
errorData.put("fileId", entityResponse.getId());
|
|
||||||
|
|
||||||
return ResponseEntity.ok().body(new BaseResponse(20004,
|
|
||||||
MessageCode.FILE_IS_BLOCKED.getCode(),
|
|
||||||
MessageCode.FILE_IS_BLOCKED.getDescription(),
|
|
||||||
errorData));
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!entityResponse.getPermissions().get(PermissionType.DOWNLOAD)) {
|
|
||||||
Map<String, Object> errorData = new HashMap<>();
|
|
||||||
errorData.put("fileId", entityResponse.getId());
|
|
||||||
|
|
||||||
return ResponseEntity.ok().body(new BaseResponse(20004,
|
|
||||||
MessageCode.NOT_HAVE_DOWNLOAD_PERMISSION.getCode(),
|
|
||||||
MessageCode.NOT_HAVE_DOWNLOAD_PERMISSION.getDescription(),
|
|
||||||
errorData));
|
|
||||||
}
|
|
||||||
|
|
||||||
byte[] bytes = cloudStorageService.readFileFromStorageBytes(entityResponse.getProtectedFilePath());
|
|
||||||
|
|
||||||
return ResponseEntity.ok()
|
|
||||||
.contentType(MediaType.APPLICATION_OCTET_STREAM)
|
|
||||||
.header(HttpHeaders.CONTENT_DISPOSITION,
|
|
||||||
"attachment; filename=\"" + entityResponse.getFileName() + "\"")
|
|
||||||
.body(bytes);
|
|
||||||
}
|
|
||||||
|
|
||||||
@GetMapping("/v{version}/files/download/{fileId}")
|
@GetMapping("/v{version}/files/download/{fileId}")
|
||||||
public ResponseEntity<?> downloadFile(
|
public ResponseEntity<?> downloadFile(
|
||||||
@PathVariable(required = false) String fileId,
|
@PathVariable(required = false) String fileId,
|
||||||
@PathVariable(required = false) Integer version,
|
@PathVariable(required = false) Integer version,
|
||||||
@RequestHeader(value = "Authorization", required = false) String tokenHeader) {
|
@RequestHeader(value = "Authorization", required = false) String tokenHeader) {
|
||||||
try {
|
try {
|
||||||
if (tokenHeader == null || tokenHeader.isBlank()) {
|
if (tokenHeader == null) {
|
||||||
Map<String, Object> errorData = new HashMap<>();
|
Map<String, Object> errorData = new HashMap<>();
|
||||||
errorData.put("token", tokenHeader);
|
errorData.put("token", tokenHeader);
|
||||||
|
errorData.put("fileId", fileId);
|
||||||
|
errorData.put("version", version);
|
||||||
|
|
||||||
return ResponseEntity.ok().body(new BaseResponse(20004,
|
return ResponseEntity.ok().body(new BaseResponse(20004,
|
||||||
MessageCode.TOKEN_IS_NULL.getCode(),
|
MessageCode.FILE_DOWNLOAD_ERROR_NOT_CORRECT_FIELD.getCode(),
|
||||||
MessageCode.TOKEN_IS_NULL.getDescription(),
|
MessageCode.FILE_DOWNLOAD_ERROR_NOT_CORRECT_FIELD.getDescription(),
|
||||||
errorData));
|
errorData));
|
||||||
}
|
}
|
||||||
|
|
||||||
Long userId = (Long) httpServletRequest.getAttribute("userId");
|
Long userId = authService.useUserAuthToken(tokenHeader);
|
||||||
FileEntityResponse entityResponse = fileEntityService.getById(fileId, version);
|
FileEntityResponse entityResponse = fileEntityService.getById(fileId, version);
|
||||||
FileStatus status = entityResponse.getStatus();
|
|
||||||
|
|
||||||
if (status.equals(FileStatus.BLOCKED) || status.equals(FileStatus.DELETED) ||
|
if (!entityResponse.getUserId().equals(userId)) {
|
||||||
status.equals(FileStatus.REMOVED)) {
|
|
||||||
Map<String, Object> errorData = new HashMap<>();
|
|
||||||
errorData.put("fileId", entityResponse.getId());
|
|
||||||
|
|
||||||
return ResponseEntity.ok().body(new BaseResponse(20004,
|
|
||||||
MessageCode.FILE_IS_BLOCKED.getCode(),
|
|
||||||
MessageCode.FILE_IS_BLOCKED.getDescription(),
|
|
||||||
errorData));
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!entityResponse.getPermissions().get(PermissionType.DOWNLOAD)) {
|
|
||||||
Map<String, Object> errorData = new HashMap<>();
|
|
||||||
errorData.put("fileId", entityResponse.getId());
|
|
||||||
|
|
||||||
return ResponseEntity.ok().body(new BaseResponse(20004,
|
|
||||||
MessageCode.NOT_HAVE_DOWNLOAD_PERMISSION.getCode(),
|
|
||||||
MessageCode.NOT_HAVE_DOWNLOAD_PERMISSION.getDescription(),
|
|
||||||
errorData));
|
|
||||||
}
|
|
||||||
|
|
||||||
User fileUser = userRepository.findById(entityResponse.getUserId()).orElseThrow();
|
|
||||||
User user = userRepository.findById(userId).orElseThrow();
|
|
||||||
Company companyUser = user.getCompany();
|
|
||||||
|
|
||||||
if (companyUser != null && !fileUser.getCompany().getId().equals(companyUser.getId())) {
|
|
||||||
Map<String, Object> errorData = new HashMap<>();
|
Map<String, Object> errorData = new HashMap<>();
|
||||||
errorData.put("token", tokenHeader);
|
errorData.put("token", tokenHeader);
|
||||||
|
|
||||||
return ResponseEntity.ok().body(new BaseResponse(20004,
|
return ResponseEntity.ok().body(new BaseResponse(20004,
|
||||||
MessageCode.USER_NOT_HAD_PERMISSION.getCode(),
|
MessageCode.FILE_DOWNLOAD_ERROR.getCode(),
|
||||||
MessageCode.USER_NOT_HAD_PERMISSION.getDescription(),
|
MessageCode.FILE_DOWNLOAD_ERROR.getDescription(),
|
||||||
errorData));
|
|
||||||
}
|
|
||||||
|
|
||||||
if (companyUser == null && !entityResponse.getUserId().equals(userId)) {
|
|
||||||
Map<String, Object> errorData = new HashMap<>();
|
|
||||||
errorData.put("token", tokenHeader);
|
|
||||||
|
|
||||||
return ResponseEntity.ok().body(new BaseResponse(20004,
|
|
||||||
MessageCode.USER_NOT_HAD_PERMISSION.getCode(),
|
|
||||||
MessageCode.USER_NOT_HAD_PERMISSION.getDescription(),
|
|
||||||
errorData));
|
errorData));
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -678,18 +327,45 @@ public class ApiController {
|
|||||||
errorData.put("file_status", entityResponse.getStatus());
|
errorData.put("file_status", entityResponse.getStatus());
|
||||||
|
|
||||||
return ResponseEntity.ok().body(new BaseResponse(20004,
|
return ResponseEntity.ok().body(new BaseResponse(20004,
|
||||||
MessageCode.FILE_DELETE.getCode(),
|
MessageCode.FILE_DOWNLOAD_ERROR.getCode(),
|
||||||
MessageCode.FILE_DELETE.getDescription(),
|
MessageCode.FILE_DOWNLOAD_ERROR.getDescription(),
|
||||||
errorData));
|
errorData));
|
||||||
}
|
}
|
||||||
|
|
||||||
byte[] bytes = cloudStorageService.readFileFromStorageBytes(entityResponse.getProtectedFilePath());
|
if (!entityResponse.isExistsOnDisk()) {
|
||||||
|
Map<String, Object> errorData = new HashMap<>();
|
||||||
|
errorData.put("onDisk", entityResponse.isExistsOnDisk());
|
||||||
|
|
||||||
|
return ResponseEntity.ok().body(new BaseResponse(20004,
|
||||||
|
MessageCode.FILE_DOWNLOAD_ERROR.getCode(),
|
||||||
|
MessageCode.FILE_DOWNLOAD_ERROR.getDescription(),
|
||||||
|
errorData));
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Path filePath = Paths.get(entityResponse.getProtectedFilePath());
|
||||||
|
// Resource resource = new UrlResource(filePath.toUri());
|
||||||
|
FileSystemResource resource = new FileSystemResource(filePath);
|
||||||
|
long fileSize = Files.size(filePath);
|
||||||
|
|
||||||
|
if (!resource.exists()) {
|
||||||
|
Map<String, Object> errorData = new HashMap<>();
|
||||||
|
errorData.put("resource", resource.exists());
|
||||||
|
|
||||||
|
return ResponseEntity.ok().body(new BaseResponse(20004,
|
||||||
|
MessageCode.FILE_DOWNLOAD_ERROR.getCode(),
|
||||||
|
MessageCode.FILE_DOWNLOAD_ERROR.getDescription(),
|
||||||
|
errorData));
|
||||||
|
}
|
||||||
|
|
||||||
|
String contentType = determineContentType(filePath);
|
||||||
|
|
||||||
return ResponseEntity.ok()
|
return ResponseEntity.ok()
|
||||||
.contentType(MediaType.APPLICATION_OCTET_STREAM)
|
.contentLength(fileSize)
|
||||||
|
.contentType(MediaType.parseMediaType(contentType))
|
||||||
.header(HttpHeaders.CONTENT_DISPOSITION,
|
.header(HttpHeaders.CONTENT_DISPOSITION,
|
||||||
"attachment; filename=\"" + entityResponse.getFileName() + "\"")
|
"attachment; filename=\"" + entityResponse.getOriginalFileName() + "\"")
|
||||||
.body(bytes);
|
.body(resource);
|
||||||
} catch (FileEntityNotFoundException e) {
|
} catch (FileEntityNotFoundException e) {
|
||||||
Map<String, Object> errorData = new HashMap<>();
|
Map<String, Object> errorData = new HashMap<>();
|
||||||
errorData.put("fileId", fileId);
|
errorData.put("fileId", fileId);
|
||||||
@@ -698,87 +374,98 @@ public class ApiController {
|
|||||||
MessageCode.FILE_NOT_FOUND.getCode(),
|
MessageCode.FILE_NOT_FOUND.getCode(),
|
||||||
MessageCode.FILE_NOT_FOUND.getDescription(),
|
MessageCode.FILE_NOT_FOUND.getDescription(),
|
||||||
errorData));
|
errorData));
|
||||||
} catch (NotFoundAuthToken e) {
|
} catch (NotFoundAuthToken | IOException e) {
|
||||||
Map<String, Object> errorData = new HashMap<>();
|
Map<String, Object> errorData = new HashMap<>();
|
||||||
errorData.put("token", tokenHeader);
|
errorData.put("token", tokenHeader);
|
||||||
|
errorData.put("fileId", fileId);
|
||||||
|
errorData.put("version", version);
|
||||||
|
|
||||||
return ResponseEntity.ok().body(new BaseResponse(20004,
|
return ResponseEntity.ok().body(new BaseResponse(20004,
|
||||||
MessageCode.AUTH_TOKEN_NOT_FOUND.getCode(),
|
MessageCode.FILE_DOWNLOAD_ERROR_NOT_CORRECT_FIELD.getCode(),
|
||||||
MessageCode.AUTH_TOKEN_NOT_FOUND.getDescription(),
|
MessageCode.FILE_DOWNLOAD_ERROR_NOT_CORRECT_FIELD.getDescription(),
|
||||||
errorData));
|
errorData));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@PostMapping("/file/link")
|
@GetMapping("/protect/{fileId}")
|
||||||
public ResponseEntity<?> downloadFile(@RequestBody DocViewerRequest viewerRequest) {
|
public ResponseEntity<?> protect( @PathVariable(required = false) String fileId) {
|
||||||
try {
|
Optional<FileEntity> optionalFileEntity = fileEntityRepository.findById(fileId);
|
||||||
Long userId = httpServletRequest.getAttribute("userId") == null ? 0L:
|
|
||||||
(Long) httpServletRequest.getAttribute("userId");
|
|
||||||
|
|
||||||
if (viewerRequest.getFileId() == null) {
|
if (!optionalFileEntity.isPresent()) {
|
||||||
return ResponseEntity.ok().body(new BaseResponse(0,
|
return ResponseEntity.notFound().build();
|
||||||
MessageCode.NOT_VALID_FIELD.getCode(),
|
}
|
||||||
MessageCode.NOT_VALID_FIELD.getDescription(),
|
FileEntity fileEntity = optionalFileEntity.get();
|
||||||
"file_id is required"));
|
FileProtector.FileInfo fileInfo = fileUtil.createFileInfo(fileEntity);
|
||||||
|
|
||||||
|
noCopyFileService.addFile(fileInfo);
|
||||||
|
|
||||||
|
fileEntity.setProtectionStatus(ProtectionStatus.PROCESSING);
|
||||||
|
fileEntityRepository.save(fileEntity);
|
||||||
|
|
||||||
|
return ResponseEntity.ok().build();
|
||||||
}
|
}
|
||||||
|
|
||||||
FileEntityResponse entityResponse = fileEntityService.getById(viewerRequest.getFileId(), 0);
|
@GetMapping("/check/{fileId}/{type}")
|
||||||
FileStatus status = entityResponse.getStatus();
|
public ResponseEntity<?> check(@PathVariable(required = false) String fileId,
|
||||||
|
@PathVariable(required = false) String type) {
|
||||||
|
Optional<FileEntity> optionalFileEntity = fileEntityRepository.findById(fileId);
|
||||||
|
|
||||||
if (status.equals(FileStatus.BLOCKED) || status.equals(FileStatus.DELETED) ||
|
if (!optionalFileEntity.isPresent()) {
|
||||||
status.equals(FileStatus.REMOVED)) {
|
return ResponseEntity.notFound().build();
|
||||||
Map<String, Object> errorData = new HashMap<>();
|
|
||||||
errorData.put("fileId", entityResponse.getId());
|
|
||||||
|
|
||||||
return ResponseEntity.ok().body(new BaseResponse(0,
|
|
||||||
MessageCode.FILE_IS_BLOCKED.getCode(),
|
|
||||||
MessageCode.FILE_IS_BLOCKED.getDescription(),
|
|
||||||
errorData));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
byte[] bytes = cloudStorageService.readFileFromStorageBytes(entityResponse.getProtectedFilePath());
|
FileEntity fileEntity = optionalFileEntity.get();
|
||||||
|
|
||||||
dockViewService.createDockView(viewerRequest, userId);
|
Path path = Paths.get(fileEntity.getProtectedFilePath());
|
||||||
|
|
||||||
String filename = entityResponse.getFileName();
|
File file = path.toFile();
|
||||||
String encodedFilename = URLEncoder.encode(filename, StandardCharsets.UTF_8)
|
|
||||||
.replace("+", "%20");
|
|
||||||
|
|
||||||
String safeFilename = filename.replaceAll("[^\\x00-\\x7F]", "_");
|
NoCopyCheckResult noCopyCheckResult = noCopyFileService.checkFile(file,
|
||||||
|
FileProtector.Type.valueOf(type.toUpperCase()));
|
||||||
|
|
||||||
return ResponseEntity.ok()
|
return ResponseEntity.ok().body(noCopyCheckResult);
|
||||||
.contentType(MediaType.APPLICATION_OCTET_STREAM)
|
|
||||||
.header(HttpHeaders.CONTENT_DISPOSITION,
|
|
||||||
"attachment; filename=\"" + safeFilename + "\"; filename*=UTF-8''" + encodedFilename)
|
|
||||||
.body(bytes);
|
|
||||||
} catch (FileEntityNotFoundException e) {
|
|
||||||
Map<String, Object> errorData = new HashMap<>();
|
|
||||||
errorData.put("fileId", viewerRequest.getFileId());
|
|
||||||
|
|
||||||
return ResponseEntity.ok().body(new BaseResponse(0,
|
|
||||||
MessageCode.FILE_NOT_FOUND.getCode(),
|
|
||||||
MessageCode.FILE_NOT_FOUND.getDescription(),
|
|
||||||
errorData));
|
|
||||||
} catch (NotFoundAuthToken e) {
|
|
||||||
Map<String, Object> errorData = new HashMap<>();
|
|
||||||
errorData.put("token", viewerRequest.getFileId());
|
|
||||||
|
|
||||||
return ResponseEntity.ok().body(new BaseResponse(0,
|
|
||||||
MessageCode.AUTH_TOKEN_NOT_FOUND.getCode(),
|
|
||||||
MessageCode.AUTH_TOKEN_NOT_FOUND.getDescription(),
|
|
||||||
errorData));
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@GetMapping("/check/file_stats")
|
@GetMapping("/check/file_stats")
|
||||||
public ResponseEntity<?> checkFileProtectStats() {
|
public ResponseEntity<?> checkFileProtectStats(@RequestHeader("Authorization") String tokenHeader) {
|
||||||
Long userId = (Long) httpServletRequest.getAttribute("userId");
|
String token = tokenHeader.replace("Bearer ", "");
|
||||||
|
|
||||||
Map<String, Object> fileTypeStats = protectionsLimitService.getFileTypeStats(userId);
|
Optional<AuthToken> tokenOptional = authTokenRepository.findByToken(token);
|
||||||
|
|
||||||
|
AuthToken authToken = tokenOptional.orElseThrow(() -> new NotFoundAuthToken("Token: " + token + "not found"));
|
||||||
|
|
||||||
|
Map<String, Object> fileTypeStats = protectionsLimitService.getFileTypeStats(authToken.getUser().getId());
|
||||||
|
|
||||||
return ResponseEntity.ok().body(fileTypeStats);
|
return ResponseEntity.ok().body(fileTypeStats);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private boolean hasDuplicate(List<SimilarFileDTO> similarFiles) {
|
||||||
|
return similarFiles.stream().anyMatch(f -> f.getHammingDistance() <= 5);
|
||||||
|
}
|
||||||
|
|
||||||
|
private ResponseEntity<BaseResponse> handleDuplicate(FileEntity fileEntity, List<SimilarFileDTO> similarFiles)
|
||||||
|
throws IOException {
|
||||||
|
fileEntityService.deleteFromDisk(fileEntity);
|
||||||
|
|
||||||
|
fileEntityService.softDeleteFileWithHash(fileEntity);
|
||||||
|
|
||||||
|
Optional<FileEntity> originalFile = fileEntityRepository.findById(similarFiles.get(0).getFileId());
|
||||||
|
|
||||||
|
if (originalFile.isPresent()) {
|
||||||
|
Map<String, String> duplicateInfo = Map.of(
|
||||||
|
"duplicate_file_id", originalFile.get().getId(),
|
||||||
|
"owner_user_id", String.valueOf(originalFile.get().getUserId()));
|
||||||
|
|
||||||
|
return ResponseEntity.ok().body(new BaseResponse(
|
||||||
|
20004,
|
||||||
|
MessageCode.DUPLICATE_FILE_UPLOAD.getCode(),
|
||||||
|
"Failed to upload chunk, duplicate",
|
||||||
|
duplicateInfo));
|
||||||
|
}
|
||||||
|
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
private ResponseEntity<BaseResponse> buildSuccessResponse(String uploadId, Integer chunkNumber, MultipartFile chunk,
|
private ResponseEntity<BaseResponse> buildSuccessResponse(String uploadId, Integer chunkNumber, MultipartFile chunk,
|
||||||
String fileId) {
|
String fileId) {
|
||||||
ChunkUploadResponse responseBody = ChunkUploadResponse.builder()
|
ChunkUploadResponse responseBody = ChunkUploadResponse.builder()
|
||||||
@@ -836,22 +523,12 @@ public class ApiController {
|
|||||||
return errorDetail;
|
return errorDetail;
|
||||||
}
|
}
|
||||||
|
|
||||||
private MediaType getMediaType(FileEntity fileEntity) {
|
|
||||||
try {
|
private String determineContentType(Path filePath) throws IOException {
|
||||||
return MediaType.parseMediaType(fileEntity.getMimeType());
|
String contentType = Files.probeContentType(filePath);
|
||||||
} catch (InvalidMediaTypeException e) {
|
if (contentType == null) {
|
||||||
String extension = fileEntity.getFileExtension().toLowerCase();
|
contentType = "application/octet-stream";
|
||||||
switch (extension) {
|
|
||||||
case "jpg":
|
|
||||||
case "jpeg":
|
|
||||||
return MediaType.IMAGE_JPEG;
|
|
||||||
case "png":
|
|
||||||
return MediaType.IMAGE_PNG;
|
|
||||||
case "pdf":
|
|
||||||
return MediaType.APPLICATION_PDF;
|
|
||||||
default:
|
|
||||||
return MediaType.APPLICATION_OCTET_STREAM;
|
|
||||||
}
|
}
|
||||||
}
|
return contentType;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -1,70 +0,0 @@
|
|||||||
package ru.soune.nocopy.controller;
|
|
||||||
|
|
||||||
import lombok.RequiredArgsConstructor;
|
|
||||||
import org.springframework.http.ResponseEntity;
|
|
||||||
import org.springframework.web.bind.annotation.*;
|
|
||||||
import ru.soune.nocopy.dto.BaseResponse;
|
|
||||||
import ru.soune.nocopy.dto.MessageCode;
|
|
||||||
import ru.soune.nocopy.entity.api.ApiKey;
|
|
||||||
import ru.soune.nocopy.service.api.ApiKeyService;
|
|
||||||
|
|
||||||
import java.util.List;
|
|
||||||
import java.util.Map;
|
|
||||||
|
|
||||||
@RestController
|
|
||||||
@RequestMapping("/api/user")
|
|
||||||
@RequiredArgsConstructor
|
|
||||||
public class ApiKeyController {
|
|
||||||
|
|
||||||
private final ApiKeyService apiKeyService;
|
|
||||||
|
|
||||||
@PostMapping("/api-keys")
|
|
||||||
public ResponseEntity<BaseResponse> createKey(@RequestAttribute("userId") Long userId,
|
|
||||||
@RequestBody Map<String, String> body) {
|
|
||||||
String name = body.getOrDefault("name", "Unnamed key");
|
|
||||||
String apiKey = apiKeyService.createApiKey(userId, name);
|
|
||||||
|
|
||||||
return ResponseEntity.ok(
|
|
||||||
BaseResponse.builder()
|
|
||||||
.messageCode(MessageCode.API_KEY_CREATED.getCode())
|
|
||||||
.messageDesc(MessageCode.API_KEY_CREATED.getDescription())
|
|
||||||
.messageBody(Map.of("apiKey", apiKey))
|
|
||||||
.build()
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
@GetMapping("/api-keys")
|
|
||||||
public ResponseEntity<BaseResponse> listKeys(@RequestAttribute("userId") Long userId) {
|
|
||||||
List<ApiKey> keys = apiKeyService.getUserKeys(userId);
|
|
||||||
|
|
||||||
List<Map<String, Object>> result = keys.stream()
|
|
||||||
.map(key -> Map.<String, Object>of(
|
|
||||||
"id", key.getId(),
|
|
||||||
"name", key.getName(),
|
|
||||||
"prefix", key.getPrefix(),
|
|
||||||
"isActive", key.isActive(),
|
|
||||||
"createdAt", key.getCreatedAt(),
|
|
||||||
"lastUsedAt", key.getLastUsedAt()
|
|
||||||
))
|
|
||||||
.toList();
|
|
||||||
|
|
||||||
return ResponseEntity.ok(
|
|
||||||
BaseResponse.builder()
|
|
||||||
.messageCode(MessageCode.SUCCESS.getCode())
|
|
||||||
.messageBody(result)
|
|
||||||
.build()
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
@DeleteMapping("/api-keys/{keyId}")
|
|
||||||
public ResponseEntity<BaseResponse> revokeKey(@RequestAttribute("userId") Long userId,
|
|
||||||
@PathVariable Long keyId) {
|
|
||||||
apiKeyService.revoke(keyId, userId);
|
|
||||||
|
|
||||||
return ResponseEntity.ok(
|
|
||||||
BaseResponse.builder()
|
|
||||||
.messageCode(MessageCode.SUCCESS.getCode())
|
|
||||||
.build()
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,17 +1,13 @@
|
|||||||
package ru.soune.nocopy.controller;
|
package ru.soune.nocopy.controller;
|
||||||
|
|
||||||
import com.google.common.io.ByteStreams;
|
|
||||||
import com.vrt.NoCopyFileService;
|
|
||||||
import com.vrt.fileprotection.FileProtector;
|
|
||||||
import lombok.AllArgsConstructor;
|
|
||||||
import lombok.extern.slf4j.Slf4j;
|
import lombok.extern.slf4j.Slf4j;
|
||||||
import org.springframework.core.io.InputStreamResource;
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
import org.springframework.core.io.Resource;
|
import org.springframework.core.io.Resource;
|
||||||
import org.springframework.http.*;
|
import org.springframework.http.HttpHeaders;
|
||||||
|
import org.springframework.http.MediaType;
|
||||||
|
import org.springframework.http.ResponseEntity;
|
||||||
import org.springframework.web.bind.annotation.*;
|
import org.springframework.web.bind.annotation.*;
|
||||||
import org.springframework.web.servlet.mvc.method.annotation.StreamingResponseBody;
|
|
||||||
import ru.soune.nocopy.dto.file.CheckStatus;
|
import ru.soune.nocopy.dto.file.CheckStatus;
|
||||||
import ru.soune.nocopy.dto.file.FileEntityResponse;
|
|
||||||
import ru.soune.nocopy.entity.file.FileEntity;
|
import ru.soune.nocopy.entity.file.FileEntity;
|
||||||
import ru.soune.nocopy.entity.file.ProtectionStatus;
|
import ru.soune.nocopy.entity.file.ProtectionStatus;
|
||||||
import ru.soune.nocopy.entity.user.ProtectedFileCheck;
|
import ru.soune.nocopy.entity.user.ProtectedFileCheck;
|
||||||
@@ -19,169 +15,61 @@ import ru.soune.nocopy.entity.user.User;
|
|||||||
import ru.soune.nocopy.repository.FileEntityRepository;
|
import ru.soune.nocopy.repository.FileEntityRepository;
|
||||||
import ru.soune.nocopy.repository.UserRepository;
|
import ru.soune.nocopy.repository.UserRepository;
|
||||||
import ru.soune.nocopy.service.file.CheckCounterService;
|
import ru.soune.nocopy.service.file.CheckCounterService;
|
||||||
import ru.soune.nocopy.service.file.ZipService;
|
import ru.soune.nocopy.service.file.FileStorageService;
|
||||||
import ru.soune.nocopy.service.file.*;
|
|
||||||
import ru.soune.nocopy.service.file.cloud.CloudStorageService;
|
|
||||||
import ru.soune.nocopy.util.FileUtil;
|
|
||||||
import software.amazon.awssdk.services.mq.model.NotFoundException;
|
|
||||||
import software.amazon.awssdk.services.s3.model.NoSuchKeyException;
|
|
||||||
|
|
||||||
import java.io.*;
|
import java.io.IOException;
|
||||||
import java.net.URLEncoder;
|
|
||||||
import java.nio.charset.StandardCharsets;
|
|
||||||
|
|
||||||
@RestController
|
@RestController
|
||||||
@RequestMapping("/api/files")
|
@RequestMapping("/api/files")
|
||||||
@Slf4j
|
@Slf4j
|
||||||
@AllArgsConstructor
|
|
||||||
public class FileController {
|
public class FileController {
|
||||||
|
|
||||||
|
@Autowired
|
||||||
|
private FileStorageService fileStorageService;
|
||||||
|
|
||||||
|
@Autowired
|
||||||
private FileEntityRepository fileRepository;
|
private FileEntityRepository fileRepository;
|
||||||
|
|
||||||
|
@Autowired
|
||||||
private CheckCounterService checkCounterService;
|
private CheckCounterService checkCounterService;
|
||||||
|
|
||||||
|
@Autowired
|
||||||
private UserRepository userRepository;
|
private UserRepository userRepository;
|
||||||
|
|
||||||
private final FileEntityService fileEntityService;
|
|
||||||
|
|
||||||
private NoCopyFileService noCopyFileService;
|
|
||||||
|
|
||||||
private FileUtil fileUtil;
|
|
||||||
|
|
||||||
private ZipService zipService;
|
|
||||||
|
|
||||||
private CloudStorageService cloudStorageService;
|
|
||||||
|
|
||||||
@GetMapping("/public/{fileId}")
|
@GetMapping("/public/{fileId}")
|
||||||
public ResponseEntity<StreamingResponseBody> getPublicFile(@PathVariable String fileId) {
|
public ResponseEntity<Resource> getPublicFile(
|
||||||
try {
|
@PathVariable String fileId) throws IOException {
|
||||||
FileEntity fileEntity = fileRepository.findById(fileId)
|
|
||||||
.orElseThrow(() -> new FileNotFoundException("Not found in DB: " + fileId));
|
|
||||||
|
|
||||||
MediaType mediaType = getMediaType(fileEntity);
|
|
||||||
|
|
||||||
ContentDisposition contentDisposition = ContentDisposition.inline()
|
|
||||||
.filename(fileEntity.getOriginalFileName(), StandardCharsets.UTF_8)
|
|
||||||
.build();
|
|
||||||
|
|
||||||
StreamingResponseBody responseBody = outputStream -> {
|
|
||||||
try (InputStream inputStream = cloudStorageService.readFileFromStorage(fileEntity.getFilePath())) {
|
|
||||||
ByteStreams.copy(inputStream, outputStream);
|
|
||||||
} catch (NoSuchKeyException e) {
|
|
||||||
log.error("File disappeared from S3 during streaming: {}", fileId, e);
|
|
||||||
throw new IOException("File not found in storage", e);
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
return ResponseEntity.ok()
|
|
||||||
.contentType(mediaType)
|
|
||||||
.header(HttpHeaders.CONTENT_DISPOSITION, contentDisposition.toString())
|
|
||||||
.header(HttpHeaders.CACHE_CONTROL, "public, max-age=3600")
|
|
||||||
.body(responseBody);
|
|
||||||
} catch (FileNotFoundException e) {
|
|
||||||
log.warn("File not found in DB: {}", fileId);
|
|
||||||
return ResponseEntity.notFound().build();
|
|
||||||
} catch (NoSuchKeyException e) {
|
|
||||||
log.warn("File not found in S3: {}", fileId);
|
|
||||||
return ResponseEntity.status(HttpStatus.NOT_FOUND).build();
|
|
||||||
} catch (Exception e) {
|
|
||||||
log.error("Error reading file: {}", fileId, e);
|
|
||||||
return ResponseEntity.status(HttpStatus.INTERNAL_SERVER_ERROR).build();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@GetMapping("/public/file-info/{fileId}")
|
|
||||||
public ResponseEntity<FileEntityResponse> getPublicFileInfo(@PathVariable String fileId) {
|
|
||||||
return handleGetFileInfo(fileId);
|
|
||||||
}
|
|
||||||
|
|
||||||
private ResponseEntity<FileEntityResponse> handleGetFileInfo(String fileId) {
|
|
||||||
try {
|
|
||||||
FileEntityResponse fileInfo = fileEntityService.getById(fileId, 1);
|
|
||||||
|
|
||||||
return ResponseEntity
|
|
||||||
.ok()
|
|
||||||
.body(fileInfo);
|
|
||||||
} catch (NotFoundException e) {
|
|
||||||
return ResponseEntity
|
|
||||||
.notFound().build();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private MediaType getMediaType(FileEntity fileEntity) {
|
|
||||||
try {
|
|
||||||
return MediaType.parseMediaType(fileEntity.getMimeType());
|
|
||||||
} catch (InvalidMediaTypeException e) {
|
|
||||||
String extension = fileEntity.getFileExtension().toLowerCase();
|
|
||||||
switch (extension) {
|
|
||||||
case "jpg":
|
|
||||||
case "jpeg":
|
|
||||||
return MediaType.IMAGE_JPEG;
|
|
||||||
case "png":
|
|
||||||
return MediaType.IMAGE_PNG;
|
|
||||||
case "pdf":
|
|
||||||
return MediaType.APPLICATION_PDF;
|
|
||||||
default:
|
|
||||||
return MediaType.APPLICATION_OCTET_STREAM;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@GetMapping("/protected/{fileId}/{type}")
|
|
||||||
public ResponseEntity<Resource> getProtectedFile(
|
|
||||||
@PathVariable String fileId, @PathVariable String type) throws IOException {
|
|
||||||
|
|
||||||
FileEntity fileEntity = fileRepository.findById(fileId)
|
FileEntity fileEntity = fileRepository.findById(fileId)
|
||||||
.orElseThrow(() -> new RuntimeException("File not found"));
|
.orElseThrow(() -> new RuntimeException("File not found"));
|
||||||
|
|
||||||
String filePath = type.equals("thumbnail") ? fileEntity.getThumbnailPath(): fileEntity.getFilePath();
|
Resource resource = fileStorageService.loadFileAsResource(fileEntity.getFilePath());
|
||||||
|
|
||||||
if (fileEntity.getProtectionStatus() == ProtectionStatus.NOT_PROTECTED ||
|
|
||||||
fileEntity.getProtectionStatus() == ProtectionStatus.PROCESSING) {
|
|
||||||
throw new RuntimeException("File is not protected");
|
|
||||||
}
|
|
||||||
|
|
||||||
String fileName = fileEntity.getOriginalFileName().replace("." +
|
|
||||||
fileEntity.getFileExtension(), "") + "_nocopy_protected" +
|
|
||||||
"." + fileEntity.getFileExtension();
|
|
||||||
String encodedFileName = URLEncoder.encode(fileName, StandardCharsets.UTF_8)
|
|
||||||
.replace("+", "%20");
|
|
||||||
|
|
||||||
InputStreamResource resource = new InputStreamResource(cloudStorageService.readFileFromStorage(filePath));
|
|
||||||
|
|
||||||
return ResponseEntity.ok()
|
return ResponseEntity.ok()
|
||||||
.contentType(new MediaType(fileEntity.getMimeType(), fileEntity.getFileExtension()))
|
.contentType(new MediaType(fileEntity.getMimeType(), fileEntity.getFileExtension()))
|
||||||
.header(HttpHeaders.CONTENT_DISPOSITION,
|
.header(HttpHeaders.CONTENT_DISPOSITION,
|
||||||
"inline; filename*=UTF-8''" + encodedFileName)
|
"inline; filename=\"" + fileEntity.getOriginalFileName() + "\"")
|
||||||
.body(resource);
|
.body(resource);
|
||||||
}
|
}
|
||||||
|
|
||||||
@GetMapping("/public/{fileId}/{type}")
|
@GetMapping("/protected/{fileId}")
|
||||||
public ResponseEntity<Resource> getPublicFileWithTpe(
|
public ResponseEntity<Resource> getProtectedFile(
|
||||||
@PathVariable String fileId, @PathVariable String type) throws IOException {
|
@PathVariable String fileId) throws IOException {
|
||||||
|
|
||||||
FileEntity fileEntity = fileRepository.findById(fileId)
|
FileEntity fileEntity = fileRepository.findById(fileId)
|
||||||
.orElseThrow(() -> new RuntimeException("File not found"));
|
.orElseThrow(() -> new RuntimeException("File not found"));
|
||||||
|
|
||||||
String filePath = type.equals("thumbnail") ? fileEntity.getThumbnailPath(): fileEntity.getFilePath();
|
Resource resource = fileStorageService.loadFileAsResource(fileEntity.getProtectedFilePath());
|
||||||
|
|
||||||
if (fileEntity.getProtectionStatus() == ProtectionStatus.NOT_PROTECTED ||
|
if (fileEntity.getProtectionStatus() == ProtectionStatus.NOT_PROTECTED ||
|
||||||
fileEntity.getProtectionStatus() == ProtectionStatus.PROCESSING) {
|
fileEntity.getProtectionStatus() == ProtectionStatus.PROCESSING) {
|
||||||
throw new RuntimeException("File is not protected");
|
throw new RuntimeException("File is not protected");
|
||||||
}
|
}
|
||||||
|
|
||||||
String fileName = fileEntity.getOriginalFileName().replace("." +
|
|
||||||
fileEntity.getFileExtension(), "") + "_nocopy_protected" +
|
|
||||||
"." + fileEntity.getFileExtension();
|
|
||||||
String encodedFileName = URLEncoder.encode(fileName, StandardCharsets.UTF_8)
|
|
||||||
.replace("+", "%20");
|
|
||||||
|
|
||||||
InputStreamResource resource = new InputStreamResource(cloudStorageService.readFileFromStorage(filePath));
|
|
||||||
|
|
||||||
return ResponseEntity.ok()
|
return ResponseEntity.ok()
|
||||||
.contentType(new MediaType(fileEntity.getMimeType(), fileEntity.getFileExtension()))
|
.contentType(new MediaType(fileEntity.getMimeType(), fileEntity.getFileExtension()))
|
||||||
.header(HttpHeaders.CONTENT_DISPOSITION,
|
.header(HttpHeaders.CONTENT_DISPOSITION,
|
||||||
"inline; filename*=UTF-8''" + encodedFileName)
|
"inline; filename=\"" + fileEntity.getOriginalFileName() + "\"")
|
||||||
.body(resource);
|
.body(resource);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -201,33 +89,4 @@ public class FileController {
|
|||||||
.ok()
|
.ok()
|
||||||
.body(protectedFileCheck);
|
.body(protectedFileCheck);
|
||||||
}
|
}
|
||||||
|
|
||||||
@PostMapping("protect/{fileId}/{convertTo}")
|
|
||||||
public ResponseEntity<FileProtector.FileInfo> convert(@PathVariable String fileId, @PathVariable String convertTo) {
|
|
||||||
FileEntity file = fileRepository.findByFileId(fileId);
|
|
||||||
FileProtector.FileInfo fileInfo = fileUtil.createFileInfo(file, convertTo);
|
|
||||||
|
|
||||||
noCopyFileService.addFile(fileInfo);
|
|
||||||
|
|
||||||
return ResponseEntity
|
|
||||||
.ok()
|
|
||||||
.body(fileInfo);
|
|
||||||
}
|
|
||||||
|
|
||||||
@GetMapping("/download/user-passport/archive/{userId}")
|
|
||||||
public ResponseEntity<byte[]> downloadPassportZip(@PathVariable Long userId) {
|
|
||||||
try {
|
|
||||||
byte[] zipBytes = zipService.assembleZipFromSplitFiles(userId);
|
|
||||||
|
|
||||||
return ResponseEntity.ok()
|
|
||||||
.header(HttpHeaders.CONTENT_DISPOSITION,
|
|
||||||
"attachment; filename=passport_" + userId + ".zip")
|
|
||||||
.contentType(MediaType.APPLICATION_OCTET_STREAM)
|
|
||||||
.contentLength(zipBytes.length)
|
|
||||||
.body(zipBytes);
|
|
||||||
} catch (IOException e) {
|
|
||||||
log.error("Failed to assemble passport for user {}", userId, e);
|
|
||||||
return ResponseEntity.internalServerError().build();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,116 +0,0 @@
|
|||||||
package ru.soune.nocopy.controller;
|
|
||||||
|
|
||||||
import jakarta.servlet.http.HttpServletRequest;
|
|
||||||
import lombok.RequiredArgsConstructor;
|
|
||||||
import lombok.extern.slf4j.Slf4j;
|
|
||||||
import org.springframework.data.domain.Page;
|
|
||||||
import org.springframework.http.ResponseEntity;
|
|
||||||
import org.springframework.web.bind.annotation.*;
|
|
||||||
import ru.soune.nocopy.dto.search.GlobalSearchStartRequest;
|
|
||||||
import ru.soune.nocopy.dto.search.GlobalSearchStartResponse;
|
|
||||||
import ru.soune.nocopy.dto.search.GlobalSearchStatusResponse;
|
|
||||||
import ru.soune.nocopy.dto.violation.FileViolationSummaryDTO;
|
|
||||||
import ru.soune.nocopy.dto.violation.ViolationRequest;
|
|
||||||
import ru.soune.nocopy.entity.file.FileEntity;
|
|
||||||
import ru.soune.nocopy.entity.search.GlobalSearchTask;
|
|
||||||
import ru.soune.nocopy.entity.search.SearchStatus;
|
|
||||||
import ru.soune.nocopy.repository.GlobalSearchTaskRepository;
|
|
||||||
import ru.soune.nocopy.service.search.GlobalSearchService;
|
|
||||||
import ru.soune.nocopy.service.violation.ViolationService;
|
|
||||||
|
|
||||||
import java.util.*;
|
|
||||||
|
|
||||||
@Slf4j
|
|
||||||
@RestController
|
|
||||||
@RequestMapping("/api/v1/global-search")
|
|
||||||
@RequiredArgsConstructor
|
|
||||||
public class GlobalSearchController {
|
|
||||||
|
|
||||||
private final GlobalSearchService globalSearchService;
|
|
||||||
|
|
||||||
private final GlobalSearchTaskRepository searchTaskRepository;
|
|
||||||
|
|
||||||
private final ViolationService violationService;
|
|
||||||
|
|
||||||
private final HttpServletRequest httpServletRequest;
|
|
||||||
|
|
||||||
@PostMapping("/start")
|
|
||||||
public ResponseEntity<?> startSearch(
|
|
||||||
@RequestBody GlobalSearchStartRequest request) {
|
|
||||||
GlobalSearchStartResponse response = new GlobalSearchStartResponse();
|
|
||||||
|
|
||||||
Long userId = (Long) httpServletRequest.getAttribute("userId");
|
|
||||||
|
|
||||||
List<FileEntity> filesToProcess = globalSearchService.getFilesToProcess(request, userId);
|
|
||||||
|
|
||||||
if (filesToProcess.isEmpty()) return ResponseEntity.ok().body("Files for search not found");
|
|
||||||
|
|
||||||
String taskId = globalSearchService.startSearch(request, userId, filesToProcess);
|
|
||||||
|
|
||||||
response.setTaskId(taskId);
|
|
||||||
response.setStatus(SearchStatus.ACCEPTED.name());
|
|
||||||
response.setTotalFiles(filesToProcess.size());
|
|
||||||
|
|
||||||
return ResponseEntity.ok(response);
|
|
||||||
}
|
|
||||||
|
|
||||||
@GetMapping("/actual-task")
|
|
||||||
public ResponseEntity<?> getStatus() {
|
|
||||||
Optional<GlobalSearchTask> taskOptional;
|
|
||||||
|
|
||||||
Long userId = (Long) httpServletRequest.getAttribute("userId");
|
|
||||||
|
|
||||||
taskOptional = searchTaskRepository.findByUserIdAndStatus(userId,
|
|
||||||
"PROCESSING");
|
|
||||||
|
|
||||||
if (taskOptional.isEmpty()) return ResponseEntity.ok().body("Task not found");
|
|
||||||
|
|
||||||
return ResponseEntity.ok(taskOptional.get());
|
|
||||||
}
|
|
||||||
|
|
||||||
@GetMapping("/violation-summary")
|
|
||||||
public ResponseEntity<?> getSummary() {
|
|
||||||
List<FileViolationSummaryDTO> fileViolationsSummary;
|
|
||||||
|
|
||||||
Long userId = (Long) httpServletRequest.getAttribute("userId");
|
|
||||||
|
|
||||||
fileViolationsSummary = violationService.getFileViolationsSummary(userId);
|
|
||||||
|
|
||||||
if (fileViolationsSummary.isEmpty()) return ResponseEntity.ok().body("Violations summary not found");
|
|
||||||
|
|
||||||
return ResponseEntity.ok(fileViolationsSummary);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
@PostMapping("/violation-summary-with-files")
|
|
||||||
public ResponseEntity<?> getViolations(@RequestBody ViolationRequest request) {
|
|
||||||
Long userId = (Long) httpServletRequest.getAttribute("userId");
|
|
||||||
Page<FileViolationSummaryDTO> result = violationService.getFileViolationsSummary(
|
|
||||||
userId, request.getFileName(), request.getSortDirection(),
|
|
||||||
request.getPage(), request.getSize(), request.getStartDate(), request.getEndDate());
|
|
||||||
|
|
||||||
return ResponseEntity.ok(result);
|
|
||||||
}
|
|
||||||
|
|
||||||
@GetMapping("/status/{taskId}")
|
|
||||||
public ResponseEntity<?> getStatus(@PathVariable String taskId) {
|
|
||||||
GlobalSearchStatusResponse response;
|
|
||||||
Long userId = (Long) httpServletRequest.getAttribute("userId");
|
|
||||||
|
|
||||||
Optional<GlobalSearchTask> taskOptional = searchTaskRepository.findByTaskIdAndUserId(taskId, userId);
|
|
||||||
|
|
||||||
if (taskOptional.isEmpty()) return ResponseEntity.ok().body("Task not found");
|
|
||||||
|
|
||||||
GlobalSearchTask task = taskOptional.orElseThrow();
|
|
||||||
|
|
||||||
int progress = task.getTotalFiles() > 0 ? task.getProcessedFiles() * 100 / task.getTotalFiles() : 0;
|
|
||||||
|
|
||||||
response = new GlobalSearchStatusResponse();
|
|
||||||
response.setTaskId(taskId);
|
|
||||||
response.setStatus(task.getStatus());
|
|
||||||
response.setProgress(progress);
|
|
||||||
|
|
||||||
|
|
||||||
return ResponseEntity.ok(response);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,54 +1,20 @@
|
|||||||
package ru.soune.nocopy.controller;
|
package ru.soune.nocopy.controller;
|
||||||
|
|
||||||
import com.fasterxml.jackson.core.JsonProcessingException;
|
|
||||||
import com.fasterxml.jackson.databind.ObjectMapper;
|
|
||||||
import lombok.extern.slf4j.Slf4j;
|
|
||||||
import org.springframework.beans.factory.annotation.Value;
|
|
||||||
import org.springframework.http.HttpStatus;
|
import org.springframework.http.HttpStatus;
|
||||||
import org.springframework.http.ResponseEntity;
|
|
||||||
import org.springframework.kafka.core.KafkaTemplate;
|
|
||||||
import org.springframework.web.bind.annotation.*;
|
import org.springframework.web.bind.annotation.*;
|
||||||
import org.springframework.web.servlet.function.EntityResponse;
|
|
||||||
import ru.soune.nocopy.dto.monitoring.MonitoringDTO;
|
|
||||||
import ru.soune.nocopy.entity.monitoring.FileMonitoringEntity;
|
|
||||||
import ru.soune.nocopy.repository.FileMonitoringRepository;
|
|
||||||
|
|
||||||
import java.util.HashMap;
|
import java.util.HashMap;
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
|
|
||||||
@RestController
|
@RestController
|
||||||
@RequestMapping("check/api")
|
@RequestMapping("check/api")
|
||||||
@Slf4j
|
|
||||||
public class HealtCheckController {
|
public class HealtCheckController {
|
||||||
|
|
||||||
private final KafkaTemplate<String, Object> kafkaTemplate;
|
|
||||||
|
|
||||||
private final FileMonitoringRepository monitoringRepository;
|
|
||||||
|
|
||||||
private final ObjectMapper objectMapper;
|
|
||||||
|
|
||||||
@Value("${server.baseurl}")
|
|
||||||
private String baseUrl;
|
|
||||||
|
|
||||||
public HealtCheckController(KafkaTemplate<String, Object> kafkaTemplate, FileMonitoringRepository monitoringRepository, ObjectMapper objectMapper) {
|
|
||||||
this.kafkaTemplate = kafkaTemplate;
|
|
||||||
this.monitoringRepository = monitoringRepository;
|
|
||||||
this.objectMapper = objectMapper;
|
|
||||||
}
|
|
||||||
|
|
||||||
@GetMapping("/healt")
|
@GetMapping("/healt")
|
||||||
public HttpStatus healtCheck() {
|
public HttpStatus healtCheck() {
|
||||||
return HttpStatus.OK;
|
return HttpStatus.OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Value("${BUILD_TIME_BACK:unknown}")
|
|
||||||
private String buildTimeBack;
|
|
||||||
|
|
||||||
@GetMapping("/build")
|
|
||||||
public BuildInfo getBuildInfo() {
|
|
||||||
return new BuildInfo(buildTimeBack);
|
|
||||||
}
|
|
||||||
|
|
||||||
@GetMapping("/api/debug/memory")
|
@GetMapping("/api/debug/memory")
|
||||||
public Map<String, String> getMemoryInfo() {
|
public Map<String, String> getMemoryInfo() {
|
||||||
Runtime runtime = Runtime.getRuntime();
|
Runtime runtime = Runtime.getRuntime();
|
||||||
@@ -66,28 +32,4 @@ public class HealtCheckController {
|
|||||||
|
|
||||||
return info;
|
return info;
|
||||||
}
|
}
|
||||||
|
|
||||||
static class BuildInfo {
|
|
||||||
public String buildTimeBack;
|
|
||||||
|
|
||||||
public BuildInfo(String buildTimeBack) {
|
|
||||||
this.buildTimeBack = buildTimeBack;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@PostMapping("/test/monitoring/{fileId}")
|
|
||||||
public ResponseEntity<?> startMonitoringKafka(@PathVariable String fileId) throws JsonProcessingException {
|
|
||||||
MonitoringDTO monitoringYandexDTO = MonitoringDTO.builder().baseUrl(baseUrl).
|
|
||||||
fileId(fileId)
|
|
||||||
.engine("yandex_reverse_image")
|
|
||||||
.searchType("visual_matches")
|
|
||||||
.build();
|
|
||||||
|
|
||||||
kafkaTemplate.send("monitoring-commands", objectMapper.writeValueAsString(monitoringYandexDTO));
|
|
||||||
|
|
||||||
|
|
||||||
return ResponseEntity
|
|
||||||
.ok()
|
|
||||||
.body("OK");
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,83 +0,0 @@
|
|||||||
package ru.soune.nocopy.controller;
|
|
||||||
|
|
||||||
|
|
||||||
import lombok.RequiredArgsConstructor;
|
|
||||||
import lombok.extern.slf4j.Slf4j;
|
|
||||||
import org.springframework.http.ResponseEntity;
|
|
||||||
import org.springframework.web.bind.annotation.PostMapping;
|
|
||||||
import org.springframework.web.bind.annotation.RequestMapping;
|
|
||||||
import org.springframework.web.bind.annotation.RestController;
|
|
||||||
import ru.soune.nocopy.dto.docviewer.DockViewResponse;
|
|
||||||
import ru.soune.nocopy.entity.docviewer.DockView;
|
|
||||||
import ru.soune.nocopy.entity.file.FileEntity;
|
|
||||||
import ru.soune.nocopy.entity.user.User;
|
|
||||||
import ru.soune.nocopy.migration.S3MigrationTool;
|
|
||||||
import ru.soune.nocopy.repository.DockViewRepository;
|
|
||||||
import ru.soune.nocopy.repository.FileEntityRepository;
|
|
||||||
import ru.soune.nocopy.repository.UserRepository;
|
|
||||||
import ru.soune.nocopy.service.geo.GeoCountryService;
|
|
||||||
|
|
||||||
import java.util.List;
|
|
||||||
import java.util.concurrent.CompletableFuture;
|
|
||||||
|
|
||||||
@RestController
|
|
||||||
@RequestMapping("/api/admin/migration")
|
|
||||||
@RequiredArgsConstructor
|
|
||||||
@Slf4j
|
|
||||||
public class MigrationController {
|
|
||||||
|
|
||||||
private final S3MigrationTool migrationTool;
|
|
||||||
|
|
||||||
private final DockViewRepository dockViewRepository;
|
|
||||||
|
|
||||||
private final GeoCountryService geoCountryService;
|
|
||||||
|
|
||||||
private final UserRepository userRepository;
|
|
||||||
|
|
||||||
private final FileEntityRepository fileEntityRepository;
|
|
||||||
|
|
||||||
@PostMapping("/start")
|
|
||||||
public ResponseEntity<String> startMigration() {
|
|
||||||
log.info("Migration triggered via API");
|
|
||||||
|
|
||||||
CompletableFuture.runAsync(() -> {
|
|
||||||
try {
|
|
||||||
migrationTool.migrationFilesToS3();
|
|
||||||
} catch (Exception e) {
|
|
||||||
log.error("Migration failed", e);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
return ResponseEntity.ok("Migration started. Check logs for progress.");
|
|
||||||
}
|
|
||||||
|
|
||||||
@PostMapping("/status")
|
|
||||||
public ResponseEntity<String> getStatus() {
|
|
||||||
return ResponseEntity.ok("Check application logs and migration_failed.txt for details");
|
|
||||||
}
|
|
||||||
|
|
||||||
@PostMapping("/fill-dock-view")
|
|
||||||
public ResponseEntity<String> fillDockView() {
|
|
||||||
List<DockView> dockViews = dockViewRepository.findAll();
|
|
||||||
|
|
||||||
for (DockView dockView: dockViews) {
|
|
||||||
String viewerIp = dockView.getViewerIp();
|
|
||||||
Long viewerId = dockView.getViewerId();
|
|
||||||
String geoEnName = geoCountryService.getCityByIp(viewerIp, "en") + "/" +
|
|
||||||
geoCountryService.getCountryByIp(viewerIp, "en");
|
|
||||||
String geoRuName = geoCountryService.getCityByIp(viewerIp, "ru") + "/" +
|
|
||||||
geoCountryService.getCountryByIp(viewerIp, "ru");
|
|
||||||
User user = userRepository.findById(viewerId).orElse(null);
|
|
||||||
FileEntity file = fileEntityRepository.findByFileId(dockView.getFileId());
|
|
||||||
|
|
||||||
dockView.setGeoNameRu(geoRuName);
|
|
||||||
dockView.setGeoNameEn(geoEnName);
|
|
||||||
dockView.setViewerName(user == null ? "guest" : user.getFullName());
|
|
||||||
dockView.setDocName(file.getOriginalFileName());
|
|
||||||
|
|
||||||
dockViewRepository.save(dockView);
|
|
||||||
}
|
|
||||||
|
|
||||||
return ResponseEntity.ok("fill old dock view");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,123 +0,0 @@
|
|||||||
package ru.soune.nocopy.controller;
|
|
||||||
|
|
||||||
import jakarta.servlet.http.HttpServletRequest;
|
|
||||||
import lombok.RequiredArgsConstructor;
|
|
||||||
import lombok.extern.slf4j.Slf4j;
|
|
||||||
import org.springframework.http.HttpStatus;
|
|
||||||
import org.springframework.http.ResponseEntity;
|
|
||||||
import org.springframework.web.bind.annotation.*;
|
|
||||||
import ru.soune.nocopy.entity.payment.Payment;
|
|
||||||
import ru.soune.nocopy.exception.PaymentNotFoundException;
|
|
||||||
import ru.soune.nocopy.exception.TariffNotFoundException;
|
|
||||||
import ru.soune.nocopy.exception.UserNotFoundException;
|
|
||||||
import ru.soune.nocopy.service.payment.PaymentService;
|
|
||||||
|
|
||||||
import java.util.HashMap;
|
|
||||||
import java.util.Map;
|
|
||||||
|
|
||||||
@RestController
|
|
||||||
@RequestMapping("/api/payments")
|
|
||||||
@RequiredArgsConstructor
|
|
||||||
@Slf4j
|
|
||||||
public class PaymentController {
|
|
||||||
|
|
||||||
private final PaymentService paymentService;
|
|
||||||
|
|
||||||
private final HttpServletRequest httpServletRequest;
|
|
||||||
|
|
||||||
@PostMapping("/create")
|
|
||||||
public ResponseEntity<?> createPayment(@RequestParam String email, @RequestParam Long tariffId,
|
|
||||||
@RequestParam String operationType, @RequestParam String operationUuid) {
|
|
||||||
try {
|
|
||||||
Payment payment = paymentService.createPayment(email, tariffId, operationType, operationUuid);
|
|
||||||
|
|
||||||
return ResponseEntity.ok(payment);
|
|
||||||
} catch (TariffNotFoundException e) {
|
|
||||||
return ResponseEntity
|
|
||||||
.status(HttpStatus.NOT_FOUND)
|
|
||||||
.body(Map.of("error", "Tariff not found", "message", e.getMessage()));
|
|
||||||
} catch (UserNotFoundException e) {
|
|
||||||
return ResponseEntity
|
|
||||||
.status(HttpStatus.NOT_FOUND)
|
|
||||||
.body(Map.of("error", "User not found", "message", e.getMessage()));
|
|
||||||
} catch (Exception e) {
|
|
||||||
return ResponseEntity
|
|
||||||
.status(HttpStatus.INTERNAL_SERVER_ERROR)
|
|
||||||
.body(Map.of("error", "Internal server error", "message", e.getMessage()));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@PostMapping("webhook/yookassa")
|
|
||||||
public void handleYooKassaNotification(@RequestBody Map<String, Object> notification) {
|
|
||||||
try {
|
|
||||||
paymentService.handlePaymentNotification(notification);
|
|
||||||
log.info("Notification from yookassa: " + notification);
|
|
||||||
} catch (PaymentNotFoundException e) {
|
|
||||||
log.error("Error processing payment notification", e);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@PostMapping("/auto-renewal")
|
|
||||||
public ResponseEntity<?> disableAutoRenewal(@RequestParam(value = "renewal") Boolean renewal,
|
|
||||||
@RequestHeader(value = "Authorization", required = false) String tokenHeader) {
|
|
||||||
try {
|
|
||||||
if (tokenHeader == null || tokenHeader.isBlank()) {
|
|
||||||
Map<String, Object> errorData = new HashMap<>();
|
|
||||||
errorData.put("token", tokenHeader);
|
|
||||||
|
|
||||||
return ResponseEntity.ok().body(Map.of("error", errorData));
|
|
||||||
}
|
|
||||||
|
|
||||||
Long userId = (Long) httpServletRequest.getAttribute("userId");
|
|
||||||
|
|
||||||
paymentService.changeAutoRenewal(userId, renewal);
|
|
||||||
return ResponseEntity.ok(Map.of("message", "Auto-renewal changed:" + renewal));
|
|
||||||
} catch (UserNotFoundException e) {
|
|
||||||
return ResponseEntity.status(HttpStatus.NOT_FOUND)
|
|
||||||
.body(Map.of("error", e.getMessage()));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@DeleteMapping("/methods/{paymentMethodId}")
|
|
||||||
public ResponseEntity<?> deletePaymentMethod(@RequestHeader(value = "Authorization", required = false) String tokenHeader,
|
|
||||||
@PathVariable String paymentMethodId) {
|
|
||||||
try {
|
|
||||||
if (tokenHeader == null || tokenHeader.isBlank()) {
|
|
||||||
Map<String, Object> errorData = new HashMap<>();
|
|
||||||
errorData.put("token", tokenHeader);
|
|
||||||
|
|
||||||
return ResponseEntity.ok().body(Map.of("error", errorData));
|
|
||||||
}
|
|
||||||
|
|
||||||
Long userId = (Long) httpServletRequest.getAttribute("userId");
|
|
||||||
|
|
||||||
paymentService.deletePaymentMethod(userId, paymentMethodId);
|
|
||||||
return ResponseEntity.ok(Map.of("message", "Payment method deleted"));
|
|
||||||
} catch (UserNotFoundException e) {
|
|
||||||
return ResponseEntity.status(HttpStatus.NOT_FOUND)
|
|
||||||
.body(Map.of("error", e.getMessage()));
|
|
||||||
} catch (RuntimeException e) {
|
|
||||||
return ResponseEntity.status(HttpStatus.BAD_REQUEST)
|
|
||||||
.body(Map.of("error", e.getMessage()));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@GetMapping("/methods")
|
|
||||||
public ResponseEntity<?> getPaymentMethods(@RequestHeader(value = "Authorization", required = false) String tokenHeader) {
|
|
||||||
try {
|
|
||||||
if (tokenHeader == null || tokenHeader.isBlank()) {
|
|
||||||
Map<String, Object> errorData = new HashMap<>();
|
|
||||||
errorData.put("token", tokenHeader);
|
|
||||||
|
|
||||||
return ResponseEntity.ok().body(Map.of("error", errorData));
|
|
||||||
}
|
|
||||||
|
|
||||||
Long userId = (Long) httpServletRequest.getAttribute("userId");
|
|
||||||
|
|
||||||
return ResponseEntity.ok(paymentService.getUserPaymentMethods(userId));
|
|
||||||
} catch (UserNotFoundException e) {
|
|
||||||
return ResponseEntity.status(HttpStatus.NOT_FOUND)
|
|
||||||
.body(Map.of("error", e.getMessage()));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,201 +0,0 @@
|
|||||||
package ru.soune.nocopy.controller;
|
|
||||||
|
|
||||||
|
|
||||||
import jakarta.servlet.http.HttpServletRequest;
|
|
||||||
import jakarta.validation.Valid;
|
|
||||||
import lombok.RequiredArgsConstructor;
|
|
||||||
import lombok.extern.slf4j.Slf4j;
|
|
||||||
import org.springframework.http.HttpStatus;
|
|
||||||
import org.springframework.http.ResponseEntity;
|
|
||||||
import org.springframework.web.bind.annotation.*;
|
|
||||||
import ru.soune.nocopy.dto.payout.*;
|
|
||||||
import ru.soune.nocopy.entity.payout.BankTransferPayoutMethod;
|
|
||||||
import ru.soune.nocopy.entity.payout.CardPayoutMethod;
|
|
||||||
import ru.soune.nocopy.entity.payout.PayoutRequest;
|
|
||||||
import ru.soune.nocopy.entity.payout.PayoutType;
|
|
||||||
import ru.soune.nocopy.entity.user.User;
|
|
||||||
import ru.soune.nocopy.exception.InsufficientFundsException;
|
|
||||||
import ru.soune.nocopy.exception.InvalidPayoutMethodException;
|
|
||||||
import ru.soune.nocopy.exception.PendingPayoutExistsException;
|
|
||||||
import ru.soune.nocopy.service.payout.PayoutMethodService;
|
|
||||||
import ru.soune.nocopy.service.payout.PayoutRequestService;
|
|
||||||
import ru.soune.nocopy.service.user.UserService;
|
|
||||||
|
|
||||||
import java.util.Arrays;
|
|
||||||
import java.util.List;
|
|
||||||
import java.util.stream.Collectors;
|
|
||||||
|
|
||||||
@RestController
|
|
||||||
@RequestMapping("/api/payouts")
|
|
||||||
@RequiredArgsConstructor
|
|
||||||
@Slf4j
|
|
||||||
public class PayoutController {
|
|
||||||
|
|
||||||
private final PayoutRequestService payoutRequestService;
|
|
||||||
|
|
||||||
private final PayoutMethodService payoutMethodService;
|
|
||||||
|
|
||||||
private final HttpServletRequest httpServletRequest;
|
|
||||||
|
|
||||||
private final UserService userService;
|
|
||||||
|
|
||||||
/*
|
|
||||||
Create payout
|
|
||||||
*/
|
|
||||||
@PostMapping("/create-request")
|
|
||||||
public ResponseEntity<?> createPayoutRequest(@Valid @RequestBody PayoutRequestDTO request) {
|
|
||||||
Long userId = (Long) httpServletRequest.getAttribute("userId");
|
|
||||||
User user = userService.getUserById(userId).orElse(null);
|
|
||||||
|
|
||||||
if (user == null) {
|
|
||||||
return ResponseEntity.status(HttpStatus.NOT_FOUND).body("User not found with id: " + userId);
|
|
||||||
}
|
|
||||||
|
|
||||||
try {
|
|
||||||
PayoutRequest payoutRequest = payoutRequestService.createPayoutRequest(user.getId(), request);
|
|
||||||
return ResponseEntity.status(HttpStatus.CREATED).body(payoutRequest);
|
|
||||||
} catch (InsufficientFundsException | PendingPayoutExistsException | InvalidPayoutMethodException e) {
|
|
||||||
return ResponseEntity.status(HttpStatus.CONFLICT).body(e.getMessage());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
|
||||||
Completed payout
|
|
||||||
*/
|
|
||||||
@PostMapping("/requests/{requestId}/process")
|
|
||||||
public ResponseEntity<PayoutRequest> processPayoutRequest(@PathVariable Long requestId) {
|
|
||||||
PayoutRequest processed = payoutRequestService.processRequest(requestId);
|
|
||||||
|
|
||||||
return ResponseEntity.ok(processed);
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
|
||||||
Cancel payout
|
|
||||||
*/
|
|
||||||
@PostMapping("/requests/{requestId}/cancel")
|
|
||||||
public ResponseEntity<PayoutRequest> cancelPayoutRequest(@PathVariable Long requestId) {
|
|
||||||
Long userId = (Long) httpServletRequest.getAttribute("userId");
|
|
||||||
User user = userService.getUserById(userId).orElse(null);
|
|
||||||
|
|
||||||
if (user == null) {
|
|
||||||
return ResponseEntity.notFound().build();
|
|
||||||
}
|
|
||||||
|
|
||||||
PayoutRequest cancelled = payoutRequestService.cancelPayoutRequest(user.getId(), requestId);
|
|
||||||
|
|
||||||
return ResponseEntity.ok(cancelled);
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
|
||||||
Get user payouts
|
|
||||||
*/
|
|
||||||
@GetMapping("/requests")
|
|
||||||
public ResponseEntity<List<PayoutRequest>> getUserRequests() {
|
|
||||||
Long userId = (Long) httpServletRequest.getAttribute("userId");
|
|
||||||
User user = userService.getUserById(userId).orElse(null);
|
|
||||||
|
|
||||||
if (user == null) {
|
|
||||||
return ResponseEntity.notFound().build();
|
|
||||||
}
|
|
||||||
|
|
||||||
return ResponseEntity.ok(payoutRequestService.getUserPayoutRequests(user.getId()));
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
|
||||||
Get payout by id
|
|
||||||
*/
|
|
||||||
@GetMapping("/requests/{requestId}")
|
|
||||||
public ResponseEntity<PayoutRequest> getPayoutRequest(@PathVariable Long requestId) {
|
|
||||||
Long userId = (Long) httpServletRequest.getAttribute("userId");
|
|
||||||
User user = userService.getUserById(userId).orElse(null);
|
|
||||||
|
|
||||||
if (user == null) {
|
|
||||||
return ResponseEntity.notFound().build();
|
|
||||||
}
|
|
||||||
|
|
||||||
return ResponseEntity.ok(payoutRequestService.getPayoutRequest(user.getId(), requestId));
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
|
||||||
Get payout by id
|
|
||||||
*/
|
|
||||||
@GetMapping("user/payout-methods")
|
|
||||||
public ResponseEntity<List<PayoutMethodDTO>> getUserMethods() {
|
|
||||||
Long userId = (Long) httpServletRequest.getAttribute("userId");
|
|
||||||
User user = userService.getUserById(userId).orElse(null);
|
|
||||||
|
|
||||||
if (user == null) {
|
|
||||||
return ResponseEntity.notFound().build();
|
|
||||||
}
|
|
||||||
|
|
||||||
return ResponseEntity.ok(payoutMethodService.getUserMethods(user.getId()));
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
|
||||||
Get payout-methods
|
|
||||||
*/
|
|
||||||
@GetMapping("/payout-methods")
|
|
||||||
public ResponseEntity<List<PayoutMethodTypeDTO>> getAvailableMethodTypes() {
|
|
||||||
List<PayoutMethodTypeDTO> types = Arrays.stream(PayoutType.values())
|
|
||||||
.map(type -> PayoutMethodTypeDTO.builder()
|
|
||||||
.code(type.name())
|
|
||||||
.name(type.getDisplayName())
|
|
||||||
.build())
|
|
||||||
.collect(Collectors.toList());
|
|
||||||
|
|
||||||
return ResponseEntity.ok(types);
|
|
||||||
}
|
|
||||||
/*
|
|
||||||
add card method by userId
|
|
||||||
*/
|
|
||||||
@PostMapping("/payout-method/card")
|
|
||||||
public ResponseEntity<PayoutMethodDTO> addCardMethod(@Valid @RequestBody AddCardRequest request) {
|
|
||||||
Long userId = (Long) httpServletRequest.getAttribute("userId");
|
|
||||||
User user = userService.getUserById(userId).orElse(null);
|
|
||||||
|
|
||||||
if (user == null) {
|
|
||||||
return ResponseEntity.notFound().build();
|
|
||||||
}
|
|
||||||
|
|
||||||
CardPayoutMethod method = payoutMethodService.addCardMethod(user.getId(), request);
|
|
||||||
|
|
||||||
return ResponseEntity.status(HttpStatus.CREATED)
|
|
||||||
.body(payoutMethodService.convertToDto(method));
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
|
||||||
add bank payout-method
|
|
||||||
*/
|
|
||||||
@PostMapping("/payout-method/bank-transfer")
|
|
||||||
public ResponseEntity<PayoutMethodDTO> addBankTransferMethod(@Valid @RequestBody AddBankTransferRequest request) {
|
|
||||||
Long userId = (Long) httpServletRequest.getAttribute("userId");
|
|
||||||
User user = userService.getUserById(userId).orElse(null);
|
|
||||||
|
|
||||||
if (user == null) {
|
|
||||||
return ResponseEntity.notFound().build();
|
|
||||||
}
|
|
||||||
|
|
||||||
BankTransferPayoutMethod method = payoutMethodService.addBankTransferMethod(user.getId(), request);
|
|
||||||
|
|
||||||
return ResponseEntity.status(HttpStatus.CREATED)
|
|
||||||
.body(payoutMethodService.convertToDto(method));
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/*
|
|
||||||
set default bank payout-method
|
|
||||||
*/
|
|
||||||
@PutMapping("/payout-method/{methodId}/default")
|
|
||||||
public ResponseEntity<Void> setDefaultMethod(@PathVariable Long methodId) {
|
|
||||||
Long userId = (Long) httpServletRequest.getAttribute("userId");
|
|
||||||
User user = userService.getUserById(userId).orElse(null);
|
|
||||||
|
|
||||||
if (user == null) {
|
|
||||||
return ResponseEntity.notFound().build();
|
|
||||||
}
|
|
||||||
|
|
||||||
payoutMethodService.setDefaultMethod(user.getId(), methodId);
|
|
||||||
|
|
||||||
return ResponseEntity.ok().build();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,58 +0,0 @@
|
|||||||
package ru.soune.nocopy.controller;
|
|
||||||
|
|
||||||
import lombok.RequiredArgsConstructor;
|
|
||||||
import lombok.extern.slf4j.Slf4j;
|
|
||||||
import org.springframework.http.ResponseEntity;
|
|
||||||
import org.springframework.web.bind.annotation.*;
|
|
||||||
import ru.soune.nocopy.configuration.search.SearchProperties;
|
|
||||||
import ru.soune.nocopy.dto.BaseResponse;
|
|
||||||
import ru.soune.nocopy.dto.search.config.SearchSettingsDto;
|
|
||||||
|
|
||||||
import java.util.Map;
|
|
||||||
|
|
||||||
|
|
||||||
@Slf4j
|
|
||||||
@RestController
|
|
||||||
@RequestMapping("/api/search/settings")
|
|
||||||
@RequiredArgsConstructor
|
|
||||||
public class SearchSettingsController {
|
|
||||||
|
|
||||||
private final SearchProperties searchProperties;
|
|
||||||
|
|
||||||
@GetMapping
|
|
||||||
public ResponseEntity<?> getSettings() {
|
|
||||||
SearchSettingsDto dto = new SearchSettingsDto();
|
|
||||||
|
|
||||||
dto.setEngines(Map.of(
|
|
||||||
"yandex", searchProperties.getEngines().get("yandex").isEnabled(),
|
|
||||||
"google", searchProperties.getEngines().get("google").isEnabled()));
|
|
||||||
|
|
||||||
dto.setProxyEnabled(searchProperties.getProxy().isEnabled());
|
|
||||||
|
|
||||||
return ResponseEntity.ok().body(BaseResponse.builder()
|
|
||||||
.messageDesc("Success")
|
|
||||||
.messageBody(dto)
|
|
||||||
.build());
|
|
||||||
}
|
|
||||||
|
|
||||||
@PutMapping
|
|
||||||
public ResponseEntity<?> updateSettings(@RequestBody SearchSettingsDto settings) {
|
|
||||||
if (settings.getEngines() != null) {
|
|
||||||
settings.getEngines().forEach((key, value) -> {
|
|
||||||
if (searchProperties.getEngines().containsKey(key)) {
|
|
||||||
searchProperties.getEngines().get(key).setEnabled(value);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
if (settings.getProxyEnabled() != null) {
|
|
||||||
searchProperties.getProxy().setEnabled(settings.getProxyEnabled());
|
|
||||||
}
|
|
||||||
|
|
||||||
log.info("Settings updated: {}", settings);
|
|
||||||
|
|
||||||
return ResponseEntity.ok().body(BaseResponse.builder()
|
|
||||||
.messageDesc("Settings updated")
|
|
||||||
.build());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,6 +1,5 @@
|
|||||||
package ru.soune.nocopy.controller;
|
package ru.soune.nocopy.controller;
|
||||||
|
|
||||||
import jakarta.servlet.http.HttpServletRequest;
|
|
||||||
import lombok.RequiredArgsConstructor;
|
import lombok.RequiredArgsConstructor;
|
||||||
import org.springframework.http.ResponseEntity;
|
import org.springframework.http.ResponseEntity;
|
||||||
import org.springframework.security.crypto.password.PasswordEncoder;
|
import org.springframework.security.crypto.password.PasswordEncoder;
|
||||||
@@ -15,19 +14,23 @@ import ru.soune.nocopy.dto.user.UserDTO;
|
|||||||
import ru.soune.nocopy.dto.user.UserRequest;
|
import ru.soune.nocopy.dto.user.UserRequest;
|
||||||
import ru.soune.nocopy.entity.tarif.Tariff;
|
import ru.soune.nocopy.entity.tarif.Tariff;
|
||||||
import ru.soune.nocopy.entity.tarif.TariffInfo;
|
import ru.soune.nocopy.entity.tarif.TariffInfo;
|
||||||
|
import ru.soune.nocopy.entity.user.AuthToken;
|
||||||
import ru.soune.nocopy.entity.user.User;
|
import ru.soune.nocopy.entity.user.User;
|
||||||
import ru.soune.nocopy.exception.InvalidUserEmail;
|
import ru.soune.nocopy.exception.InvalidUserEmail;
|
||||||
|
import ru.soune.nocopy.exception.NotFoundAuthToken;
|
||||||
import ru.soune.nocopy.exception.NotValidFieldException;
|
import ru.soune.nocopy.exception.NotValidFieldException;
|
||||||
import ru.soune.nocopy.exception.UserNotFoundException;
|
|
||||||
import ru.soune.nocopy.mapper.UserMapper;
|
import ru.soune.nocopy.mapper.UserMapper;
|
||||||
|
import ru.soune.nocopy.repository.AuthTokenRepository;
|
||||||
import ru.soune.nocopy.repository.UserRepository;
|
import ru.soune.nocopy.repository.UserRepository;
|
||||||
import ru.soune.nocopy.service.file.FileStatsService;
|
import ru.soune.nocopy.service.file.FileStatsService;
|
||||||
|
import ru.soune.nocopy.service.register.AuthService;
|
||||||
import ru.soune.nocopy.service.tariff.TariffService;
|
import ru.soune.nocopy.service.tariff.TariffService;
|
||||||
import ru.soune.nocopy.service.user.UserService;
|
import ru.soune.nocopy.service.user.UserService;
|
||||||
import ru.soune.nocopy.util.JwtUtil;
|
|
||||||
|
|
||||||
import java.util.Arrays;
|
import java.util.Arrays;
|
||||||
|
import java.util.List;
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
|
import java.util.Optional;
|
||||||
|
|
||||||
@RestController
|
@RestController
|
||||||
@RequestMapping("v1/api/user")
|
@RequestMapping("v1/api/user")
|
||||||
@@ -38,35 +41,51 @@ public class UserController {
|
|||||||
|
|
||||||
private final UserService userService;
|
private final UserService userService;
|
||||||
|
|
||||||
|
private final AuthTokenRepository authTokenRepository;
|
||||||
|
|
||||||
private final UserMapper userMapper;
|
private final UserMapper userMapper;
|
||||||
|
|
||||||
private final PasswordEncoder passwordEncoder;
|
private final PasswordEncoder passwordEncoder;
|
||||||
|
|
||||||
|
private final AuthService authService;
|
||||||
|
|
||||||
private final TariffService tariffService;
|
private final TariffService tariffService;
|
||||||
|
|
||||||
private final FileStatsService fileStatsService;
|
private final FileStatsService fileStatsService;
|
||||||
|
|
||||||
private final JwtUtil jwtUtil;
|
@GetMapping("/all")
|
||||||
|
public ResponseEntity<List<UserDTO>> getAllUsers() {
|
||||||
private final HttpServletRequest httpServletRequest;
|
List<UserDTO> allUsers = userRepository.findAll().stream()
|
||||||
|
.map(u -> new UserDTO(u.getFullName(), u.getCompanyName(), u.getEmail(), u.isActive(),
|
||||||
|
u.getPhone(), u.getGenderType(),
|
||||||
|
u.getBirthday(), u.getCreatedAt(), u.getSubscriptionType(), tariffService.getAllTariffs(),
|
||||||
|
null, null))
|
||||||
|
.toList();
|
||||||
|
|
||||||
|
return ResponseEntity.ok(allUsers);
|
||||||
|
}
|
||||||
|
|
||||||
@GetMapping
|
@GetMapping
|
||||||
public ResponseEntity<UserDTO> getUser(@RequestParam("email") String email) {
|
public ResponseEntity<UserDTO> getUser(@RequestParam("email") String email,
|
||||||
|
@RequestHeader("Authorization") String tokenHeader) {
|
||||||
|
String token = tokenHeader.replace("Bearer ", "");
|
||||||
|
|
||||||
|
Optional<AuthToken> tokenOptional = authTokenRepository.findByToken(token);
|
||||||
|
|
||||||
|
if (tokenOptional.isPresent()) {
|
||||||
User user = userRepository.findByEmail(email);
|
User user = userRepository.findByEmail(email);
|
||||||
|
|
||||||
if (user != null) {
|
if (user != null) {
|
||||||
UserDTO userDTO = userMapper.toDTO(user);
|
UserDTO userDTO = userMapper.toDTO(user);
|
||||||
userDTO.setEmail(email);
|
userDTO.setEmail(email);
|
||||||
userDTO.setFullName(user.getFullName());
|
userDTO.setFullName(user.getFullName());
|
||||||
userDTO.setVerifiedStatus(user.getVerificationStatus());
|
|
||||||
|
|
||||||
if (user.getCompany() != null) {
|
if (user.getCompany() != null) {
|
||||||
userDTO.setCompany(user.getCompany().getCompanyName());
|
userDTO.setCompany(user.getCompany().getCompanyName());
|
||||||
}
|
}
|
||||||
|
|
||||||
if (user.canManageCompanySettings() || user.canLogin() && user.getCompany() == null) {
|
if (user.canManageCompanySettings() || user.canLogin() && user.getCompany() == null) {
|
||||||
userDTO.setTariffs(tariffService.getTariffByAccountType(user));
|
userDTO.setTariffs(tariffService.getAllTariffs());
|
||||||
|
|
||||||
Long fileOnDisk = user.canManageCompanySettings() ?
|
Long fileOnDisk = user.canManageCompanySettings() ?
|
||||||
fileStatsService.calculateCompanyFileSize(user.getId()):
|
fileStatsService.calculateCompanyFileSize(user.getId()):
|
||||||
@@ -97,34 +116,40 @@ public class UserController {
|
|||||||
.maxFileOnDisk(tariff.getDiskSize())
|
.maxFileOnDisk(tariff.getDiskSize())
|
||||||
.startTariff(personalTariffInfo.getStartTariff())
|
.startTariff(personalTariffInfo.getStartTariff())
|
||||||
.endTariff(personalTariffInfo.getEndTariff())
|
.endTariff(personalTariffInfo.getEndTariff())
|
||||||
.tokens(personalTariffInfo.getTokens() + personalTariffInfo.getBoughtTokens())
|
|
||||||
.build();
|
.build();
|
||||||
|
|
||||||
userDTO.setTariffInfo(infoDTO);
|
userDTO.setTariffInfo(infoDTO);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
userDTO.setPhone(user.getPhone());
|
userDTO.setPhone(user.getPhone());
|
||||||
userDTO.setGenderType(user.getGenderType());
|
userDTO.setGenderType(user.getGenderType());
|
||||||
userDTO.setBirthday(user.getBirthday());
|
userDTO.setBirthday(user.getBirthday());
|
||||||
userDTO.setCreatedAt(user.getCreatedAt());
|
userDTO.setCreatedAt(user.getCreatedAt());
|
||||||
|
userDTO.setSubscriptionType(user.getSubscriptionType());
|
||||||
userDTO.setActive(user.isActive());
|
userDTO.setActive(user.isActive());
|
||||||
userDTO.setPermission(user.getUserPermissions());
|
userDTO.setPermission(user.getUserPermissions());
|
||||||
|
|
||||||
return ResponseEntity.ok(userDTO);
|
return ResponseEntity.ok(userDTO);
|
||||||
}
|
}
|
||||||
|
} else {
|
||||||
|
return ResponseEntity.notFound().build();
|
||||||
|
}
|
||||||
|
|
||||||
return ResponseEntity.notFound().build();
|
return ResponseEntity.notFound().build();
|
||||||
}
|
}
|
||||||
|
|
||||||
//TODO fix mapper,doesnot exist all fields
|
//TODO fix mapper,doesnot exist all fields
|
||||||
@PostMapping("/change-password")
|
@PostMapping("/change-password")
|
||||||
public ResponseEntity<UserDTO> updateUser(@RequestBody ChangePasswordRequest changePasswordRequest) {
|
public ResponseEntity<UserDTO> updateUser(@RequestBody ChangePasswordRequest changePasswordRequest,
|
||||||
Long userId = (Long) httpServletRequest.getAttribute("userId");
|
@RequestHeader("Authorization") String tokenHeader) {
|
||||||
User user = userService.getUserById(userId).orElse(null);
|
String token = tokenHeader.replace("Bearer ", "");
|
||||||
|
|
||||||
if (user == null) {
|
Optional<AuthToken> tokenOptional = authTokenRepository.findByToken(token);
|
||||||
throw new UserNotFoundException("User not found by id: " + userId);
|
|
||||||
}
|
AuthToken authToken = tokenOptional.orElseThrow(() -> new NotFoundAuthToken("Token: " + token + "not found"));
|
||||||
|
|
||||||
|
User user = authToken.getUser();
|
||||||
|
|
||||||
if (!changePasswordRequest.getEmail().equals(user.getEmail())) {
|
if (!changePasswordRequest.getEmail().equals(user.getEmail())) {
|
||||||
throw new InvalidUserEmail("Email is not valid: " + changePasswordRequest.getEmail() + "not found");
|
throw new InvalidUserEmail("Email is not valid: " + changePasswordRequest.getEmail() + "not found");
|
||||||
@@ -136,19 +161,21 @@ public class UserController {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@PatchMapping("/user-update")
|
@PatchMapping("/user-update")
|
||||||
public ResponseEntity<UserDTO> updateUser(@RequestBody UserRequest userRequest) {
|
public ResponseEntity<UserDTO> updateUser(@RequestBody UserRequest userRequest,
|
||||||
Long userId = (Long) httpServletRequest.getAttribute("userId");
|
@RequestHeader("Authorization") String tokenHeader) {
|
||||||
User user = userService.getUserById(userId).orElse(null);
|
String token = tokenHeader.replace("Bearer ", "");
|
||||||
|
|
||||||
if (user == null) {
|
Optional<AuthToken> tokenOptional = authTokenRepository.findByToken(token);
|
||||||
throw new UserNotFoundException("User not found by id: " + userId);
|
|
||||||
}
|
AuthToken authToken = tokenOptional.orElseThrow(() -> new NotFoundAuthToken("Token: " + token + "not found"));
|
||||||
|
|
||||||
|
User user = authToken.getUser();
|
||||||
|
|
||||||
return ResponseEntity.ok(userService.updateUser(userRequest, user));
|
return ResponseEntity.ok(userService.updateUser(userRequest, user));
|
||||||
}
|
}
|
||||||
|
|
||||||
@PostMapping("/create-user")
|
@PostMapping("/create-user")
|
||||||
public ResponseEntity<?> addUser(@RequestBody RegRequest registerRequest) {
|
public ResponseEntity<User> addUser(@RequestBody RegRequest registerRequest) {
|
||||||
|
|
||||||
if (userRepository.existsByEmail(registerRequest.getEmail()) ||
|
if (userRepository.existsByEmail(registerRequest.getEmail()) ||
|
||||||
userRepository.existsByPhone(registerRequest.getPhone())) {
|
userRepository.existsByPhone(registerRequest.getPhone())) {
|
||||||
@@ -175,11 +202,11 @@ public class UserController {
|
|||||||
|
|
||||||
User savedUser = userRepository.save(user);
|
User savedUser = userRepository.save(user);
|
||||||
|
|
||||||
String authToken = jwtUtil.generateToken(savedUser.getId(), savedUser.getEmail());
|
AuthToken authToken = authService.generateAuthToken(savedUser);
|
||||||
|
|
||||||
return ResponseEntity.ok().body(Map.of(
|
authTokenRepository.save(authToken);
|
||||||
"user", savedUser,
|
|
||||||
"token", authToken));
|
return ResponseEntity.ok().body(savedUser);
|
||||||
}
|
}
|
||||||
|
|
||||||
@DeleteMapping("/delete-user/{userId}")
|
@DeleteMapping("/delete-user/{userId}")
|
||||||
|
|||||||
@@ -1,187 +0,0 @@
|
|||||||
package ru.soune.nocopy.controller.demo;
|
|
||||||
|
|
||||||
import jakarta.servlet.http.HttpServletRequest;
|
|
||||||
import lombok.RequiredArgsConstructor;
|
|
||||||
import lombok.extern.slf4j.Slf4j;
|
|
||||||
import org.springframework.beans.factory.annotation.Value;
|
|
||||||
import org.springframework.http.HttpStatus;
|
|
||||||
import org.springframework.http.ResponseEntity;
|
|
||||||
import org.springframework.web.bind.annotation.*;
|
|
||||||
import org.springframework.web.multipart.MultipartFile;
|
|
||||||
import ru.soune.nocopy.dto.demo.*;
|
|
||||||
import ru.soune.nocopy.service.demo.DemoSessionService;
|
|
||||||
|
|
||||||
@Slf4j
|
|
||||||
@RestController
|
|
||||||
@RequestMapping("/api/demo")
|
|
||||||
@RequiredArgsConstructor
|
|
||||||
public class DemoController {
|
|
||||||
|
|
||||||
private final DemoSessionService demoSessionService;
|
|
||||||
private final HttpServletRequest httpServletRequest;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* X-Forwarded-For/X-Real-IP — клиентские заголовки, их можно подделать в запросе.
|
|
||||||
* Доверять им можно, только если приложение стоит за доверенным reverse-proxy/LB,
|
|
||||||
* который сам их проставляет и не пропускает клиентские значения напрямую.
|
|
||||||
*/
|
|
||||||
@Value("${demo.trust-forwarded-header:false}")
|
|
||||||
private boolean trustForwardedHeader;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Загрузка файла для демонстрации
|
|
||||||
* Требуется файл в формате multipart/form-data
|
|
||||||
*
|
|
||||||
* @param file файл для загрузки
|
|
||||||
* @return DemoUploadResponse с информацией о сессии
|
|
||||||
*/
|
|
||||||
@PostMapping("/upload")
|
|
||||||
public ResponseEntity<?> uploadFile(@RequestParam("file") MultipartFile file) {
|
|
||||||
try {
|
|
||||||
if (file.isEmpty()) {
|
|
||||||
return ResponseEntity.badRequest()
|
|
||||||
.body(new DemoUploadResponse(
|
|
||||||
null, null, null, 0L,
|
|
||||||
"FAILED", "File is empty", 0L, 0
|
|
||||||
));
|
|
||||||
}
|
|
||||||
|
|
||||||
String clientIp = getClientIp();
|
|
||||||
log.info("Demo upload request from IP: {} for file: {}", clientIp, file.getOriginalFilename());
|
|
||||||
|
|
||||||
DemoUploadResponse response = demoSessionService.uploadFile(file, clientIp);
|
|
||||||
|
|
||||||
return ResponseEntity.ok(response);
|
|
||||||
|
|
||||||
} catch (RuntimeException e) {
|
|
||||||
log.warn("Demo upload validation failed: {}", e.getMessage());
|
|
||||||
return ResponseEntity.status(HttpStatus.BAD_REQUEST)
|
|
||||||
.body(new DemoUploadResponse(
|
|
||||||
null, null, null, 0L,
|
|
||||||
"FAILED", e.getMessage(), 0L, 0
|
|
||||||
));
|
|
||||||
} catch (Exception e) {
|
|
||||||
log.error("Error during demo upload", e);
|
|
||||||
return ResponseEntity.status(HttpStatus.INTERNAL_SERVER_ERROR)
|
|
||||||
.body(new DemoUploadResponse(
|
|
||||||
null, null, null, 0L,
|
|
||||||
"FAILED", "Upload failed: " + e.getMessage(), 0L, 0
|
|
||||||
));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Получение информации о загруженном файле в демо-сессии
|
|
||||||
*
|
|
||||||
* @param sessionId ID демо-сессии
|
|
||||||
* @return DemoSessionInfo с деталями файла
|
|
||||||
*/
|
|
||||||
@GetMapping("/file/{sessionId}")
|
|
||||||
public ResponseEntity<?> getFileInfo(@PathVariable String sessionId) {
|
|
||||||
try {
|
|
||||||
String clientIp = getClientIp();
|
|
||||||
log.info("Getting file info for session: {} from IP: {}", sessionId, clientIp);
|
|
||||||
|
|
||||||
DemoSessionInfo info = demoSessionService.getSessionInfo(sessionId, clientIp);
|
|
||||||
|
|
||||||
return ResponseEntity.ok(info);
|
|
||||||
|
|
||||||
} catch (RuntimeException e) {
|
|
||||||
log.warn("Error getting session info: {}", e.getMessage());
|
|
||||||
return ResponseEntity.status(HttpStatus.NOT_FOUND)
|
|
||||||
.body(new DemoSessionInfo(
|
|
||||||
null, null, null, 0L,
|
|
||||||
"ERROR", null, null, 0, null
|
|
||||||
));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Запуск поиска похожих файлов для демо
|
|
||||||
* Асинхронная операция - результаты могут загружаться в реальном времени
|
|
||||||
*
|
|
||||||
* @param sessionId ID демо-сессии
|
|
||||||
* @return DemoSearchResponse с результатами поиска
|
|
||||||
*/
|
|
||||||
@PostMapping("/search/{sessionId}")
|
|
||||||
public ResponseEntity<?> startSearch(@PathVariable String sessionId) {
|
|
||||||
try {
|
|
||||||
String clientIp = getClientIp();
|
|
||||||
log.info("Starting demo search for session: {} from IP: {}", sessionId, clientIp);
|
|
||||||
|
|
||||||
DemoSearchResponse response = demoSessionService.startSearch(sessionId, clientIp);
|
|
||||||
|
|
||||||
return ResponseEntity.ok(response);
|
|
||||||
|
|
||||||
} catch (RuntimeException e) {
|
|
||||||
log.warn("Error starting demo search: {}", e.getMessage());
|
|
||||||
return ResponseEntity.status(HttpStatus.BAD_REQUEST)
|
|
||||||
.body(new DemoSearchResponse(
|
|
||||||
sessionId, "FAILED", 0, 0.0,
|
|
||||||
null, null, 0L, null, e.getMessage()
|
|
||||||
));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Очистка демо-сессии и удаление файлов
|
|
||||||
* Должна быть вызвана пользователем или автоматически при закрытии демо
|
|
||||||
*
|
|
||||||
* @param sessionId ID демо-сессии
|
|
||||||
* @return успешное подтверждение удаления
|
|
||||||
*/
|
|
||||||
@DeleteMapping("/cleanup/{sessionId}")
|
|
||||||
public ResponseEntity<?> cleanup(@PathVariable String sessionId) {
|
|
||||||
try {
|
|
||||||
String clientIp = getClientIp();
|
|
||||||
log.info("Demo cleanup request for session: {} from IP: {}", sessionId, clientIp);
|
|
||||||
|
|
||||||
demoSessionService.deleteSession(sessionId, clientIp);
|
|
||||||
|
|
||||||
return ResponseEntity.ok(new DemoUploadResponse(
|
|
||||||
sessionId, null, null, 0L,
|
|
||||||
"CLEANED", "Session cleaned successfully", 0L, 100
|
|
||||||
));
|
|
||||||
|
|
||||||
} catch (RuntimeException e) {
|
|
||||||
log.warn("Error cleaning up session: {}", e.getMessage());
|
|
||||||
return ResponseEntity.status(HttpStatus.BAD_REQUEST)
|
|
||||||
.body(new DemoUploadResponse(
|
|
||||||
sessionId, null, null, 0L,
|
|
||||||
"ERROR", e.getMessage(), 0L, 0
|
|
||||||
));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Health check эндпоинт для демо API
|
|
||||||
* Проверяет доступность и готовность к приёму файлов
|
|
||||||
*/
|
|
||||||
@GetMapping("/health")
|
|
||||||
public ResponseEntity<?> health() {
|
|
||||||
return ResponseEntity.ok(new DemoUploadResponse(
|
|
||||||
null, null, null, 0L,
|
|
||||||
"HEALTHY", "Demo service is ready", 0L, 100
|
|
||||||
));
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Извлечение IP адреса клиента из запроса
|
|
||||||
* Учитывает различные прокси и заголовки
|
|
||||||
*/
|
|
||||||
private String getClientIp() {
|
|
||||||
if (trustForwardedHeader) {
|
|
||||||
String xForwardedFor = httpServletRequest.getHeader("X-Forwarded-For");
|
|
||||||
if (xForwardedFor != null && !xForwardedFor.isEmpty()) {
|
|
||||||
return xForwardedFor.split(",")[0].trim();
|
|
||||||
}
|
|
||||||
|
|
||||||
String xRealIp = httpServletRequest.getHeader("X-Real-IP");
|
|
||||||
if (xRealIp != null && !xRealIp.isEmpty()) {
|
|
||||||
return xRealIp;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return httpServletRequest.getRemoteAddr();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -15,7 +15,4 @@ public class BaseRequest {
|
|||||||
|
|
||||||
@JsonProperty("message_body")
|
@JsonProperty("message_body")
|
||||||
Object messageBody;
|
Object messageBody;
|
||||||
|
|
||||||
@JsonProperty(value = "admin_id", required = false)
|
|
||||||
Long adminId;
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -3,12 +3,10 @@ package ru.soune.nocopy.dto;
|
|||||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||||
import com.fasterxml.jackson.annotation.JsonProperty;
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
||||||
import lombok.AllArgsConstructor;
|
import lombok.AllArgsConstructor;
|
||||||
import lombok.Builder;
|
|
||||||
import lombok.Data;
|
import lombok.Data;
|
||||||
|
|
||||||
@Data
|
@Data
|
||||||
@AllArgsConstructor
|
@AllArgsConstructor
|
||||||
@Builder
|
|
||||||
@JsonFormat(with = JsonFormat.Feature.ACCEPT_CASE_INSENSITIVE_PROPERTIES)
|
@JsonFormat(with = JsonFormat.Feature.ACCEPT_CASE_INSENSITIVE_PROPERTIES)
|
||||||
public class BaseResponse {
|
public class BaseResponse {
|
||||||
@JsonProperty("msg_id")
|
@JsonProperty("msg_id")
|
||||||
|
|||||||
@@ -2,43 +2,26 @@ package ru.soune.nocopy.dto;
|
|||||||
|
|
||||||
public enum MessageCode {
|
public enum MessageCode {
|
||||||
SUCCESS(0, "Operation successful"),
|
SUCCESS(0, "Operation successful"),
|
||||||
SUCCESS_MODERATION(0, "File moderated successfully"),
|
|
||||||
REG_EMAIL_EXISTS(1, "Email already registered"),
|
REG_EMAIL_EXISTS(1, "Email already registered"),
|
||||||
REG_EMAIL_OR_PHONE_EXISTS(1, "Email or phone already registered"),
|
REG_EMAIL_OR_PHONE_EXISTS(1, "Email or phone already registered"),
|
||||||
REFERRAL_LINK_IS_NOT_EXIST(1, "Refferal link is not exist"),
|
|
||||||
FILE_IS_BLOCKED(1, "File is blocked,deleted or removed"),
|
|
||||||
INVALID_FIELD(2, "Invalid field"),
|
INVALID_FIELD(2, "Invalid field"),
|
||||||
MAIL_VERIFIED_NULL(2, "Mail verified null"),
|
INVALID_TOKEN(2, "Invalid token"),
|
||||||
API_KEY_CREATED(2, "Save this key. It will not be shown again"),
|
|
||||||
INVALID_TOKEN(2, "Token not found or time expired"),
|
|
||||||
TOKEN_IS_ALIVE(2, "Token is alive"),
|
TOKEN_IS_ALIVE(2, "Token is alive"),
|
||||||
INVALID_ACTION(2, "Invalid action"),
|
INVALID_ACTION(2, "Invalid action"),
|
||||||
FILE_UPLOAD_ERROR(2, "File upload error"),
|
FILE_UPLOAD_ERROR(2, "File upload error"),
|
||||||
DUPLICATE_FILE_UPLOAD(2, "Duplicate file upload"),
|
DUPLICATE_FILE_UPLOAD(2, "Duplicate file upload"),
|
||||||
FILE_DOWNLOAD_ERROR(2, "File download error"),
|
FILE_DOWNLOAD_ERROR(2, "File download error"),
|
||||||
FILE_NOT_EXIST(2, "File not exist on disk"),
|
|
||||||
FILE_DELETE(2, "File was deleted"),
|
|
||||||
USER_NOT_HAD_PERMISSION(2, "User not have permission for file"),
|
|
||||||
NOT_OWNER_FILE_STATUS_VIOLATION(2, "Violation in not owner file status"),
|
|
||||||
USER_NOT_VERIFIED(2, "User not verified"),
|
USER_NOT_VERIFIED(2, "User not verified"),
|
||||||
LAW_CASE_NOT_FOUND(4, "Law case not found"),
|
|
||||||
PERMISSION_NOT_FOUND(2, "Permission not found"),
|
PERMISSION_NOT_FOUND(2, "Permission not found"),
|
||||||
INVALID_CREDENTIALS(2, "Invalid credentials"),
|
|
||||||
USER_NOT_FOUND(2, "User not found"),
|
USER_NOT_FOUND(2, "User not found"),
|
||||||
LAW_CASE_ALREADY_EXIST(2, "Law case already exists"),
|
|
||||||
COMPLAINT_ALREADY_EXIST(2, "Complaint already exists"),
|
|
||||||
COMPLAINT_NOT_FOUND(4, "Complaint not found"),
|
|
||||||
FILE_DOWNLOAD_ERROR_NOT_CORRECT_FIELD(2, "Not correct field"),
|
FILE_DOWNLOAD_ERROR_NOT_CORRECT_FIELD(2, "Not correct field"),
|
||||||
TOKEN_IS_NULL(2, "Token field is null"),
|
|
||||||
IMAGE_FOUND_ERROR(2, "Image found error"),
|
IMAGE_FOUND_ERROR(2, "Image found error"),
|
||||||
INVALID_JSON_BODY(2, "Invalid fields in JSON object"),
|
INVALID_JSON_BODY(2, "Invalid fields in JSON object"),
|
||||||
INCOMPLETE_UPLOAD(2, "Not load all chunks"),
|
INCOMPLETE_UPLOAD(2, "Not load all chunks"),
|
||||||
USER_NOT_HAVE_TOKEN(2, "Not have tokens"),
|
|
||||||
MSG_ID_NOT_FOUND(4, "Message id not found"),
|
MSG_ID_NOT_FOUND(4, "Message id not found"),
|
||||||
FILE_ENTITY_ERROR(2, "File entity error"),
|
FILE_ENTITY_ERROR(2, "File entity error"),
|
||||||
NOT_VALID_FIELD(2, "Not valid field"),
|
|
||||||
ACCESS_DENIED(2, "Access denied"),
|
ACCESS_DENIED(2, "Access denied"),
|
||||||
AUTH_EMAIL_NOT_FOUND(4, "Email not COMPLAINT_OR_LAW_CASE_IN_WORK"),
|
AUTH_EMAIL_NOT_FOUND(4, "Email not found"),
|
||||||
AUTH_EMAIL_OR_TOKEN_NOT_FOUND(4, "Email or Token not found "),
|
AUTH_EMAIL_OR_TOKEN_NOT_FOUND(4, "Email or Token not found "),
|
||||||
AUTH_TOKEN_MISMATCH(4, "Token mismatch"),
|
AUTH_TOKEN_MISMATCH(4, "Token mismatch"),
|
||||||
AUTH_TOKEN_NOT_FOUND(4, "Token not found"),
|
AUTH_TOKEN_NOT_FOUND(4, "Token not found"),
|
||||||
@@ -50,34 +33,14 @@ public enum MessageCode {
|
|||||||
FILE_IS_NOT_PROTECTED(0, "File is not protected"),
|
FILE_IS_NOT_PROTECTED(0, "File is not protected"),
|
||||||
TARIFF_IS_ADD(0, "Tariff is added"),
|
TARIFF_IS_ADD(0, "Tariff is added"),
|
||||||
TARIFF_IS_DELETED(0, "Tariff is deleted"),
|
TARIFF_IS_DELETED(0, "Tariff is deleted"),
|
||||||
TARIFF_IS_NOT_DELETED(0, "Tariff is not deleted,use some users"),
|
|
||||||
TARIFF_IS_UPDATED(0, "Tariff is updated"),
|
TARIFF_IS_UPDATED(0, "Tariff is updated"),
|
||||||
TARIFF_IS_NOT_FOUND(0, "Tariff is not found"),
|
TARIFF_IS_NOT_FOUND(0, "Tariff is not found"),
|
||||||
VALIDATION_ERROR(2, "Validation error"),
|
VALIDATION_ERROR(2, "Validation error"),
|
||||||
RESOURCE_NOT_FOUND(4, "Resource not found"),
|
RESOURCE_NOT_FOUND(4, "Resource not found"),
|
||||||
OPERATION_NOT_FOUND(4, "Operation not found"),
|
|
||||||
INTERNAL_ERROR(4, "Internal server error"),
|
INTERNAL_ERROR(4, "Internal server error"),
|
||||||
COMPANY_NOT_FOUND(4, "Company not found"),
|
COMPANY_NOT_FOUND(4, "Company not found"),
|
||||||
PAYMENT_NOT_FOUND(4, "Payment not found"),
|
|
||||||
COMPANY_ALREADY_EXISTS(2, "Company already exists"),
|
COMPANY_ALREADY_EXISTS(2, "Company already exists"),
|
||||||
USER_LIMIT_IS_OVER(2, "Over user limits"),
|
ERROR_TARIFF_INFO(2, "Erorr with tariff info");
|
||||||
MONITORING_TYPE_NOT_FOUND(4, "Monitoring type not found"),
|
|
||||||
ERROR_TARIFF_INFO(2, "Erorr with tariff info"),
|
|
||||||
FILE_FOR_SEARCH_NOT_VALID(2, "File for search unsupported"),
|
|
||||||
ILLEGAL_STATE(2, "File is not in moderation state"),
|
|
||||||
NOT_VALID_FILE_TYPE_OR_COUNT_FILE(2, "Cost for file type not found, count is negative or files count" +
|
|
||||||
"more than max valid"),
|
|
||||||
USER_NOT_ACTIVE(2, "User not active"),
|
|
||||||
NOTION_NOT_FOUND(4, "Notion not found"),
|
|
||||||
NOT_FOUND(4, "Notion not found"),
|
|
||||||
MESSAGE_IS_REQUIRED_FOR_NOTION(4, "Message is required for notion"),
|
|
||||||
USER_VERIFICATIONS_NOT_FOUND(4, "Verifications not found"),
|
|
||||||
COMPLAINT_OR_LAW_CASE_IN_WORK(2, "Complaint or lawcase in work"),
|
|
||||||
NOT_VALID_STATUS(2, "Not valid status"),
|
|
||||||
PERMISSION_NOT_VALID(2, "Not valid permission"),
|
|
||||||
NOT_HAVE_DOWNLOAD_PERMISSION(2, "Not haver permission for download"),
|
|
||||||
ADMIN_USER_NOT_FOUND(4, "Verifications ,user or admin not found");
|
|
||||||
|
|
||||||
|
|
||||||
private final Integer code;
|
private final Integer code;
|
||||||
|
|
||||||
|
|||||||
@@ -6,4 +6,6 @@ import lombok.Data;
|
|||||||
@Data
|
@Data
|
||||||
public class TokenProcessRequest {
|
public class TokenProcessRequest {
|
||||||
|
|
||||||
|
@JsonProperty("token")
|
||||||
|
private String token;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,35 +0,0 @@
|
|||||||
package ru.soune.nocopy.dto.complaint;
|
|
||||||
import com.fasterxml.jackson.annotation.JsonProperty;
|
|
||||||
import lombok.Builder;
|
|
||||||
import lombok.Data;
|
|
||||||
|
|
||||||
@Data
|
|
||||||
@Builder
|
|
||||||
public class BaseResponse {
|
|
||||||
@JsonProperty("status")
|
|
||||||
private String status;
|
|
||||||
|
|
||||||
@JsonProperty("message")
|
|
||||||
private String message;
|
|
||||||
|
|
||||||
@JsonProperty("data")
|
|
||||||
private Object data;
|
|
||||||
|
|
||||||
@JsonProperty("error_code")
|
|
||||||
private String errorCode;
|
|
||||||
|
|
||||||
public static BaseResponse success(Object data) {
|
|
||||||
return BaseResponse.builder()
|
|
||||||
.status("SUCCESS")
|
|
||||||
.data(data)
|
|
||||||
.build();
|
|
||||||
}
|
|
||||||
|
|
||||||
public static BaseResponse error(String message, String errorCode) {
|
|
||||||
return BaseResponse.builder()
|
|
||||||
.status("ERROR")
|
|
||||||
.message(message)
|
|
||||||
.errorCode(errorCode)
|
|
||||||
.build();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,38 +0,0 @@
|
|||||||
package ru.soune.nocopy.dto.complaint;
|
|
||||||
|
|
||||||
import com.fasterxml.jackson.annotation.JsonProperty;
|
|
||||||
import lombok.Data;
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
@Data
|
|
||||||
public class ComplaintRequest {
|
|
||||||
@JsonProperty("action")
|
|
||||||
private String action;
|
|
||||||
|
|
||||||
@JsonProperty("id")
|
|
||||||
private Long id;
|
|
||||||
|
|
||||||
@JsonProperty("violation_id")
|
|
||||||
private Long violationId;
|
|
||||||
|
|
||||||
@JsonProperty("text")
|
|
||||||
private String complaintText;
|
|
||||||
|
|
||||||
@JsonProperty("email")
|
|
||||||
private String email;
|
|
||||||
|
|
||||||
@JsonProperty("status")
|
|
||||||
private String status;
|
|
||||||
|
|
||||||
@JsonProperty("page")
|
|
||||||
private Integer page;
|
|
||||||
|
|
||||||
@JsonProperty("size")
|
|
||||||
private Integer size;
|
|
||||||
|
|
||||||
@JsonProperty("sort_by")
|
|
||||||
private String sortBy;
|
|
||||||
|
|
||||||
@JsonProperty("sort_direction")
|
|
||||||
private String sortDirection;
|
|
||||||
}
|
|
||||||
@@ -1,42 +0,0 @@
|
|||||||
package ru.soune.nocopy.dto.complaint;
|
|
||||||
|
|
||||||
import com.fasterxml.jackson.annotation.JsonProperty;
|
|
||||||
import lombok.AllArgsConstructor;
|
|
||||||
import lombok.Builder;
|
|
||||||
import lombok.Data;
|
|
||||||
import lombok.NoArgsConstructor;
|
|
||||||
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
@Data
|
|
||||||
@Builder
|
|
||||||
@NoArgsConstructor
|
|
||||||
@AllArgsConstructor
|
|
||||||
public class ComplaintResponse {
|
|
||||||
@JsonProperty("id")
|
|
||||||
private Long id;
|
|
||||||
|
|
||||||
@JsonProperty("status")
|
|
||||||
private String status;
|
|
||||||
|
|
||||||
@JsonProperty("complaint_text")
|
|
||||||
private String complaintText;
|
|
||||||
|
|
||||||
@JsonProperty("violation_id")
|
|
||||||
private Long violationId;
|
|
||||||
|
|
||||||
@JsonProperty("email")
|
|
||||||
private String email;
|
|
||||||
|
|
||||||
@JsonProperty("created_at")
|
|
||||||
private String createdAt;
|
|
||||||
|
|
||||||
@JsonProperty("updated_at")
|
|
||||||
private String updatedAt;
|
|
||||||
|
|
||||||
@JsonProperty("not_moderated")
|
|
||||||
private Boolean notModerated;
|
|
||||||
|
|
||||||
@JsonProperty("file_id")
|
|
||||||
private String fileId;
|
|
||||||
}
|
|
||||||
@@ -1,17 +0,0 @@
|
|||||||
package ru.soune.nocopy.dto.complaint;
|
|
||||||
|
|
||||||
import lombok.Builder;
|
|
||||||
import lombok.Data;
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
@Data
|
|
||||||
@Builder
|
|
||||||
public class LawCasePageResponse {
|
|
||||||
private List<LawCaseResponse> content;
|
|
||||||
private int pageNumber;
|
|
||||||
private int pageSize;
|
|
||||||
private long totalElements;
|
|
||||||
private int totalPages;
|
|
||||||
private boolean last;
|
|
||||||
private boolean first;
|
|
||||||
}
|
|
||||||
@@ -1,32 +0,0 @@
|
|||||||
package ru.soune.nocopy.dto.complaint;
|
|
||||||
|
|
||||||
import com.fasterxml.jackson.annotation.JsonProperty;
|
|
||||||
import lombok.Data;
|
|
||||||
import ru.soune.nocopy.entity.complaint.LawCasePriority;
|
|
||||||
import ru.soune.nocopy.entity.complaint.LawCaseType;
|
|
||||||
|
|
||||||
import java.math.BigDecimal;
|
|
||||||
|
|
||||||
@Data
|
|
||||||
public class LawCaseRequest {
|
|
||||||
private Long id;
|
|
||||||
//required
|
|
||||||
private String name;
|
|
||||||
//required
|
|
||||||
private String description;
|
|
||||||
private BigDecimal amount;
|
|
||||||
private String priority = LawCasePriority.HIGH.toString();
|
|
||||||
private String type;
|
|
||||||
private String lawyer;
|
|
||||||
private Integer pageSize = 5;
|
|
||||||
private Integer pageNumber = 0;
|
|
||||||
private String sortBy = "updatedAt";
|
|
||||||
private String sortDir = "desc";
|
|
||||||
private String action;
|
|
||||||
private String filterType;
|
|
||||||
private String filterLawyer;
|
|
||||||
private String filterPriority;
|
|
||||||
@JsonProperty("violation_id")
|
|
||||||
private Long violationId;
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -1,71 +0,0 @@
|
|||||||
package ru.soune.nocopy.dto.complaint;
|
|
||||||
|
|
||||||
import com.fasterxml.jackson.annotation.JsonProperty;
|
|
||||||
import lombok.Builder;
|
|
||||||
import lombok.Data;
|
|
||||||
import ru.soune.nocopy.entity.complaint.LawCase;
|
|
||||||
import ru.soune.nocopy.entity.complaint.LawCasePriority;
|
|
||||||
import ru.soune.nocopy.entity.complaint.LawCaseType;
|
|
||||||
|
|
||||||
import java.math.BigDecimal;
|
|
||||||
import java.time.LocalDateTime;
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
@Data
|
|
||||||
@Builder
|
|
||||||
public class LawCaseResponse {
|
|
||||||
private Long id;
|
|
||||||
|
|
||||||
private String name;
|
|
||||||
|
|
||||||
private String description;
|
|
||||||
|
|
||||||
private BigDecimal amount;
|
|
||||||
|
|
||||||
private LawCasePriority priority;
|
|
||||||
|
|
||||||
private LawCaseType type;
|
|
||||||
|
|
||||||
private String lawyer;
|
|
||||||
|
|
||||||
@JsonProperty("created_at")
|
|
||||||
private LocalDateTime createdAt;
|
|
||||||
|
|
||||||
@JsonProperty("updated_at")
|
|
||||||
private LocalDateTime updatedAt;
|
|
||||||
|
|
||||||
@JsonProperty("page_number")
|
|
||||||
private int pageNumber;
|
|
||||||
|
|
||||||
@JsonProperty("page_size")
|
|
||||||
private int pageSize;
|
|
||||||
|
|
||||||
@JsonProperty("total_elements")
|
|
||||||
private long totalElements;
|
|
||||||
|
|
||||||
@JsonProperty("total_pages")
|
|
||||||
private int totalPages;
|
|
||||||
|
|
||||||
@JsonProperty("violation_id")
|
|
||||||
private long violationId;
|
|
||||||
|
|
||||||
@JsonProperty("file_id")
|
|
||||||
private String fileId;
|
|
||||||
|
|
||||||
private List<LawCaseResponse> content;
|
|
||||||
|
|
||||||
public static LawCaseResponse fromEntity(LawCase lawCase) {
|
|
||||||
return LawCaseResponse.builder()
|
|
||||||
.id(lawCase.getId())
|
|
||||||
.name(lawCase.getName())
|
|
||||||
.description(lawCase.getDescription())
|
|
||||||
.amount(lawCase.getAmount())
|
|
||||||
.priority(lawCase.getPriority())
|
|
||||||
.type(lawCase.getType())
|
|
||||||
.lawyer(lawCase.getLawyer())
|
|
||||||
.createdAt(lawCase.getCreatedAt())
|
|
||||||
.updatedAt(lawCase.getUpdatedAt())
|
|
||||||
.violationId(lawCase.getViolationId())
|
|
||||||
.build();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,17 +0,0 @@
|
|||||||
package ru.soune.nocopy.dto.complaint;
|
|
||||||
|
|
||||||
import lombok.AllArgsConstructor;
|
|
||||||
import lombok.Data;
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
@Data
|
|
||||||
@AllArgsConstructor
|
|
||||||
public class PaginatedResponse<T> {
|
|
||||||
private List<T> content;
|
|
||||||
private long totalElements;
|
|
||||||
private int totalPages;
|
|
||||||
private int pageNumber;
|
|
||||||
private int pageSize;
|
|
||||||
private boolean first;
|
|
||||||
private boolean last;
|
|
||||||
}
|
|
||||||
@@ -1,15 +0,0 @@
|
|||||||
package ru.soune.nocopy.dto.cost;
|
|
||||||
|
|
||||||
import com.fasterxml.jackson.annotation.JsonProperty;
|
|
||||||
import lombok.Data;
|
|
||||||
|
|
||||||
@Data
|
|
||||||
public class CostRequest {
|
|
||||||
String action;
|
|
||||||
|
|
||||||
@JsonProperty("file_type")
|
|
||||||
String fileType;
|
|
||||||
|
|
||||||
@JsonProperty("count_files")
|
|
||||||
Integer countFilesForProtect;
|
|
||||||
}
|
|
||||||
@@ -1,22 +0,0 @@
|
|||||||
package ru.soune.nocopy.dto.cost;
|
|
||||||
|
|
||||||
import com.fasterxml.jackson.annotation.JsonProperty;
|
|
||||||
import lombok.Builder;
|
|
||||||
import lombok.Data;
|
|
||||||
|
|
||||||
@Data
|
|
||||||
@Builder
|
|
||||||
public class CostResponse {
|
|
||||||
private int cost;
|
|
||||||
|
|
||||||
private Boolean success;
|
|
||||||
|
|
||||||
@JsonProperty("max_files_for_check")
|
|
||||||
private Integer maxFilesForCheck;
|
|
||||||
|
|
||||||
@JsonProperty("count_file")
|
|
||||||
private Integer countFile;
|
|
||||||
|
|
||||||
@JsonProperty("tokens_count")
|
|
||||||
private int needTokensCount;
|
|
||||||
}
|
|
||||||
@@ -1,10 +0,0 @@
|
|||||||
package ru.soune.nocopy.dto.dadata;
|
|
||||||
|
|
||||||
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
|
|
||||||
import lombok.Data;
|
|
||||||
|
|
||||||
@Data
|
|
||||||
@JsonIgnoreProperties(ignoreUnknown = true)
|
|
||||||
public class DaDataAddress {
|
|
||||||
private String value;
|
|
||||||
}
|
|
||||||
@@ -1,11 +0,0 @@
|
|||||||
package ru.soune.nocopy.dto.dadata;
|
|
||||||
|
|
||||||
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
|
|
||||||
import lombok.Data;
|
|
||||||
|
|
||||||
@Data
|
|
||||||
@JsonIgnoreProperties(ignoreUnknown = true)
|
|
||||||
public class DaDataData {
|
|
||||||
private String inn;
|
|
||||||
private DaDataAddress address;
|
|
||||||
}
|
|
||||||
@@ -1,11 +0,0 @@
|
|||||||
package ru.soune.nocopy.dto.dadata;
|
|
||||||
|
|
||||||
import com.fasterxml.jackson.annotation.JsonProperty;
|
|
||||||
import lombok.Data;
|
|
||||||
|
|
||||||
@Data
|
|
||||||
public class DaDataRequest {
|
|
||||||
|
|
||||||
@JsonProperty("inn")
|
|
||||||
private String inn;
|
|
||||||
}
|
|
||||||
@@ -1,16 +0,0 @@
|
|||||||
package ru.soune.nocopy.dto.dadata;
|
|
||||||
|
|
||||||
import com.fasterxml.jackson.annotation.JsonProperty;
|
|
||||||
import lombok.Data;
|
|
||||||
|
|
||||||
@Data
|
|
||||||
public class DaDataResponse {
|
|
||||||
@JsonProperty("companyName")
|
|
||||||
private String companyName;
|
|
||||||
|
|
||||||
@JsonProperty("inn")
|
|
||||||
private String inn;
|
|
||||||
|
|
||||||
@JsonProperty("address")
|
|
||||||
private String address;
|
|
||||||
}
|
|
||||||
@@ -1,11 +0,0 @@
|
|||||||
package ru.soune.nocopy.dto.dadata;
|
|
||||||
|
|
||||||
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
|
|
||||||
import lombok.Data;
|
|
||||||
|
|
||||||
@Data
|
|
||||||
@JsonIgnoreProperties(ignoreUnknown = true)
|
|
||||||
public class DaDataSuggestion {
|
|
||||||
private String value;
|
|
||||||
private DaDataData data;
|
|
||||||
}
|
|
||||||
@@ -1,12 +0,0 @@
|
|||||||
package ru.soune.nocopy.dto.dadata;
|
|
||||||
|
|
||||||
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
|
|
||||||
import lombok.Data;
|
|
||||||
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
@Data
|
|
||||||
@JsonIgnoreProperties(ignoreUnknown = true)
|
|
||||||
public class DaDataWrapper {
|
|
||||||
private List<DaDataSuggestion> suggestions;
|
|
||||||
}
|
|
||||||
@@ -1,36 +0,0 @@
|
|||||||
package ru.soune.nocopy.dto.demo;
|
|
||||||
|
|
||||||
import lombok.AllArgsConstructor;
|
|
||||||
import lombok.Builder;
|
|
||||||
import lombok.Data;
|
|
||||||
import lombok.NoArgsConstructor;
|
|
||||||
|
|
||||||
import java.time.LocalDateTime;
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
@Data
|
|
||||||
@NoArgsConstructor
|
|
||||||
@AllArgsConstructor
|
|
||||||
@Builder
|
|
||||||
public class DemoSearchResponse {
|
|
||||||
private String sessionId;
|
|
||||||
private String status;
|
|
||||||
private Integer resultsCount;
|
|
||||||
private Double matchPercentage;
|
|
||||||
private LocalDateTime startedAt;
|
|
||||||
private LocalDateTime completedAt;
|
|
||||||
private Long processingTimeMs;
|
|
||||||
private List<DemoSimilarFile> similarFiles;
|
|
||||||
private String message;
|
|
||||||
|
|
||||||
@Data
|
|
||||||
@NoArgsConstructor
|
|
||||||
@AllArgsConstructor
|
|
||||||
@Builder
|
|
||||||
public static class DemoSimilarFile {
|
|
||||||
private String fileId;
|
|
||||||
private String fileName;
|
|
||||||
private Double similarityScore;
|
|
||||||
private String source; // "web" или "database"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,24 +0,0 @@
|
|||||||
package ru.soune.nocopy.dto.demo;
|
|
||||||
|
|
||||||
import lombok.AllArgsConstructor;
|
|
||||||
import lombok.Builder;
|
|
||||||
import lombok.Data;
|
|
||||||
import lombok.NoArgsConstructor;
|
|
||||||
|
|
||||||
import java.time.LocalDateTime;
|
|
||||||
|
|
||||||
@Data
|
|
||||||
@NoArgsConstructor
|
|
||||||
@AllArgsConstructor
|
|
||||||
@Builder
|
|
||||||
public class DemoSessionInfo {
|
|
||||||
private String sessionId;
|
|
||||||
private String fileName;
|
|
||||||
private String fileType;
|
|
||||||
private Long fileSize;
|
|
||||||
private String status;
|
|
||||||
private LocalDateTime createdAt;
|
|
||||||
private LocalDateTime expiresAt;
|
|
||||||
private Integer searchResultsCount;
|
|
||||||
private String mimeType;
|
|
||||||
}
|
|
||||||
@@ -1,17 +0,0 @@
|
|||||||
package ru.soune.nocopy.dto.demo;
|
|
||||||
|
|
||||||
import lombok.AllArgsConstructor;
|
|
||||||
import lombok.Builder;
|
|
||||||
import lombok.Data;
|
|
||||||
import lombok.NoArgsConstructor;
|
|
||||||
|
|
||||||
@Data
|
|
||||||
@NoArgsConstructor
|
|
||||||
@AllArgsConstructor
|
|
||||||
@Builder
|
|
||||||
public class DemoUploadRequest {
|
|
||||||
private String fileName;
|
|
||||||
private String fileType; // "image", "document", "audio"
|
|
||||||
private Long fileSize;
|
|
||||||
private String mimeType;
|
|
||||||
}
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
package ru.soune.nocopy.dto.demo;
|
|
||||||
|
|
||||||
import lombok.AllArgsConstructor;
|
|
||||||
import lombok.Builder;
|
|
||||||
import lombok.Data;
|
|
||||||
import lombok.NoArgsConstructor;
|
|
||||||
|
|
||||||
@Data
|
|
||||||
@NoArgsConstructor
|
|
||||||
@AllArgsConstructor
|
|
||||||
@Builder
|
|
||||||
public class DemoUploadResponse {
|
|
||||||
private String sessionId;
|
|
||||||
private String fileName;
|
|
||||||
private String fileType;
|
|
||||||
private Long fileSize;
|
|
||||||
private String status;
|
|
||||||
private String message;
|
|
||||||
private Long uploadedBytes;
|
|
||||||
private Integer progressPercentage;
|
|
||||||
}
|
|
||||||
@@ -1,36 +0,0 @@
|
|||||||
package ru.soune.nocopy.dto.docviewer;
|
|
||||||
|
|
||||||
import com.fasterxml.jackson.annotation.JsonProperty;
|
|
||||||
import lombok.Builder;
|
|
||||||
import lombok.Data;
|
|
||||||
|
|
||||||
@Data
|
|
||||||
@Builder
|
|
||||||
public class DocViewerRequest {
|
|
||||||
@JsonProperty("file_id")
|
|
||||||
private String fileId;
|
|
||||||
|
|
||||||
@JsonProperty("ip")
|
|
||||||
private String ip;
|
|
||||||
|
|
||||||
@JsonProperty("user_agent")
|
|
||||||
private String userAgent;
|
|
||||||
|
|
||||||
@JsonProperty("page")
|
|
||||||
private int page = 0;
|
|
||||||
|
|
||||||
@JsonProperty("size")
|
|
||||||
private int size = 10;
|
|
||||||
|
|
||||||
@JsonProperty("sort_by")
|
|
||||||
private String sortBy = "createdAt";
|
|
||||||
|
|
||||||
@JsonProperty("sort_direction")
|
|
||||||
private String sortDirection = "desc";
|
|
||||||
|
|
||||||
@JsonProperty("action")
|
|
||||||
private String action;
|
|
||||||
|
|
||||||
@JsonProperty("locale")
|
|
||||||
private String locale;
|
|
||||||
}
|
|
||||||
@@ -1,28 +0,0 @@
|
|||||||
package ru.soune.nocopy.dto.docviewer;
|
|
||||||
|
|
||||||
import com.fasterxml.jackson.annotation.JsonProperty;
|
|
||||||
import lombok.AllArgsConstructor;
|
|
||||||
import lombok.Builder;
|
|
||||||
import lombok.Data;
|
|
||||||
import lombok.NoArgsConstructor;
|
|
||||||
|
|
||||||
import java.time.LocalDateTime;
|
|
||||||
|
|
||||||
@Data
|
|
||||||
@Builder
|
|
||||||
@NoArgsConstructor
|
|
||||||
@AllArgsConstructor
|
|
||||||
public class DockViewResponse {
|
|
||||||
|
|
||||||
@JsonProperty("country")
|
|
||||||
private String country;
|
|
||||||
|
|
||||||
@JsonProperty("viewer")
|
|
||||||
private String viewer;
|
|
||||||
|
|
||||||
@JsonProperty("document")
|
|
||||||
private String document;
|
|
||||||
|
|
||||||
@JsonProperty("view_date")
|
|
||||||
private LocalDateTime viewDate;
|
|
||||||
}
|
|
||||||
@@ -1,55 +0,0 @@
|
|||||||
package ru.soune.nocopy.dto.docviewer;
|
|
||||||
|
|
||||||
import com.fasterxml.jackson.annotation.JsonInclude;
|
|
||||||
import lombok.AllArgsConstructor;
|
|
||||||
import lombok.Builder;
|
|
||||||
import lombok.Data;
|
|
||||||
import lombok.NoArgsConstructor;
|
|
||||||
|
|
||||||
import java.time.LocalDateTime;
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
@Data
|
|
||||||
@Builder
|
|
||||||
@NoArgsConstructor
|
|
||||||
@AllArgsConstructor
|
|
||||||
@JsonInclude(JsonInclude.Include.NON_NULL)
|
|
||||||
public class DockViewStatsResponse {
|
|
||||||
private String fileId;
|
|
||||||
|
|
||||||
private Long totalViews;
|
|
||||||
|
|
||||||
private Long uniqueIps;
|
|
||||||
|
|
||||||
private Long uniqueUsers;
|
|
||||||
|
|
||||||
private int documentsCount;
|
|
||||||
|
|
||||||
private int uniqueCountryCount;
|
|
||||||
|
|
||||||
private int uniqueCityCount;
|
|
||||||
|
|
||||||
private LocalDateTime firstViewDate;
|
|
||||||
|
|
||||||
private LocalDateTime lastViewDate;
|
|
||||||
|
|
||||||
private List<DockViewStatsResponse> content;
|
|
||||||
|
|
||||||
private List<DockViewResponse> history;
|
|
||||||
|
|
||||||
private Integer pageNumber;
|
|
||||||
|
|
||||||
private Integer pageSize;
|
|
||||||
|
|
||||||
private Long totalElements;
|
|
||||||
|
|
||||||
private Integer totalPages;
|
|
||||||
|
|
||||||
private Boolean isLast;
|
|
||||||
|
|
||||||
private Boolean isFirst;
|
|
||||||
|
|
||||||
private Boolean hasNext;
|
|
||||||
|
|
||||||
private Boolean hasPrevious;
|
|
||||||
}
|
|
||||||
@@ -1,14 +0,0 @@
|
|||||||
package ru.soune.nocopy.dto.file;
|
|
||||||
|
|
||||||
import lombok.Builder;
|
|
||||||
import lombok.Data;
|
|
||||||
|
|
||||||
import java.time.LocalDateTime;
|
|
||||||
|
|
||||||
@Data
|
|
||||||
@Builder
|
|
||||||
public class AppealInfo {
|
|
||||||
private String appealId;
|
|
||||||
private String status;
|
|
||||||
private LocalDateTime createdAt;
|
|
||||||
}
|
|
||||||
@@ -1,12 +0,0 @@
|
|||||||
package ru.soune.nocopy.dto.file;
|
|
||||||
|
|
||||||
import lombok.Builder;
|
|
||||||
import lombok.Data;
|
|
||||||
|
|
||||||
@Data
|
|
||||||
@Builder
|
|
||||||
public class AppealRequest {
|
|
||||||
private String fileId;
|
|
||||||
private String appealReason;
|
|
||||||
private String additionalInfo;
|
|
||||||
}
|
|
||||||
@@ -1,20 +0,0 @@
|
|||||||
package ru.soune.nocopy.dto.file;
|
|
||||||
|
|
||||||
import lombok.Builder;
|
|
||||||
import lombok.Data;
|
|
||||||
|
|
||||||
import java.time.LocalDateTime;
|
|
||||||
|
|
||||||
@Data
|
|
||||||
@Builder
|
|
||||||
public class AppealResponse {
|
|
||||||
private String appealId;
|
|
||||||
private String fileId;
|
|
||||||
private String appealReason;
|
|
||||||
private String additionalInfo;
|
|
||||||
private String status;
|
|
||||||
private String adminComment;
|
|
||||||
private String fileName;
|
|
||||||
private LocalDateTime createdAt;
|
|
||||||
private LocalDateTime resolvedAt;
|
|
||||||
}
|
|
||||||
@@ -5,11 +5,6 @@ import lombok.AllArgsConstructor;
|
|||||||
import lombok.Builder;
|
import lombok.Builder;
|
||||||
import lombok.Data;
|
import lombok.Data;
|
||||||
import lombok.NoArgsConstructor;
|
import lombok.NoArgsConstructor;
|
||||||
import ru.soune.nocopy.entity.file.FileStatus;
|
|
||||||
import ru.soune.nocopy.entity.file.permission.PermissionType;
|
|
||||||
|
|
||||||
import java.util.List;
|
|
||||||
import java.util.Map;
|
|
||||||
|
|
||||||
@Data
|
@Data
|
||||||
@Builder
|
@Builder
|
||||||
@@ -22,9 +17,6 @@ public class FileEntityRequest {
|
|||||||
@JsonProperty("file_id")
|
@JsonProperty("file_id")
|
||||||
private String fileId;
|
private String fileId;
|
||||||
|
|
||||||
@JsonProperty("file_ids")
|
|
||||||
private List<String> fileIds;
|
|
||||||
|
|
||||||
@JsonProperty("full_delete")
|
@JsonProperty("full_delete")
|
||||||
private Integer fullDelete;
|
private Integer fullDelete;
|
||||||
|
|
||||||
@@ -40,48 +32,6 @@ public class FileEntityRequest {
|
|||||||
@JsonProperty("page_size")
|
@JsonProperty("page_size")
|
||||||
private Integer pageSize;
|
private Integer pageSize;
|
||||||
|
|
||||||
@JsonProperty("sort_by")
|
@JsonProperty("token")
|
||||||
private String sortBy;
|
private String token;
|
||||||
|
|
||||||
@JsonProperty("sort_order")
|
|
||||||
private String sortOrder;
|
|
||||||
|
|
||||||
@JsonProperty("type")
|
|
||||||
private String type;
|
|
||||||
|
|
||||||
@JsonProperty("file_status")
|
|
||||||
private FileStatus fileStatus;
|
|
||||||
|
|
||||||
@JsonProperty("date_filter")
|
|
||||||
private String dateFilter;
|
|
||||||
|
|
||||||
@JsonProperty("comment")
|
|
||||||
private String comment;
|
|
||||||
|
|
||||||
@JsonProperty("appeal_reason")
|
|
||||||
private String appealReason;
|
|
||||||
|
|
||||||
@JsonProperty("additional_info")
|
|
||||||
private String additionalInfo;
|
|
||||||
|
|
||||||
@JsonProperty("appeal_id")
|
|
||||||
private String appealId;
|
|
||||||
|
|
||||||
@JsonProperty("approve")
|
|
||||||
private Boolean approve;
|
|
||||||
|
|
||||||
@JsonProperty("reason_text")
|
|
||||||
private String reasonText;
|
|
||||||
|
|
||||||
@JsonProperty("search_query")
|
|
||||||
private String searchQuery;
|
|
||||||
|
|
||||||
@JsonProperty("permissions")
|
|
||||||
private Map<String, Boolean> permissions;
|
|
||||||
|
|
||||||
@JsonProperty("is_appeal")
|
|
||||||
private Boolean isAppeal;
|
|
||||||
|
|
||||||
@JsonProperty("statuses")
|
|
||||||
private List<String> statuses;
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -5,11 +5,8 @@ import lombok.Builder;
|
|||||||
import lombok.Data;
|
import lombok.Data;
|
||||||
import lombok.NoArgsConstructor;
|
import lombok.NoArgsConstructor;
|
||||||
import ru.soune.nocopy.entity.file.FileStatus;
|
import ru.soune.nocopy.entity.file.FileStatus;
|
||||||
import ru.soune.nocopy.entity.file.permission.PermissionType;
|
|
||||||
|
|
||||||
import java.time.LocalDateTime;
|
import java.time.LocalDateTime;
|
||||||
import java.util.List;
|
|
||||||
import java.util.Map;
|
|
||||||
|
|
||||||
@Data
|
@Data
|
||||||
@Builder
|
@Builder
|
||||||
@@ -23,7 +20,6 @@ public class FileEntityResponse {
|
|||||||
private String storedFileName;
|
private String storedFileName;
|
||||||
private String filePath;
|
private String filePath;
|
||||||
private String protectedFilePath;
|
private String protectedFilePath;
|
||||||
private String thumbnailFileUrl;
|
|
||||||
private Long fileSize;
|
private Long fileSize;
|
||||||
private String mimeType;
|
private String mimeType;
|
||||||
private String fileExtension;
|
private String fileExtension;
|
||||||
@@ -44,7 +40,4 @@ public class FileEntityResponse {
|
|||||||
private String fileFormat;
|
private String fileFormat;
|
||||||
private Integer checksCount;
|
private Integer checksCount;
|
||||||
private LocalDateTime fileUploadDate;
|
private LocalDateTime fileUploadDate;
|
||||||
private String monitoring;
|
|
||||||
private Map<PermissionType, Boolean> permissions;
|
|
||||||
private List<Map<String, Object>> appealInfos;
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -59,21 +59,6 @@ public class FileInfoUserResponse {
|
|||||||
@JsonProperty("audios_violations")
|
@JsonProperty("audios_violations")
|
||||||
private Integer audiosViolations;
|
private Integer audiosViolations;
|
||||||
|
|
||||||
@JsonProperty("document_size")
|
|
||||||
private Long documentSize;
|
|
||||||
|
|
||||||
@JsonProperty("document_quantity")
|
|
||||||
private Integer documentCount;
|
|
||||||
|
|
||||||
@JsonProperty("document_check")
|
|
||||||
private Integer documentCheck;
|
|
||||||
|
|
||||||
@JsonProperty("document_violations")
|
|
||||||
private Integer documentViolations;
|
|
||||||
|
|
||||||
@JsonProperty("protected_document_files_count")
|
|
||||||
private Long protectedDocumentFilesCount;
|
|
||||||
|
|
||||||
@JsonProperty("protected_files_count")
|
@JsonProperty("protected_files_count")
|
||||||
private Long protectedFilesCount;
|
private Long protectedFilesCount;
|
||||||
|
|
||||||
|
|||||||
@@ -16,6 +16,12 @@ public class FileListResponse {
|
|||||||
@JsonProperty("files")
|
@JsonProperty("files")
|
||||||
private List<FileEntityResponse> files;
|
private List<FileEntityResponse> files;
|
||||||
|
|
||||||
|
@JsonProperty("total_count")
|
||||||
|
private Integer totalCount;
|
||||||
|
|
||||||
|
@JsonProperty("total_size")
|
||||||
|
private Long totalSize;
|
||||||
|
|
||||||
@JsonProperty("formatted_total_size")
|
@JsonProperty("formatted_total_size")
|
||||||
private String formattedTotalSize;
|
private String formattedTotalSize;
|
||||||
|
|
||||||
@@ -24,19 +30,4 @@ public class FileListResponse {
|
|||||||
|
|
||||||
@JsonProperty("page_size")
|
@JsonProperty("page_size")
|
||||||
private Integer pageSize;
|
private Integer pageSize;
|
||||||
|
|
||||||
@JsonProperty("sort_by")
|
|
||||||
private String sortBy;
|
|
||||||
|
|
||||||
@JsonProperty("sort_order")
|
|
||||||
private String sortOrder;
|
|
||||||
|
|
||||||
@JsonProperty("total_count")
|
|
||||||
private Integer totalCount;
|
|
||||||
|
|
||||||
@JsonProperty("total_size")
|
|
||||||
private Long totalSize;
|
|
||||||
|
|
||||||
@JsonProperty("statuses")
|
|
||||||
private List<String> statuses;
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,21 +0,0 @@
|
|||||||
package ru.soune.nocopy.dto.file;
|
|
||||||
|
|
||||||
import lombok.Builder;
|
|
||||||
import lombok.Data;
|
|
||||||
import ru.soune.nocopy.entity.file.FileAppeal;
|
|
||||||
import ru.soune.nocopy.entity.file.FileStatus;
|
|
||||||
|
|
||||||
import java.time.LocalDateTime;
|
|
||||||
|
|
||||||
@Data
|
|
||||||
@Builder
|
|
||||||
public class FileModerationInfo {
|
|
||||||
private String fileId;
|
|
||||||
private String fileName;
|
|
||||||
private String ownerName;
|
|
||||||
private String ownerEmail;
|
|
||||||
private FileStatus currentStatus;
|
|
||||||
private LocalDateTime uploadDate;
|
|
||||||
private Boolean hasActiveAppeal;
|
|
||||||
private FileAppeal activeAppeal;
|
|
||||||
}
|
|
||||||
@@ -26,6 +26,6 @@ public class FileUploadRequest {
|
|||||||
@JsonProperty("action")
|
@JsonProperty("action")
|
||||||
private String action;
|
private String action;
|
||||||
|
|
||||||
@JsonProperty("convertTo")
|
@JsonProperty("token")
|
||||||
private String convertTo;
|
private String token;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -7,13 +7,4 @@ import lombok.Data;
|
|||||||
public class ImageSearchRequest {
|
public class ImageSearchRequest {
|
||||||
@JsonProperty("file_id")
|
@JsonProperty("file_id")
|
||||||
private String fileId;
|
private String fileId;
|
||||||
|
|
||||||
@JsonProperty("check_similar_first")
|
|
||||||
private Boolean checkSimilarFirst;
|
|
||||||
|
|
||||||
@JsonProperty("page")
|
|
||||||
private Integer page = 1;
|
|
||||||
|
|
||||||
@JsonProperty("page_size")
|
|
||||||
private Integer pageSize = 10;
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,21 +0,0 @@
|
|||||||
package ru.soune.nocopy.dto.file;
|
|
||||||
|
|
||||||
import lombok.Builder;
|
|
||||||
import lombok.Data;
|
|
||||||
import ru.soune.nocopy.entity.file.FileStatus;
|
|
||||||
|
|
||||||
@Data
|
|
||||||
@Builder
|
|
||||||
public class ModerationActionRequest {
|
|
||||||
private String fileId;
|
|
||||||
private FileStatus newStatus;
|
|
||||||
private String comment;
|
|
||||||
private Long adminId;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -19,6 +19,4 @@ public class SimilarFileDTO {
|
|||||||
ProtectionStatus status;
|
ProtectionStatus status;
|
||||||
LocalDateTime uploadDate;
|
LocalDateTime uploadDate;
|
||||||
String url;
|
String url;
|
||||||
Boolean owner;
|
|
||||||
String fileStatus;
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,25 +0,0 @@
|
|||||||
package ru.soune.nocopy.dto.file;
|
|
||||||
|
|
||||||
import lombok.Getter;
|
|
||||||
|
|
||||||
@Getter
|
|
||||||
public enum SortOrder {
|
|
||||||
ASC("asc"),
|
|
||||||
DESC("desc");
|
|
||||||
|
|
||||||
private final String value;
|
|
||||||
|
|
||||||
SortOrder(String value) {
|
|
||||||
this.value = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
public static SortOrder fromString(String value) {
|
|
||||||
if (value == null) return ASC;
|
|
||||||
for (SortOrder order : SortOrder.values()) {
|
|
||||||
if (order.value.equalsIgnoreCase(value)) {
|
|
||||||
return order;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return ASC;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -12,6 +12,15 @@ public class YandexSearchResponse {
|
|||||||
@JsonProperty("images")
|
@JsonProperty("images")
|
||||||
private List<ImageResult> images;
|
private List<ImageResult> images;
|
||||||
|
|
||||||
|
@JsonProperty("images")
|
||||||
|
public void setImages(List<ImageResult> images) {
|
||||||
|
if (images != null && images.size() > 5) {
|
||||||
|
this.images = images.subList(0, 5);
|
||||||
|
} else {
|
||||||
|
this.images = images;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@Data
|
@Data
|
||||||
@JsonIgnoreProperties(ignoreUnknown = true)
|
@JsonIgnoreProperties(ignoreUnknown = true)
|
||||||
public static class ImageResult {
|
public static class ImageResult {
|
||||||
@@ -32,16 +41,5 @@ public class YandexSearchResponse {
|
|||||||
|
|
||||||
@JsonProperty("host")
|
@JsonProperty("host")
|
||||||
private String host;
|
private String host;
|
||||||
|
|
||||||
@JsonProperty("file_id")
|
|
||||||
private String fileId;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private int page;
|
|
||||||
|
|
||||||
private int pageSize;
|
|
||||||
|
|
||||||
private int totalResults;
|
|
||||||
|
|
||||||
private int totalPages;
|
|
||||||
}
|
}
|
||||||
@@ -1,20 +0,0 @@
|
|||||||
package ru.soune.nocopy.dto.monitoring;
|
|
||||||
|
|
||||||
import com.fasterxml.jackson.annotation.JsonProperty;
|
|
||||||
import lombok.Data;
|
|
||||||
|
|
||||||
@Data
|
|
||||||
public class GetViolationsRequest {
|
|
||||||
|
|
||||||
@JsonProperty("file_id")
|
|
||||||
private String fileId;
|
|
||||||
|
|
||||||
@JsonProperty("page")
|
|
||||||
private Integer page;
|
|
||||||
|
|
||||||
@JsonProperty("page_size")
|
|
||||||
private Integer pageSize;
|
|
||||||
|
|
||||||
@JsonProperty("mark_as_read")
|
|
||||||
private boolean markAsRead;
|
|
||||||
}
|
|
||||||
@@ -1,13 +0,0 @@
|
|||||||
package ru.soune.nocopy.dto.monitoring;
|
|
||||||
|
|
||||||
import lombok.Builder;
|
|
||||||
import lombok.Data;
|
|
||||||
|
|
||||||
@Data
|
|
||||||
@Builder
|
|
||||||
public class MonitoringDTO {
|
|
||||||
String fileId;
|
|
||||||
String baseUrl;
|
|
||||||
String engine;
|
|
||||||
String searchType;
|
|
||||||
}
|
|
||||||
@@ -1,40 +0,0 @@
|
|||||||
package ru.soune.nocopy.dto.monitoring;
|
|
||||||
|
|
||||||
import com.fasterxml.jackson.annotation.JsonProperty;
|
|
||||||
import lombok.Builder;
|
|
||||||
import lombok.Data;
|
|
||||||
import ru.soune.nocopy.entity.monitoring.MonitoringType;
|
|
||||||
|
|
||||||
import java.time.LocalDateTime;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Response for status monitoring
|
|
||||||
*/
|
|
||||||
@Data
|
|
||||||
@Builder
|
|
||||||
public class MonitoringStatusResponse {
|
|
||||||
|
|
||||||
@JsonProperty("file_id")
|
|
||||||
private String fileId;
|
|
||||||
|
|
||||||
@JsonProperty("file_name")
|
|
||||||
private String fileName;
|
|
||||||
|
|
||||||
@JsonProperty("monitoring_type")
|
|
||||||
private MonitoringType monitoringType;
|
|
||||||
|
|
||||||
@JsonProperty("next_run")
|
|
||||||
private LocalDateTime nextRun;
|
|
||||||
|
|
||||||
@JsonProperty("last_run")
|
|
||||||
private LocalDateTime lastRun;
|
|
||||||
|
|
||||||
@JsonProperty("last_run_status")
|
|
||||||
private String lastRunStatus;
|
|
||||||
|
|
||||||
@JsonProperty("is_active")
|
|
||||||
private boolean isActive;
|
|
||||||
|
|
||||||
@JsonProperty("need_add_tokens")
|
|
||||||
private boolean needAddTokens;
|
|
||||||
}
|
|
||||||
@@ -1,17 +0,0 @@
|
|||||||
package ru.soune.nocopy.dto.monitoring;
|
|
||||||
|
|
||||||
import com.fasterxml.jackson.annotation.JsonProperty;
|
|
||||||
import lombok.Data;
|
|
||||||
import ru.soune.nocopy.entity.monitoring.MonitoringType;
|
|
||||||
/**
|
|
||||||
Set monitoring request
|
|
||||||
*/
|
|
||||||
@Data
|
|
||||||
public class SetMonitoringRequest {
|
|
||||||
|
|
||||||
@JsonProperty("file_id")
|
|
||||||
private String fileId;
|
|
||||||
|
|
||||||
@JsonProperty("monitoring_type")
|
|
||||||
private String monitoringType;
|
|
||||||
}
|
|
||||||
@@ -1,7 +0,0 @@
|
|||||||
package ru.soune.nocopy.dto.notification;
|
|
||||||
|
|
||||||
import lombok.Data;
|
|
||||||
|
|
||||||
@Data
|
|
||||||
public class ActivateNotificationRequest {
|
|
||||||
}
|
|
||||||
@@ -1,13 +0,0 @@
|
|||||||
package ru.soune.nocopy.dto.notification;
|
|
||||||
|
|
||||||
import lombok.Builder;
|
|
||||||
import lombok.Data;
|
|
||||||
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
@Data
|
|
||||||
@Builder
|
|
||||||
public class ActiveNotificationsResponse {
|
|
||||||
private List<NotificationDto> notifications;
|
|
||||||
private long unreadCount;
|
|
||||||
}
|
|
||||||
@@ -1,10 +0,0 @@
|
|||||||
package ru.soune.nocopy.dto.notification;
|
|
||||||
|
|
||||||
import lombok.Data;
|
|
||||||
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
@Data
|
|
||||||
public class MarkAsReadRequest {
|
|
||||||
private List<Long> notificationIds;
|
|
||||||
}
|
|
||||||
@@ -1,11 +0,0 @@
|
|||||||
package ru.soune.nocopy.dto.notification;
|
|
||||||
|
|
||||||
import lombok.Builder;
|
|
||||||
import lombok.Data;
|
|
||||||
|
|
||||||
@Data
|
|
||||||
@Builder
|
|
||||||
public class MarkAsReadResponse {
|
|
||||||
private boolean success;
|
|
||||||
private int updatedCount;
|
|
||||||
}
|
|
||||||
@@ -1,19 +0,0 @@
|
|||||||
package ru.soune.nocopy.dto.notification;
|
|
||||||
|
|
||||||
import lombok.Builder;
|
|
||||||
import lombok.Data;
|
|
||||||
import ru.soune.nocopy.entity.notification.NotificationStatus;
|
|
||||||
import ru.soune.nocopy.entity.notification.NotificationType;
|
|
||||||
|
|
||||||
import java.time.LocalDateTime;
|
|
||||||
|
|
||||||
@Data
|
|
||||||
@Builder
|
|
||||||
public class NotificationDto {
|
|
||||||
private Long id;
|
|
||||||
private String message;
|
|
||||||
private NotificationType type;
|
|
||||||
private NotificationStatus status;
|
|
||||||
private LocalDateTime createdAt;
|
|
||||||
private Object context;
|
|
||||||
}
|
|
||||||
@@ -1,17 +0,0 @@
|
|||||||
package ru.soune.nocopy.dto.notification;
|
|
||||||
|
|
||||||
import lombok.Data;
|
|
||||||
import ru.soune.nocopy.entity.notification.NotificationStatus;
|
|
||||||
import ru.soune.nocopy.entity.notification.NotificationType;
|
|
||||||
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
@Data
|
|
||||||
public class NotificationListRequest {
|
|
||||||
private int page = 0;
|
|
||||||
private int size = 10;
|
|
||||||
private String sortBy = "createdAt";
|
|
||||||
private String sortDirection = "DESC";
|
|
||||||
private List<NotificationType> types;
|
|
||||||
private List<NotificationStatus> statuses;
|
|
||||||
}
|
|
||||||
@@ -1,15 +0,0 @@
|
|||||||
package ru.soune.nocopy.dto.notification;
|
|
||||||
|
|
||||||
import lombok.Builder;
|
|
||||||
import lombok.Data;
|
|
||||||
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
@Data
|
|
||||||
@Builder
|
|
||||||
public class NotificationListResponse {
|
|
||||||
private List<NotificationDto> notifications;
|
|
||||||
private int currentPage;
|
|
||||||
private int totalPages;
|
|
||||||
private long totalElements;
|
|
||||||
}
|
|
||||||
@@ -1,16 +0,0 @@
|
|||||||
package ru.soune.nocopy.dto.payment;
|
|
||||||
|
|
||||||
import lombok.AllArgsConstructor;
|
|
||||||
import lombok.Data;
|
|
||||||
import lombok.NoArgsConstructor;
|
|
||||||
|
|
||||||
@Data
|
|
||||||
@NoArgsConstructor
|
|
||||||
@AllArgsConstructor
|
|
||||||
public class PaymentMethodDTO {
|
|
||||||
private String paymentMethodId;
|
|
||||||
private String lastFour;
|
|
||||||
private String cardType;
|
|
||||||
private String expiryMonth;
|
|
||||||
private String expiryYear;
|
|
||||||
}
|
|
||||||
@@ -1,16 +0,0 @@
|
|||||||
package ru.soune.nocopy.dto.payment;
|
|
||||||
|
|
||||||
import lombok.AllArgsConstructor;
|
|
||||||
import lombok.Builder;
|
|
||||||
import lombok.Data;
|
|
||||||
import lombok.NoArgsConstructor;
|
|
||||||
|
|
||||||
@Data
|
|
||||||
@AllArgsConstructor
|
|
||||||
@NoArgsConstructor
|
|
||||||
@Builder
|
|
||||||
public class PaymentRequest {
|
|
||||||
private String email;
|
|
||||||
private String paymentUuid;
|
|
||||||
private String action;
|
|
||||||
}
|
|
||||||
@@ -1,17 +0,0 @@
|
|||||||
package ru.soune.nocopy.dto.payment;
|
|
||||||
|
|
||||||
import lombok.AllArgsConstructor;
|
|
||||||
import lombok.Builder;
|
|
||||||
import lombok.Data;
|
|
||||||
import lombok.NoArgsConstructor;
|
|
||||||
import ru.soune.nocopy.entity.payment.Payment;
|
|
||||||
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
@Data
|
|
||||||
@AllArgsConstructor
|
|
||||||
@NoArgsConstructor
|
|
||||||
@Builder
|
|
||||||
public class PaymentResponse {
|
|
||||||
List<Payment> payments;
|
|
||||||
}
|
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user