psql_backups 1.0.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 +7 -0
- data/.gitignore +12 -0
- data/.rspec +3 -0
- data/.travis.yml +5 -0
- data/Gemfile +6 -0
- data/LICENSE.txt +21 -0
- data/README.md +39 -0
- data/Rakefile +6 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/lib/psql_backups.rb +6 -0
- data/lib/psql_backups/railtie.rb +5 -0
- data/lib/psql_backups/version.rb +3 -0
- data/lib/tasks/psql_backups.rake +79 -0
- data/psql_backups.gemspec +28 -0
- metadata +128 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: c27379b979812d96141060b2cd4ac479ca6d7878
|
4
|
+
data.tar.gz: 8b4aa952ea9c052641990d60aabf80a09248c73a
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 54cb50985b6b16c76817939e602d183e22489030f88e73c05656cc10b281f031f4e464d4dbab0d0ee36edaad456c302c0d1837c75bdbdab7a9c3e88726be9149
|
7
|
+
data.tar.gz: 634876737b4f9b1b24a46ee20ee04bde62db7aec4d489b62d7d11af1f13a370504232642a497edb85bc818ceb6f5debc350d2c954dc0172b9807e24f1628c9e2
|
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) 2018 Ajith Hussain
|
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,39 @@
|
|
1
|
+
# PsqlBackups
|
2
|
+
|
3
|
+
Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/psql_backups`. To experiment with that code, run `bin/console` for an interactive prompt.
|
4
|
+
|
5
|
+
TODO: Delete this and the text above, and describe your gem
|
6
|
+
|
7
|
+
## Installation
|
8
|
+
|
9
|
+
Add this line to your application's Gemfile:
|
10
|
+
|
11
|
+
```ruby
|
12
|
+
gem 'psql_backups'
|
13
|
+
```
|
14
|
+
|
15
|
+
And then execute:
|
16
|
+
|
17
|
+
$ bundle
|
18
|
+
|
19
|
+
Or install it yourself as:
|
20
|
+
|
21
|
+
$ gem install psql_backups
|
22
|
+
|
23
|
+
## Usage
|
24
|
+
|
25
|
+
TODO: Write usage instructions here
|
26
|
+
|
27
|
+
## Development
|
28
|
+
|
29
|
+
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.
|
30
|
+
|
31
|
+
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).
|
32
|
+
|
33
|
+
## Contributing
|
34
|
+
|
35
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/psql_backups.
|
36
|
+
|
37
|
+
## License
|
38
|
+
|
39
|
+
The gem is available as open source under the terms of the [MIT License](https://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 "psql_backups"
|
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/lib/psql_backups.rb
ADDED
@@ -0,0 +1,79 @@
|
|
1
|
+
namespace :psql_backups do
|
2
|
+
class String
|
3
|
+
def black; "\e[30m#{self}\e[0m" end
|
4
|
+
def red; "\e[31m#{self}\e[0m" end
|
5
|
+
def green; "\e[32m#{self}\e[0m" end
|
6
|
+
def brown; "\e[33m#{self}\e[0m" end
|
7
|
+
def blue; "\e[34m#{self}\e[0m" end
|
8
|
+
def magenta; "\e[35m#{self}\e[0m" end
|
9
|
+
def cyan; "\e[36m#{self}\e[0m" end
|
10
|
+
def gray; "\e[37m#{self}\e[0m" end
|
11
|
+
def dark_gray; "\e[1:30m#{self}\e[0m" end
|
12
|
+
def white; "\e[1;37m#{self}\e[0m" end
|
13
|
+
|
14
|
+
def bg_black; "\e[40m#{self}\e[0m" end
|
15
|
+
def bg_red; "\e[41m#{self}\e[0m" end
|
16
|
+
def bg_green; "\e[42m#{self}\e[0m" end
|
17
|
+
def bg_brown; "\e[43m#{self}\e[0m" end
|
18
|
+
def bg_blue; "\e[44m#{self}\e[0m" end
|
19
|
+
def bg_magenta; "\e[45m#{self}\e[0m" end
|
20
|
+
def bg_cyan; "\e[46m#{self}\e[0m" end
|
21
|
+
def bg_gray; "\e[47m#{self}\e[0m" end
|
22
|
+
|
23
|
+
def bold; "\e[1m#{self}\e[22m" end
|
24
|
+
def italic; "\e[3m#{self}\e[23m" end
|
25
|
+
def underline; "\e[4m#{self}\e[24m" end
|
26
|
+
def blink; "\e[5m#{self}\e[25m" end
|
27
|
+
def reverse_color; "\e[7m#{self}\e[27m" end
|
28
|
+
end
|
29
|
+
|
30
|
+
desc "Backup database"
|
31
|
+
task :backup, [:tag] => [:environment] do |t, args|
|
32
|
+
raise "Can only be run in development environment" unless Rails.env.development?
|
33
|
+
raise "Can only be run if configured for local database" unless ActiveRecord::Base.connection.raw_connection.conninfo_hash[:host].nil?
|
34
|
+
raise "Invalid tag. Tags have to purely alphanumeric (no special characters)" unless args[:tag].nil? || /^[a-z0-9]+$/.match?(args[:tag])
|
35
|
+
dbname = ActiveRecord::Base.connection.raw_connection.conninfo_hash[:dbname]
|
36
|
+
backup_dbname = "#{ dbname }_#{ args[:tag] || Time.current.strftime("%Y%m%d%H%M%S") }"
|
37
|
+
ActiveRecord::Base.connection.disconnect!
|
38
|
+
`psql -c "alter database #{ dbname } rename to #{ backup_dbname };"`
|
39
|
+
`psql -c "create database #{ dbname } template #{ backup_dbname };"`
|
40
|
+
end
|
41
|
+
|
42
|
+
desc "Show backups"
|
43
|
+
task list: :environment do
|
44
|
+
raise "Can only be run in development environment" unless Rails.env.development?
|
45
|
+
raise "Can only be run if configured for local database" unless ActiveRecord::Base.connection.raw_connection.conninfo_hash[:host].nil?
|
46
|
+
dbname = ActiveRecord::Base.connection.raw_connection.conninfo_hash[:dbname]
|
47
|
+
lines = `psql -c "\\l" | grep #{ dbname }_`.split("\n")
|
48
|
+
dbnames = lines.map{|l| l.split('|').first.strip }
|
49
|
+
puts "Found #{dbnames.count} backup(s):"
|
50
|
+
dbnames.each do |d|
|
51
|
+
print "[#{dbname}_]".gray.italic
|
52
|
+
puts d.sub("#{dbname}_", "").white
|
53
|
+
end
|
54
|
+
end
|
55
|
+
|
56
|
+
desc "Restore from backup"
|
57
|
+
task :restore, [:tag] => [:environment] do |t, args|
|
58
|
+
raise "Can only be run in development environment" unless Rails.env.development?
|
59
|
+
raise "Can only be run if configured for local database" unless ActiveRecord::Base.connection.raw_connection.conninfo_hash[:host].nil?
|
60
|
+
raise "No tag specified" if args[:tag].nil?
|
61
|
+
|
62
|
+
dbname = ActiveRecord::Base.connection.raw_connection.conninfo_hash[:dbname]
|
63
|
+
lines = `psql -c "\\l" | grep #{ dbname }_`.split("\n")
|
64
|
+
tags = lines.map{|l| l.split('|').first.strip.sub("#{dbname}_", '') }
|
65
|
+
|
66
|
+
raise "Tag not found in backups" unless tags.include?(args[:tag])
|
67
|
+
|
68
|
+
puts "Your existing database will be replaced. Are you sure you want to continue? [y/N]"
|
69
|
+
input = STDIN.gets.chomp
|
70
|
+
raise Nope unless input.downcase == "y"
|
71
|
+
|
72
|
+
restore_dbname = "#{ dbname }_#{ args[:tag] }"
|
73
|
+
backup_dbname = "#{ dbname }_#{ Time.current.strftime("%Y%m%d%H%M%S") }"
|
74
|
+
ActiveRecord::Base.connection.disconnect!
|
75
|
+
`psql -c "alter database #{ dbname } rename to #{ backup_dbname };"`
|
76
|
+
`psql -c "create database #{ dbname } template #{ restore_dbname };"`
|
77
|
+
end
|
78
|
+
end
|
79
|
+
|
@@ -0,0 +1,28 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path("../lib", __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require "psql_backups/version"
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "psql_backups"
|
8
|
+
spec.version = PsqlBackups::VERSION
|
9
|
+
spec.authors = ["Ajith Hussain"]
|
10
|
+
spec.email = ["csy0013@googlemail.com"]
|
11
|
+
|
12
|
+
spec.summary = %q{Rake tasks for managing db backups in Rails}
|
13
|
+
spec.homepage = "https://github.com/sparkymat/psql_backups"
|
14
|
+
spec.license = "MIT"
|
15
|
+
|
16
|
+
spec.files = `git ls-files -z`.split("\x0").reject do |f|
|
17
|
+
f.match(%r{^(test|spec|features)/})
|
18
|
+
end
|
19
|
+
spec.bindir = "exe"
|
20
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
21
|
+
spec.require_paths = ["lib"]
|
22
|
+
|
23
|
+
spec.add_development_dependency "bundler", "~> 1.16"
|
24
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
25
|
+
spec.add_development_dependency "rspec", "~> 3.0"
|
26
|
+
spec.add_development_dependency "rails"
|
27
|
+
spec.add_development_dependency "pry"
|
28
|
+
end
|
metadata
ADDED
@@ -0,0 +1,128 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: psql_backups
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.0.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Ajith Hussain
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2018-04-12 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: bundler
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.16'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.16'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rake
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '10.0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '10.0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rspec
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '3.0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '3.0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: rails
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - ">="
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - ">="
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '0'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: pry
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - ">="
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '0'
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - ">="
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '0'
|
83
|
+
description:
|
84
|
+
email:
|
85
|
+
- csy0013@googlemail.com
|
86
|
+
executables: []
|
87
|
+
extensions: []
|
88
|
+
extra_rdoc_files: []
|
89
|
+
files:
|
90
|
+
- ".gitignore"
|
91
|
+
- ".rspec"
|
92
|
+
- ".travis.yml"
|
93
|
+
- Gemfile
|
94
|
+
- LICENSE.txt
|
95
|
+
- README.md
|
96
|
+
- Rakefile
|
97
|
+
- bin/console
|
98
|
+
- bin/setup
|
99
|
+
- lib/psql_backups.rb
|
100
|
+
- lib/psql_backups/railtie.rb
|
101
|
+
- lib/psql_backups/version.rb
|
102
|
+
- lib/tasks/psql_backups.rake
|
103
|
+
- psql_backups.gemspec
|
104
|
+
homepage: https://github.com/sparkymat/psql_backups
|
105
|
+
licenses:
|
106
|
+
- MIT
|
107
|
+
metadata: {}
|
108
|
+
post_install_message:
|
109
|
+
rdoc_options: []
|
110
|
+
require_paths:
|
111
|
+
- lib
|
112
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
113
|
+
requirements:
|
114
|
+
- - ">="
|
115
|
+
- !ruby/object:Gem::Version
|
116
|
+
version: '0'
|
117
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
118
|
+
requirements:
|
119
|
+
- - ">="
|
120
|
+
- !ruby/object:Gem::Version
|
121
|
+
version: '0'
|
122
|
+
requirements: []
|
123
|
+
rubyforge_project:
|
124
|
+
rubygems_version: 2.6.13
|
125
|
+
signing_key:
|
126
|
+
specification_version: 4
|
127
|
+
summary: Rake tasks for managing db backups in Rails
|
128
|
+
test_files: []
|