labclient 0.5.1 → 0.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/labclient/client/meta.rb +1 -0
- data/lib/labclient/client.rb +7 -3
- data/lib/labclient/files/file.rb +11 -0
- data/lib/labclient/files/show.rb +1 -1
- data/lib/labclient/groups/ldap/sync.rb +0 -1
- data/lib/labclient/http.rb +15 -5
- data/lib/labclient/issues/delete.rb +2 -2
- data/lib/labclient/jobs/artifacts.rb +24 -8
- data/lib/labclient/jobs/job.rb +10 -3
- data/lib/labclient/projects/methods.rb +6 -2
- data/lib/labclient/registry/repository.rb +5 -0
- data/lib/labclient/terraform/create.rb +23 -0
- data/lib/labclient/terraform/delete.rb +16 -0
- data/lib/labclient/terraform/lock.rb +17 -0
- data/lib/labclient/terraform/show.rb +22 -0
- data/lib/labclient/terraform/terraform_state.rb +11 -0
- data/lib/labclient/terraform/unlock.rb +16 -0
- data/lib/labclient/version.rb +1 -1
- data/lib/labclient.rb +15 -6
- metadata +9 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 866bed156a753e7148f538c380d453899259cae098cca155fba3ed81517d71c7
|
4
|
+
data.tar.gz: 2f52c954789f226ead00127e029428f2bc32f85757112211082d0a204ecd1c53
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 13c0c5f1201b8a4a4d77ad09b7496a6ea1c14af360e7d19cce1877467a6b6a70acb018025a36c2746532ffed98e258e6960b03436ebb24bc717d6c895f35af25
|
7
|
+
data.tar.gz: b1b10db7e1ab7a4ed4a428330d5fac26fead66f09c220b4147e236aa380066d40a439cb6beb60ab0afd321f4620ffe654250af6121114481d935756cc671a901
|
data/lib/labclient/client.rb
CHANGED
@@ -84,13 +84,17 @@ module LabClient
|
|
84
84
|
when LabStruct
|
85
85
|
klass ? klass.new(resp.data, resp, self) : resp.data
|
86
86
|
when Array
|
87
|
-
if
|
87
|
+
if klass.nil?
|
88
88
|
resp.data
|
89
89
|
else
|
90
|
-
PaginatedResponse.new(
|
90
|
+
PaginatedResponse.new(klass, resp, self)
|
91
91
|
end
|
92
|
+
# Return Response/Status Object if there is no output otherwise
|
93
|
+
when NilClass
|
94
|
+
resp
|
95
|
+
# Default handler / if klass defined store plain response in data
|
92
96
|
else
|
93
|
-
resp.data
|
97
|
+
klass ? klass.new({ data: resp.data, response: resp }, resp, self) : resp
|
94
98
|
end
|
95
99
|
end
|
96
100
|
end
|
data/lib/labclient/files/show.rb
CHANGED
@@ -45,7 +45,7 @@ module LabClient
|
|
45
45
|
# Path Name Encoding
|
46
46
|
file_path = CGI.escape(file_path)
|
47
47
|
|
48
|
-
client.request(:get, "projects/#{project_id}/repository/files/#{file_path}#{kind}",
|
48
|
+
client.request(:get, "projects/#{project_id}/repository/files/#{file_path}#{kind}", LabFile, ref: ref)
|
49
49
|
end
|
50
50
|
end
|
51
51
|
end
|
data/lib/labclient/http.rb
CHANGED
@@ -82,15 +82,25 @@ module Typhoeus
|
|
82
82
|
self
|
83
83
|
end
|
84
84
|
|
85
|
+
# Check if response body can be parsed
|
86
|
+
def json_body?
|
87
|
+
content_type = headers['content-type']
|
88
|
+
|
89
|
+
return false unless content_type
|
90
|
+
return true if content_type.include? 'application/json'
|
91
|
+
|
92
|
+
false
|
93
|
+
end
|
94
|
+
|
85
95
|
def process_body
|
86
|
-
if body.empty?
|
87
|
-
|
88
|
-
|
89
|
-
body
|
90
|
-
else
|
96
|
+
return nil if body.empty?
|
97
|
+
|
98
|
+
if json_body?
|
91
99
|
result = Oj.load(body, mode: :compat, symbol_keys: true, object_class: LabClient::LabStruct)
|
92
100
|
result.instance_variable_set(:@response, self) if result.instance_of?(LabClient::LabStruct)
|
93
101
|
result
|
102
|
+
else
|
103
|
+
body
|
94
104
|
end
|
95
105
|
end
|
96
106
|
|
@@ -3,10 +3,10 @@ module LabClient
|
|
3
3
|
# Specifics
|
4
4
|
class Issues < Common
|
5
5
|
doc 'Delete' do
|
6
|
-
desc '
|
6
|
+
desc 'Only for administrators and project owners. Deletes an issue. [Project ID, Issue IID]'
|
7
7
|
example 'client.issues.delete(5, 1)'
|
8
8
|
result <<~DOC
|
9
|
-
=> #<
|
9
|
+
=> #<TyphoeusResponse code: 204>
|
10
10
|
DOC
|
11
11
|
end
|
12
12
|
|
@@ -3,11 +3,15 @@ module LabClient
|
|
3
3
|
# Specifics
|
4
4
|
class Jobs < Common
|
5
5
|
doc 'Artifacts' do
|
6
|
-
desc 'Get the job’s artifacts zipped archive of a project. [Project ID, Job ID,
|
6
|
+
desc 'Get the job’s artifacts zipped archive of a project. [Project ID, Job ID, Job Token, File Path]'
|
7
7
|
example 'client.jobs.artifacts(264, 1)'
|
8
8
|
|
9
9
|
markdown <<~DOC
|
10
|
-
|
10
|
+
---
|
11
|
+
|
12
|
+
Two methods are available. `download_artifacts` will download and write to the local directory (or file path) and `artifacts`/`show_artifacts` which will return a `LabFile` with the key of `data` for the response result.
|
13
|
+
|
14
|
+
File Output will default to the current directory + job id + file extension. 14.zip (Still returning `LabFile`)
|
11
15
|
|
12
16
|
Job Token: To be used with triggers for multi-project pipelines. It should be invoked only inside `.gitlab-ci.yml`. Its value is always `$CI_JOB_TOKEN`.
|
13
17
|
DOC
|
@@ -16,7 +20,7 @@ module LabClient
|
|
16
20
|
doc 'Artifacts' do
|
17
21
|
desc 'Specific output location'
|
18
22
|
example <<~DOC
|
19
|
-
client.jobs.
|
23
|
+
client.jobs.download_artifacts(264, 1, '/tmp/output.zip')
|
20
24
|
DOC
|
21
25
|
end
|
22
26
|
|
@@ -24,6 +28,7 @@ module LabClient
|
|
24
28
|
desc 'via Project'
|
25
29
|
example <<~DOC
|
26
30
|
project = client.projects.show(264)
|
31
|
+
project.job_download_artifacts(7)
|
27
32
|
project.job_artifacts(7)
|
28
33
|
DOC
|
29
34
|
end
|
@@ -32,18 +37,29 @@ module LabClient
|
|
32
37
|
desc 'via Job'
|
33
38
|
example <<~DOC
|
34
39
|
job = client.jobs.show(264, 7)
|
35
|
-
job.
|
40
|
+
job.download_artifacts
|
41
|
+
job.show_artifacts
|
36
42
|
DOC
|
37
43
|
end
|
38
44
|
|
39
|
-
def artifacts(project_id, job_id,
|
45
|
+
def artifacts(project_id, job_id, job_token = nil)
|
40
46
|
job_id = format_id(job_id)
|
41
47
|
project_id = format_id(project_id)
|
42
|
-
file_path ||= "#{Dir.pwd}/#{job_id}.zip"
|
43
48
|
query = { job_token: job_token } if job_token
|
44
|
-
output = client.request(:get, "projects/#{project_id}/jobs/#{job_id}/artifacts", nil, query)
|
45
49
|
|
46
|
-
|
50
|
+
# Don't try to process output
|
51
|
+
client.request(:get, "projects/#{project_id}/jobs/#{job_id}/artifacts", LabFile, query)
|
52
|
+
end
|
53
|
+
|
54
|
+
# Helper to write immediately to a file
|
55
|
+
def download_artifacts(project_id, job_id, file_path = nil, job_token = nil)
|
56
|
+
file_path ||= "#{Dir.pwd}/#{job_id}.zip"
|
57
|
+
output = artifacts(project_id, job_id, job_token)
|
58
|
+
|
59
|
+
File.write(file_path, output.data) if output.success?
|
60
|
+
|
61
|
+
# Return LabFile
|
62
|
+
output
|
47
63
|
end
|
48
64
|
end
|
49
65
|
end
|
data/lib/labclient/jobs/job.rb
CHANGED
@@ -17,9 +17,16 @@ module LabClient
|
|
17
17
|
Pipeline.new(@table[:pipeline], response, client)
|
18
18
|
end
|
19
19
|
|
20
|
-
|
20
|
+
# File Write Response
|
21
|
+
def download_artifacts(file_path = nil, job_token = nil)
|
21
22
|
project_id = collect_project_id
|
22
|
-
client.jobs.
|
23
|
+
client.jobs.download_artifacts(project_id, id, job_token, file_path)
|
24
|
+
end
|
25
|
+
|
26
|
+
# LabFile Response
|
27
|
+
def show_artifacts(job_token = nil)
|
28
|
+
project_id = collect_project_id
|
29
|
+
client.jobs.artifacts(project_id, id, job_token)
|
23
30
|
end
|
24
31
|
|
25
32
|
def artifacts_path(artifacts_path, file_path = nil)
|
@@ -65,7 +72,7 @@ module LabClient
|
|
65
72
|
help do
|
66
73
|
@group_name = 'Jobs'
|
67
74
|
subtitle 'Job'
|
68
|
-
option '
|
75
|
+
option 'download_artifacts', 'Download Job artifacts. [File Path, Job Token]'
|
69
76
|
option 'artifacts_path', 'Download Job artifacts path. [File Path, Output Path]'
|
70
77
|
option 'trace', 'Get Job Output'
|
71
78
|
option 'cancel', 'Cancel Job'
|
@@ -226,8 +226,12 @@ module LabClient
|
|
226
226
|
client.jobs.show(id, job_id)
|
227
227
|
end
|
228
228
|
|
229
|
-
def
|
230
|
-
client.jobs.
|
229
|
+
def job_download_artifacts(job_id, file_path = nil, job_token = nil)
|
230
|
+
client.jobs.download_artifacts(id, job_id, file_path, job_token)
|
231
|
+
end
|
232
|
+
|
233
|
+
def job_artifacts(job_id, job_token = nil)
|
234
|
+
client.jobs.artifacts(id, job_id, job_token)
|
231
235
|
end
|
232
236
|
|
233
237
|
def job_artifacts_latest(branch_name, job_name, file_path = nil, job_token = nil)
|
@@ -0,0 +1,23 @@
|
|
1
|
+
# Top namespace
|
2
|
+
module LabClient
|
3
|
+
# Specifics
|
4
|
+
class Terraform < Common
|
5
|
+
doc 'Create' do
|
6
|
+
desc 'Creates a new State. [Project ID, StateName, LockID, Hash]'
|
7
|
+
example 'client.terraform.create(5, {})'
|
8
|
+
result '#<TerraformState serial: 4>'
|
9
|
+
|
10
|
+
markdown <<~DOC
|
11
|
+
Attributes for Hash
|
12
|
+
|
13
|
+
ID,Operation,Info,Who,Version,Created,Path
|
14
|
+
DOC
|
15
|
+
end
|
16
|
+
|
17
|
+
def create(project_id, name, xid, body)
|
18
|
+
project_id = format_id(project_id)
|
19
|
+
|
20
|
+
client.request(:post, "projects/#{project_id}/terraform/state/#{name}?ID=#{xid}", nil, body)
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
@@ -0,0 +1,16 @@
|
|
1
|
+
# Top namespace
|
2
|
+
module LabClient
|
3
|
+
# Specifics
|
4
|
+
class Terraform < Common
|
5
|
+
doc 'Delete' do
|
6
|
+
desc 'Delete Terraform State. [Project ID, StateName]'
|
7
|
+
example 'client.terraform.delete(5, :state_name)'
|
8
|
+
end
|
9
|
+
|
10
|
+
def delete(project_id, name)
|
11
|
+
project_id = format_id(project_id)
|
12
|
+
|
13
|
+
client.request(:delete, "projects/#{project_id}/terraform/state/#{name}")
|
14
|
+
end
|
15
|
+
end
|
16
|
+
end
|
@@ -0,0 +1,17 @@
|
|
1
|
+
# Top namespace
|
2
|
+
module LabClient
|
3
|
+
# Specifics
|
4
|
+
class Terraform < Common
|
5
|
+
doc 'Lock' do
|
6
|
+
desc 'Locks a new State. [Project ID, Hash]'
|
7
|
+
example 'client.wikis.Lock(5, content: "Lots of Stuff", title: "Title!")'
|
8
|
+
result '#<TerraformState slug: Title!>'
|
9
|
+
end
|
10
|
+
|
11
|
+
def lock(project_id, name, query)
|
12
|
+
project_id = format_id(project_id)
|
13
|
+
|
14
|
+
client.request(:post, "projects/#{project_id}/terraform/state/#{name}/lock", nil, query)
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
@@ -0,0 +1,22 @@
|
|
1
|
+
# Top namespace
|
2
|
+
module LabClient
|
3
|
+
# Specifics
|
4
|
+
class Terraform < Common
|
5
|
+
doc 'Show' do
|
6
|
+
desc 'Collect Terraform State Information'
|
7
|
+
example 'client.terraform.show(264, "README.md")'
|
8
|
+
|
9
|
+
markdown <<~DOC
|
10
|
+
Ref will default to `main`
|
11
|
+
|
12
|
+
Kind can be left empty or set to either :raw or :blame
|
13
|
+
DOC
|
14
|
+
end
|
15
|
+
|
16
|
+
def show(project_id, name)
|
17
|
+
project_id = format_id(project_id)
|
18
|
+
|
19
|
+
client.request(:get, "projects/#{project_id}/terraform/state/#{name}", TerraformState)
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|
@@ -0,0 +1,16 @@
|
|
1
|
+
# Top namespace
|
2
|
+
module LabClient
|
3
|
+
# Specifics
|
4
|
+
class Terraform < Common
|
5
|
+
doc 'Lock' do
|
6
|
+
desc 'Unlock State [Project ID, StateName Lock ID]'
|
7
|
+
example 'client.terraform.lock(5, :state_name, 123)'
|
8
|
+
end
|
9
|
+
|
10
|
+
def unlock(project_id, name, xid)
|
11
|
+
project_id = format_id(project_id)
|
12
|
+
|
13
|
+
client.request(:delete, "projects/#{project_id}/terraform/state/#{name}/lock?ID=#{xid}")
|
14
|
+
end
|
15
|
+
end
|
16
|
+
end
|
data/lib/labclient/version.rb
CHANGED
data/lib/labclient.rb
CHANGED
@@ -778,12 +778,6 @@ require 'labclient/repository/compare'
|
|
778
778
|
require 'labclient/repository/contributors'
|
779
779
|
require 'labclient/repository/merge_base'
|
780
780
|
|
781
|
-
# Files
|
782
|
-
require 'labclient/files/show'
|
783
|
-
require 'labclient/files/create'
|
784
|
-
require 'labclient/files/update'
|
785
|
-
require 'labclient/files/delete'
|
786
|
-
|
787
781
|
# Branches
|
788
782
|
require 'labclient/branches/list'
|
789
783
|
require 'labclient/branches/show'
|
@@ -866,6 +860,21 @@ require 'labclient/feature_flags/delete'
|
|
866
860
|
require 'labclient/feature_flags/list'
|
867
861
|
require 'labclient/feature_flags/feature_flag'
|
868
862
|
|
863
|
+
# Files
|
864
|
+
require 'labclient/files/file'
|
865
|
+
require 'labclient/files/show'
|
866
|
+
require 'labclient/files/create'
|
867
|
+
require 'labclient/files/update'
|
868
|
+
require 'labclient/files/delete'
|
869
|
+
|
870
|
+
# Terraform
|
871
|
+
require 'labclient/terraform/create'
|
872
|
+
require 'labclient/terraform/lock'
|
873
|
+
require 'labclient/terraform/unlock'
|
874
|
+
require 'labclient/terraform/delete'
|
875
|
+
require 'labclient/terraform/show'
|
876
|
+
require 'labclient/terraform/terraform_state'
|
877
|
+
|
869
878
|
require 'labclient/resource_labels/resource_label'
|
870
879
|
|
871
880
|
# Generators
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: labclient
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.6.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Davin Walker
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2022-02-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|
@@ -449,6 +449,7 @@ files:
|
|
449
449
|
- lib/labclient/feature_flags/list.rb
|
450
450
|
- lib/labclient/files/create.rb
|
451
451
|
- lib/labclient/files/delete.rb
|
452
|
+
- lib/labclient/files/file.rb
|
452
453
|
- lib/labclient/files/show.rb
|
453
454
|
- lib/labclient/files/update.rb
|
454
455
|
- lib/labclient/generator/generator.rb
|
@@ -892,6 +893,12 @@ files:
|
|
892
893
|
- lib/labclient/tags/show.rb
|
893
894
|
- lib/labclient/tags/tag.rb
|
894
895
|
- lib/labclient/tags/update.rb
|
896
|
+
- lib/labclient/terraform/create.rb
|
897
|
+
- lib/labclient/terraform/delete.rb
|
898
|
+
- lib/labclient/terraform/lock.rb
|
899
|
+
- lib/labclient/terraform/show.rb
|
900
|
+
- lib/labclient/terraform/terraform_state.rb
|
901
|
+
- lib/labclient/terraform/unlock.rb
|
895
902
|
- lib/labclient/todos/list.rb
|
896
903
|
- lib/labclient/todos/mark_all_done.rb
|
897
904
|
- lib/labclient/todos/mark_done.rb
|