File size: 11,993 Bytes
c636ebf
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
/**
 * Legal Dashboard API Client
 * =========================
 * 
 * JavaScript client for communicating with the Legal Dashboard backend API.
 * Handles all HTTP requests and data transformation between frontend and backend.
 */

class LegalDashboardAPI {
    constructor(baseUrl = '') {
        this.baseUrl = baseUrl || window.location.origin;
        this.apiBase = `${this.baseUrl}/api`;
        
        // Request interceptor for common headers
        this.defaultHeaders = {
            'Content-Type': 'application/json',
        };
    }

    /**
     * Generic HTTP request handler with error handling
     */
    async request(endpoint, options = {}) {
        const url = `${this.apiBase}${endpoint}`;
        
        const config = {
            ...options,
            headers: {
                ...this.defaultHeaders,
                ...options.headers
            }
        };

        try {
            const response = await fetch(url, config);
            
            if (!response.ok) {
                const errorData = await response.json().catch(() => ({}));
                throw new Error(errorData.detail || `HTTP ${response.status}: ${response.statusText}`);
            }

            const contentType = response.headers.get('content-type');
            if (contentType && contentType.includes('application/json')) {
                return await response.json();
            }
            
            return await response.text();
            
        } catch (error) {
            console.error(`API Request failed: ${endpoint}`, error);
            throw error;
        }
    }

    /**
     * Health check - verify backend is running
     */
    async healthCheck() {
        return this.request('/health');
    }

    // ==================== DASHBOARD API ====================

    /**
     * Get dashboard summary statistics
     */
    async getDashboardSummary() {
        const response = await this.request('/dashboard/summary');
        return response.data;
    }

    /**
     * Get processing trends for charts
     */
    async getProcessingTrends(period = 'weekly') {
        const response = await this.request(`/dashboard/charts/processing-trends?period=${period}`);
        return response.data;
    }

    /**
     * Get status distribution for pie chart
     */
    async getStatusDistribution() {
        const response = await this.request('/dashboard/charts/status-distribution');
        return response.data;
    }

    /**
     * Get category distribution for pie chart
     */
    async getCategoryDistribution() {
        const response = await this.request('/dashboard/charts/category-distribution');
        return response.data;
    }

    // ==================== DOCUMENTS API ====================

    /**
     * Get paginated list of documents with filtering
     */
    async getDocuments(params = {}) {
        const searchParams = new URLSearchParams();
        
        Object.entries(params).forEach(([key, value]) => {
            if (value !== null && value !== undefined && value !== '') {
                searchParams.append(key, value);
            }
        });
        
        const endpoint = `/documents/?${searchParams.toString()}`;
        return this.request(endpoint);
    }

    /**
     * Get single document by ID
     */
    async getDocument(documentId) {
        return this.request(`/documents/${documentId}`);
    }

    /**
     * Delete document by ID
     */
    async deleteDocument(documentId) {
        return this.request(`/documents/${documentId}`, {
            method: 'DELETE'
        });
    }

    // ==================== OCR API ====================

    /**
     * Upload files for OCR processing
     */
    async uploadFiles(files) {
        const formData = new FormData();
        
        // Add files to form data
        files.forEach(file => {
            formData.append('files', file);
        });

        return this.request('/ocr/upload', {
            method: 'POST',
            headers: {}, // Remove Content-Type to let browser set it for FormData
            body: formData
        });
    }

    /**
     * Extract text from PDF immediately (for testing)
     */
    async extractTextImmediate(file) {
        const formData = new FormData();
        formData.append('file', file);

        return this.request('/ocr/extract', {
            method: 'POST',
            headers: {},
            body: formData
        });
    }

    // ==================== SCRAPING API ====================

    /**
     * Scrape content from website
     */
    async scrapeWebsite(scrapingRequest) {
        return this.request('/scraping/scrape', {
            method: 'POST',
            body: JSON.stringify(scrapingRequest)
        });
    }

    /**
     * Get scraping history
     */
    async getScrapingHistory(skip = 0, limit = 50) {
        const response = await this.request(`/scraping/scrape/history?skip=${skip}&limit=${limit}`);
        return response.data;
    }

    // ==================== ANALYTICS API ====================

    /**
     * Calculate similarity between two documents
     */
    async calculateSimilarity(doc1Id, doc2Id) {
        const response = await this.request(`/analytics/similarity?doc1_id=${doc1Id}&doc2_id=${doc2Id}`);
        return response.data;
    }

    /**
     * Get quality analysis
     */
    async getQualityAnalysis() {
        const response = await this.request('/analytics/quality-analysis');
        return response.data;
    }

    /**
     * Get performance metrics
     */
    async getPerformanceMetrics() {
        const response = await this.request('/analytics/performance-metrics');
        return response.data;
    }
}

// ==================== DATA MODELS ====================

/**
 * Document model to match backend structure
 */
