feat(net-tool): 添加 GitLab Web 钩子功能以支持钩子的获取和添加
All checks were successful
/ release (push) Successful in 27s

This commit is contained in:
zhaoyingbo 2024-12-20 10:24:31 +00:00
parent 07353b00aa
commit 63b78fe797
2 changed files with 34 additions and 0 deletions

View File

@ -0,0 +1,29 @@
import { ProjectHookSchema } from "@gitbeaker/rest"
import GitlabBaseService from "./base"
class Hook extends GitlabBaseService {
/**
* GitLab Web
* @returns {Promise<ProjectHookSchema[]>}
*/
async getList() {
const URL = `/projects/${this.project_id}/hooks`
return this.errorWarp<ProjectHookSchema[]>(() => this.get(URL), [])
}
/**
* GitLab Web
* @param {Partial<ProjectHookSchema>} hook
* @returns {Promise<ProjectHookSchema | null>}
*/
async add(hook: Partial<ProjectHookSchema>) {
const URL = `/projects/${this.project_id}/hooks`
return this.errorWarp<ProjectHookSchema | null>(
() => this.post(URL, hook),
null
)
}
}
export default Hook

View File

@ -1,6 +1,7 @@
import Badge from "./badge"
import Commit from "./commit"
import Discussions from "./discussions"
import Hook from "./hook"
import MergeRequests from "./mergeRequests"
import Notes from "./notes"
import Pipelines from "./pipelines"
@ -16,6 +17,7 @@ class GitlabService {
pipelines: Pipelines
project: Project
repository: Repository
hook: Hook
/**
* GitLab
@ -40,6 +42,7 @@ class GitlabService {
this.pipelines = new Pipelines(baseUrl, authKey, requestId)
this.project = new Project(baseUrl, authKey, requestId)
this.repository = new Repository(baseUrl, authKey, requestId)
this.hook = new Hook(baseUrl, authKey, requestId)
}
/**
@ -55,6 +58,7 @@ class GitlabService {
this.pipelines.project_id = project_id
this.project.project_id = project_id
this.repository.project_id = project_id
this.hook.project_id = project_id
}
/**
@ -70,6 +74,7 @@ class GitlabService {
this.pipelines.merge_request_iid = merge_request_iid
this.project.merge_request_iid = merge_request_iid
this.repository.merge_request_iid = merge_request_iid
this.hook.merge_request_iid = merge_request_iid
}
}