aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/packages/ui/src/stores/auth-store.ts
blob: 54f30d31bce8236461acf139d9a9724838a5f671 (plain) (blame)
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
import { invoke } from "@tauri-apps/api/core";
import { listen, type UnlistenFn } from "@tauri-apps/api/event";
import { open } from "@tauri-apps/plugin-shell";
import { toast } from "sonner";
import { create } from "zustand";
import type { Account, DeviceCodeResponse } from "../types/bindings/auth";

interface AuthState {
  // State
  currentAccount: Account | null;
  isLoginModalOpen: boolean;
  isLogoutConfirmOpen: boolean;
  loginMode: "select" | "offline" | "microsoft";
  offlineUsername: string;
  deviceCodeData: DeviceCodeResponse | null;
  msLoginLoading: boolean;
  msLoginStatus: string;

  // Private state
  pollInterval: ReturnType<typeof setInterval> | null;
  isPollingRequestActive: boolean;
  authProgressUnlisten: UnlistenFn | null;

  // Actions
  checkAccount: () => Promise<void>;
  openLoginModal: () => void;
  openLogoutConfirm: () => void;
  cancelLogout: () => void;
  confirmLogout: () => Promise<void>;
  closeLoginModal: () => void;
  resetLoginState: () => void;
  performOfflineLogin: () => Promise<void>;
  startMicrosoftLogin: () => Promise<void>;
  checkLoginStatus: (deviceCode: string) => Promise<void>;
  stopPolling: () => void;
  cancelMicrosoftLogin: () => void;
  setLoginMode: (mode: "select" | "offline" | "microsoft") => void;
  setOfflineUsername: (username: string) => void;
}

