2017-06-23 12:50:53 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: session_activations
|
|
|
|
#
|
2017-07-13 16:15:32 -04:00
|
|
|
# id :integer not null, primary key
|
|
|
|
# user_id :integer not null
|
|
|
|
# session_id :string not null
|
|
|
|
# created_at :datetime not null
|
|
|
|
# updated_at :datetime not null
|
|
|
|
# user_agent :string default(""), not null
|
|
|
|
# ip :inet
|
|
|
|
# access_token_id :integer
|
|
|
|
# web_push_subscription_id :integer
|
|
|
|
#
|
|
|
|
|
2017-06-25 17:51:32 -04:00
|
|
|
# id :integer not null, primary key
|
|
|
|
# user_id :integer not null
|
|
|
|
# session_id :string not null
|
|
|
|
# created_at :datetime not null
|
|
|
|
# updated_at :datetime not null
|
|
|
|
# user_agent :string default(""), not null
|
|
|
|
# ip :inet
|
|
|
|
# access_token_id :integer
|
2017-06-23 12:50:53 -04:00
|
|
|
#
|
|
|
|
|
|
|
|
class SessionActivation < ApplicationRecord
|
2017-09-01 07:35:23 -04:00
|
|
|
belongs_to :user, inverse_of: :session_activations, required: true
|
2017-06-25 17:51:32 -04:00
|
|
|
belongs_to :access_token, class_name: 'Doorkeeper::AccessToken', dependent: :destroy
|
2017-07-13 16:15:32 -04:00
|
|
|
belongs_to :web_push_subscription, class_name: 'Web::PushSubscription', dependent: :destroy
|
2017-06-25 17:51:32 -04:00
|
|
|
|
|
|
|
delegate :token,
|
|
|
|
to: :access_token,
|
|
|
|
allow_nil: true
|
|
|
|
|
2017-06-25 10:54:30 -04:00
|
|
|
def detection
|
|
|
|
@detection ||= Browser.new(user_agent)
|
2017-06-23 12:50:53 -04:00
|
|
|
end
|
|
|
|
|
2017-06-25 10:54:30 -04:00
|
|
|
def browser
|
|
|
|
detection.id
|
2017-06-23 12:50:53 -04:00
|
|
|
end
|
|
|
|
|
2017-06-25 10:54:30 -04:00
|
|
|
def platform
|
|
|
|
detection.platform.id
|
2017-06-23 12:50:53 -04:00
|
|
|
end
|
|
|
|
|
2017-06-25 17:51:32 -04:00
|
|
|
before_create :assign_access_token
|
|
|
|
before_save :assign_user_agent
|
2017-06-23 12:50:53 -04:00
|
|
|
|
2017-06-25 10:54:30 -04:00
|
|
|
class << self
|
|
|
|
def active?(id)
|
|
|
|
id && where(session_id: id).exists?
|
|
|
|
end
|
|
|
|
|
|
|
|
def activate(options = {})
|
|
|
|
activation = create!(options)
|
|
|
|
purge_old
|
|
|
|
activation
|
|
|
|
end
|
|
|
|
|
|
|
|
def deactivate(id)
|
|
|
|
return unless id
|
|
|
|
where(session_id: id).destroy_all
|
|
|
|
end
|
|
|
|
|
|
|
|
def purge_old
|
|
|
|
order('created_at desc').offset(Rails.configuration.x.max_session_activations).destroy_all
|
|
|
|
end
|
|
|
|
|
|
|
|
def exclusive(id)
|
|
|
|
where('session_id != ?', id).destroy_all
|
|
|
|
end
|
2017-06-23 12:50:53 -04:00
|
|
|
end
|
2017-06-25 17:51:32 -04:00
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def assign_user_agent
|
|
|
|
self.user_agent = '' if user_agent.nil?
|
|
|
|
end
|
|
|
|
|
|
|
|
def assign_access_token
|
|
|
|
superapp = Doorkeeper::Application.find_by(superapp: true)
|
|
|
|
|
2017-06-28 11:43:48 -04:00
|
|
|
self.access_token = Doorkeeper::AccessToken.create!(application_id: superapp&.id,
|
2017-06-25 17:51:32 -04:00
|
|
|
resource_owner_id: user_id,
|
|
|
|
scopes: 'read write follow',
|
|
|
|
expires_in: Doorkeeper.configuration.access_token_expires_in,
|
|
|
|
use_refresh_token: Doorkeeper.configuration.refresh_token_enabled?)
|
|
|
|
end
|
2017-06-23 12:50:53 -04:00
|
|
|
end
|