fulmar-plugin-core4 1.1.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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 5fbad8f48048269c070a10895495f2831de26704
4
+ data.tar.gz: 6d17a6a11d143e3eccd6efeb9e13c4beb67cecd8
5
+ SHA512:
6
+ metadata.gz: 8af4e0adedb661eb3323ca6c52377af6c425c38b2ef588101a5a38999db362a59eddb96a2300a46f42d85fec1cb020ed4088ffd5d1ca46f960d3d41a4a07a1b7
7
+ data.tar.gz: 155bce9d8d24b0fda1a55984137709d832fcd35746ca049e182339daff2cc20ac209b7d316841ef835c46e8cb1305cde7c97a98dcc8da1d06ace58d114bd1ffb
data/.gitignore ADDED
@@ -0,0 +1,11 @@
1
+ /.idea
2
+ /.bundle/
3
+ /.yardoc
4
+ /Gemfile.lock
5
+ /_yardoc/
6
+ /coverage/
7
+ /doc/
8
+ /pkg/
9
+ /spec/reports/
10
+ /tmp/
11
+ /*.gem
data/.rspec ADDED
@@ -0,0 +1 @@
1
+ --color
data/.rubocop.yml ADDED
@@ -0,0 +1,5 @@
1
+ AllCops:
2
+ Include:
3
+ - '**/Fulmarfile'
4
+ Metrics/LineLength:
5
+ Max: 120
@@ -0,0 +1,13 @@
1
+ # Contributor Code of Conduct
2
+
3
+ As contributors and maintainers of this project, we pledge to respect all people who contribute through reporting issues, posting feature requests, updating documentation, submitting pull requests or patches, and other activities.
4
+
5
+ We are committed to making participation in this project a harassment-free experience for everyone, regardless of level of experience, gender, gender identity and expression, sexual orientation, disability, personal appearance, body size, race, ethnicity, age, or religion.
6
+
7
+ Examples of unacceptable behavior by participants include the use of sexual language or imagery, derogatory comments or personal attacks, trolling, public or private harassment, insults, or other unprofessional conduct.
8
+
9
+ Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct. Project maintainers who do not follow the Code of Conduct may be removed from the project team.
10
+
11
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by opening an issue or contacting one or more of the project maintainers.
12
+
13
+ This Code of Conduct is adapted from the [Contributor Covenant](http://contributor-covenant.org), version 1.0.0, available at [http://contributor-covenant.org/version/1/0/0/](http://contributor-covenant.org/version/1/0/0/)
data/Gemfile ADDED
@@ -0,0 +1,3 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2017 Gerrit Visscher
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,65 @@
1
+ # Fulmar::Plugin::CORE4
2
+
3
+ This plugin combines several helping tasks and services for CORE4 GmbH & Co. KG.
4
+ If you find it useful anyway, feel free to use it.
5
+
6
+ ## Installation
7
+
8
+ This plugin will be installable via gem install `fulmar-plugin-core4` when it is working. It will need Fulmar 2.
9
+ You can also checkout this repo and run `gem build fulmar-plugin-core4.gemspec` and
10
+ `gem install fulmar-plugin-core4*.gem`
11
+
12
+ ## Usage
13
+
14
+ ### fulmar test:config
15
+
16
+ This plugin adds an additional test to the `test:config` task. It checks
17
+ your host file (e.g. /etc/hosts) for duplicate entries. These may occur
18
+ when a vagrant machine is not uninstalled via `vagrant destroy`.
19
+
20
+ ### fulmar vagrant:update
21
+
22
+ The plugin provides a task to update local development environment from
23
+ cached data on the internal storage server.
24
+
25
+ You can configure the asset and database urls for the internal cache
26
+ server within the plugin configuration. It should look something like this:
27
+
28
+ ```yaml
29
+ plugin:
30
+ core4:
31
+ sync:
32
+ to: 'vagrant:neos'
33
+ database_url: https://storage.core4.de/xxx/yyy.sql.gz
34
+ assets_url: https://storage.core4.de/xxx/zzz.tar.gz
35
+ assets_path: /srv/neos/Data/Persistent
36
+ ```
37
+
38
+ `assets_url` and `assets_path` may be arrays of the same size. Fulmar
39
+ will then iterate over all file and extract them to the given directories:
40
+
41
+ ```yaml
42
+ plugin:
43
+ core4:
44
+ sync:
45
+ to: 'vagrant:neos'
46
+ database_url: https://storage.core4.de/xxx/yyy.sql.gz
47
+ assets_url:
48
+ - https://storage.core4.de/xxx/zzz1.tar.gz
49
+ - https://storage.core4.de/xxx/zzz2.tar.gz
50
+ assets_path:
51
+ - /srv/neos/Data/Persistent
52
+ - /srv/neos/Data/Something
53
+ ```
54
+
55
+
56
+ ## Contributing
57
+
58
+ Bug reports and pull requests are welcome on GitHub at https://github.com/CORE4/fulmar-plugin-core4.
59
+ This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to
60
+ adhere to the [Contributor Covenant](contributor-covenant.org) code of conduct.
61
+
62
+
63
+ ## License
64
+
65
+ The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
data/Rakefile ADDED
@@ -0,0 +1 @@
1
+ require 'bundler/gem_tasks'
@@ -0,0 +1,27 @@
1
+ # coding: utf-8
2
+
3
+ lib = File.expand_path('../lib', __FILE__)
4
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
5
+ require 'fulmar/plugin/core4/version'
6
+
7
+ Gem::Specification.new do |spec|
8
+ spec.name = 'fulmar-plugin-core4'
9
+ spec.version = Fulmar::Plugin::CORE4::VERSION
10
+ spec.authors = ['Gerrit Visscher']
11
+ spec.email = ['g.visscher@core4.de']
12
+
13
+ spec.summary = 'CORE4 GmbH internal plugin'
14
+ spec.description = 'This adds specific helper methods and tasks for our workflow at CORE4 GmbH'
15
+ spec.homepage = 'https://github.com/CORE4/fulmar-plugin-core4'
16
+ spec.license = 'MIT'
17
+
18
+ spec.files = `git ls-files -z`.split("\x0").reject do |f|
19
+ f.match(%r{^(test|spec|features)/}) || %w[.editorconfig].include?(f)
20
+ end
21
+ spec.require_paths = ['lib']
22
+
23
+ spec.add_dependency 'fulmar', '~> 2.1'
24
+
25
+ spec.add_development_dependency 'bundler', '~> 1.10'
26
+ spec.add_development_dependency 'rake', '~> 10.0'
27
+ end
@@ -0,0 +1,10 @@
1
+ require 'rbconfig'
2
+
3
+ global_test 'Find duplicates in hosts file' do |_config|
4
+ is_windows = (RbConfig::CONFIG['host_os'] =~ /mswin|mingw|cygwin/)
5
+ hosts_file = is_windows ? 'C:\Windows\System32\drivers\etc\hosts' : '/etc/hosts'
6
+ duplicates = Fulmar::Plugin::CORE4::HostFile.new(hosts_file).check
7
+ next {severity: :warning,
8
+ message: "Found duplicates in hosts file: #{duplicates.join(', ')}"
9
+ } unless duplicates.empty?
10
+ end
@@ -0,0 +1,24 @@
1
+ require 'fulmar/plugin/core4/version'
2
+ require 'fulmar/plugin/core4/dsl_helper'
3
+ require 'fulmar/plugin/core4/host_file'
4
+
5
+ module Fulmar
6
+ module Plugin
7
+ module CORE4
8
+ # Plugin configuration
9
+ class Configuration
10
+ def initialize(config)
11
+ @config = config
12
+ end
13
+
14
+ def test_files
15
+ Dir.glob("#{File.dirname(__FILE__)}/config_tests/*.rb")
16
+ end
17
+
18
+ def rake_files
19
+ Dir.glob(File.dirname(__FILE__) + '/rake/*.rake')
20
+ end
21
+ end
22
+ end
23
+ end
24
+ end
@@ -0,0 +1,10 @@
1
+ module Fulmar
2
+ module Plugin
3
+ module CORE4
4
+ # List helper methods for Fulmarfiles here
5
+ module DslHelper
6
+ # Nothing yet
7
+ end
8
+ end
9
+ end
10
+ end
@@ -0,0 +1,61 @@
1
+ module Fulmar
2
+ module Plugin
3
+ module CORE4
4
+ # Analyses /etc/hosts
5
+ class HostFile
6
+ attr_reader :filename
7
+
8
+ def initialize(filename)
9
+ @filename = filename
10
+ end
11
+
12
+ def check
13
+ read_file
14
+ duplicate_ipv4 = find_duplicates(@ipv4_hosts)
15
+ duplicate_ipv6 = find_duplicates(@ipv6_hosts)
16
+ duplicate_ipv4 + duplicate_ipv6
17
+ end
18
+
19
+ def find_duplicates(hosts)
20
+ hosts.group_by(&:last).select { |_key, value| value.size > 1 }.map(&:first)
21
+ end
22
+
23
+ def read_file
24
+ @ipv4_hosts = []
25
+ @ipv6_hosts = []
26
+ File.open(@filename) do |file|
27
+ until file.eof?
28
+ if (hosts = parse_line(file.gets))
29
+ ip = hosts.shift
30
+ add_hosts(ip, hosts)
31
+ end
32
+ end
33
+ end
34
+ end
35
+
36
+ protected
37
+
38
+ def add_hosts(ip, hosts)
39
+ if ip.include?(':') # ipv6
40
+ hosts.each do |host|
41
+ @ipv6_hosts << [ip, host]
42
+ end
43
+ else # ipv4
44
+ hosts.each do |host|
45
+ @ipv4_hosts << [ip, host]
46
+ end
47
+ end
48
+ end
49
+
50
+ def parse_line(line)
51
+ return nil unless line
52
+ line = line.split('#').first.strip
53
+ return nil if line.empty?
54
+ parts = line.gsub(/\s+/, ' ').split(' ')
55
+ return nil if parts.size == 1
56
+ parts
57
+ end
58
+ end
59
+ end
60
+ end
61
+ end
@@ -0,0 +1,78 @@
1
+ namespace :initialize do
2
+ # common tasks for all projects
3
+ task :vagrant do
4
+ info 'Running common vagrant tasks...'
5
+ # Add composer auth
6
+ auth_json = "#{ENV['HOME']}/.composer/auth.json"
7
+ if File.exist?(auth_json)
8
+ info ' Copying local composer auth file into vagrant machine...'
9
+ local_shell.run "cat #{auth_json} | vagrant ssh -c \"mkdir -p ~/.composer; cat > ~/.composer/auth.json\""
10
+ else
11
+ info " #{auth_json} not found. Skipping..."
12
+ end
13
+
14
+ # Add known hosts
15
+ info ' Copying known_hosts for this project...'
16
+ local_shell.run "cat .known_hosts | vagrant ssh -c \"cat > ~/.ssh/known_hosts\"", in: config.base_path
17
+
18
+ # Add ssh config
19
+ info ' Adding ssh configuration for this project...'
20
+ Dir.mktmpdir do |temp_directory|
21
+ download('/home/vagrant/.ssh/config', temp_directory)
22
+ service = Fulmar::Infrastructure::Service::SSHConfigService.new(config, "#{temp_directory}/config")
23
+ service.quiet = true
24
+ service.add_hosts
25
+ upload("#{temp_directory}/config", '/home/vagrant/.ssh')
26
+ FileUtils.rm "#{temp_directory}/config"
27
+ FileUtils.rm "#{temp_directory}/config.bak"
28
+ end
29
+
30
+ # Replace FLOW_CONTEXT with a personal one
31
+ neos_config = '/etc/nginx/sites-available/neos.conf'
32
+ remote_shell.strict = false
33
+ if remote_shell.run "test -f #{neos_config}"
34
+ username = `git config --global user.name`.strip.gsub(' ', '')
35
+ flow_context = "Development/Vagrant/#{username}"
36
+ info " Setting flow context to #{flow_context}..."
37
+ remote_shell.run [
38
+ "sudo sed -i.bak \"s+Development/Vagrant;+#{flow_context};+g\" neos.conf",
39
+ 'sudo rm neos.conf.bak'
40
+ ], in: '/etc/nginx/sites-available'
41
+ remote_shell.run [
42
+ "sed -i.bak s+\\\"Development/Vagrant\"+\"#{flow_context}\\\"+g local.fish",
43
+ 'rm local.fish.bak'
44
+ ], in: '/home/vagrant/.config/fish'
45
+ else
46
+ info " #{neos_config} not found. Skipping..."
47
+ end
48
+
49
+ remote_shell.strict = true
50
+ end
51
+ end
52
+
53
+ unless config.plugins[:core4][:sync].nil?
54
+ namespace :setup do
55
+ namespace :vagrant do
56
+ desc 'Update vagrant database and assets from internal cache server'
57
+ task :download do
58
+ plugin_config = config.plugins[:core4][:sync]
59
+ config.set *config.plugins[:core4][:sync][:to].split(':').map(&:to_sym)
60
+
61
+ info 'Loading database...'
62
+ remote_shell.run "curl -s #{plugin_config[:database_url]} > /tmp/database.sql.gz"
63
+ mariadb.load_dump('/tmp/database.sql.gz')
64
+
65
+ info 'Loading assets...'
66
+ urls = [*plugin_config[:assets_url]]
67
+ paths = [*plugin_config[:assets_path]]
68
+ fail 'The number of assets urls must match the number of assets paths' unless urls.size == paths.size
69
+ urls.each_index do |i|
70
+ remote_shell.run [
71
+ "mkdir -p #{paths[i]}",
72
+ "curl -s #{urls[i]} | tar -xzf - -C #{paths[i]}"
73
+ ]
74
+ end
75
+ end
76
+ end
77
+ end
78
+ end
@@ -0,0 +1,7 @@
1
+ module Fulmar
2
+ module Plugin
3
+ module CORE4
4
+ VERSION = '1.1.0'.freeze
5
+ end
6
+ end
7
+ end
metadata ADDED
@@ -0,0 +1,102 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: fulmar-plugin-core4
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Gerrit Visscher
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2017-07-27 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: fulmar
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '2.1'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '2.1'
27
+ - !ruby/object:Gem::Dependency
28
+ name: bundler
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '1.10'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '1.10'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rake
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '10.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '10.0'
55
+ description: This adds specific helper methods and tasks for our workflow at CORE4
56
+ GmbH
57
+ email:
58
+ - g.visscher@core4.de
59
+ executables: []
60
+ extensions: []
61
+ extra_rdoc_files: []
62
+ files:
63
+ - ".gitignore"
64
+ - ".rspec"
65
+ - ".rubocop.yml"
66
+ - CODE_OF_CONDUCT.md
67
+ - Gemfile
68
+ - LICENSE.txt
69
+ - README.md
70
+ - Rakefile
71
+ - fulmar-plugin-core4.gemspec
72
+ - lib/fulmar/plugin/core4/config_tests/etc_hosts.rb
73
+ - lib/fulmar/plugin/core4/configuration.rb
74
+ - lib/fulmar/plugin/core4/dsl_helper.rb
75
+ - lib/fulmar/plugin/core4/host_file.rb
76
+ - lib/fulmar/plugin/core4/rake/vagrant.rake
77
+ - lib/fulmar/plugin/core4/version.rb
78
+ homepage: https://github.com/CORE4/fulmar-plugin-core4
79
+ licenses:
80
+ - MIT
81
+ metadata: {}
82
+ post_install_message:
83
+ rdoc_options: []
84
+ require_paths:
85
+ - lib
86
+ required_ruby_version: !ruby/object:Gem::Requirement
87
+ requirements:
88
+ - - ">="
89
+ - !ruby/object:Gem::Version
90
+ version: '0'
91
+ required_rubygems_version: !ruby/object:Gem::Requirement
92
+ requirements:
93
+ - - ">="
94
+ - !ruby/object:Gem::Version
95
+ version: '0'
96
+ requirements: []
97
+ rubyforge_project:
98
+ rubygems_version: 2.6.11
99
+ signing_key:
100
+ specification_version: 4
101
+ summary: CORE4 GmbH internal plugin
102
+ test_files: []