The code powering m.abunchtell.com https://m.abunchtell.com
Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 
 

91 linhas
2.6 KiB

  1. # frozen_string_literal: true
  2. # == Schema Information
  3. #
  4. # Table name: session_activations
  5. #
  6. # id :integer not null, primary key
  7. # user_id :integer not null
  8. # session_id :string not null
  9. # created_at :datetime not null
  10. # updated_at :datetime not null
  11. # user_agent :string default(""), not null
  12. # ip :inet
  13. # access_token_id :integer
  14. # web_push_subscription_id :integer
  15. #
  16. # id :integer not null, primary key
  17. # user_id :integer not null
  18. # session_id :string not null
  19. # created_at :datetime not null
  20. # updated_at :datetime not null
  21. # user_agent :string default(""), not null
  22. # ip :inet
  23. # access_token_id :integer
  24. #
  25. class SessionActivation < ApplicationRecord
  26. belongs_to :access_token, class_name: 'Doorkeeper::AccessToken', dependent: :destroy
  27. belongs_to :web_push_subscription, class_name: 'Web::PushSubscription', dependent: :destroy
  28. delegate :token,
  29. to: :access_token,
  30. allow_nil: true
  31. def detection
  32. @detection ||= Browser.new(user_agent)
  33. end
  34. def browser
  35. detection.id
  36. end
  37. def platform
  38. detection.platform.id
  39. end
  40. before_create :assign_access_token
  41. before_save :assign_user_agent
  42. class << self
  43. def active?(id)
  44. id && where(session_id: id).exists?
  45. end
  46. def activate(options = {})
  47. activation = create!(options)
  48. purge_old
  49. activation
  50. end
  51. def deactivate(id)
  52. return unless id
  53. where(session_id: id).destroy_all
  54. end
  55. def purge_old
  56. order('created_at desc').offset(Rails.configuration.x.max_session_activations).destroy_all
  57. end
  58. def exclusive(id)
  59. where('session_id != ?', id).destroy_all
  60. end
  61. end
  62. private
  63. def assign_user_agent
  64. self.user_agent = '' if user_agent.nil?
  65. end
  66. def assign_access_token
  67. superapp = Doorkeeper::Application.find_by(superapp: true)
  68. self.access_token = Doorkeeper::AccessToken.create!(application_id: superapp&.id,
  69. resource_owner_id: user_id,
  70. scopes: 'read write follow',
  71. expires_in: Doorkeeper.configuration.access_token_expires_in,
  72. use_refresh_token: Doorkeeper.configuration.refresh_token_enabled?)
  73. end
  74. end