File size: 13,804 Bytes
b190b45
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
/**

 * API Explorer Page

 */

class APIExplorerPage {
  constructor() {
    this.currentMethod = 'GET';
    this.history = [];
  }

  async init() {
    try {
      console.log('[APIExplorer] Initializing...');
      this.bindEvents();
      this.loadHistory();
      await this.loadProviders();
      console.log('[APIExplorer] Ready');
    } catch (error) {
      console.error('[APIExplorer] Init error:', error);
    }
  }

  bindEvents() {
    const sendBtn = document.getElementById('send-btn');
    const methodSelect = document.getElementById('method-select');
    const endpointSelect = document.getElementById('endpoint-select');
    const bodyGroup = document.getElementById('body-group');
    const copyBtn = document.getElementById('copy-btn');
    const clearBtn = document.getElementById('clear-btn');
    const clearHistoryBtn = document.getElementById('clear-history-btn');

    if (sendBtn) {
      sendBtn.addEventListener('click', () => this.sendRequest());
    }

    if (methodSelect) {
      methodSelect.addEventListener('change', (e) => {
        this.currentMethod = e.target.value;
        this.toggleBodyField();
      });
    }

    if (endpointSelect) {
      endpointSelect.addEventListener('change', (e) => {
        const selectedOption = e.target.selectedOptions[0];
        const dataMethod = selectedOption.getAttribute('data-method');
        if (dataMethod) {
          this.currentMethod = dataMethod;
          methodSelect.value = dataMethod;
          this.toggleBodyField();
        }
      });
    }

    if (copyBtn) {
      copyBtn.addEventListener('click', () => this.copyResponse());
    }

    if (clearBtn) {
      clearBtn.addEventListener('click', () => this.clearResponse());
    }

    if (clearHistoryBtn) {
      clearHistoryBtn.addEventListener('click', () => this.clearHistory());
    }

    this.toggleBodyField();
  }

  toggleBodyField() {
    const bodyGroup = document.getElementById('body-group');
    if (bodyGroup) {
      bodyGroup.style.display = (this.currentMethod === 'POST' || this.currentMethod === 'PUT') ? 'block' : 'none';
    }
  }