export const useAuthStore = create<AuthState>((set, get) => ({
  // Initial state
  currentAccount: null,
  isLoginModalOpen: false,
  isLogoutConfirmOpen: false,
  loginMode: "select",
  offlineUsername: "",
  deviceCodeData: null,
  msLoginLoading: false,
  msLoginStatus: "Waiting for authorization...",

  // Private state
  pollInterval: null,
  isPollingRequestActive: false,
  authProgressUnlisten: null,

  // Actions
  checkAccount: async () => {
    try {
      const acc = await invoke<Account | null>("get_active_account");
      set({ currentAccount: acc });
    } catch (error) {
      console.error("Failed to check account:", error);
    }
  },

  openLoginModal: () => {
    const { currentAccount } = get();
    if (currentAccount) {
      // Show custom logout confirmation dialog
      set({ isLogoutConfirmOpen: true });
      return;
    }
    get().resetLoginState();
    set({ isLoginModalOpen: true });
  },

  openLogoutConfirm: () => {
    set({ isLogoutConfirmOpen: true });
  },

  cancelLogout: () => {
    set({ isLogoutConfirmOpen: false });
  },

  confirmLogout: async () => {
    set({ isLogoutConfirmOpen: false });
    try {
      await invoke("logout");
      set({ currentAccount: null });
    } catch (error) {
      console.error("Logout failed:", error);
    }
  },

  closeLoginModal: () => {
    get().stopPolling();
    set({ isLoginModalOpen: false });
  },

  resetLoginState: () => {
    set({
      loginMode: "select",
      offlineUsername: "",
      deviceCodeData: null,
      msLoginLoading: false,
      msLoginStatus: "Waiting for authorization...",
    });
  },

  performOfflineLogin: async () => {
    const { offlineUsername } = get();
    if (!offlineUsername.trim()) return;

    try {
      const account = await invoke<Account>("login_offline", {
        username: offlineUsername,
      });
      set({
        currentAccount: account,
        isLoginModalOpen: false,
        offlineUsername: "",
      });
    } catch (error) {
      // Keep UI-friendly behavior consistent with prior code
      alert(`Login failed: ${String(error)}`);
    }
  },

  startMicrosoftLogin: async () => {
    // Prepare UI state
    set({
      msLoginLoading: true,
      msLoginStatus: "Waiting for authorization...",
      loginMode: "microsoft",
      deviceCodeData: null,
    });

    // Listen to general launcher logs so we can display progress to the user.
    // The backend emits logs via "launcher-log"; using that keeps this store decoupled
    // from a dedicated auth event channel (backend may reuse launcher-log).
    try {
      const unlisten = await listen("launcher-log", (event) => {
        const payload = event.payload;
        // Normalize payload to string if possible
        const message =
          typeof payload === "string"
            ? payload
            : (payload?.toString?.() ?? JSON.stringify(payload));
        set({ msLoginStatus: message });
      });
      set({ authProgressUnlisten: unlisten });
    } catch (err) {
      console.warn("Failed to attach launcher-log listener:", err);
    }

    try {
      const deviceCodeData = await invoke<DeviceCodeResponse>(
        "start_microsoft_login",
      );
      set({ deviceCodeData });

      if (deviceCodeData) {
        // Try to copy user code to clipboard for convenience (best-effort)
        try {
          await navigator.clipboard?.writeText(deviceCodeData.userCode ?? "");
        } catch (err) {
          // ignore clipboard errors
          console.debug("Clipboard copy failed:", err);
        }

        // Open verification URI in default browser
        try {
          if (deviceCodeData.verificationUri) {
            await open(deviceCodeData.verificationUri);
          }
        } catch (err) {
          console.debug("Failed to open verification URI:", err);
        }

        // Start polling for completion
        // `interval` from the bindings is a bigint (seconds). Convert safely to number.
        const intervalSeconds =
          deviceCodeData.interval !== undefined &&
          deviceCodeData.interval !== null
            ? Number(deviceCodeData.interval)
            : 5;
        const intervalMs = intervalSeconds * 1000;
        const pollInterval = setInterval(
          () => get().checkLoginStatus(deviceCodeData.deviceCode),
          intervalMs,
        );
        set({ pollInterval });
      }
    } catch (error) {
      toast.error(`Failed to start Microsoft login: ${error}`);
      set({ loginMode: "select" });
      // cleanup listener if present
      const { authProgressUnlisten } = get();
      if (authProgressUnlisten) {
        authProgressUnlisten();
        set({ authProgressUnlisten: null });
      }
    } finally {
      set({ msLoginLoading: false });
    }
  },

  checkLoginStatus: async (deviceCode: string) => {
    const { isPollingRequestActive } = get();
    if (isPollingRequestActive) return;

    set({ isPollingRequestActive: true });

    try {
      const account = await invoke<Account>("complete_microsoft_login", {
        deviceCode,
      });

      // On success, stop polling and cleanup listener
      get().stopPolling();
      const { authProgressUnlisten } = get();
      if (authProgressUnlisten) {
        authProgressUnlisten();
        set({ authProgressUnlisten: null });
      }

      set({
        currentAccount: account,
        isLoginModalOpen: false,
      });
    } catch (error: unknown) {
      const errStr = String(error);
      if (errStr.includes("authorization_pending")) {
        // Still waiting — keep polling
      } else {
        set({ msLoginStatus: `Error: ${errStr}` });

        if (
          errStr.includes("expired_token") ||
          errStr.includes("access_denied")
        ) {
          // Terminal errors — stop polling and reset state
          get().stopPolling();
          const { authProgressUnlisten } = get();
          if (authProgressUnlisten) {
            authProgressUnlisten();
            set({ authProgressUnlisten: null });
          }
          alert(`Login failed: ${errStr}`);
          set({ loginMode: "select" });
        }
      }
    } finally {
      set({ isPollingRequestActive: false });
    }
  },

  stopPolling: () => {
    const { pollInterval, authProgressUnlisten } = get();
    if (pollInterval) {
      try {
        clearInterval(pollInterval);
      } catch (err) {
        console.debug("Failed to clear poll interval:", err);
      }
      set({ pollInterval: null });
    }
    if (authProgressUnlisten) {
      try {
        authProgressUnlisten();
      } catch (err) {
        console.debug("Failed to unlisten auth progress:", err);
      }
      set({ authProgressUnlisten: null });
    }
  },

  cancelMicrosoftLogin: () => {
    get().stopPolling();
    set({
      deviceCodeData: null,
      msLoginLoading: false,
      msLoginStatus: "",
      loginMode: "select",
    });
  },

  setLoginMode: (mode: "select" | "offline" | "microsoft") => {
    set({ loginMode: mode });
  },

  setOfflineUsername: (username: string) => {
    set({ offlineUsername: username });
  },
}));