tanuki-universe 0.0.4 → 0.0.5
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 +5 -5
- data/.gitignore +1 -0
- data/Gemfile +0 -2
- data/README.md +0 -8
- data/lib/tanuki/universe/commands/generate.rb +30 -27
- data/lib/tanuki/universe/gitlab_client.rb +12 -9
- data/lib/tanuki/universe/version.rb +1 -1
- metadata +3 -4
- data/config.json +0 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 9920783171c049d992a661b72817e0258aeec32011e7e6543100fea62c316e3b
|
4
|
+
data.tar.gz: 9a7b5df0e46325aed6ce43e363e50d3b148e98802c0216fddd81fa73855914f3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2a8f44feea09c1785b54ea9441ffd91006d4532de4bd7d65d42279b3eb92a6ddf92195e1c58807164ec756cea72a9268a8d76f365612a7728ac875d9a35455f6
|
7
|
+
data.tar.gz: 8ff47d43962de7b893617d3ff4273cab154b6d6ec2c925f534e4a9c5e795bde20b0c2bd7440eed71935be5135ae98685dfc6783b350be541f785758a0e49b546
|
data/.gitignore
CHANGED
data/Gemfile
CHANGED
data/README.md
CHANGED
@@ -4,14 +4,6 @@ Generate universe file from private Gitlab.
|
|
4
4
|
|
5
5
|
Please see the following URL(https://docs.chef.io/api_chef_server.html#universe).
|
6
6
|
|
7
|
-
## Caution(2017/11/09)⚠️
|
8
|
-
|
9
|
-
Please add this to Gemfile.
|
10
|
-
```
|
11
|
-
gem 'gitlab', git: 'https://github.com/NARKOZ/gitlab.git'
|
12
|
-
```
|
13
|
-
It needs to be obtained from master branch to require fixes not included in the latest release.
|
14
|
-
|
15
7
|
|
16
8
|
|
17
9
|
## Installation
|
@@ -23,36 +23,39 @@ module Tanuki
|
|
23
23
|
universe = {}
|
24
24
|
|
25
25
|
gitlab = Tanuki::Universe::GitlabClient.new(endpoint['options'])
|
26
|
-
gitlab.
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
git_tags.each do |tag|
|
33
|
-
|
34
|
-
begin
|
35
|
-
metadata = gitlab.get_metadata(project.id, tag.name)
|
36
|
-
rescue Exception => e
|
37
|
-
next if e.message == "undefined method `message' for {\"message\"=>\"404 File Not Found\"}:Hash"
|
38
|
-
end
|
26
|
+
groups = gitlab.get_groups
|
27
|
+
groups.each do |g|
|
28
|
+
group = gitlab.get_projects(g.id)
|
29
|
+
projects = group.projects
|
30
|
+
projects.each do |project|
|
31
|
+
versions = {}
|
39
32
|
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
33
|
+
git_tags = gitlab.get_git_tags(project['id'])
|
34
|
+
next if git_tags.count == 0
|
35
|
+
|
36
|
+
git_tags.each do |tag|
|
37
|
+
begin
|
38
|
+
metadata = gitlab.get_metadata(project['id'], tag.name)
|
39
|
+
rescue Exception => e
|
40
|
+
next if e.message == "undefined method `message' for {\"message\"=>\"404 File Not Found\"}:Hash"
|
41
|
+
end
|
42
|
+
parse_metadata(metadata)
|
43
|
+
|
44
|
+
dependencies_hash = Hash.new { |h,k| h[k] = {} }
|
45
|
+
if @dependencies.count == 0
|
46
|
+
dependencies_hash["dependencies"] = {}
|
47
|
+
end
|
48
|
+
@dependencies.each do |k, v|
|
49
|
+
v = '>= 0.0.0' if v.empty?
|
50
|
+
dependencies_hash["dependencies"] = dependencies_hash["dependencies"].update({k => v})
|
51
|
+
end
|
52
|
+
@location_path = project['web_url'] + '/repository/archive.tar.gz?ref=v' + @version
|
53
|
+
|
54
|
+
versions = versions.update({ @version => { "location_path" => @location_path, "location_type" => endpoint['type'] }.update(dependencies_hash)})
|
49
55
|
end
|
50
|
-
|
51
|
-
|
52
|
-
versions = versions.update({ @version => { "location_path" => @location_path, "location_type" => endpoint['type'] }.update(dependencies_hash)})
|
56
|
+
universe = universe.update({@cookbook_name => versions })
|
53
57
|
end
|
54
|
-
|
55
|
-
end
|
58
|
+
end
|
56
59
|
|
57
60
|
json_str = JSON.pretty_generate(universe)
|
58
61
|
puts json_str
|
@@ -6,23 +6,26 @@ module Tanuki
|
|
6
6
|
|
7
7
|
GITLAB_API_VERSION = 'v4'
|
8
8
|
|
9
|
-
attr_reader :
|
9
|
+
attr_reader :projects
|
10
10
|
|
11
11
|
def initialize(options)
|
12
12
|
parse_options(options)
|
13
|
-
endpoint = "#{@
|
14
|
-
@client = Gitlab.client(endpoint: endpoint, private_token: @
|
15
|
-
get_projects
|
13
|
+
endpoint = "#{@opt_url}api/#{GITLAB_API_VERSION}"
|
14
|
+
@client = Gitlab.client(endpoint: endpoint, private_token: @opt_private_token)
|
16
15
|
end
|
17
16
|
|
18
17
|
def parse_options(options)
|
19
|
-
@
|
20
|
-
@
|
21
|
-
@
|
18
|
+
@opt_group = ENV['GITLAB_COOKBOOKS_GROUP'] || options['group']
|
19
|
+
@opt_private_token = ENV['GITLAB_API_PRIVATE_TOKEN'] || options['private_token']
|
20
|
+
@opt_url = ENV['GITLAB_API_ENDPOINT'] || options['url']
|
22
21
|
end
|
23
22
|
|
24
|
-
def
|
25
|
-
@
|
23
|
+
def get_groups
|
24
|
+
@opt_groups = @client.group_search(@opt_group)
|
25
|
+
end
|
26
|
+
|
27
|
+
def get_projects(group_id)
|
28
|
+
@projects = @client.group(group_id)
|
26
29
|
end
|
27
30
|
|
28
31
|
def get_git_tags(project_id)
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tanuki-universe
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- kubihie
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2018-08-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: gitlab
|
@@ -99,7 +99,6 @@ files:
|
|
99
99
|
- bin/console
|
100
100
|
- bin/setup
|
101
101
|
- bin/tanuki-universe
|
102
|
-
- config.json
|
103
102
|
- lib/tanuki/universe.rb
|
104
103
|
- lib/tanuki/universe/.DS_Store
|
105
104
|
- lib/tanuki/universe/cli.rb
|
@@ -128,7 +127,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
128
127
|
version: '0'
|
129
128
|
requirements: []
|
130
129
|
rubyforge_project:
|
131
|
-
rubygems_version: 2.6
|
130
|
+
rubygems_version: 2.7.6
|
132
131
|
signing_key:
|
133
132
|
specification_version: 4
|
134
133
|
summary: Generate a universe file for Gitlab.
|