  async sendRequest() {
    const endpointSelect = document.getElementById('endpoint-select');
    const bodyInput = document.getElementById('request-body');
    const responseContent = document.getElementById('response-content');
    const responseStatus = document.getElementById('response-status');
    const responseTime = document.getElementById('response-time');

    if (!endpointSelect || !responseContent) return;

    const endpoint = endpointSelect.value;
    if (!endpoint) {
      responseContent.textContent = JSON.stringify({ error: 'Please select an endpoint' }, null, 2);
      return;
    }

    const url = window.location.origin + endpoint;
    
    // Show loading state with spinner
    responseContent.innerHTML = `

      <div style="text-align: center; padding: 2rem;">

        <div class="spinner" style="display: inline-block; width: 32px; height: 32px; border: 3px solid rgba(255,255,255,0.1); border-top: 3px solid var(--color-primary, #3b82f6); border-radius: 50%; animation: spin 1s linear infinite;"></div>

        <p style="margin-top: 1rem; color: var(--text-muted, #6b7280);">Sending request...</p>

      </div>

    `;
    responseStatus.textContent = 'Loading...';
    responseStatus.className = 'status status-loading';
    responseTime.textContent = '';

    const startTime = performance.now();
    
    // Disable send button during request
    const sendBtn = document.getElementById('send-btn');
    const originalBtnText = sendBtn?.textContent;
    if (sendBtn) {
      sendBtn.disabled = true;
      sendBtn.textContent = 'Sending...';
    }

    try {
      const options = { 
        method: this.currentMethod,
        headers: {}
      };

      if ((this.currentMethod === 'POST' || this.currentMethod === 'PUT') && bodyInput && bodyInput.value.trim()) {
        try {
          JSON.parse(bodyInput.value);
          options.body = bodyInput.value;
          options.headers['Content-Type'] = 'application/json';
        } catch (e) {
          responseContent.textContent = JSON.stringify({ error: 'Invalid JSON in request body' }, null, 2);
          responseStatus.textContent = 'Error';
          responseStatus.className = 'status status-error';
          return;
        }
      }

      const controller = new AbortController();
      const timeoutId = setTimeout(() => controller.abort(), 30000);

      const response = await fetch(url, { 
        ...options,
        signal: controller.signal
      });
      clearTimeout(timeoutId);

      const endTime = performance.now();
      const duration = Math.round(endTime - startTime);

      responseTime.textContent = `${duration}ms`;
      responseStatus.textContent = `${response.status} ${response.statusText}`;
      responseStatus.className = `status ${response.ok ? 'status-success' : 'status-error'}`;

      const contentType = response.headers.get('content-type');
      let data;
      
      if (contentType && contentType.includes('application/json')) {
        data = await response.json();
        responseContent.textContent = JSON.stringify(data, null, 2);
      } else {
        const text = await response.text();
        responseContent.textContent = text;
      }

      this.addToHistory({
        method: this.currentMethod,
        endpoint,
        status: response.status,
        duration,
        timestamp: new Date().toISOString()
      });
      
      // Re-enable send button
      if (sendBtn) {
        sendBtn.disabled = false;
        sendBtn.textContent = originalBtnText;
      }
    } catch (error) {
      const endTime = performance.now();
      const duration = Math.round(endTime - startTime);
      
      responseTime.textContent = `${duration}ms`;
      responseStatus.textContent = 'Error';
      responseStatus.className = 'status status-error';

      let errorMessage;
      if (error.name === 'AbortError') {
        errorMessage = { 
          error: 'Request timeout (30s)',
          suggestion: 'The request took too long. Try a different endpoint or check your connection.'
        };
      } else if (error.message.includes('Failed to fetch') || error.message.includes('NetworkError')) {
        errorMessage = { 
          error: 'Network error',
          message: error.message,
          suggestion: 'Check your internet connection and CORS settings. The endpoint might not be accessible.'
        };
      } else {
        errorMessage = { 
          error: error.message,
          suggestion: 'This might be due to CORS policy, network issues, or an invalid endpoint.'
        };
      }
      
      responseContent.textContent = JSON.stringify(errorMessage, null, 2);
      
      // Re-enable send button
      if (sendBtn) {
        sendBtn.disabled = false;
        sendBtn.textContent = originalBtnText;
      }
    }
  }

  copyResponse() {
    const responseContent = document.getElementById('response-content');
    if (responseContent) {
      navigator.clipboard.writeText(responseContent.textContent)
        .then(() => this.showToast('Response copied to clipboard'))
        .catch(() => this.showToast('Failed to copy', 'error'));
    }
  }

  clearResponse() {
    const responseContent = document.getElementById('response-content');
    const responseStatus = document.getElementById('response-status');
    const responseTime = document.getElementById('response-time');

    if (responseContent) {
      responseContent.textContent = JSON.stringify({ message: 'Select an endpoint and click \'Send Request\'' }, null, 2);
    }
    if (responseStatus) {
      responseStatus.textContent = '--';
      responseStatus.className = 'status';
    }
    if (responseTime) {
      responseTime.textContent = '--';
    }
  }

  addToHistory(entry) {
    this.history.unshift(entry);
    if (this.history.length > 10) {
      this.history.pop();
    }
    this.saveHistory();
    this.renderHistory();
  }

  saveHistory() {
    try {
      localStorage.setItem('api-explorer-history', JSON.stringify(this.history));
    } catch (e) {
      console.error('Failed to save history:', e);
    }
  }

  loadHistory() {
    try {
      const saved = localStorage.getItem('api-explorer-history');
      if (saved) {
        this.history = JSON.parse(saved);
        this.renderHistory();
      }
    } catch (e) {
      console.error('Failed to load history:', e);
    }
  }

  renderHistory() {
    const historyList = document.getElementById('history-list');
    if (!historyList) return;

    if (this.history.length === 0) {
      historyList.innerHTML = '<div class="empty-state">No requests yet</div>';
      return;
    }

    historyList.innerHTML = this.history.map(entry => `

      <div class="history-item">

        <div class="history-method method-${entry.method.toLowerCase()}">${entry.method}</div>

        <div class="history-endpoint">${entry.endpoint}</div>

        <div class="history-status status-${entry.status < 400 ? 'success' : 'error'}">${entry.status}</div>

        <div class="history-time">${entry.duration}ms</div>

      </div>

    `).join('');
  }

