-
Notifications
You must be signed in to change notification settings - Fork 436
/
Copy pathascode.go
44 lines (38 loc) · 1.45 KB
/
ascode.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
package sdk
import (
"database/sql/driver"
"encoding/json"
"errors"
"time"
)
type AsCodeEvent struct {
ID int64 `json:"id" db:"id"`
WorkflowID int64 `json:"workflow_id" db:"workflow_id"`
PullRequestID int64 `json:"pullrequest_id" db:"pullrequest_id"`
PullRequestURL string `json:"pullrequest_url" db:"pullrequest_url"`
Username string `json:"username" db:"username"`
CreateDate time.Time `json:"creation_date" db:"creation_date"`
FromRepo string `json:"from_repository" db:"from_repository"`
Migrate bool `json:"migrate" db:"migrate"`
Data AsCodeEventData `json:"data" db:"data"`
}
type AsCodeEventData struct {
Workflows AsCodeEventDataValue `json:"workflows"`
Pipelines AsCodeEventDataValue `json:"pipelines"`
Applications AsCodeEventDataValue `json:"applications"`
Environments AsCodeEventDataValue `json:"environments"`
}
type AsCodeEventDataValue map[int64]string
// Scan consumer data.
func (d *AsCodeEventData) Scan(src interface{}) error {
source, ok := src.([]byte)
if !ok {
return WithStack(errors.New("type assertion .([]byte) failed"))
}
return WrapError(JSONUnmarshal(source, d), "cannot unmarshal AsCodeEventData")
}
// Value returns driver.Value from consumer data.
func (d AsCodeEventData) Value() (driver.Value, error) {
j, err := json.Marshal(d)
return j, WrapError(err, "cannot marshal AsCodeEventData")
}