activerecord-dbsnapshot 0.1.1 → 0.1.2
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 +4 -4
- data/lib/activerecord/dbsnapshot/version.rb +1 -1
- data/lib/activerecord/dbsnapshot.rb +16 -4
- data/lib/tasks/snapshot_tasks.rake +10 -7
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3e1622e0e7ec44461ef0dbb0e36def428afdf27e8b27a163b5bb494955ec168d
|
4
|
+
data.tar.gz: 1fefe1899a23195363a6c0b1af4600a224e515b71777a9403ed34f8b51f1caca
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6f2ccb151614bf0fc8d9937b05b6187f25dc0e2f9fab8bcc872e5afd8f0613b9e30f43a34091399986b5fd13c6514fec17de5a9815bf43f02f726cbf8bfb4dc6
|
7
|
+
data.tar.gz: d03777d254b049ca37717b6e33f304f2177886e825ebb54142fa54078f31ca436e355bf8090dc8d564e5d4aedc08075e4ccab35011537b0119057c9d543f8132
|
@@ -26,8 +26,7 @@ module ActiveRecord
|
|
26
26
|
require latest_config_file
|
27
27
|
|
28
28
|
klass_name = File.basename(latest_config_file, '.rb').gsub(/^[^_]+_/, '').camelize
|
29
|
-
|
30
|
-
klass
|
29
|
+
klass_name.constantize
|
31
30
|
end
|
32
31
|
|
33
32
|
# Finds snapshot configuration by name
|
@@ -42,6 +41,19 @@ module ActiveRecord
|
|
42
41
|
ActiveRecord::DbSnapshot.new
|
43
42
|
end
|
44
43
|
|
44
|
+
def build_restore_command(db_config, file)
|
45
|
+
command = "pg_restore"
|
46
|
+
command << " --host=#{db_config[:host]}" if db_config[:host]
|
47
|
+
command << " --port=#{db_config[:port]}" if db_config[:port]
|
48
|
+
command << " --username=#{db_config[:username]}" if db_config[:username]
|
49
|
+
command << " --dbname=#{db_config[:database]}" if db_config[:database]
|
50
|
+
command << " --no-owner" # Optional: Prevents restoring ownership information
|
51
|
+
command << " --disable-triggers" # Optional: Disable triggers during data restore
|
52
|
+
command << " --clean" # Optional: Clean (drop) existing database objects before restore
|
53
|
+
command << " #{file}" # SQL file to restore
|
54
|
+
command
|
55
|
+
end
|
56
|
+
|
45
57
|
# Builds the dump command based on configuration
|
46
58
|
def build_dump_command(config, db_config, output_file)
|
47
59
|
pg_dump_cmd = "pg_dump"
|
@@ -59,8 +71,8 @@ module ActiveRecord
|
|
59
71
|
end
|
60
72
|
|
61
73
|
# Executes the dump command
|
62
|
-
def
|
63
|
-
system(
|
74
|
+
def execute_command(command)
|
75
|
+
system(command)
|
64
76
|
end
|
65
77
|
|
66
78
|
private
|
@@ -28,17 +28,19 @@ namespace :db do
|
|
28
28
|
db_config = ActiveRecord::Base.connection_config
|
29
29
|
output_file = Rails.root.join('db', 'snapshots', "#{config.snapshot_name}.sql")
|
30
30
|
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
dump_command = ActiveRecord::DbSnapshot.build_dump_command(config, db_config, output_file)
|
35
|
-
ActiveRecord::DbSnapshot.execute_dump_command(dump_command)
|
31
|
+
command = ActiveRecord::DbSnapshot.build_dump_command(config, db_config, output_file)
|
32
|
+
ActiveRecord::DbSnapshot.execute_command(command)
|
36
33
|
|
37
34
|
puts "Database dump completed: #{output_file}"
|
38
35
|
end
|
39
36
|
|
40
37
|
desc "Restore a snapshot SQL file into the database"
|
41
38
|
task :restore, [:name] => :environment do |_, args|
|
39
|
+
unless `which pg_restore`.present?
|
40
|
+
puts "Error: pg_restore not found. Ensure PostgreSQL client tools are installed."
|
41
|
+
next
|
42
|
+
end
|
43
|
+
|
42
44
|
name = args[:name]
|
43
45
|
filename = "db/snapshots/#{name}.sql"
|
44
46
|
|
@@ -58,8 +60,9 @@ namespace :db do
|
|
58
60
|
end
|
59
61
|
|
60
62
|
# Restore the SQL file into the database
|
61
|
-
|
62
|
-
ActiveRecord::
|
63
|
+
db_config = ActiveRecord::Base.connection_config
|
64
|
+
command = ActiveRecord::DbSnapshot.build_restore_command(db_config, filename)
|
65
|
+
ActiveRecord::DbSnapshot.execute_command(command)
|
63
66
|
|
64
67
|
puts "Snapshot '#{name}' restored successfully."
|
65
68
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: activerecord-dbsnapshot
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ryan Mammina
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-03-
|
11
|
+
date: 2024-03-07 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description:
|
14
14
|
email:
|