"use client";

import { IconKey, IconUser } from "@/components/__legacy__/ui/icons";
import LoadingBox from "@/components/__legacy__/ui/loading";
import {
  Table,
  TableBody,
  TableCell,
  TableHead,
  TableHeader,
  TableRow,
} from "@/components/__legacy__/ui/table";
import { Button } from "@/components/atoms/Button/Button";
import { Dialog } from "@/components/molecules/Dialog/Dialog";
import { useToast } from "@/components/molecules/Toast/use-toast";
import { providerIcons } from "@/components/renderers/InputRenderer/custom/CredentialField/helpers";
import { CredentialsProviderName } from "@/lib/autogpt-server-api";
import { useSupabase } from "@/lib/supabase/hooks/useSupabase";
import { CredentialsProvidersContext } from "@/providers/agent-credentials/credentials-provider";
import { KeyIcon } from "@phosphor-icons/react/dist/ssr";
import { Trash2Icon } from "lucide-react";
import { useRouter } from "next/navigation";
import { useCallback, useContext, useEffect, useMemo, useState } from "react";

export default function UserIntegrationsPage() {
  const { supabase, user, isUserLoading } = useSupabase();
  const router = useRouter();
  const providers = useContext(CredentialsProvidersContext);
  const { toast } = useToast();

  useEffect(() => {
    document.title = "Integrations – AutoGPT Platform";
  }, []);

  const [confirmationDialogState, setConfirmationDialogState] = useState<
    | {
        open: true;
        message: string;
        onConfirm: () => void;
        onReject: () => void;
      }
    | { open: false }
  >({ open: false });

  const removeCredentials = useCallback(
    async (
      provider: CredentialsProviderName,
      id: string,
      force: boolean = false,
    ) => {
      if (!providers || !providers[provider]) {
        return;
      }

      let result;
      try {
        result = await providers[provider].deleteCredentials(id, force);
      } catch (error: any) {
        toast({
          title: "Something went wrong when deleting credentials: " + error,
          variant: "destructive",
          duration: 2000,
        });
        setConfirmationDialogState({ open: false });
        return;
      }
      if (result.deleted) {
        if (result.revoked) {
          toast({
            title: "Credentials deleted",
            duration: 2000,
          });
        } else {
          toast({
            title: "Credentials deleted from AutoGPT",
            description: `You may also manually remove the connection to AutoGPT at ${provider}!`,
            duration: 3000,
          });
        }
        setConfirmationDialogState({ open: false });
      } else if (result.need_confirmation) {
        setConfirmationDialogState({
          open: true,
          message: result.message,
          onConfirm: () => removeCredentials(provider, id, true),
          onReject: () => setConfirmationDialogState({ open: false }),
        });
      }
    },
    [providers, toast],
  );

  //TODO: remove when the way system credentials are handled is updated
  // This contains ids for built-in "Use Credits for X" credentials
  const hiddenCredentials = useMemo(
    () => [
      "744fdc56-071a-4761-b5a5-0af0ce10a2b5", // Ollama
      "fdb7f412-f519-48d1-9b5f-d2f73d0e01fe", // Revid
      "760f84fc-b270-42de-91f6-08efe1b512d0", // Ideogram
      "6b9fc200-4726-4973-86c9-cd526f5ce5db", // Replicate
      "53c25cb8-e3ee-465c-a4d1-e75a4c899c2a", // OpenAI
      "24e5d942-d9e3-4798-8151-90143ee55629", // Anthropic
      "aad82a89-9794-4ebb-977f-d736aa5260a3", // AI/ML
      "4ec22295-8f97-4dd1-b42b-2c6957a02545", // Groq
      "7f7b0654-c36b-4565-8fa7-9a52575dfae2", // D-ID
      "7f26de70-ba0d-494e-ba76-238e65e7b45f", // Jina
      "66f20754-1b81-48e4-91d0-f4f0dd82145f", // Unreal Speech
      "b5a0e27d-0c98-4df3-a4b9-10193e1f3c40", // Open Router
      "6c0f5bd0-9008-4638-9d79-4b40b631803e", // FAL
      "96153e04-9c6c-4486-895f-5bb683b1ecec", // Exa
      "78d19fd7-4d59-4a16-8277-3ce310acf2b7", // E2B
      "96b83908-2789-4dec-9968-18f0ece4ceb3", // Nvidia
      "ed55ac19-356e-4243-a6cb-bc599e9b716f", // Mem0
      "544c62b5-1d0f-4156-8fb4-9525f11656eb", // Apollo
      "3bcdbda3-84a3-46af-8fdb-bfd2472298b8", // SmartLead
      "63a6e279-2dc2-448e-bf57-85776f7176dc", // ZeroBounce
      "9aa1bde0-4947-4a70-a20c-84daa3850d52", // Google Maps
      "d44045af-1c33-4833-9e19-752313214de2", // Llama API
      "c4e6d1a0-3b5f-4789-a8e2-9b123456789f", // V0 by Vercel
      "a5b3c7d9-2e4f-4a6b-8c1d-9e0f1a2b3c4d", // Webshare Proxy
      "8b3d4e5f-6a7b-8c9d-0e1f-2a3b4c5d6e7f", // OpenWeatherMap
    ],
    [],
  );

  useEffect(() => {
    if (isUserLoading) return;
    if (!user || !supabase) router.push("/login");
  }, [isUserLoading, user, supabase, router]);

  if (isUserLoading) {
    return <LoadingBox className="h-[80vh]" />;
  }

  const allCredentials = providers
    ? Object.values(providers)
        .filter(
          (provider): provider is NonNullable<typeof provider> =>
            provider != null,
        )
        .flatMap((provider) =>
          provider.savedCredentials
            .filter(
              (cred) =>
                !hiddenCredentials.includes(cred.id) &&
                !cred.id.endsWith("-default"), // Hide SDK-registered default credentials
            )
            .map((credentials) => ({
              ...credentials,
              provider: provider.provider,
              providerName: provider.providerName,
              ProviderIcon: providerIcons[provider.provider] || KeyIcon,
              TypeIcon: {
                oauth2: IconUser,
                api_key: IconKey,
                user_password: IconKey,
                host_scoped: IconKey,
              }[credentials.type],
            })),
        )
    : [];

  return (
    <div className="mx-auto max-w-3xl md:py-8">
      <h2 className="mb-4 text-lg">Connections & Credentials</h2>
      <Table>
        <TableHeader>
          <TableRow>
            <TableHead>Provider</TableHead>
            <TableHead>Name</TableHead>
            <TableHead>Actions</TableHead>
          </TableRow>
        </TableHeader>
        <TableBody>
          {allCredentials.map((cred) => (
            <TableRow key={cred.id}>
              <TableCell>
                <div className="flex items-center space-x-1.5">
                  <cred.ProviderIcon className="h-4 w-4" />
                  <strong>{cred.providerName}</strong>
                </div>
              </TableCell>
              <TableCell>
                <div className="flex h-full items-center space-x-1.5">
                  <cred.TypeIcon />
                  <span>{cred.title || cred.username}</span>
                </div>
                <small className="text-muted-foreground">
                  {
                    {
                      oauth2: "OAuth2 credentials",
                      api_key: "API key",
                      user_password: "Username & password",
                      host_scoped: "Host-scoped credentials",
                    }[cred.type]
                  }{" "}
                  - <code>{cred.id}</code>
                </small>
              </TableCell>
              <TableCell className="w-0 whitespace-nowrap">
                {!cred.is_managed && (
                  <Button
                    variant="destructive"
                    onClick={() => removeCredentials(cred.provider, cred.id)}
                  >
                    <Trash2Icon className="mr-1.5 size-4" /> Delete
                  </Button>
                )}
              </TableCell>
            </TableRow>
          ))}
        </TableBody>
      </Table>

      <Dialog
        controlled={{
          isOpen: confirmationDialogState.open,
          set: (open) => {
            if (!open) setConfirmationDialogState({ open: false });
          },
        }}
        title="Are you sure?"
        onClose={() => setConfirmationDialogState({ open: false })}
        styling={{ maxWidth: "32rem" }}
      >
        <Dialog.Content>
          <p className="text-sm text-zinc-600">
            {confirmationDialogState.open && confirmationDialogState.message}
          </p>
          <Dialog.Footer>
            <Button
              variant="secondary"
              onClick={() =>
                confirmationDialogState.open &&
                confirmationDialogState.onReject()
              }
            >
              Cancel
            </Button>
            <Button
              variant="destructive"
              onClick={() =>
                confirmationDialogState.open &&
                confirmationDialogState.onConfirm()
              }
            >
              Continue
            </Button>
          </Dialog.Footer>
        </Dialog.Content>
      </Dialog>
    </div>
  );
}
