-
Notifications
You must be signed in to change notification settings - Fork 0
/
script.js
176 lines (149 loc) · 5.66 KB
/
script.js
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
let API_KEY = '';
const dropArea = document.getElementById('dropArea');
const fileInput = document.getElementById('fileInput');
const fileList = document.getElementById('fileList');
const progressBar = document.getElementById('progressBar').firstElementChild;
const analyzeButton = document.getElementById('analyzeButton');
let selectedFiles = [];
// Sürükle-bırak ve dosya seçme olayları
['dragenter', 'dragover', 'dragleave', 'drop'].forEach(eventName => {
dropArea.addEventListener(eventName, preventDefaults, false);
});
function preventDefaults(e) {
e.preventDefault();
e.stopPropagation();
}
['dragenter', 'dragover'].forEach(eventName => {
dropArea.addEventListener(eventName, highlight, false);
});
['dragleave', 'drop'].forEach(eventName => {
dropArea.addEventListener(eventName, unhighlight, false);
});
function highlight() {
dropArea.classList.add('highlight');
}
function unhighlight() {
dropArea.classList.remove('highlight');
}
dropArea.addEventListener('drop', handleDrop, false);
dropArea.addEventListener('click', () => fileInput.click());
fileInput.addEventListener('change', handleFiles);
function handleDrop(e) {
const dt = e.dataTransfer;
const files = dt.files;
handleFiles(files);
}
function handleFiles(files) {
if (files instanceof FileList) {
selectedFiles = Array.from(files);
} else {
selectedFiles = Array.from(files.target.files);
}
updateFileList();
analyzeButton.disabled = selectedFiles.length === 0;
}
function updateFileList() {
fileList.innerHTML = selectedFiles.map(file => `<p>${file.name}</p>`).join('');
}
analyzeButton.addEventListener('click', analyzeInvoices);
async function analyzeInvoices() {
analyzeButton.disabled = true;
const totalFiles = selectedFiles.length;
let processedFiles = 0;
const allData = [];
// Eşzamanlı işlem sayısını sınırlamak için
const MAX_CONCURRENT = 3;
const chunks = [];
for (let i = 0; i < selectedFiles.length; i += MAX_CONCURRENT) {
chunks.push(selectedFiles.slice(i, i + MAX_CONCURRENT));
}
for (const chunk of chunks) {
const chunkPromises = chunk.map(file => analyzeInvoice(file));
const results = await Promise.all(chunkPromises);
results.forEach((result, index) => {
if (result.error) {
console.error(`Error analyzing ${chunk[index].name}:`, result.error);
alert(`${chunk[index].name} analiz edilirken bir hata oluştu: ${result.error.message}`);
} else {
allData.push(result);
}
processedFiles++;
updateProgress(processedFiles / totalFiles * 100);
});
}
saveToExcel(allData);
analyzeButton.disabled = false;
}
function updateProgress(percentage) {
progressBar.style.width = `${percentage}%`;
}
async function analyzeInvoice(file) {
try {
API_KEY = localStorage.getItem('API_KEY') || API_KEY; // Anahtarı her işlemden önce günceller.
const base64 = await fileToBase64(file);
const mimeType = file.type;
const response = await fetch(`https://generativelanguage.googleapis.com/v1beta/models/gemini-1.5-flash:generateContent?key=${API_KEY}`, {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify({
contents: [{
parts: [{
text: `Fatura bilgilerini analiz et ve sadece aşağıdaki bilgilere ulaşmaya çalış:
- Fatura Tarihi
- Fatura Türü (Alış/Satış)
- Alıcı Firma Adı
- Alıcı Kişi/Firma'nın VKN/TCKN Numarası
- Fatura Numarası
- Matrah (Toplam tutar)
- Matrah Oranı (KDV oranıyla aynı olmalı)
- KDV Tutarı
- KDV Oranı
Lütfen bu faturayı incele ve sadece yukarıdaki bilgileri çıkart.`
},
{
inline_data: {
mime_type: mimeType,
data: base64.split(',')[1]
}
}]
}]
})
});
if (!response.ok) {
const errorText = await response.text();
throw new Error(`API error: ${response.status}, Details: ${errorText}`);
}
const data = await response.json();
return parseGeminiResponse(data);
} catch (error) {
return { error };
}
}
function parseGeminiResponse(data) {
const text = data.candidates[0].content.parts[0].text;
const lines = text.split('\n');
const result = {};
for (const line of lines) {
const [key, value] = line.split(':').map(s => s.trim());
if (key && value) {
result[key] = value;
}
}
return result;
}
function fileToBase64(file) {
return new Promise((resolve, reject) => {
const reader = new FileReader();
reader.readAsDataURL(file);
reader.onload = () => resolve(reader.result);
reader.onerror = error => reject(error);
});
}
function saveToExcel(data) {
const ws = XLSX.utils.json_to_sheet(data);
const wb = XLSX.utils.book_new();
XLSX.utils.book_append_sheet(wb, ws, "Fatura Bilgileri");
XLSX.writeFile(wb, "invoice-analysis.xlsx");
}