mirror of
https://github.com/internetee/registry.git
synced 2025-06-06 20:55:44 +02:00
Refactor
This commit is contained in:
parent
4c884cce37
commit
9baa65a775
6 changed files with 159 additions and 22 deletions
|
@ -10,7 +10,8 @@ module Epp
|
||||||
before_action :latin_only
|
before_action :latin_only
|
||||||
before_action :validate_against_schema
|
before_action :validate_against_schema
|
||||||
before_action :validate_request
|
before_action :validate_request
|
||||||
before_action :update_epp_session, if: -> { signed_in? }
|
before_action :enforce_epp_session_timeout, if: :signed_in?
|
||||||
|
before_action :iptables_counter_update, if: :signed_in?
|
||||||
|
|
||||||
around_action :wrap_exceptions
|
around_action :wrap_exceptions
|
||||||
|
|
||||||
|
@ -349,32 +350,21 @@ module Epp
|
||||||
raise 'EPP session id is empty' unless epp_session_id.present?
|
raise 'EPP session id is empty' unless epp_session_id.present?
|
||||||
end
|
end
|
||||||
|
|
||||||
def update_epp_session
|
def enforce_epp_session_timeout
|
||||||
iptables_counter_update
|
if epp_session.timed_out?
|
||||||
|
|
||||||
if session_timeout_reached?
|
|
||||||
@api_user = current_user # cache current_user for logging
|
|
||||||
epp_session.destroy
|
|
||||||
|
|
||||||
epp_errors << {
|
epp_errors << {
|
||||||
msg: t('session_timeout'),
|
code: '2201',
|
||||||
code: '2201'
|
msg: 'Authorization error: Session timeout',
|
||||||
}
|
}
|
||||||
|
handle_errors
|
||||||
handle_errors and return
|
epp_session.destroy!
|
||||||
else
|
else
|
||||||
epp_session.update_column(:updated_at, Time.zone.now)
|
epp_session.update_last_access
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
def session_timeout_reached?
|
|
||||||
timeout = ENV['epp_session_timeout_seconds'].to_i.seconds
|
|
||||||
epp_session.updated_at < (Time.zone.now - timeout)
|
|
||||||
end
|
|
||||||
|
|
||||||
def iptables_counter_update
|
def iptables_counter_update
|
||||||
return if ENV['iptables_counter_enabled'].blank? && ENV['iptables_counter_enabled'] != 'true'
|
return if ENV['iptables_counter_enabled'].blank? && ENV['iptables_counter_enabled'] != 'true'
|
||||||
return if current_user.blank?
|
|
||||||
counter_update(current_user.registrar_code, ENV['iptables_server_ip'])
|
counter_update(current_user.registrar_code, ENV['iptables_server_ip'])
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
13
app/models/epp/expired_sessions.rb
Normal file
13
app/models/epp/expired_sessions.rb
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
module Epp
|
||||||
|
class ExpiredSessions
|
||||||
|
attr_reader :sessions
|
||||||
|
|
||||||
|
def initialize(sessions)
|
||||||
|
@sessions = sessions
|
||||||
|
end
|
||||||
|
|
||||||
|
def clear
|
||||||
|
sessions.find_each(&:destroy!)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
|
@ -3,6 +3,11 @@ class EppSession < ApplicationRecord
|
||||||
|
|
||||||
validates :session_id, uniqueness: true, presence: true
|
validates :session_id, uniqueness: true, presence: true
|
||||||
|
|
||||||
|
class_attribute :timeout
|
||||||
|
self.timeout = ENV['epp_session_timeout_seconds'].to_i.seconds
|
||||||
|
|
||||||
|
alias_attribute :last_access, :updated_at
|
||||||
|
|
||||||
def self.limit_per_registrar
|
def self.limit_per_registrar
|
||||||
4
|
4
|
||||||
end
|
end
|
||||||
|
@ -11,4 +16,21 @@ class EppSession < ApplicationRecord
|
||||||
count = where(user_id: registrar.api_users.ids).where('updated_at >= ?', Time.zone.now - 1.second).count
|
count = where(user_id: registrar.api_users.ids).where('updated_at >= ?', Time.zone.now - 1.second).count
|
||||||
count >= limit_per_registrar
|
count >= limit_per_registrar
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def self.expired
|
||||||
|
interval = "#{timeout.parts.first.second} #{timeout.parts.first.first}"
|
||||||
|
where(':now > (updated_at + interval :interval)', now: Time.zone.now, interval: interval)
|
||||||
|
end
|
||||||
|
|
||||||
|
def update_last_access
|
||||||
|
touch
|
||||||
|
end
|
||||||
|
|
||||||
|
def timed_out?
|
||||||
|
(updated_at + self.class.timeout).past?
|
||||||
|
end
|
||||||
|
|
||||||
|
def expired?
|
||||||
|
timed_out?
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -7,6 +7,14 @@ class DummyEppController < Epp::BaseController
|
||||||
end
|
end
|
||||||
|
|
||||||
class EppBaseTest < EppTestCase
|
class EppBaseTest < EppTestCase
|
||||||
|
setup do
|
||||||
|
@original_session_timeout = EppSession.timeout
|
||||||
|
end
|
||||||
|
|
||||||
|
teardown do
|
||||||
|
EppSession.timeout = @original_session_timeout
|
||||||
|
end
|
||||||
|
|
||||||
def test_internal_error
|
def test_internal_error
|
||||||
Rails.application.routes.draw do
|
Rails.application.routes.draw do
|
||||||
post 'epp/command/internal_error', to: 'dummy_epp#internal_error',
|
post 'epp/command/internal_error', to: 'dummy_epp#internal_error',
|
||||||
|
@ -81,6 +89,62 @@ class EppBaseTest < EppTestCase
|
||||||
assert_epp_response :authorization_error
|
assert_epp_response :authorization_error
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def test_deletes_session_when_timed_out
|
||||||
|
now = Time.zone.parse('2010-07-05')
|
||||||
|
travel_to now
|
||||||
|
timeout = 0.second
|
||||||
|
EppSession.timeout = timeout
|
||||||
|
session = epp_sessions(:api_bestnames)
|
||||||
|
session.update!(updated_at: now - timeout - 1.second)
|
||||||
|
|
||||||
|
authentication_enabled_epp_request_xml = <<-XML
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<epp xmlns="https://epp.tld.ee/schema/epp-ee-1.0.xsd">
|
||||||
|
<command>
|
||||||
|
<info>
|
||||||
|
<domain:info xmlns:domain="https://epp.tld.ee/schema/domain-eis-1.0.xsd">
|
||||||
|
<domain:name>#{domains(:shop).name}</domain:name>
|
||||||
|
</domain:info>
|
||||||
|
</info>
|
||||||
|
</command>
|
||||||
|
</epp>
|
||||||
|
XML
|
||||||
|
post '/epp/command/info', { frame: authentication_enabled_epp_request_xml },
|
||||||
|
'HTTP_COOKIE' => "session=#{session.session_id}"
|
||||||
|
|
||||||
|
assert_epp_response :authorization_error
|
||||||
|
assert_nil EppSession.find_by(session_id: session.session_id)
|
||||||
|
end
|
||||||
|
|
||||||
|
def test_session_last_access_is_updated_when_not_timed_out
|
||||||
|
now = Time.zone.parse('2010-07-05')
|
||||||
|
travel_to now
|
||||||
|
timeout = 1.seconds
|
||||||
|
EppSession.timeout = timeout
|
||||||
|
session = epp_sessions(:api_bestnames)
|
||||||
|
session.last_access = now - timeout
|
||||||
|
|
||||||
|
authentication_enabled_epp_request_xml = <<-XML
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<epp xmlns="https://epp.tld.ee/schema/epp-ee-1.0.xsd">
|
||||||
|
<command>
|
||||||
|
<info>
|
||||||
|
<domain:info xmlns:domain="https://epp.tld.ee/schema/domain-eis-1.0.xsd">
|
||||||
|
<domain:name>#{domains(:shop).name}</domain:name>
|
||||||
|
</domain:info>
|
||||||
|
</info>
|
||||||
|
</command>
|
||||||
|
</epp>
|
||||||
|
XML
|
||||||
|
|
||||||
|
post '/epp/command/info', { frame: authentication_enabled_epp_request_xml },
|
||||||
|
'HTTP_COOKIE' => "session=#{session.session_id}"
|
||||||
|
session.reload
|
||||||
|
|
||||||
|
assert_epp_response :completed_successfully
|
||||||
|
assert_equal now, session.last_access
|
||||||
|
end
|
||||||
|
|
||||||
private
|
private
|
||||||
|
|
||||||
def valid_command_path
|
def valid_command_path
|
||||||
|
|
|
@ -3,6 +3,11 @@ require 'test_helper'
|
||||||
class EppSessionTest < ActiveSupport::TestCase
|
class EppSessionTest < ActiveSupport::TestCase
|
||||||
setup do
|
setup do
|
||||||
@epp_session = epp_sessions(:api_bestnames)
|
@epp_session = epp_sessions(:api_bestnames)
|
||||||
|
@original_session_timeout = EppSession.timeout
|
||||||
|
end
|
||||||
|
|
||||||
|
teardown do
|
||||||
|
EppSession.timeout = @original_session_timeout
|
||||||
end
|
end
|
||||||
|
|
||||||
def test_valid
|
def test_valid
|
||||||
|
@ -60,4 +65,39 @@ class EppSessionTest < ActiveSupport::TestCase
|
||||||
|
|
||||||
refute EppSession.limit_reached?(registrars(:bestnames))
|
refute EppSession.limit_reached?(registrars(:bestnames))
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def test_expired_scope
|
||||||
|
now = Time.zone.parse('2010-07-05')
|
||||||
|
travel_to now
|
||||||
|
session = epp_sessions(:api_bestnames)
|
||||||
|
timeout = 0.seconds
|
||||||
|
EppSession.timeout = timeout
|
||||||
|
|
||||||
|
session.update!(last_access: now - timeout - 1.second)
|
||||||
|
assert_includes EppSession.expired, session, 'Expired session should be returned'
|
||||||
|
|
||||||
|
session.update!(last_access: now - timeout)
|
||||||
|
|
||||||
|
assert_not_includes EppSession.expired, session, 'Unexpired session should not be returned'
|
||||||
|
end
|
||||||
|
|
||||||
|
def test_expired_when_timed_out
|
||||||
|
now = Time.zone.parse('2010-07-05')
|
||||||
|
travel_to now
|
||||||
|
timeout = 0.seconds
|
||||||
|
EppSession.timeout = timeout
|
||||||
|
@epp_session.last_access = now - timeout - 1.second
|
||||||
|
|
||||||
|
assert @epp_session.expired?
|
||||||
|
end
|
||||||
|
|
||||||
|
def test_not_expired_when_not_timed_out
|
||||||
|
now = Time.zone.parse('2010-07-05')
|
||||||
|
travel_to now
|
||||||
|
timeout = 0.seconds
|
||||||
|
EppSession.timeout = timeout
|
||||||
|
@epp_session.last_access = now - timeout
|
||||||
|
|
||||||
|
assert_not @epp_session.expired?
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -1,11 +1,19 @@
|
||||||
require 'test_helper'
|
require 'test_helper'
|
||||||
|
|
||||||
class EppClearExpiredSessionsTaskTest < ActiveSupport::TestCase
|
class EppClearExpiredSessionsTaskTest < ActiveSupport::TestCase
|
||||||
|
setup do
|
||||||
|
@original_session_timeout = EppSession.timeout
|
||||||
|
end
|
||||||
|
|
||||||
|
teardown do
|
||||||
|
EppSession.timeout = @original_session_timeout
|
||||||
|
end
|
||||||
|
|
||||||
def test_clears_expired_epp_sessions
|
def test_clears_expired_epp_sessions
|
||||||
idle_timeout = 0.second
|
timeout = 0.second
|
||||||
EppSession.idle_timeout = idle_timeout
|
EppSession.timeout = timeout
|
||||||
session = epp_sessions(:api_bestnames)
|
session = epp_sessions(:api_bestnames)
|
||||||
session.update!(updated_at: Time.zone.now - idle_timeout - 1.second)
|
session.update!(updated_at: Time.zone.now - timeout - 1.second)
|
||||||
|
|
||||||
run_task
|
run_task
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue