-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathcreate.go
127 lines (107 loc) · 2.89 KB
/
create.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
// SPDX-License-Identifier: Apache-2.0
package step
import (
"fmt"
"net/http"
"time"
"github.com/gin-gonic/gin"
"github.com/sirupsen/logrus"
"github.com/go-vela/server/api/types"
"github.com/go-vela/server/constants"
"github.com/go-vela/server/database"
"github.com/go-vela/server/router/middleware/build"
"github.com/go-vela/server/router/middleware/repo"
"github.com/go-vela/server/util"
)
// swagger:operation POST /api/v1/repos/{org}/{repo}/builds/{build}/steps steps CreateStep
//
// Create a step for a build
//
// ---
// produces:
// - application/json
// parameters:
// - in: path
// name: org
// description: Name of the organization
// required: true
// type: string
// - in: path
// name: repo
// description: Name of the repository
// required: true
// type: string
// - in: path
// name: build
// description: Build number
// required: true
// type: integer
// - in: body
// name: body
// description: Step object to create
// required: true
// schema:
// "$ref": "#/definitions/Step"
// security:
// - ApiKeyAuth: []
// responses:
// '201':
// description: Successfully created the step
// schema:
// "$ref": "#/definitions/Step"
// '400':
// description: Invalid request payload or path
// schema:
// "$ref": "#/definitions/Error"
// '401':
// description: Unauthorized
// schema:
// "$ref": "#/definitions/Error"
// '404':
// description: Not found
// schema:
// "$ref": "#/definitions/Error"
// '500':
// description: Unexpected server error
// schema:
// "$ref": "#/definitions/Error"
// CreateStep represents the API handler to create
// a step for a build.
func CreateStep(c *gin.Context) {
// capture middleware values
l := c.MustGet("logger").(*logrus.Entry)
b := build.Retrieve(c)
r := repo.Retrieve(c)
ctx := c.Request.Context()
entry := fmt.Sprintf("%s/%d", r.GetFullName(), b.GetNumber())
l.Debugf("creating new step for build %s", entry)
// capture body from API request
input := new(types.Step)
err := c.Bind(input)
if err != nil {
retErr := fmt.Errorf("unable to decode JSON for new step for build %s: %w", entry, err)
util.HandleError(c, http.StatusBadRequest, retErr)
return
}
// update fields in step object
input.SetRepoID(r.GetID())
input.SetBuildID(b.GetID())
if len(input.GetStatus()) == 0 {
input.SetStatus(constants.StatusPending)
}
if input.GetCreated() == 0 {
input.SetCreated(time.Now().UTC().Unix())
}
// send API call to create the step
s, err := database.FromContext(c).CreateStep(ctx, input)
if err != nil {
retErr := fmt.Errorf("unable to create step for build %s: %w", entry, err)
util.HandleError(c, http.StatusInternalServerError, retErr)
return
}
l.WithFields(logrus.Fields{
"step": s.GetName(),
"step_id": s.GetID(),
}).Infof("step %s created for build %s", s.GetName(), entry)
c.JSON(http.StatusCreated, s)
}