File size: 7,153 Bytes
b200338
58ae063
ee999fe
 
 
 
 
 
 
 
 
 
 
 
 
 
53475ee
ee999fe
 
2fc767f
 
 
 
 
ee999fe
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2fc767f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
c433511
 
84f514d
2fc767f
 
c433511
 
 
 
 
 
 
 
 
 
84f514d
c433511
 
 
 
 
 
 
2fc767f
 
 
 
 
 
 
 
 
 
 
c433511
 
58ae063
b200338
 
 
 
 
 
16c1c4c
b200338
 
 
 
 
58ae063
b200338
 
 
 
 
c433511
b200338
 
 
 
 
 
 
 
 
 
2fc767f
b200338
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
c433511
b200338
 
 
 
c433511
b200338
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
c433511
 
b200338
 
 
 
2fc767f
b200338
 
 
 
2fc767f
b200338
 
 
 
 
84f514d
b200338
 
 
 
 
 
 
ee999fe
b200338
 
58ae063
b200338
 
 
 
 
 
 
 
58ae063
 
 
 
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
import { tokenManager } from "./oauth";

interface OrganizationInfo {
  type: string;
  id: string;
  name: string;
  role: string;
}

interface WhoAmIResponse {
  type: string;
  id: string;
  name: string;
  email?: string;
  fullname?: string;
  avatarUrl?: string;
  orgs: OrganizationInfo[];
}

interface OrganizationMember {
  user: string;
  role: string;
}

async function getOrganizationInfo(
  accessToken: string
): Promise<WhoAmIResponse> {
  const response = await fetch("https://huggingface.co/api/whoami-v2", {
    headers: {
      Authorization: `Bearer ${accessToken}`,
    },
  });

  if (!response.ok) {
    throw new Error(
      `Failed to fetch organization info: ${response.statusText}`
    );
  }

  return response.json();
}

async function getOrganizationMembers(
  accessToken: string,
  organization: string
): Promise<OrganizationMember[]> {
  const response = await fetch(
    `https://huggingface.co/api/organizations/${organization}/members`,
    {
      headers: {
        Authorization: `Bearer ${accessToken}`,
      },
    }
  );

  if (!response.ok) {
    throw new Error(
      `Failed to fetch organization members: ${response.statusText}`
    );
  }

  return response.json();
}

async function createResourceGroup(
  accessToken: string,
  organization: string,
  name: string,
  members: OrganizationMember[]
): Promise<void> {
  const response = await fetch(
    `https://huggingface.co/api/organizations/${organization}/resource-groups`,
    {
      method: "POST",
      headers: {
        "Content-Type": "application/json",
        Authorization: `Bearer ${accessToken}`,
      },
      body: JSON.stringify({
        name: name,
        description: `Resource group for repository ${name}`,
        users: members.map((member) => ({
          user: member.user,
          role: "admin",
        })),
      }),
    }
  );

  if (!response.ok) {
    throw new Error(`Failed to create resource group: ${response.statusText}`);
  }
}

async function createRepository(
  accessToken: string,
  name: string,
  organization?: string,
  resourceGroupName?: string
): Promise<void> {
  const response = await fetch("https://huggingface.co/api/repos/create", {
    method: "POST",
    headers: {
      "Content-Type": "application/json",
      Authorization: `Bearer ${accessToken}`,
    },
    body: JSON.stringify({
      type: "model",
      name: name,
      organization: organization,
      private: false,
    }),
  });

  if (!response.ok) {
    throw new Error(`Failed to create repository: ${response.statusText}`);
  }

  // If organization and resource group name are provided, create a resource group
  if (organization && resourceGroupName) {
    const members = await getOrganizationMembers(accessToken, organization);
    await createResourceGroup(
      accessToken,
      organization,
      resourceGroupName,
      members
    );
  }
}

const init = async (): Promise<void> => {
  if (tokenManager.isAuthenticated()) {
    showAuthenticatedUI();
  } else {
    showUnauthenticatedUI();
  }
};

