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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: f56b4a6cfc038b35090d24940243f9bc504304de
4
- data.tar.gz: 34dbac62871e7b97641a728392359a42faa256b0
2
+ SHA256:
3
+ metadata.gz: 9920783171c049d992a661b72817e0258aeec32011e7e6543100fea62c316e3b
4
+ data.tar.gz: 9a7b5df0e46325aed6ce43e363e50d3b148e98802c0216fddd81fa73855914f3
5
5
  SHA512:
6
- metadata.gz: 5d176303ac2b497f7032a48111942a330a91a0550773162e8e86a6fe996e826a44efe3fc9e46165dcad4d542beec572674efd509a6bdc65e113e935374acf996
7
- data.tar.gz: b0d6937732e25a76e1c3b940477a624b7da4db4b70fb97fbe408e1e6611ad3f4ab572c53613a3e627c7f76c2014fe07900941cf2a6379b82af69d8fdb907c65c
6
+ metadata.gz: 2a8f44feea09c1785b54ea9441ffd91006d4532de4bd7d65d42279b3eb92a6ddf92195e1c58807164ec756cea72a9268a8d76f365612a7728ac875d9a35455f6
7
+ data.tar.gz: 8ff47d43962de7b893617d3ff4273cab154b6d6ec2c925f534e4a9c5e795bde20b0c2bd7440eed71935be5135ae98685dfc6783b350be541f785758a0e49b546
data/.gitignore CHANGED
@@ -12,3 +12,4 @@
12
12
  .rspec_status
13
13
 
14
14
  vendor/
15
+ config.json
data/Gemfile CHANGED
@@ -2,5 +2,3 @@ source 'https://rubygems.org'
2
2
 
3
3
  # Specify your gem's dependencies in tanuki-universe.gemspec
4
4
  gemspec
5
-
6
- gem 'gitlab', git: 'https://github.com/NARKOZ/gitlab.git'
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.projects.auto_paginate do |project|
27
- versions = {}
28
-
29
- git_tags = gitlab.get_git_tags(project.id)
30
- next if git_tags.count == 0
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
- parse_metadata(metadata)
41
-
42
- dependencies_hash = Hash.new { |h,k| h[k] = {} }
43
- if @dependencies.count == 0
44
- dependencies_hash["dependencies"] = {}
45
- end
46
- @dependencies.each do |k, v|
47
- v = '>= 0.0.0' if v.empty?
48
- dependencies_hash["dependencies"] = dependencies_hash["dependencies"].update({k => v})
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
- @location_path = project.web_url + '/repository/archive.tar.gz?ref=v' + @version
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
- universe = universe.update({@cookbook_name => versions })
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 :group, :private_token, :url, :projects
9
+ attr_reader :projects
10
10
 
11
11
  def initialize(options)
12
12
  parse_options(options)
13
- endpoint = "#{@url}api/#{GITLAB_API_VERSION}"
14
- @client = Gitlab.client(endpoint: endpoint, private_token: @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
- @group = ENV['GITLAB_COOKBOOKS_GROUP'] || options['group']
20
- @private_token = ENV['GITLAB_API_PRIVATE_TOKEN'] || options['private_token']
21
- @url = ENV['GITLAB_API_ENDPOINT'] || options['url']
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 get_projects
25
- @projects = @client.project_search(@group)
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)
@@ -1,5 +1,5 @@
1
1
  module Tanuki
2
2
  module Universe
3
- VERSION = "0.0.4"
3
+ VERSION = "0.0.5"
4
4
  end
5
5
  end
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
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: 2017-11-09 00:00:00.000000000 Z
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.11
130
+ rubygems_version: 2.7.6
132
131
  signing_key:
133
132
  specification_version: 4
134
133
  summary: Generate a universe file for Gitlab.
@@ -1,8 +0,0 @@
1
- {
2
- "endpoints": [
3
- {
4
- "type": "gitlab",
5
- "options": {}
6
- }
7
- ]
8
- }