fulmar-plugin-mariadb 0.2.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: 8e7b3dd0c3c2da8c79a9155f10a2babe8091bb30
4
+ data.tar.gz: 0630e38e31fa451a440597c4413ce8219eb2236e
5
+ SHA512:
6
+ metadata.gz: 1f57085d8d7274ee60f03d12a00d794a555f260acc85b84fce9de52c4cf60817938ee717b6e699ad390f0330862095dc090887736b1df0339e5354b5d8ec8401
7
+ data.tar.gz: 3d6dd720b9f91609c03c3210a5c68853c65c03fb236c138bd64d2dbdbe8d78c16069ed122eccf64351fb97c942f0dcaa5747615cd97870d82b2e5e2d1c949dc2
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/.travis.yml ADDED
@@ -0,0 +1,4 @@
1
+ language: ruby
2
+ rvm:
3
+ - 2.2.3
4
+ before_install: gem install bundler -v 1.10.6
@@ -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,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in fulmar-plugin-example.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2015 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,120 @@
1
+ # Fulmar::Plugin::MariaDB
2
+
3
+ This plugin adds a mariadb method to fulmar tasks. You can only run simple queries without return values to create
4
+ a database for example. The main use case for this is to create / load sql dumps.
5
+
6
+ Please feel free to ask for help.
7
+
8
+ ## Prerequisites
9
+
10
+ This plugin needs the mysql client to be installed.
11
+
12
+ ## Installation
13
+
14
+ This plugin will be installable via gem install `fulmar-plugin-mariadb` when it is working. It will need Fulmar 2.
15
+ You can also checkout this repo and run `gem build fulmar-plugin-mariadb.gemspec` and
16
+ `gem install fulmar-plugin-mariadb*.gem`
17
+
18
+ ## Usage
19
+
20
+ Add the plugin to your config.yml of the project:
21
+
22
+ ```yaml
23
+ plugins:
24
+ mariadb:
25
+ ```
26
+
27
+ And add a configuration to either an environment or a host:
28
+
29
+ ```yaml
30
+ environments:
31
+ live:
32
+ cms:
33
+ mariadb:
34
+ host: 127.0.0.1
35
+ user: cms_user
36
+ password: password
37
+ database: cms_db_1
38
+ ```
39
+
40
+ You can use the [.my.cnf](https://easyengine.io/tutorials/mysql/mycnf-preference/) file if you don't want to put
41
+ your database credentials into the config.
42
+
43
+ ```ruby
44
+ task :database => 'environment:staging:database' do
45
+ database.query 'UPDATE settings SET value="http://dev-project.local" WHERE name="url"'
46
+ remote_file_name = database.dump # dumps the database to the returned file
47
+ database.load_dump(remote_file_name) # loads an sql dump
48
+ local_filename = database.download_dump # downloads an sql dump to your machine
49
+ ```
50
+
51
+ ## Syncing
52
+
53
+ If you configured more than one database on different environments, fulmar will
54
+ create task to sync these databases via mysql_dump. This allows you to update a
55
+ staging or preview database with the data from the production system.
56
+
57
+ ```
58
+ fulmar database:update:preview:from_live
59
+ ```
60
+
61
+ The task to copy data *to* the live database is hidden (it has no description).
62
+
63
+
64
+ ## Limitations
65
+
66
+ You can not use SELECT or other queries that return data.
67
+
68
+ Query cannot contain single quotes at the moment. This is due to the queries beeing passed to the mysql shell client
69
+ and escaping does not work correctly then. So you should avoid running complex queries with this fulmar plugin.
70
+
71
+ ## Contributing
72
+
73
+ Bug reports and pull requests are welcome on GitHub at https://github.com/CORE4/fulmar-plugin-mariadb.
74
+ This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to
75
+ adhere to the [Contributor Covenant](contributor-covenant.org) code of conduct.
76
+
77
+
78
+ ## License
79
+
80
+ The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
81
+
82
+
83
+
84
+
85
+ ### Database access
86
+
87
+ Within a task you can access and update databases (mariadb/mysql at the time of writing). Remote databases do not need
88
+ to be accessible directly since fulmar uses an ssh tunnel to connect to the host first. So the database host is often
89
+ just "localhost" (the default value). You can specify a different host if you database server is on another host, which
90
+ is the case on most simple web spaces.
91
+
92
+ The field "maria:database" is required. The other fields are optional. You can use the file `.my.cnf`
93
+ to specify the password only on the host itself and not have it in your deployment code.
94
+
95
+ ```yaml
96
+ environments:
97
+ staging:
98
+ database:
99
+ host: project-staging
100
+ type: maria
101
+ mariadb:
102
+ database: db_name
103
+ user: root
104
+ password:
105
+ port: 3306
106
+ host: localhost
107
+ encoding: utf-8
108
+ ```
109
+
110
+
111
+ end
112
+
113
+ You can query the database like this:
114
+
115
+
116
+
117
+ You can use all features of the mysql2 gem via `database.client`.
118
+
119
+
120
+
data/Rakefile ADDED
@@ -0,0 +1 @@
1
+ require "bundler/gem_tasks"
@@ -0,0 +1,26 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'fulmar/plugin/mariadb/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = 'fulmar-plugin-mariadb'
8
+ spec.version = Fulmar::Plugin::MariaDB::VERSION
9
+ spec.authors = ['Gerrit Visscher']
10
+ spec.email = ['g.visscher@core4.de']
11
+
12
+ spec.summary = 'MariaDB database plugin for fulmar'
13
+ spec.description = 'This gems add database handling'
14
+ spec.homepage = 'https://github.com/CORE4/fulmar-plugin-mariadb'
15
+ spec.license = 'MIT'
16
+
17
+ spec.files = `git ls-files -z`.split("\x0").reject do |f|
18
+ f.match(%r{^(test|spec|features)/}) || %w(.editorconfig).include?(f)
19
+ end
20
+ spec.require_paths = ['lib']
21
+
22
+ spec.add_dependency 'fulmar', '~> 2.0'
23
+
24
+ spec.add_development_dependency 'bundler', '~> 1.10'
25
+ spec.add_development_dependency 'rake', '~> 10.0'
26
+ end
@@ -0,0 +1,19 @@
1
+ require 'fulmar/plugin/mariadb/version'
2
+ require 'fulmar/plugin/mariadb/dsl_helper'
3
+ require 'fulmar/plugin/mariadb/database'
4
+
5
+ module Fulmar
6
+ module Plugin
7
+ module MariaDB
8
+ class Configuration
9
+ def initialize(config)
10
+ @config = config
11
+ end
12
+
13
+ def rake_files
14
+ Dir.glob(File.dirname(__FILE__)+'/rake/*.rake')
15
+ end
16
+ end
17
+ end
18
+ end
19
+ end
@@ -0,0 +1,119 @@
1
+ require 'fulmar/shell'
2
+
3
+ module Fulmar
4
+ module Plugin
5
+ module MariaDB
6
+ # Provides basic methods common to all database services
7
+ class Database
8
+ attr_reader :shell, :local_shell
9
+
10
+ DEFAULT_CONFIG = {
11
+ mariadb: {
12
+ host: '127.0.0.1',
13
+ port: 3306,
14
+ user: 'root',
15
+ password: '',
16
+ encoding: 'utf8',
17
+ ignore_tables: [],
18
+ diffable_dump: false,
19
+ dump_path: '/tmp'
20
+ }
21
+ }
22
+
23
+ def initialize(config, shell = initialize_shell, local_shell = nil)
24
+ @config = config
25
+ @config.merge DEFAULT_CONFIG
26
+ @shell = shell
27
+ @local_shell = local_shell || Fulmar::Shell.new(@config[:mariadb][:dump_path])
28
+ @local_shell.debug = true if config[:debug] # do not deactivate debug mode is shell set it explicitly
29
+ config_test
30
+ end
31
+
32
+ def create(name, user = nil, password = nil, host = 'localhost')
33
+ query "CREATE DATABASE IF NOT EXISTS `#{name}`"
34
+ if user
35
+ password_sql = password ? " IDENTIFIED BY \"#{password}\"" : ''
36
+ query "GRANT ALL ON `#{name}`.* TO #{user}@#{host}#{password_sql}"
37
+ end
38
+ end
39
+
40
+ def query(sql_query)
41
+ if sql_query.include?('\'')
42
+ fail 'This fulmar plugin currently does no support queries with single quotes to the simple '\
43
+ " quoting in fulmar shell. Query was: #{sql_query}"
44
+ end
45
+
46
+ @shell.run "#{command('mysql')} -D '#{@config[:mariadb][:database]}' -e '#{sql_query}'"
47
+ end
48
+
49
+ # Add parameters like host, user, and password to the base command like mysql or mysqldump
50
+ def command(binary)
51
+ command = binary
52
+ command << " -h #{@config[:mariadb][:host]}" unless @config[:mariadb][:host].blank?
53
+ command << " -u #{@config[:mariadb][:user]}" unless @config[:mariadb][:user].blank?
54
+ command << " --password='#{@config[:mariadb][:password]}'" unless @config[:mariadb][:password].blank?
55
+ command
56
+ end
57
+
58
+ def dump(filename = backup_filename)
59
+ filename = "#{@config[:mariadb][:dump_path]}/#{filename}" unless filename[0, 1] == '/'
60
+ @shell.run "#{dump_command} -r \"#{filename}\""
61
+ filename
62
+ end
63
+
64
+ def load_dump(dump_file, database = @config[:mariadb][:database])
65
+ if File.extname(dump_file) == '.gz'
66
+ @shell.run "cat #{dump_file} | gzip -d | #{command('mysql')} -D #{database}"
67
+ else
68
+ @shell.run "#{command('mysql')} -D #{database} < #{dump_file}"
69
+ end
70
+ end
71
+
72
+ def download_dump(filename = "#{backup_filename}.gz")
73
+ local_path = filename[0, 1] == '/' ? filename : "#{@config[:mariadb][:dump_path]}/#{filename}"
74
+ remote_command = "#{dump_command} | gzip"
75
+ @local_shell.run "ssh #{@config.ssh_user_and_host} \"#{remote_command}\" > #{local_path}"
76
+ local_path
77
+ end
78
+
79
+ protected
80
+
81
+ def dump_command
82
+ "#{command('mysqldump')} #{@config[:mariadb][:database]} --single-transaction #{diffable} #{ignore_tables}"
83
+ end
84
+
85
+ # Return mysql command line options to ignore specific tables
86
+ def ignore_tables
87
+ @config[:mariadb][:ignore_tables] = [*@config[:mariadb][:ignore_tables]]
88
+ @config[:mariadb][:ignore_tables].map do |table|
89
+ "--ignore-table=#{@config[:mariadb][:database]}.#{table}"
90
+ end.join(' ')
91
+ end
92
+
93
+ # Return the mysql configuration options to make a dump diffable
94
+ def diffable
95
+ @config[:mariadb][:diffable_dump] ? '--skip-comments --skip-extended-insert ' : ''
96
+ end
97
+
98
+ # Test configuration
99
+ def config_test
100
+ fail 'Configuration option "database" missing.' unless @config[:mariadb][:database]
101
+ end
102
+
103
+ # Builds the filename for a new database backup file
104
+ # NOTE: The file might already exist, for example if this is run at the same
105
+ # time from to different clients. I won't handle this as it is unlikely and
106
+ # would result in more I/O
107
+ def backup_filename
108
+ "#{@config[:mariadb][:database]}_#{Time.now.strftime('%Y-%m-%dT%H%M%S')}.sql"
109
+ end
110
+
111
+ def initialize_shell
112
+ @shell = Fulmar::Shell.new(@config[:mariadb][:dump_path], @config.ssh_user_and_host)
113
+ @shell.debug = true if @config[:debug]
114
+ @shell.strict = true
115
+ end
116
+ end
117
+ end
118
+ end
119
+ end
@@ -0,0 +1,13 @@
1
+ module Fulmar
2
+ module Plugin
3
+ module MariaDB
4
+ module DslHelper
5
+ # Return a mariadb object to query the database or get dumps
6
+ def mariadb
7
+ shell = config[:hostname] && config[:hostname] != 'localhost' ? remote_shell : local_shell
8
+ storage['mariadb'] ||= Fulmar::Plugin::MariaDB::Database.new config, shell, local_shell
9
+ end
10
+ end
11
+ end
12
+ end
13
+ end
@@ -0,0 +1,73 @@
1
+ db_configs = []
2
+ config.each do |env, target, data|
3
+ db_configs << [env, target] unless data[:mariadb].nil? || data[:mariadb][:database].nil?
4
+ end
5
+
6
+ # Expects two hashes as parameters each with { :environment, :target, :name } set
7
+ # :name is either environment:target or just the environment, if the is only one target
8
+ def create_update_task(from, to)
9
+ namespace to[:name] do
10
+ task "from_#{from[:name]}" do
11
+ # Add a bit of security
12
+ if %w(live prod production).include?(to[:environment]) && !ARGV.include?('--force')
13
+ ARGV.reject! { |param| param == '--force' }
14
+ warning 'You are about to update the live database from another source.'
15
+ print 'Are you sure? [y/N] '
16
+ answer = STDIN.gets
17
+ exit if answer.downcase != 'y'
18
+ end
19
+
20
+ config.set(from[:environment], from[:target])
21
+ info 'Getting dump...'
22
+ sql_dump = mariadb.download_dump
23
+ if sql_dump == ''
24
+ error 'Cannot create sql dump'
25
+ else
26
+ config.set(to[:environment], to[:target])
27
+ info 'Sending dump...'
28
+ dump_path = config[:mariadb][:dump_path] ||
29
+ Fulmar::Plugin::MariaDB::Database::DEFAULT_CONFIG[:mariadb][:dump_path]
30
+ remote_sql_dump = upload(sql_dump, dump_path)
31
+ mariadb.load_dump(remote_sql_dump)
32
+ end
33
+ end
34
+ end
35
+ end
36
+
37
+ def name(env, target, counts)
38
+ (counts[env] <= 1 || target.nil?) ? env : "#{env}:#{target}"
39
+ end
40
+
41
+ def create_update_tasks(db_configs)
42
+ counts = {}
43
+ db_configs.each do |config|
44
+ counts[config.first] = 0 unless counts[config.first]
45
+ counts[config.first] += 1
46
+ end
47
+
48
+ namespace :database do
49
+ db_configs.each do |from_db|
50
+ db_configs.each do |to_db|
51
+ next if from_db == to_db # no need to sync a database to itself
52
+ next if from_db.last != to_db.last # sync only matching target names
53
+ from = {
54
+ environment: from_db.first,
55
+ target: from_db.last,
56
+ name: name(from_db.first, nil, counts)
57
+ }
58
+ to = {
59
+ environment: to_db.first,
60
+ target: to_db.last,
61
+ name: name(to_db.first, to_db.last, counts)
62
+ }
63
+ create_update_task(from, to)
64
+ end
65
+ end
66
+ end
67
+ end
68
+
69
+ if db_configs.any?
70
+ namespace :update do
71
+ create_update_tasks(db_configs) if db_configs.count > 1
72
+ end
73
+ end
@@ -0,0 +1,7 @@
1
+ module Fulmar
2
+ module Plugin
3
+ module MariaDB
4
+ VERSION = '0.2.0'
5
+ end
6
+ end
7
+ end
metadata ADDED
@@ -0,0 +1,100 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: fulmar-plugin-mariadb
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.2.0
5
+ platform: ruby
6
+ authors:
7
+ - Gerrit Visscher
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2017-04-24 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.0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '2.0'
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 gems add database handling
56
+ email:
57
+ - g.visscher@core4.de
58
+ executables: []
59
+ extensions: []
60
+ extra_rdoc_files: []
61
+ files:
62
+ - ".gitignore"
63
+ - ".rspec"
64
+ - ".travis.yml"
65
+ - CODE_OF_CONDUCT.md
66
+ - Gemfile
67
+ - LICENSE.txt
68
+ - README.md
69
+ - Rakefile
70
+ - fulmar-plugin-mariadb.gemspec
71
+ - lib/fulmar/plugin/mariadb/configuration.rb
72
+ - lib/fulmar/plugin/mariadb/database.rb
73
+ - lib/fulmar/plugin/mariadb/dsl_helper.rb
74
+ - lib/fulmar/plugin/mariadb/rake/database_sync.rake
75
+ - lib/fulmar/plugin/mariadb/version.rb
76
+ homepage: https://github.com/CORE4/fulmar-plugin-mariadb
77
+ licenses:
78
+ - MIT
79
+ metadata: {}
80
+ post_install_message:
81
+ rdoc_options: []
82
+ require_paths:
83
+ - lib
84
+ required_ruby_version: !ruby/object:Gem::Requirement
85
+ requirements:
86
+ - - ">="
87
+ - !ruby/object:Gem::Version
88
+ version: '0'
89
+ required_rubygems_version: !ruby/object:Gem::Requirement
90
+ requirements:
91
+ - - ">="
92
+ - !ruby/object:Gem::Version
93
+ version: '0'
94
+ requirements: []
95
+ rubyforge_project:
96
+ rubygems_version: 2.6.11
97
+ signing_key:
98
+ specification_version: 4
99
+ summary: MariaDB database plugin for fulmar
100
+ test_files: []