Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
G
go-gitlab
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
go
go-gitlab
Commits
c77a8230
Commit
c77a8230
authored
Feb 15, 2018
by
Lorac
Committed by
Sander van Harmelen
Feb 15, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add deployment API (#332)
parent
7886188c
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
130 additions
and
5 deletions
+130
-5
README.md
README.md
+1
-1
deployments.go
deployments.go
+121
-0
gitlab.go
gitlab.go
+8
-4
No files found.
README.md
View file @
c77a8230
...
...
@@ -27,7 +27,7 @@ to add new and/or missing endpoints. Currently the following services are suppor
-
[
]
Group-level Variables
-
[
x
]
Commits
-
[
]
Custom Attributes
-
[
]
Deployments
-
[
x
]
Deployments
-
[
x
]
Deploy Keys
-
[
x
]
Environments
-
[
x
]
Events
...
...
deployments.go
0 → 100644
View file @
c77a8230
//
// Copyright 2018, Sander van Harmelen
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package
gitlab
import
(
"fmt"
"net/url"
"time"
)
// DeploymentsService handles communication with the deployment related methods
// of the GitLab API.
//
// GitLab API docs: https://docs.gitlab.com/ce/api/deployments.html
type
DeploymentsService
struct
{
client
*
Client
}
// Deployment represents the Gitlab deployment
type
Deployment
struct
{
ID
int
`json:"id"`
IID
int
`json:"iid"`
Ref
string
`json:"ref"`
Sha
string
`json:"sha"`
CreatedAt
*
time
.
Time
`json:"created_at"`
User
*
ProjectUser
`json:"user"`
Environment
*
Environment
`json:"environment"`
Deployable
struct
{
ID
int
`json:"id"`
Status
string
`json:"status"`
Stage
string
`json:"stage"`
Name
string
`json:"name"`
Ref
string
`json:"ref"`
Tag
bool
`json:"tag"`
Coverage
float64
`json:"coverage"`
CreatedAt
*
time
.
Time
`json:"created_at"`
StartedAt
*
time
.
Time
`json:"started_at"`
FinishedAt
*
time
.
Time
`json:"finished_at"`
Duration
float64
`json:"duration"`
User
*
User
`json:"user"`
Commit
*
Commit
`json:"commit"`
Pipeline
struct
{
ID
int
`json:"id"`
Sha
string
`json:"sha"`
Ref
string
`json:"ref"`
Status
string
`json:"status"`
}
`json:"pipeline"`
Runner
*
Runner
`json:"runner"`
}
`json:"deployable"`
}
// ListProjectDeploymentsOptions represents the available ListProjectDeployments() options.
//
// GitLab API docs:
// https://docs.gitlab.com/ce/api/deployments.html#list-project-deployments
type
ListProjectDeploymentsOptions
struct
{
ListOptions
OrderBy
*
OrderByValue
`url:"order_by,omitempty" json:"order_by,omitempty"`
Sort
*
string
`url:"sort,omitempty" json:"sort,omitempty"`
}
// ListProjectDeployments gets a list of deployments in a project.
//
// GitLab API docs: https://docs.gitlab.com/ce/api/deployments.html#list-project-deployments
func
(
s
*
DeploymentsService
)
ListProjectDeployments
(
pid
interface
{},
opts
*
ListProjectDeploymentsOptions
,
options
...
OptionFunc
)
([]
*
Deployment
,
*
Response
,
error
)
{
project
,
err
:=
parseID
(
pid
)
if
err
!=
nil
{
return
nil
,
nil
,
err
}
u
:=
fmt
.
Sprintf
(
"projects/%s/deployments"
,
url
.
QueryEscape
(
project
))
req
,
err
:=
s
.
client
.
NewRequest
(
"GET"
,
u
,
opts
,
options
)
if
err
!=
nil
{
return
nil
,
nil
,
err
}
var
ds
[]
*
Deployment
resp
,
err
:=
s
.
client
.
Do
(
req
,
&
ds
)
if
err
!=
nil
{
return
nil
,
resp
,
err
}
return
ds
,
resp
,
err
}
// GetProjectDeployment get a deployment for a project.
//
// GitLab API docs: https://docs.gitlab.com/ce/api/deployments.html#get-a-specific-deployment
func
(
s
*
DeploymentsService
)
GetProjectDeployment
(
pid
interface
{},
deployment
int
,
options
...
OptionFunc
)
(
*
Deployment
,
*
Response
,
error
)
{
project
,
err
:=
parseID
(
pid
)
if
err
!=
nil
{
return
nil
,
nil
,
err
}
u
:=
fmt
.
Sprintf
(
"projects/%s/deployments/%d"
,
url
.
QueryEscape
(
project
),
deployment
)
req
,
err
:=
s
.
client
.
NewRequest
(
"GET"
,
u
,
nil
,
options
)
if
err
!=
nil
{
return
nil
,
nil
,
err
}
d
:=
new
(
Deployment
)
resp
,
err
:=
s
.
client
.
Do
(
req
,
d
)
if
err
!=
nil
{
return
nil
,
resp
,
err
}
return
d
,
resp
,
err
}
gitlab.go
View file @
c77a8230
...
...
@@ -184,10 +184,12 @@ type OrderByValue string
// These constants represent all valid order by values.
const
(
OrderByID
OrderByValue
=
"id"
OrderByStatus
OrderByValue
=
"status"
OrderByRef
OrderByValue
=
"ref"
OrderByUserID
OrderByValue
=
"user_id"
OrderByCreatedAt
OrderByValue
=
"created_at"
OrderByID
OrderByValue
=
"id"
OrderByIID
OrderByValue
=
"iid"
OrderByRef
OrderByValue
=
"ref"
OrderByStatus
OrderByValue
=
"status"
OrderByUserID
OrderByValue
=
"user_id"
)
// VisibilityValue represents a visibility level within GitLab.
...
...
@@ -265,6 +267,7 @@ type Client struct {
BuildVariables
*
BuildVariablesService
Commits
*
CommitsService
DeployKeys
*
DeployKeysService
Deployments
*
DeploymentsService
Environments
*
EnvironmentsService
Events
*
EventsService
Features
*
FeaturesService
...
...
@@ -348,6 +351,7 @@ func newClient(httpClient *http.Client, tokenType tokenType, token string) *Clie
c
.
BuildVariables
=
&
BuildVariablesService
{
client
:
c
}
c
.
Commits
=
&
CommitsService
{
client
:
c
}
c
.
DeployKeys
=
&
DeployKeysService
{
client
:
c
}
c
.
Deployments
=
&
DeploymentsService
{
client
:
c
}
c
.
Environments
=
&
EnvironmentsService
{
client
:
c
}
c
.
Events
=
&
EventsService
{
client
:
c
}
c
.
Features
=
&
FeaturesService
{
client
:
c
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment