3

Railsは初めてなので、質問が意味をなさない場合はお詫び申し上げます。

PaymentGatewayCipher次のようなクラスがあります。

require 'openssl'

# Encapsulates payment gateway encryption / decryption utility functions
class PaymentGatewayCipher
  class << self
    def encrypt(file, options = {})
      cipher = create_cipher
      cipher.encrypt(cipher_key)
      data = cipher.update(File.read(file))
      data << cipher.final

      if to_file = options[:to]
        # Write it out to a different file
        File.open(to_file, 'wb') do |f|
          f << data
        end
      end

      data
    end

    # Decrypts the given file
    def decrypt(file)
      cipher = create_cipher
      cipher.decrypt(cipher_key)
      encrypted_data = File.open(file, 'rb') {|io| io.read}
      data = cipher.update(encrypted_data)
      data << cipher.final
    end

    # Generates the cipher to be used for encryption/decryption
    def create_cipher
      OpenSSL::Cipher::Cipher.new('aes-256-cbc')
    end

    # Loads the cipher key used for the symmetric algorithm
    def cipher_key
      File.open(File.join(Rails.root, 'config/mystuff/live/cipher.key'), 'rb') {|io| io.read}
    end
  end
end

rake taskファイルを復号化するためにそれを実行するためにを書きたいです。tasks/Rakefile次のようなファイルを入れてみました:

directory "tasks"

task :decrypt_test do
  puts "Decypting"
  pay_pal_config = PaymentGatewayCipher.decrypt('hpa1')
end

しかし、実行すると、見つからないと表示されますClass::Rails

ヘルプ?

4

2 に答える 2

7

フォルダを使用lib/tasksし、タスクにRails環境を含めることを忘れないでください。

directory "tasks"

task :decrypt_test => :environment do
  puts "Decypting"
  pay_pal_config = PaymentGatewayCipher.decrypt('hpa1')
end
于 2012-12-11T16:04:07.343 に答える
0

そのためにRakefileを編集する必要はありません。たとえば、 .rakelib/tasksで終わるファイルに独自のタスクを追加すると、Rakeで自動的に使用できるようになります。lib/tasks/bootstrap.rake

于 2012-12-11T16:01:23.867 に答える