  clearHistory() {
    this.history = [];
    this.saveHistory();
    this.renderHistory();
    this.showToast('History cleared');
  }

  showToast(message, type = 'success') {
    const container = document.getElementById('toast-container');
    if (!container) return;

    const toast = document.createElement('div');
    toast.className = `toast toast-${type}`;
    toast.textContent = message;
    container.appendChild(toast);

    setTimeout(() => {
      toast.classList.add('show');
    }, 10);

    setTimeout(() => {
      toast.classList.remove('show');
      setTimeout(() => toast.remove(), 300);
    }, 3000);
  }

  /**

   * Load and display available providers

   */
  async loadProviders() {
    const grid = document.getElementById('providers-grid');
    const countBadge = document.getElementById('providers-count');
    
    if (!grid) return;

    try {
      const response = await fetch(`${window.location.origin}/api/providers`);
      const data = await response.json();

      if (!response.ok || !data.success) {
        throw new Error(data.error || 'Failed to load providers');
      }

      const providers = data.providers || [];
      
      if (countBadge) {
        countBadge.textContent = data.total || providers.length;
      }

      this.renderProviders(providers);
    } catch (error) {
      console.error('[APIExplorer] Error loading providers:', error);
      grid.innerHTML = `<div class="empty-state error">Failed to load providers: ${error.message}</div>`;
      if (countBadge) {
        countBadge.textContent = '0';
      }
    }
  }

  /**

   * Render providers grid

   */
  renderProviders(providers) {
    const grid = document.getElementById('providers-grid');
    if (!grid) return;

    if (providers.length === 0) {
      grid.innerHTML = '<div class="empty-state">No providers available</div>';
      return;
    }

    grid.innerHTML = providers.map(provider => {
      const statusClass = this.getProviderStatusClass(provider.status);
      const hasApiKey = provider.has_api_key || provider.has_api_token;
      const authBadge = hasApiKey
        ? '<span class="badge badge-warning">API Key</span>'
        : '<span class="badge badge-success">No Auth</span>';

      // Build capabilities list
      const capabilities = provider.capabilities || [];
      const capabilitiesHtml = capabilities.length > 0
        ? `<div class="provider-capabilities">

             ${capabilities.map(cap => `<span class="capability-tag">${this.escapeHtml(cap)}</span>`).join('')}

           </div>`
        : '';

      return `

        <div class="provider-card">

          <div class="provider-header">

            <div class="provider-info">

              <h4 class="provider-name">${this.escapeHtml(provider.name)}</h4>

              <span class="badge badge-category">${this.escapeHtml(provider.category)}</span>

            </div>

            <div class="provider-badges">

              ${authBadge}

            </div>

          </div>

          <div class="provider-body">

            ${provider.endpoint || provider.base_url ? `<div class="provider-url">${this.escapeHtml(provider.endpoint || provider.base_url)}</div>` : ''}

            ${capabilitiesHtml}

            ${provider.status ? `<div class="provider-status ${statusClass}">${this.escapeHtml(provider.status)}</div>` : ''}

          </div>

        </div>

      `;
    }).join('');
  }

  /**

   * Get CSS class for provider status

   */
  getProviderStatusClass(status) {
    if (!status) return 'status-unknown';
    const statusLower = status.toLowerCase();
    if (statusLower.includes('valid') || statusLower === 'available' || statusLower === 'online') {
      return 'status-success';
    }
    if (statusLower.includes('invalid') || statusLower === 'offline') {
      return 'status-error';
    }
    if (statusLower.includes('conditional') || statusLower === 'degraded') {
      return 'status-warning';
    }
    return 'status-unknown';
  }

  /**

   * Escape HTML to prevent XSS

   */
  escapeHtml(text) {
    if (typeof text !== 'string') return '';
    const div = document.createElement('div');
    div.textContent = text;
    return div.innerHTML;
  }
}

export default APIExplorerPage;