feat: 添加获取项目徽章的功能 & 抽象gitlab请求
This commit is contained in:
parent
fa0777b6ae
commit
1cef20c2c1
@ -4,6 +4,20 @@ const AUTH_HEADER = { "PRIVATE-TOKEN": "Zd1UASPcMwVox5tNS6ep" };
|
|||||||
|
|
||||||
const BASE_URL = "https://git.n.xiaomi.com/api/v4";
|
const BASE_URL = "https://git.n.xiaomi.com/api/v4";
|
||||||
|
|
||||||
|
const gitlabGet = async <T = any>(url: string, params: any, defaultValue: any): Promise<T> => {
|
||||||
|
try {
|
||||||
|
const response = (await netTool.get(
|
||||||
|
url,
|
||||||
|
params,
|
||||||
|
AUTH_HEADER
|
||||||
|
)) as T & GitlabError;
|
||||||
|
if (response.message === "404 Project Not Found") return defaultValue;
|
||||||
|
return response;
|
||||||
|
} catch {
|
||||||
|
return defaultValue;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 获取项目详情
|
* 获取项目详情
|
||||||
* @param id
|
* @param id
|
||||||
@ -11,17 +25,7 @@ const BASE_URL = "https://git.n.xiaomi.com/api/v4";
|
|||||||
*/
|
*/
|
||||||
const fetchProjectDetails = async (id: number) => {
|
const fetchProjectDetails = async (id: number) => {
|
||||||
const URL = `${BASE_URL}/projects/${id}`;
|
const URL = `${BASE_URL}/projects/${id}`;
|
||||||
try {
|
return gitlabGet<GitlabProjDetail | null>(URL, {}, null);
|
||||||
const response = (await netTool.get(
|
|
||||||
URL,
|
|
||||||
{},
|
|
||||||
AUTH_HEADER
|
|
||||||
)) as GitlabProjDetail & GitlabError;
|
|
||||||
if (response.message === "404 Project Not Found") return null;
|
|
||||||
return response;
|
|
||||||
} catch {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -33,17 +37,7 @@ const fetchProjectDetails = async (id: number) => {
|
|||||||
const fetchPipelines = async (project_id: number, page = 1) => {
|
const fetchPipelines = async (project_id: number, page = 1) => {
|
||||||
const URL = `${BASE_URL}/projects/${project_id}/pipelines`;
|
const URL = `${BASE_URL}/projects/${project_id}/pipelines`;
|
||||||
const params = { scope: "finished", per_page: 100, page };
|
const params = { scope: "finished", per_page: 100, page };
|
||||||
try {
|
return gitlabGet<GitlabPipeline[]>(URL, params, []);
|
||||||
const response = (await netTool.get(
|
|
||||||
URL,
|
|
||||||
params,
|
|
||||||
AUTH_HEADER
|
|
||||||
)) as GitlabPipeline[] & GitlabError;
|
|
||||||
if (response?.message === "404 Project Not Found") return [];
|
|
||||||
return response;
|
|
||||||
} catch {
|
|
||||||
return [] as GitlabPipeline[];
|
|
||||||
}
|
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -59,22 +53,24 @@ const fetchPipelineDetails = async (
|
|||||||
created_at: string
|
created_at: string
|
||||||
) => {
|
) => {
|
||||||
const URL = `${BASE_URL}/projects/${project_id}/pipelines/${pipeline_id}`;
|
const URL = `${BASE_URL}/projects/${project_id}/pipelines/${pipeline_id}`;
|
||||||
try {
|
const res = gitlabGet<GitlabPipelineDetail | null>(URL, {}, null);
|
||||||
const response = (await netTool.get(
|
if (res === null) return null;
|
||||||
URL,
|
return { ...res, created_at };
|
||||||
{},
|
|
||||||
AUTH_HEADER
|
|
||||||
)) as GitlabPipelineDetail & GitlabError;
|
|
||||||
if (response.message === "404 Project Not Found") return null;
|
|
||||||
return { ...response, created_at };
|
|
||||||
} catch {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取项目的所有徽章
|
||||||
|
* @param project_id
|
||||||
|
*/
|
||||||
|
const fetchProjectBadges = async (project_id: number) => {
|
||||||
|
const URL = `${BASE_URL}/projects/${project_id}/badges`;
|
||||||
|
return gitlabGet<GitlabBadge[]>(URL, {}, []);
|
||||||
|
}
|
||||||
|
|
||||||
const gitlab = {
|
const gitlab = {
|
||||||
fetchProjectDetails,
|
|
||||||
fetchPipelines,
|
fetchPipelines,
|
||||||
|
fetchProjectBadges,
|
||||||
|
fetchProjectDetails,
|
||||||
fetchPipelineDetails,
|
fetchPipelineDetails,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
10
service/typings.d.ts
vendored
10
service/typings.d.ts
vendored
@ -50,3 +50,13 @@ interface GitlabPipelineDetail {
|
|||||||
interface GitlabPipelineDetailWithCreateAt extends GitlabPipelineDetail {
|
interface GitlabPipelineDetailWithCreateAt extends GitlabPipelineDetail {
|
||||||
created_at: string;
|
created_at: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
interface GitlabBadge {
|
||||||
|
id: number;
|
||||||
|
name: string;
|
||||||
|
link_url: string;
|
||||||
|
image_url: string;
|
||||||
|
rendered_link_url: string;
|
||||||
|
rendered_image_url: string;
|
||||||
|
kind: "project" | "group";
|
||||||
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user