feat: 更新获取项目徽章的功能
All checks were successful
CI Monitor CI/CD / build-image (push) Successful in 28s
CI Monitor CI/CD / deploy (push) Successful in 28s

This commit is contained in:
zhaoyingbo 2024-07-01 13:09:17 +00:00
parent 1cef20c2c1
commit 2154815761
2 changed files with 35 additions and 13 deletions

View File

@ -4,28 +4,31 @@ const AUTH_HEADER = { "PRIVATE-TOKEN": "Zd1UASPcMwVox5tNS6ep" };
const BASE_URL = "https://git.n.xiaomi.com/api/v4";
const gitlabGet = async <T = any>(url: string, params: any, defaultValue: any): Promise<T> => {
const gitlabReq = async <T = any>(
url: string,
params: any,
defaultValue: any,
reqFunc: any = netTool.get
): Promise<T> => {
try {
const response = (await netTool.get(
url,
params,
AUTH_HEADER
)) as T & GitlabError;
const response = (await reqFunc(url, params, AUTH_HEADER)) as T &
GitlabError;
if (response.message === "404 Project Not Found") return defaultValue;
return response;
} catch {
return defaultValue;
}
}
};
/**
*
* @param id
* @returns
*/
const fetchProjectDetails = async (id: number) => {
const fetchProjectDetails = async (id: number | string) => {
if (typeof id === "string") id = encodeURIComponent(id);
const URL = `${BASE_URL}/projects/${id}`;
return gitlabGet<GitlabProjDetail | null>(URL, {}, null);
return gitlabReq<GitlabProjDetail | null>(URL, {}, null);
};
/**
@ -37,7 +40,7 @@ const fetchProjectDetails = async (id: number) => {
const fetchPipelines = async (project_id: number, page = 1) => {
const URL = `${BASE_URL}/projects/${project_id}/pipelines`;
const params = { scope: "finished", per_page: 100, page };
return gitlabGet<GitlabPipeline[]>(URL, params, []);
return gitlabReq<GitlabPipeline[]>(URL, params, []);
};
/**
@ -53,7 +56,7 @@ const fetchPipelineDetails = async (
created_at: string
) => {
const URL = `${BASE_URL}/projects/${project_id}/pipelines/${pipeline_id}`;
const res = gitlabGet<GitlabPipelineDetail | null>(URL, {}, null);
const res = gitlabReq<GitlabPipelineDetail | null>(URL, {}, null);
if (res === null) return null;
return { ...res, created_at };
};
@ -64,11 +67,27 @@ const fetchPipelineDetails = async (
*/
const fetchProjectBadges = async (project_id: number) => {
const URL = `${BASE_URL}/projects/${project_id}/badges`;
return gitlabGet<GitlabBadge[]>(URL, {}, []);
}
return gitlabReq<GitlabBadge[]>(URL, {}, []);
};
/**
*
* @param project_id
* @param badge_id
* @param new_badge
*/
const setProjectBadge = async (
project_id: number,
badge_id: number,
new_badge: GitlabBadge
) => {
const URL = `${BASE_URL}/projects/${project_id}/badges/${badge_id}`;
return gitlabReq<GitlabBadge>(URL, new_badge, new_badge, netTool.put);
};
const gitlab = {
fetchPipelines,
setProjectBadge,
fetchProjectBadges,
fetchProjectDetails,
fetchPipelineDetails,

View File

@ -89,6 +89,9 @@ netTool.post = <T = any>(
headers?: any
): Promise<T> => netTool({ url, method: "post", data, params, headers });
netTool.put = <T = any>(url: string, data: any, headers?: any): Promise<T> =>
netTool({ url, method: "put", data, headers });
netTool.del = <T = any>(url: string, data: any, headers?: any): Promise<T> =>
netTool({ url, method: "delete", data, headers });