Sha256: a40a7098a59f05bfda867106e15b7b0b548f13ec8d5ee1e5e185c7d5db10d012

Contents?: true

Size: 1.2 KB

Versions: 16

Compression:

Stored size: 1.2 KB

Contents

require 'mcfly'

class Marty::ApiAuth < Marty::Base
  has_mcfly

  KEY_SIZE = 19

  def self.generate_key
    SecureRandom.hex(KEY_SIZE)
  end

  class ApiAuthValidator < ActiveModel::Validator
    def validate(api)
      api.errors[:base] =
        "API Key length must be #{KEY_SIZE*2}" if
        api.api_key && api.api_key.length != KEY_SIZE*2

      api.errors[:base] =
        "Script Name must reference a valid script" if
        Marty::Script.find_script(api.script_name, nil).nil?
    end
  end

  before_validation do
    self.api_key = Marty::ApiAuth.generate_key if
      self.api_key.nil? || self.api_key.length == 0
  end

  validates_presence_of :app_name, :api_key, :script_name

  validates_with ApiAuthValidator

  mcfly_validates_uniqueness_of :api_key, scope: [:script_name]
  validates_uniqueness_of :app_name, scope: [:script_name,
                                             :obsoleted_dt]

  def self.authorized?(script_name, api_key)
    is_secured = where(script_name: script_name,
                       obsoleted_dt: 'infinity').exists?
    !is_secured || where(api_key: api_key,
                         script_name: script_name,
                         obsoleted_dt: 'infinity').exists?
  end
end

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
marty-0.5.28 app/models/marty/api_auth.rb
marty-0.5.27 app/models/marty/api_auth.rb
marty-0.5.26 app/models/marty/api_auth.rb
marty-0.5.25 app/models/marty/api_auth.rb
marty-0.5.24 app/models/marty/api_auth.rb
marty-0.5.23 app/models/marty/api_auth.rb
marty-0.5.21 app/models/marty/api_auth.rb
marty-0.5.20 app/models/marty/api_auth.rb
marty-0.5.19 app/models/marty/api_auth.rb
marty-0.5.18 app/models/marty/api_auth.rb
marty-0.5.17 app/models/marty/api_auth.rb
marty-0.5.16 app/models/marty/api_auth.rb
marty-0.5.15 app/models/marty/api_auth.rb
marty-0.5.14 app/models/marty/api_auth.rb
marty-0.5.13 app/models/marty/api_auth.rb
marty-0.5.12 app/models/marty/api_auth.rb