zhaoyingbo 18a95387ee
All checks were successful
CI Monitor CI/CD / build-image (push) Successful in 33s
CI Monitor CI/CD / deploy (push) Successful in 37s
chore: 更新lint-staged和commitlint配置
2024-07-25 01:09:24 +00:00

47 lines
1.3 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Gitlab } from "../../types/gitlab"
import netTool from "../netTool"
import { GITLAB_AUTH_HEADER, GITLAB_BASE_URL, gitlabReqWarp } from "./tools"
/**
* 获取特定GitLab流水线的详细信息。
* @param project_id - 项目的ID。
* @param pipeline_id - 流水线的ID。
* @param created_at - 流水线的创建日期。
* @returns 一个解析为流水线详细信息的promise。
*/
const getDetail = async (
project_id: number,
pipeline_id: number,
created_at: string
) => {
const URL = `${GITLAB_BASE_URL}/projects/${project_id}/pipelines/${pipeline_id}`
const res = await gitlabReqWarp<Gitlab.PipelineDetail>(
() => netTool.get(URL, {}, GITLAB_AUTH_HEADER),
null
)
if (res === null) return null
return { ...res, created_at }
}
/**
* 获取特定项目的GitLab流水线列表。
* @param project_id - 项目的ID。
* @param page - 结果的页码默认值1
* @returns 一个解析为流水线数组的promise。
*/
const getList = async (project_id: number, page = 1) => {
const URL = `${GITLAB_BASE_URL}/projects/${project_id}/pipelines`
const params = { scope: "finished", per_page: 100, page }
return gitlabReqWarp<Gitlab.Pipeline[]>(
() => netTool.get(URL, params, GITLAB_AUTH_HEADER),
[]
)
}
const pipeline = {
getDetail,
getList,
}
export default pipeline