houdini/lib/query/query_nonprofit_keys.rb

18 lines
558 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2020-06-12 20:03:43 +00:00
# License: AGPL-3.0-or-later WITH WTO-AP-3.0-or-later
# Full license explanation at https://github.com/houdiniproject/houdini/blob/master/LICENSE
require 'qx'
module QueryNonprofitKeys
def self.get_key(npo_id, key_name)
query = Qx.select(key_name)
.from(:nonprofit_keys)
.where('nonprofit_id' => npo_id)
.execute
raise ActiveRecord::RecordNotFound, "Nonprofit key does not exist: #{key_name}" if query.empty?
Cypher.decrypt(JSON.parse(query.first[key_name]))
end
end