attr_encrypted は、Rails の日付の自動構成を破ることがわかりましたdate_select
。私が見つけた最も簡単な解決策は、日付文字列を自分で組み立てて、params
ハッシュを書き直すことでした。コントローラーで:
protected
def compose_date(attributes, property)
# if the date is already composed, don't try to compose it
return unless attributes[property].nil?
keys, values = [], []
# find the keys representing the components of the date
attributes.each_key {|k| keys << k if k.start_with?(property) }
# assemble the date components in the right order and write to the params
keys.sort.each { |k| values << attributes[k]; attributes.delete(k); }
attributes[property] = values.join("-") unless values.empty?
end
その後、通常どおり続行できます。すべて問題ありません。
def create
compose_date(params[:client], "dob")
@client = Client.new(params[:client])
...
end
編集:最初はこれを忘れていましたが、日付をデータベースに適切に保存するために追加の作業を行う必要がありました。attr_encrypted gem は常に文字列を格納する必要があるため、データが文字列でない場合は、データをマーシャリングする方法を示す必要があります。
データ暗号化を処理するモジュールを作成しました。
module ClientDataEncryption
def self.included(base)
base.class_eval do
attr_encrypted :ssn, :key => "my_ssn_key"
attr_encrypted :first_name, :last_name, :key => "my_name_key"
attr_encrypted :dob, :key => "my_dob_key",
:marshal => true, :marshaler => DateMarshaler
end
end
class DateMarshaler
def self.dump(date)
# if our "date" is already a string, don't try to convert it
date.is_a?(String) ? date : date.to_s(:db)
end
def self.load(date_string)
Date.parse(date_string)
end
end
end
次に、それをクライアント モデルに含めました。