class DocumentModel {
    constructor(backendData) {
        this.id = backendData.id;
        this.filename = backendData.filename;
        this.original_filename = backendData.original_filename;
        this.file_size = backendData.file_size;
        this.file_path = backendData.file_path;
        this.category = backendData.category;
        this.quality_score = backendData.quality_score || 0;
        this.confidence_score = backendData.confidence_score || 0;
        this.status = backendData.status;
        this.created_at = backendData.created_at;
        this.processed_at = backendData.processed_at;
        this.ocr_text = backendData.ocr_text;
        this.summary = backendData.summary;
        this.keywords = backendData.keywords || [];
        this.extracted_entities = backendData.extracted_entities || [];
        this.processing_time = backendData.processing_time || 0;
        this.importance_score = backendData.importance_score || 0;
        this.similarity_scores = backendData.similarity_scores || {};
        this.legal_references = backendData.legal_references || [];
    }

    /**
     * Format file size for display
     */
    getFormattedFileSize() {
        return formatFileSize(this.file_size);
    }

    /**
     * Get creation date formatted for Persian locale
     */
    getFormattedDate() {
        return formatDate(this.created_at);
    }

    /**
     * Get quality class for styling
     */
    getQualityClass() {
        if (this.quality_score >= 8.5) return 'quality-excellent';
        if (this.quality_score >= 6.5) return 'quality-good';
        if (this.quality_score >= 4.5) return 'quality-average';
        return 'quality-poor';
    }

    /**
     * Get status text in Persian
     */
    getStatusText() {
        const statusMap = {
            'processed': 'پردازش شده',
            'processing': 'در حال پردازش',
            'uploaded': 'آپلود شده',
            'pending': 'در انتظار',
            'error': 'خطا'
        };
        return statusMap[this.status] || this.status;
    }

    /**
     * Get status icon
     */
    getStatusIcon() {
        const iconMap = {
            'processed': 'check-circle',
            'processing': 'spinner fa-spin',
            'uploaded': 'cloud-upload-alt',
            'pending': 'clock',
            'error': 'exclamation-triangle'
        };
        return iconMap[this.status] || 'question-circle';
    }
}

/**
 * Scraping result model
 */
class ScrapingResultModel {
    constructor(backendData) {
        this.success = backendData.success;
        this.url = backendData.url;
        this.title = backendData.title;
        this.content_length = backendData.content_length;
        this.processing_time = backendData.processing_time;
        this.data = backendData.data;
        this.error = backendData.error;
    }

    isSuccessful() {
        return this.success && !this.error;
    }

    getFormattedProcessingTime() {
        return `${this.processing_time.toFixed(2)} ثانیه`;
    }
}

// ==================== UTILITY FUNCTIONS ====================

/**
 * Format file size in bytes to human readable format
 */
function formatFileSize(bytes) {
    if (bytes === 0) return '0 بایت';
    const k = 1024;
    const sizes = ['بایت', 'کیلوبایت', 'مگابایت', 'گیگابایت'];
    const i = Math.floor(Math.log(bytes) / Math.log(k));
    return parseFloat((bytes / Math.pow(k, i)).toFixed(2)) + ' ' + sizes[i];
}

/**
 * Format date for Persian locale
 */
function formatDate(dateString) {
    if (!dateString) return 'نامشخص';
    const date = new Date(dateString);
    return date.toLocaleDateString('fa-IR', {
        year: 'numeric',
        month: 'long',
        day: 'numeric',
        hour: '2-digit',
        minute: '2-digit'
    });
}

/**
 * Show toast notification
 */
function showToast(message, type = 'info', title = 'اعلان') {
    const toastContainer = document.getElementById('toastContainer');
    if (!toastContainer) return;
    
    const toast = document.createElement('div');
    toast.className = `toast ${type}`;
    
    const icons = {
        success: 'check-circle',
        error: 'exclamation-triangle',
        warning: 'exclamation-circle',
        info: 'info-circle'
    };

    toast.innerHTML = `
        <div class="toast-icon">
            <i class="fas fa-${icons[type]}"></i>
        </div>
        <div class="toast-content">
            <div class="toast-title">${title}</div>
            <div class="toast-message">${message}</div>
        </div>
        <button type="button" class="toast-close" onclick="this.parentElement.remove()">
            <i class="fas fa-times"></i>
        </button>
    `;

    toastContainer.appendChild(toast);

    // Show toast
    setTimeout(() => toast.classList.add('show'), 100);

    // Auto remove after 5 seconds
    setTimeout(() => {
        if (toast.parentElement) {
            toast.classList.remove('show');
            setTimeout(() => {
                if (toast.parentElement) {
                    toast.remove();
                }
            }, 300);
        }
    }, 5000);
}

/**
 * Debounce function for search inputs
 */
function debounce(func, wait) {
    let timeout;
    return function executedFunction(...args) {
        const later = () => {
            clearTimeout(timeout);
            func(...args);
        };
        clearTimeout(timeout);
        timeout = setTimeout(later, wait);
    };
}

// ==================== GLOBAL API INSTANCE ====================

// Create global API instance
window.legalAPI = new LegalDashboardAPI();

// Test connection on load
document.addEventListener('DOMContentLoaded', async () => {
    try {
        await window.legalAPI.healthCheck();
        console.log('✅ Backend connection successful');
    } catch (error) {
        console.warn('⚠️ Backend connection failed, using fallback mode:', error.message);
        showToast('اتصال به سرور برقرار نشد. حالت آفلاین فعال است.', 'warning', 'هشدار اتصال');
    }
});

console.log('🔗 Legal Dashboard API Client loaded');