File size: 16,864 Bytes
6111b2b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
"use client";

import { useState, useEffect } from "react";
import { Card, Button, Badge, Modal, Input, ModelSelectModal } from "@/shared/components";
import { useTranslations } from "next-intl";

import ProviderIcon from "@/shared/components/ProviderIcon";

export default function AntigravityToolCard({

  tool,

  isExpanded = false,

  onToggle = () => {},

  baseUrl,

  apiKeys,

  activeProviders,

  hasActiveProviders,

  cloudEnabled,

}) {
  const t = useTranslations("cliTools");
  const [status, setStatus] = useState(null);
  const [loading, setLoading] = useState(false);
  const [showPasswordModal, setShowPasswordModal] = useState(false);
  const [sudoPassword, setSudoPassword] = useState("");
  const [selectedApiKeyId, setSelectedApiKeyId] = useState("");
  const [message, setMessage] = useState(null);
  const [modelMappings, setModelMappings] = useState({});
  const [modalOpen, setModalOpen] = useState(false);
  const [currentEditingAlias, setCurrentEditingAlias] = useState(null);

  // (#523) Store the key *id* (not the masked string) so the backend can
  // resolve the real secret from DB before writing to config files.
  useEffect(() => {
    if (apiKeys?.length > 0 && !selectedApiKeyId) {
      setSelectedApiKeyId(apiKeys[0].id);
    }
  }, [apiKeys, selectedApiKeyId]);

  useEffect(() => {
    if (isExpanded && !status) {
      fetchStatus();
      loadSavedMappings();
    }
  }, [isExpanded, status]);

  const loadSavedMappings = async () => {
    try {
      const res = await fetch(`/api/cli-tools/antigravity-mitm/alias?tool=${tool.id}`);
      if (res.ok) {
        const data = await res.json();
        const aliases = data.aliases || {};

        if (Object.keys(aliases).length > 0) {
          setModelMappings(aliases);
        }
      }
    } catch (error) {
      console.log("Error loading saved mappings:", error);
    }
  };

  const fetchStatus = async () => {
    try {
      const res = await fetch("/api/cli-tools/antigravity-mitm");
      if (res.ok) {
        const data = await res.json();
        setStatus(data);
      }
    } catch (error) {
      console.log("Error fetching status:", error);
      setStatus({ running: false });
    }
  };

  // Windows uses UAC dialog, no sudo needed
  const isWindows = typeof navigator !== "undefined" && navigator.userAgent?.includes("Windows");

  const handleStart = () => {
    if (isWindows || status?.hasCachedPassword) {
      doStart("");
    } else {
      setShowPasswordModal(true);
      setMessage(null);
    }
  };

  const handleStop = () => {
    if (isWindows || status?.hasCachedPassword) {
      doStop("");
    } else {
      setShowPasswordModal(true);
      setMessage(null);
    }
  };

  const doStart = async (password) => {
    setLoading(true);
    setMessage(null);
    try {
      // (#523) Prefer keyId lookup so the backend writes the real key to disk.
      const selectedKeyId =
        selectedApiKeyId?.trim() || (apiKeys?.length > 0 ? apiKeys[0].id : null);

      const res = await fetch("/api/cli-tools/antigravity-mitm", {
        method: "POST",
        headers: { "Content-Type": "application/json" },
        body: JSON.stringify({
          apiKey: !cloudEnabled ? "sk_omniroute" : null,
          keyId: selectedKeyId,
          sudoPassword: password,
        }),
      });

      const data = await res.json();
      if (res.ok) {
        setMessage({ type: "success", text: t("mitmStarted") });
        setShowPasswordModal(false);
        setSudoPassword("");
        fetchStatus();
      } else {
        setMessage({
          type: "error",
          text:
            (typeof data.error === "string" ? data.error : data.error?.message) || t("failedStart"),
        });
      }
    } catch (error) {
      setMessage({ type: "error", text: error.message });
    } finally {
      setLoading(false);
    }
  };

  const doStop = async (password) => {
    setLoading(true);
    setMessage(null);
    try {
      const res = await fetch("/api/cli-tools/antigravity-mitm", {
        method: "DELETE",
        headers: { "Content-Type": "application/json" },
        body: JSON.stringify({ sudoPassword: password }),
      });

      const data = await res.json();
      if (res.ok) {
        setMessage({ type: "success", text: t("mitmStopped") });
        setShowPasswordModal(false);
        setSudoPassword("");
        fetchStatus();
      } else {
        setMessage({
          type: "error",
          text:
            (typeof data.error === "string" ? data.error : data.error?.message) || t("failedStop"),
        });
      }
    } catch (error) {
      setMessage({ type: "error", text: error.message });
    } finally {
      setLoading(false);
    }
  };

  const handleConfirmPassword = () => {
    if (!sudoPassword.trim()) {
      setMessage({ type: "error", text: t("sudoPasswordRequiredError") });
      return;
    }
    if (status?.running) {
      doStop(sudoPassword);
    } else {
      doStart(sudoPassword);
    }
  };

  const openModelSelector = (alias) => {
    setCurrentEditingAlias(alias);
    setModalOpen(true);
  };

  const handleModelSelect = (model) => {
    if (currentEditingAlias) {
      setModelMappings((prev) => ({
        ...prev,
        [currentEditingAlias]: model.value,
      }));
    }
  };

  const handleModelMappingChange = (alias, value) => {
    setModelMappings((prev) => ({
      ...prev,
      [alias]: value,
    }));
  };

  const handleSaveMappings = async () => {
    setLoading(true);
    setMessage(null);

    try {
      const res = await fetch("/api/cli-tools/antigravity-mitm/alias", {
        method: "PUT",
        headers: { "Content-Type": "application/json" },
        body: JSON.stringify({ tool: tool.id, mappings: modelMappings }),
      });

      if (!res.ok) {
        const data = await res.json();
        throw new Error(
          (typeof data.error === "string" ? data.error : data.error?.message) ||
            t("failedSaveMappings")
        );
      }

      setMessage({ type: "success", text: t("mappingsSaved") });
    } catch (error) {
      setMessage({ type: "error", text: error.message });
    } finally {
      setLoading(false);
    }
  };

  const isRunning = status?.running;

  return (
    <Card padding="sm" className="overflow-hidden">

      <div className="flex items-center justify-between hover:cursor-pointer" onClick={onToggle}>

        <div className="flex items-center gap-3">

          <div className="size-8 flex items-center justify-center shrink-0">

            <ProviderIcon providerId={tool.id || "antigravity"} size={32} type="color" />

          </div>

          <div className="min-w-0">

            <div className="flex items-center gap-2">

              <h3 className="font-medium text-sm">{tool.name}</h3>

              {isRunning ? (

                <Badge variant="success" size="sm">

                  {t("active")}

                </Badge>

              ) : (

                <Badge variant="default" size="sm">

                  {t("inactive")}

                </Badge>

              )}

            </div>

            <p className="text-xs text-text-muted truncate">{tool.description}</p>

          </div>

        </div>

        <span

          className={`material-symbols-outlined text-text-muted text-[20px] transition-transform ${isExpanded ? "rotate-180" : ""}`}

        >

          expand_more

        </span>

      </div>



      {isExpanded && (

        <div className="mt-4 pt-4 border-t border-border flex flex-col gap-4">

          {/* Start/Stop Button - always on top */}

          <div className="flex items-center gap-2">

            {isRunning ? (

              <button

                onClick={handleStop}

                disabled={loading}

                className="px-4 py-2 rounded-lg bg-red-500/10 border border-red-500/30 text-red-500 font-medium text-sm flex items-center gap-2 hover:bg-red-500/20 transition-colors disabled:opacity-50"

              >

                <span className="material-symbols-outlined text-[18px]">stop_circle</span>

                {t("stopMitm")}

              </button>

            ) : (

              <button

                onClick={handleStart}

                disabled={loading || !hasActiveProviders}

                className="px-4 py-2 rounded-lg bg-primary/10 border border-primary/30 text-primary font-medium text-sm flex items-center gap-2 hover:bg-primary/20 transition-colors disabled:opacity-50 disabled:cursor-not-allowed"

              >

                <span className="material-symbols-outlined text-[18px]">play_circle</span>

                {t("startMitm")}

              </button>

            )}

          </div>



          {message?.type === "error" && (

            <div className="flex items-center gap-2 px-2 py-1.5 rounded text-xs bg-red-500/10 text-red-600">

              <span className="material-symbols-outlined text-[14px]">error</span>

              <span>{message.text}</span>

            </div>

          )}



          {/* When running: API Key + Model Mappings */}

          {isRunning && (

            <>

              <div className="flex items-center gap-2">

                <span className="w-32 shrink-0 text-sm font-semibold text-text-main text-right">

                  {t("apiKey")}

                </span>

                <span className="material-symbols-outlined text-text-muted text-[14px]">

                  arrow_forward

                </span>

                {apiKeys.length > 0 ? (

                  <select

                    value={selectedApiKeyId}

                    onChange={(e) => setSelectedApiKeyId(e.target.value)}

                    className="flex-1 px-2 py-1.5 bg-surface rounded text-xs border border-border focus:outline-none focus:ring-1 focus:ring-primary/50"

                  >

                    {apiKeys.map((key) => (

                      <option key={key.id} value={key.id}>

                        {key.key}

                      </option>

                    ))}

                  </select>

                ) : (

                  <span className="flex-1 text-xs text-text-muted px-2 py-1.5">

                    {cloudEnabled ? t("noApiKeysCreateOne") : t("defaultOmnirouteKey")}

                  </span>

                )}

              </div>



              {(tool.defaultModels || []).map((model) => (

                <div key={model.alias} className="flex items-center gap-2">

                  <span className="w-32 shrink-0 text-sm font-semibold text-text-main text-right">

                    {model.name}

                  </span>

                  <span className="material-symbols-outlined text-text-muted text-[14px]">

                    arrow_forward

                  </span>

                  <input

                    type="text"

                    value={modelMappings[model.alias] || ""}

                    onChange={(e) => handleModelMappingChange(model.alias, e.target.value)}

                    placeholder={t("modelPlaceholder")}

                    className="flex-1 px-2 py-1.5 bg-surface rounded border border-border text-xs focus:outline-none focus:ring-1 focus:ring-primary/50"

                  />

                  <button

                    onClick={() => openModelSelector(model.alias)}

                    disabled={!hasActiveProviders}

                    className={`px-2 py-1.5 rounded border text-xs transition-colors shrink-0 whitespace-nowrap ${hasActiveProviders ? "bg-surface border-border text-text-main hover:border-primary cursor-pointer" : "opacity-50 cursor-not-allowed border-border"}`}

                  >

                    {t("select")}

                  </button>

                  {modelMappings[model.alias] && (

                    <button

                      onClick={() => handleModelMappingChange(model.alias, "")}

                      className="p-1 text-text-muted hover:text-red-500 rounded transition-colors"

                      title={t("clear")}

                    >

                      <span className="material-symbols-outlined text-[14px]">close</span>

                    </button>

                  )}

                </div>

              ))}



              <div className="flex items-center gap-2">

                <Button

                  variant="primary"

                  size="sm"

                  onClick={handleSaveMappings}

                  disabled={loading || Object.keys(modelMappings).length === 0}

                >

                  <span className="material-symbols-outlined text-[14px] mr-1">save</span>

                  {t("saveMappings")}

                </Button>

              </div>

            </>

          )}



          {/* When stopped: how it works */}

          {!isRunning &&

            (() => {

              // Dynamic MITM instructions per tool (#505)

              const mitmDomains: Record<string, string> = {

                antigravity: "daily-cloudcode-pa.googleapis.com",

                kiro: "api.anthropic.com",

              };

              const toolName = tool.name || tool.id;

              const domain = mitmDomains[tool.id] || mitmDomains.antigravity;

              return (

                <div className="flex flex-col gap-1.5 px-1">

                  <p className="text-xs text-text-muted">

                    <span className="font-medium text-text-main">{t("howItWorks")}</span>{" "}

                    {t("mitmHowWorksDesc", { toolName })}

                  </p>

                  <div className="flex flex-col gap-0.5 text-[11px] text-text-muted">

                    <span>{t("mitmStep1")}</span>

                    <span>

                      {t("mitmStep2Prefix")}{" "}

                      <code className="text-[10px] bg-surface px-1 rounded">{domain}</code>{" "}

                      {t("mitmStep2Suffix")}

                    </span>

                    <span>{t("mitmStep3", { toolName })}</span>

                  </div>

                </div>

              );

            })()}

        </div>

      )}



      {/* Password Modal */}

      <Modal

        isOpen={showPasswordModal}

        onClose={() => {

          setShowPasswordModal(false);

          setSudoPassword("");

          setMessage(null);

        }}

        title={t("sudoPasswordRequiredTitle")}

        size="sm"

      >

        <div className="flex flex-col gap-4">

          <div className="flex items-start gap-3 p-3 bg-yellow-500/10 border border-yellow-500/30 rounded-lg">

            <span className="material-symbols-outlined text-yellow-500 text-[20px]">warning</span>

            <p className="text-xs text-text-muted">{t("sudoPasswordHint")}</p>

          </div>



          <Input

            type="password"

            placeholder={t("enterSudoPassword")}

            value={sudoPassword}

            onChange={(e) => setSudoPassword(e.target.value)}

            onKeyDown={(e) => {

              if (e.key === "Enter" && !loading) handleConfirmPassword();

            }}

          />



          {message && (

            <div

              className={`flex items-center gap-2 px-2 py-1.5 rounded text-xs ${message.type === "success" ? "bg-green-500/10 text-green-600" : "bg-red-500/10 text-red-600"}`}

            >

              <span className="material-symbols-outlined text-[14px]">

                {message.type === "success" ? "check_circle" : "error"}

              </span>

              <span>{message.text}</span>

            </div>

          )}



          <div className="flex items-center justify-end gap-2">

            <Button

              variant="ghost"

              size="sm"

              onClick={() => {

                setShowPasswordModal(false);

                setSudoPassword("");

                setMessage(null);

              }}

              disabled={loading}

            >

              {t("cancel")}

            </Button>

            <Button variant="primary" size="sm" onClick={handleConfirmPassword} loading={loading}>

              {t("confirm")}

            </Button>

          </div>

        </div>

      </Modal>



      {/* Model Select Modal */}

      <ModelSelectModal

        isOpen={modalOpen}

        onClose={() => setModalOpen(false)}

        onSelect={handleModelSelect}

        selectedModel={currentEditingAlias ? modelMappings[currentEditingAlias] : null}

        activeProviders={activeProviders}

        title={t("selectModelForAlias", { alias: currentEditingAlias || "" })}

      />

    </Card>
  );
}