const showAuthenticatedUI = async () => {
  const accessToken = tokenManager.getAccessToken();
  if (!accessToken) {
    throw new Error("Access token not found");
  }

  // Hide token form
  const tokenForm = document.getElementById("token-form");
  if (tokenForm) {
    tokenForm.style.display = "none";
  }

  // Show repo form and signout button
  const repoForm = document.getElementById("repo-form");
  const signoutButton = document.getElementById("signout");
  if (repoForm) {
    repoForm.style.removeProperty("display");
  }
  if (signoutButton) {
    signoutButton.style.removeProperty("display");
    signoutButton.onclick = () => tokenManager.logout();
  }

  // Add create repo functionality
  const createRepoButton = document.getElementById("create-repo");
  const repoNameInput = document.getElementById(
    "repo-name"
  ) as HTMLInputElement;
  const resourceGroupInput = document.getElementById(
    "resource-group-name"
  ) as HTMLInputElement;
  const resourceGroupContainer = document.getElementById(
    "resource-group-container"
  );

  if (createRepoButton && repoNameInput) {
    createRepoButton.onclick = async () => {
      const repoName = repoNameInput.value.trim();
      const orgSelect = document.getElementById(
        "org-select"
      ) as HTMLSelectElement;
      if (repoName) {
        try {
          const selectedOrg = orgSelect?.value || undefined;
          const resourceGroupName = selectedOrg
            ? resourceGroupInput?.value.trim()
            : undefined;

          console.log({ selectedOrg, resourceGroupName });
          await createRepository(
            accessToken,
            repoName,
            selectedOrg,
            resourceGroupName
          );
          repoNameInput.value = ""; // Clear input after success
          if (resourceGroupInput) {
            resourceGroupInput.value = ""; // Clear resource group input
          }
          alert("Repository and resource group created successfully!");
        } catch (error) {
          console.error("Failed to create repository:", error);
          alert("Failed to create repository. Please try again.");
        }
      }
    };
  }

  // Handle org select change to show/hide resource group input
  const orgSelect = document.getElementById("org-select") as HTMLSelectElement;
  if (orgSelect && resourceGroupContainer) {
    orgSelect.onchange = () => {
      if (orgSelect.value) {
        resourceGroupContainer.style.removeProperty("display");
      } else {
        resourceGroupContainer.style.display = "none";
      }
    };
  }

  // Get organization info and populate org select
  try {
    const orgInfo = await getOrganizationInfo(accessToken);

    // Populate org select
    if (orgSelect && orgInfo.orgs) {
      orgInfo.orgs.forEach((org) => {
        const option = document.createElement("option");
        option.value = org.name;
        option.textContent = org.name;
        orgSelect.appendChild(option);
      });
    }

    // Display user info
    const preElement = document.querySelector("pre");
    if (preElement) {
      preElement.textContent = JSON.stringify(orgInfo, null, 2);
    }
  } catch (error) {
    console.error("Failed to fetch organization info:", error);
  }
};

const showUnauthenticatedUI = () => {
  // Show token form
  const tokenForm = document.getElementById("token-form");
  const tokenInput = document.getElementById("token-input") as HTMLInputElement;
  const tokenSubmit = document.getElementById("token-submit");

  if (tokenForm && tokenInput && tokenSubmit) {
    tokenForm.style.removeProperty("display");
    tokenSubmit.onclick = () => {
      const token = tokenInput.value.trim();
      if (token) {
        tokenManager.setToken(token);
        showAuthenticatedUI();
      }
    };
  }

  // Hide other UI elements
  const repoForm = document.getElementById("repo-form");
  const signoutButton = document.getElementById("signout");
  if (repoForm) {
    repoForm.style.display = "none";
  }
  if (signoutButton) {
    signoutButton.style.display = "none";
  }
};

init().catch(console.error);