vcr_mask_kayako_endpoint_auth.rb 621 B

1234567891011
  1. # Copyright (C) 2012-2024 Zammad Foundation, https://zammad-foundation.org/
  2. VCR.configure do |c|
  3. # The API key is used only inside the base64 encoded Basic Auth string, so mask that as well.
  4. c.filter_sensitive_data('<IMPORT_KAYAKO_ENDPOINT_BASIC_AUTH>') { Base64.encode64("#{ENV['IMPORT_KAYAKO_ENDPOINT_USERNAME']}:#{ENV['IMPORT_KAYAKO_ENDPOINT_PASSWORD']}").lines(chomp: true).join }
  5. # The hostname of the Kayako endpoint URL used as well
  6. if ENV['IMPORT_KAYAKO_ENDPOINT'].present?
  7. c.filter_sensitive_data('<IMPORT_KAYAKO_ENDPOINT_HOSTNAME>') { URI.parse(ENV['IMPORT_KAYAKO_ENDPOINT']).hostname }
  8. end
  9. end