-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
67 lines (54 loc) · 1.62 KB
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
package main
import (
"fmt"
"io/ioutil"
"net/http"
"os"
"strconv"
"github.com/buger/jsonparser"
)
// gitlab-pipeline-trigger https://gitlab.com XXXXX projectid pipelineid jobname
func main() {
uri := os.Args[1]
token := os.Args[2]
projectID := os.Args[3]
pipelineID := os.Args[4]
jobName := os.Args[5]
resultData := getPipelineJobs(uri, token, projectID, pipelineID)
jobID := findJobIDByName(resultData, jobName)
triggerJob(uri, token, projectID, jobID)
}
func getPipelineJobs(uri string, token string, projectID string, pipelineID string) []byte {
url := uri + "/api/v4/projects/" + projectID + "/pipelines/" + pipelineID + "/jobs"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("PRIVATE-TOKEN", token)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
resultData, _ := ioutil.ReadAll(res.Body)
return resultData
}
func findJobIDByName(resultData []byte, jobName string) int {
count := 0
jobID := 0
jsonparser.ArrayEach(
resultData,
func(value []byte, dataType jsonparser.ValueType, offset int, err error) {
name, _ := jsonparser.GetString(value, "name")
if jobName == name {
id, _ := jsonparser.GetInt(resultData, "["+strconv.Itoa(count)+"]", "id")
jobID = int(id)
}
count++
},
)
return jobID
}
func triggerJob(uri string, token string, projectID string, jobID int) {
url := uri + "/api/v4/projects/" + projectID + "/jobs/" + strconv.Itoa(jobID) + "/play"
req, _ := http.NewRequest("POST", url, nil)
req.Header.Add("PRIVATE-TOKEN", token)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := ioutil.ReadAll(res.Body)
fmt.Println(string(body))
}