tanuki-universe 0.0.3
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 +7 -0
- data/.gitignore +15 -0
- data/.rspec +2 -0
- data/.travis.yml +5 -0
- data/Gemfile +6 -0
- data/LICENSE.txt +21 -0
- data/README.md +71 -0
- data/Rakefile +6 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/bin/tanuki-universe +4 -0
- data/lib/tanuki/universe.rb +11 -0
- data/lib/tanuki/universe/.DS_Store +0 -0
- data/lib/tanuki/universe/cli.rb +28 -0
- data/lib/tanuki/universe/commands/generate.rb +77 -0
- data/lib/tanuki/universe/config.rb +28 -0
- data/lib/tanuki/universe/gitlab_client.rb +38 -0
- data/lib/tanuki/universe/version.rb +5 -0
- data/tanuki-universe.gemspec +39 -0
- metadata +134 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 453719d9f5eb5c3ea124f725fe7dc7b0ce41da2d
|
4
|
+
data.tar.gz: 208fa3fdddc0fef4ef7f578591b7d1cc67c89403
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: e3236e5a064bfba1c41bc618211666526870dd0cf28406d37d299f009972643efda331594b8e15c337d3de5580c6b61276c273314ea10d6ec4c1c8cf70712781
|
7
|
+
data.tar.gz: a7cd338eac0a09b89e0bc0d8331783f1b34119dd38d7d852f6b886382736fae3f3ee01c382ba0913adb44e26f1d6c144872ebe6f4741115f73d5894df1b96a49
|
data/.gitignore
ADDED
data/.rspec
ADDED
data/.travis.yml
ADDED
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2017 kubihie
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,71 @@
|
|
1
|
+
# Tanuki::Universe
|
2
|
+
|
3
|
+
Generate universe file from private Gitlab.
|
4
|
+
|
5
|
+
Please see the following URL(https://docs.chef.io/api_chef_server.html#universe).
|
6
|
+
|
7
|
+
## Installation
|
8
|
+
|
9
|
+
Add this line to your application's Gemfile:
|
10
|
+
|
11
|
+
```ruby
|
12
|
+
gem 'tanuki-universe'
|
13
|
+
```
|
14
|
+
|
15
|
+
And then execute:
|
16
|
+
|
17
|
+
$ bundle
|
18
|
+
|
19
|
+
Or install it yourself as:
|
20
|
+
|
21
|
+
$ gem install tanuki-universe
|
22
|
+
|
23
|
+
## Usage
|
24
|
+
|
25
|
+
Create config file. (Default is 'config.json')
|
26
|
+
|
27
|
+
```
|
28
|
+
{
|
29
|
+
"endpoints": [
|
30
|
+
{
|
31
|
+
"type": "gitlab",
|
32
|
+
"options": {
|
33
|
+
"group": "cookbooks_group_name",
|
34
|
+
"private_token": "ZAQWSXCDERFVBGTYHN",
|
35
|
+
"url": "https://your_gitlab_domain/"
|
36
|
+
}
|
37
|
+
}
|
38
|
+
]
|
39
|
+
}
|
40
|
+
```
|
41
|
+
|
42
|
+
"group" can be omitted. In that case, It will search for Cookbook from all repositories.
|
43
|
+
|
44
|
+
You can also use environment variables.
|
45
|
+
- ENV['GITLAB_API_ENDPOINT']
|
46
|
+
- ENV['GITLAB_API_PRIVATETOKEN']
|
47
|
+
- ENV['GITLAB_COOKBOOKS_GROUP']
|
48
|
+
|
49
|
+
In this case 'config.json' is unnecessary.
|
50
|
+
|
51
|
+
```
|
52
|
+
Commands:
|
53
|
+
tanuki-universe generate # Generate universe file.
|
54
|
+
tanuki-universe help [COMMAND] # Describe available commands or one specific command
|
55
|
+
tanuki-universe version # Display tanuki-universe version.
|
56
|
+
```
|
57
|
+
|
58
|
+
## Development
|
59
|
+
|
60
|
+
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
61
|
+
|
62
|
+
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
63
|
+
|
64
|
+
## Contributing
|
65
|
+
|
66
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/kubihie/tanuki-universe.
|
67
|
+
|
68
|
+
|
69
|
+
## License
|
70
|
+
|
71
|
+
The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
|
data/Rakefile
ADDED
data/bin/console
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "bundler/setup"
|
4
|
+
require "tanuki/universe"
|
5
|
+
|
6
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
7
|
+
# with your gem easier. You can also use a different console, if you like.
|
8
|
+
|
9
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
10
|
+
# require "pry"
|
11
|
+
# Pry.start
|
12
|
+
|
13
|
+
require "irb"
|
14
|
+
IRB.start(__FILE__)
|
data/bin/setup
ADDED
data/bin/tanuki-universe
ADDED
Binary file
|
@@ -0,0 +1,28 @@
|
|
1
|
+
require 'thor'
|
2
|
+
|
3
|
+
require 'tanuki/universe'
|
4
|
+
require 'tanuki/universe/version'
|
5
|
+
require 'tanuki/universe/commands/generate'
|
6
|
+
|
7
|
+
module Tanuki
|
8
|
+
module Universe
|
9
|
+
class Cli < Thor
|
10
|
+
include Thor::Actions
|
11
|
+
|
12
|
+
DEFAULT_CONFIG = './config.json'
|
13
|
+
|
14
|
+
desc 'version', 'Display tanuki-universe version.'
|
15
|
+
def version
|
16
|
+
puts Tanuki::Universe::VERSION
|
17
|
+
end
|
18
|
+
|
19
|
+
desc 'generate', 'Generate universe file.'
|
20
|
+
method_option :config, aliases: '-c', default: DEFAULT_CONFIG
|
21
|
+
def generate
|
22
|
+
Tanuki::Universe::Commands::Generate.new(options['config'])
|
23
|
+
end
|
24
|
+
|
25
|
+
end
|
26
|
+
|
27
|
+
end
|
28
|
+
end
|
@@ -0,0 +1,77 @@
|
|
1
|
+
require 'json'
|
2
|
+
require 'gitlab'
|
3
|
+
|
4
|
+
require 'tanuki/universe/gitlab_client'
|
5
|
+
require 'tanuki/universe/config'
|
6
|
+
|
7
|
+
module Tanuki
|
8
|
+
module Universe
|
9
|
+
module Commands
|
10
|
+
class Generate
|
11
|
+
|
12
|
+
def initialize(config_file)
|
13
|
+
config = Tanuki::Universe::Config.new(config_file)
|
14
|
+
|
15
|
+
config.endpoints.each do |endpoint|
|
16
|
+
case endpoint['type']
|
17
|
+
when 'gitlab' then type_gitlab(endpoint)
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|
21
|
+
|
22
|
+
def type_gitlab(endpoint)
|
23
|
+
universe = {}
|
24
|
+
|
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
|
39
|
+
|
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})
|
49
|
+
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)})
|
53
|
+
end
|
54
|
+
universe = universe.update({@cookbook_name => versions })
|
55
|
+
end
|
56
|
+
|
57
|
+
json_str = JSON.pretty_generate(universe)
|
58
|
+
puts json_str
|
59
|
+
end
|
60
|
+
|
61
|
+
def parse_metadata(metadata)
|
62
|
+
@dependencies = {}
|
63
|
+
metadata.each_line do |line|
|
64
|
+
@cookbook_name = line.gsub(/^name|'/, '').strip if line.match(/^name/)
|
65
|
+
@version = line.gsub(/^version|'/, '').strip if line.match(/^version/)
|
66
|
+
if line.match(/^depends/)
|
67
|
+
depends_cookbook_name = line.split(',')[0].gsub(/^depends|'/, '').strip
|
68
|
+
depends_version = line.split(',')[1].to_s.gsub(/'/, '').strip
|
69
|
+
@dependencies = @dependencies.update({depends_cookbook_name => depends_version})
|
70
|
+
end
|
71
|
+
end
|
72
|
+
end
|
73
|
+
|
74
|
+
end
|
75
|
+
end
|
76
|
+
end
|
77
|
+
end
|
@@ -0,0 +1,28 @@
|
|
1
|
+
require 'json'
|
2
|
+
|
3
|
+
module Tanuki
|
4
|
+
module Universe
|
5
|
+
class Config
|
6
|
+
|
7
|
+
attr_reader :endpoints
|
8
|
+
|
9
|
+
def initialize(config_path)
|
10
|
+
@config_path = config_path
|
11
|
+
parse_config_file
|
12
|
+
end
|
13
|
+
|
14
|
+
def parse_config_file
|
15
|
+
parsed_config = {}
|
16
|
+
File.open(@config_path) do |file|
|
17
|
+
parsed_config = JSON.load(file)
|
18
|
+
end
|
19
|
+
global_config(parsed_config)
|
20
|
+
end
|
21
|
+
|
22
|
+
def global_config(config)
|
23
|
+
@endpoints = config['endpoints']
|
24
|
+
#@build_interval = config['build_interval']
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
@@ -0,0 +1,38 @@
|
|
1
|
+
require 'gitlab'
|
2
|
+
|
3
|
+
module Tanuki
|
4
|
+
module Universe
|
5
|
+
class GitlabClient
|
6
|
+
|
7
|
+
GITLAB_API_VERSION = 'v4'
|
8
|
+
|
9
|
+
attr_reader :group, :private_token, :url, :projects
|
10
|
+
|
11
|
+
def initialize(options)
|
12
|
+
parse_options(options)
|
13
|
+
endpoint = "#{@url}api/#{GITLAB_API_VERSION}"
|
14
|
+
@client = Gitlab.client(endpoint: endpoint, private_token: @private_token)
|
15
|
+
get_projects
|
16
|
+
end
|
17
|
+
|
18
|
+
def parse_options(options)
|
19
|
+
@group = ENV['GITLAB_COOKBOOKS_GROUP'] || options['group']
|
20
|
+
@private_token = ENV['GITLAB_API_PRIVATETOKEN'] || options['private_token']
|
21
|
+
@url = ENV['GITLAB_API_ENDPOINT'] || options['url']
|
22
|
+
end
|
23
|
+
|
24
|
+
def get_projects
|
25
|
+
@projects = @client.project_search(@group)
|
26
|
+
end
|
27
|
+
|
28
|
+
def get_git_tags(project_id)
|
29
|
+
@client.tags(project_id)
|
30
|
+
end
|
31
|
+
|
32
|
+
def get_metadata(project_id, ref)
|
33
|
+
@client.file_contents(project_id, 'metadata.rb', ref)
|
34
|
+
end
|
35
|
+
|
36
|
+
end
|
37
|
+
end
|
38
|
+
end
|
@@ -0,0 +1,39 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'tanuki/universe/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "tanuki-universe"
|
8
|
+
spec.version = Tanuki::Universe::VERSION
|
9
|
+
spec.authors = "kubihie"
|
10
|
+
spec.email = "kubihie@gmail.com"
|
11
|
+
|
12
|
+
spec.summary = 'Generate a universe file for Gitlab.'
|
13
|
+
spec.description = 'Generate a universe file for Gitlab.'
|
14
|
+
spec.homepage = 'https://github.com/kubihie/tanuki-universe'
|
15
|
+
spec.license = "MIT"
|
16
|
+
|
17
|
+
# Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
|
18
|
+
# to allow pushing to a single host or delete this section to allow pushing to any host.
|
19
|
+
#if spec.respond_to?(:metadata)
|
20
|
+
# spec.metadata['allowed_push_host'] = "TODO: Set to 'http://mygemserver.com'"
|
21
|
+
#else
|
22
|
+
# raise "RubyGems 2.0 or newer is required to protect against " \
|
23
|
+
# "public gem pushes."
|
24
|
+
#end
|
25
|
+
|
26
|
+
spec.files = `git ls-files -z`.split("\x0").reject do |f|
|
27
|
+
f.match(%r{^(test|spec|features)/})
|
28
|
+
end
|
29
|
+
spec.bindir = "bin"
|
30
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
31
|
+
spec.require_paths = ["lib"]
|
32
|
+
|
33
|
+
spec.add_dependency 'gitlab'
|
34
|
+
spec.add_dependency 'thor', '~> 0.20'
|
35
|
+
|
36
|
+
spec.add_development_dependency "bundler", "~> 1.14"
|
37
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
38
|
+
spec.add_development_dependency "rspec", "~> 3.0"
|
39
|
+
end
|
metadata
ADDED
@@ -0,0 +1,134 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: tanuki-universe
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.3
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- kubihie
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2017-11-09 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: gitlab
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ">="
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ">="
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: thor
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0.20'
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0.20'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: bundler
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '1.14'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '1.14'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: rake
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - "~>"
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '10.0'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - "~>"
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '10.0'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: rspec
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - "~>"
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '3.0'
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - "~>"
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '3.0'
|
83
|
+
description: Generate a universe file for Gitlab.
|
84
|
+
email: kubihie@gmail.com
|
85
|
+
executables:
|
86
|
+
- console
|
87
|
+
- setup
|
88
|
+
- tanuki-universe
|
89
|
+
extensions: []
|
90
|
+
extra_rdoc_files: []
|
91
|
+
files:
|
92
|
+
- ".gitignore"
|
93
|
+
- ".rspec"
|
94
|
+
- ".travis.yml"
|
95
|
+
- Gemfile
|
96
|
+
- LICENSE.txt
|
97
|
+
- README.md
|
98
|
+
- Rakefile
|
99
|
+
- bin/console
|
100
|
+
- bin/setup
|
101
|
+
- bin/tanuki-universe
|
102
|
+
- lib/tanuki/universe.rb
|
103
|
+
- lib/tanuki/universe/.DS_Store
|
104
|
+
- lib/tanuki/universe/cli.rb
|
105
|
+
- lib/tanuki/universe/commands/generate.rb
|
106
|
+
- lib/tanuki/universe/config.rb
|
107
|
+
- lib/tanuki/universe/gitlab_client.rb
|
108
|
+
- lib/tanuki/universe/version.rb
|
109
|
+
- tanuki-universe.gemspec
|
110
|
+
homepage: https://github.com/kubihie/tanuki-universe
|
111
|
+
licenses:
|
112
|
+
- MIT
|
113
|
+
metadata: {}
|
114
|
+
post_install_message:
|
115
|
+
rdoc_options: []
|
116
|
+
require_paths:
|
117
|
+
- lib
|
118
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
119
|
+
requirements:
|
120
|
+
- - ">="
|
121
|
+
- !ruby/object:Gem::Version
|
122
|
+
version: '0'
|
123
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
124
|
+
requirements:
|
125
|
+
- - ">="
|
126
|
+
- !ruby/object:Gem::Version
|
127
|
+
version: '0'
|
128
|
+
requirements: []
|
129
|
+
rubyforge_project:
|
130
|
+
rubygems_version: 2.6.11
|
131
|
+
signing_key:
|
132
|
+
specification_version: 4
|
133
|
+
summary: Generate a universe file for Gitlab.
|
134
|
+
test_files: []
|