2025-01-23 06:58:06 +08:00
|
|
|
import { BASE_URL } from '@/api/buster_rest/instances';
|
2025-02-02 13:17:37 +08:00
|
|
|
import type { OrganizationUser, BusterUserResponse } from '@/api/asset_interfaces';
|
2025-01-18 00:46:13 +08:00
|
|
|
import { mainApi } from '../instances';
|
|
|
|
import { serverFetch } from '../../createServerInstance';
|
|
|
|
|
2025-02-15 12:02:25 +08:00
|
|
|
export const getMyUserInfo = async (): Promise<BusterUserResponse> => {
|
|
|
|
return mainApi.get<BusterUserResponse>(`/users`).then((response) => response.data);
|
|
|
|
};
|
|
|
|
|
|
|
|
export const getMyUserInfo_server = async ({
|
2025-01-18 00:46:13 +08:00
|
|
|
jwtToken
|
|
|
|
}: {
|
|
|
|
jwtToken: string | undefined;
|
|
|
|
}): Promise<BusterUserResponse | undefined> => {
|
|
|
|
if (!jwtToken) {
|
|
|
|
const res = await serverFetch<BusterUserResponse>(`/users`, {
|
|
|
|
method: 'GET'
|
|
|
|
});
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
//use fetch instead of serverFetch because...
|
|
|
|
return fetch(`${BASE_URL}/users`, {
|
|
|
|
method: 'GET',
|
|
|
|
headers: {
|
|
|
|
'Content-Type': 'application/json',
|
|
|
|
Authorization: `Bearer ${jwtToken}`
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.then((response) => {
|
|
|
|
return response.json();
|
|
|
|
})
|
|
|
|
.catch((error) => {
|
|
|
|
return undefined;
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
export const getUser = async ({ userId }: { userId: string }) => {
|
|
|
|
return mainApi.get<OrganizationUser>(`/users/${userId}`).then((response) => response.data);
|
|
|
|
};
|
|
|
|
|
|
|
|
export const getUser_server = async ({ userId }: { userId: string }) => {
|
|
|
|
return serverFetch<BusterUserResponse>(`/users/${userId}`);
|
|
|
|
};
|
|
|
|
|
|
|
|
export const updateOrganizationUser = async ({
|
|
|
|
userId,
|
|
|
|
...params
|
|
|
|
}: {
|
|
|
|
userId: string;
|
|
|
|
name?: string;
|
|
|
|
role: OrganizationUser['role'];
|
|
|
|
}) => {
|
|
|
|
return mainApi
|
|
|
|
.put<OrganizationUser>(`/users/${userId}`, params)
|
|
|
|
.then((response) => response.data);
|
|
|
|
};
|