File size: 2,498 Bytes
6a37520
 
 
 
9c10adf
51dc757
6a37520
 
 
 
3444669
6a37520
3444669
6a37520
 
 
 
 
3444669
 
6a37520
 
 
 
 
 
 
 
 
 
3444669
6a37520
3444669
 
6a37520
 
 
 
 
 
 
 
 
 
 
 
 
3444669
 
 
6a37520
9c10adf
6a37520
 
3444669
6a37520
 
 
 
 
 
 
51dc757
 
 
6a37520
 
 
 
 
 
 
9c10adf
 
 
 
 
 
 
 
6a37520
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
import { create } from "zustand";
import { persist } from "zustand/middleware";
import { StoreKey } from "../constant";
import { BOT_HELLO } from "./chat";
import { ALL_MODELS } from "./config";
import { getHeaders } from "../requests";

export interface AccessControlStore {
  accessCode: string;
  token: string;
  auth: string;

  needCode: number;
  hideUserApiKey: boolean;
  openaiUrl: string;

  updateToken: (_: string) => void;
  updateCode: (_: string) => void;
  updateAuth: (_: string) => void;
  enabledAccessControl: () => number;
  isAuthorized: () => boolean;
  fetch: () => void;
}

let fetchState = 0; // 0 not fetch, 1 fetching, 2 done

export const useAccessStore = create<AccessControlStore>()(
  persist(
    (set, get) => ({
      token: "",
      auth: "",
      accessCode: "",
      needCode: 0,
      hideUserApiKey: true,
      openaiUrl: "/api/openai/",

      enabledAccessControl() {
        get().fetch();

        return get().needCode;
      },
      updateCode(code: string) {
        set(() => ({ accessCode: code }));
      },
      updateToken(token: string) {
        set(() => ({ token }));
      },
      updateAuth(token: string) {
        set(() => ({ auth:token }));
      },
      isAuthorized() {
        get().fetch();
        // has token or has code or disabled access control
        return (
          !!get().token || !!get().accessCode || !!get().enabledAccessControl() || !!get().auth
        );
      },
      fetch() {
        if (fetchState > 0) return;
        fetchState = 1;
        fetch("/api/config", {
          method: "post",
          headers: {
            ...getHeaders(),
          },
          body: null,
        })
          .then((res) => res.json())
          .then((res: DangerConfig) => {
            console.log("[Config] got config from server", res);
            set(() => ({ ...res }));

            if (!res.enableGPT4) {
              ALL_MODELS.forEach((model) => {
                if (model.name.startsWith("gpt-4")) {
                  (model as any).available = false;
                }
              });
            }
            
            if ((res as any).botHello) {
              BOT_HELLO.content = (res as any).botHello;
            }
          })
          .catch(() => {
            console.error("[Config] failed to fetch config");
          })
          .finally(() => {
            fetchState = 2;
          });
      },
    }),
    {
      name: StoreKey.Access,
      version: 1,
    },
  ),
);