aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails/commands/credentials/credentials_command/diffing.rb
diff options
context:
space:
mode:
Diffstat (limited to 'railties/lib/rails/commands/credentials/credentials_command/diffing.rb')
-rw-r--r--railties/lib/rails/commands/credentials/credentials_command/diffing.rb56
1 files changed, 25 insertions, 31 deletions
diff --git a/railties/lib/rails/commands/credentials/credentials_command/diffing.rb b/railties/lib/rails/commands/credentials/credentials_command/diffing.rb
index 1598ecaa8d..1d34c68074 100644
--- a/railties/lib/rails/commands/credentials/credentials_command/diffing.rb
+++ b/railties/lib/rails/commands/credentials/credentials_command/diffing.rb
@@ -1,47 +1,41 @@
# frozen_string_literal: true
module Rails::Command::CredentialsCommand::Diffing # :nodoc:
- class Error < StandardError; end
-
- def enable_credentials_diffing
- unless already_answered? || enabled?
- answer = yes?("Would you like to make the credentials diff from git more readable in the future? [Y/n]")
+ def enroll_project_in_credentials_diffing
+ if enrolled?
+ true
+ else
+ gitattributes.write(<<~end_of_template, mode: "a")
+ config/credentials/*.yml.enc diff=rails_credentials
+ config/credentials.yml.enc diff=rails_credentials
+ end_of_template
+
+ say "Project successfully enrolled!"
+ say "Rails ensures the rails_credentials diff driver is set when running `credentials:edit`. See `credentials:help` for more."
end
+ end
- enable if answer
- FileUtils.touch(tracker) unless answer.nil?
- rescue Error
- say "Couldn't setup git to enable credentials diffing"
+ def ensure_rails_credentials_driver_is_set
+ set_driver if enrolled? && !driver_configured?
end
private
- def already_answered?
- tracker.exist?
+ def enrolled?
+ gitattributes.read.match?(/config\/credentials(\/\*)?\.yml\.enc diff=rails_credentials/)
+ rescue Errno::ENOENT
+ false
end
- def enabled?
- system_call("git config --get 'diff.rails_credentials.textconv'", accepted_codes: [0, 1])
- end
-
- def enable
- system_call("git config diff.rails_credentials.textconv 'bin/rails credentials:diff'", accepted_codes: [0])
-
- git_attributes = Rails.root.join(".gitattributes")
- File.open(git_attributes, "a+") do |file|
- file.write(<<~EOM)
- config/credentials/*.yml.enc diff=rails_credentials
- config/credentials.yml.enc diff=rails_credentials
- EOM
- end
+ def driver_configured?
+ system "git config --get diff.rails_credentials.textconv", out: File::NULL
end
- def tracker
- Rails.root.join("tmp", "rails_pretty_credentials")
+ def set_driver
+ puts "running"
+ system "git config diff.rails_credentials.textconv 'bin/rails credentials:diff'"
end
- def system_call(command_line, accepted_codes:)
- result = system(command_line)
- raise(Error) if accepted_codes.exclude?($?.exitstatus)
- result
+ def gitattributes
+ Rails.root.join(".gitattributes")
end
end