You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

215 lines
5.8 KiB

Web Push Notifications (#3243) * feat: Register push subscription * feat: Notify when mentioned * feat: Boost, favourite, reply, follow, follow request * feat: Notification interaction * feat: Handle change of public key * feat: Unsubscribe if things go wrong * feat: Do not send normal notifications if push is enabled * feat: Focus client if open * refactor: Move push logic to WebPushSubscription * feat: Better title and body * feat: Localize messages * chore: Fix lint errors * feat: Settings * refactor: Lazy load * fix: Check if push settings exist * feat: Device-based preferences * refactor: Simplify logic * refactor: Pull request feedback * refactor: Pull request feedback * refactor: Create /api/web/push_subscriptions endpoint * feat: Spec PushSubscriptionController * refactor: WebPushSubscription => Web::PushSubscription * feat: Spec Web::PushSubscription * feat: Display first media attachment * feat: Support direction * fix: Stuff broken while rebasing * refactor: Integration with session activations * refactor: Cleanup * refactor: Simplify implementation * feat: Set VAPID keys via environment * chore: Comments * fix: Crash when no alerts * fix: Set VAPID keys in testing environment * fix: Follow link * feat: Notification actions * fix: Delete previous subscription * chore: Temporary logs * refactor: Move migration to a later date * fix: Fetch the correct session activation and misc bugs * refactor: Move migration to a later date * fix: Remove follow request (no notifications) * feat: Send administrator contact to push service * feat: Set time-to-live * fix: Do not show sensitive images * fix: Reducer crash in error handling * feat: Add badge * chore: Fix lint error * fix: Checkbox label overlap * fix: Check for payload support * fix: Rename action "type" (crash in latest Chrome) * feat: Action to expand notification * fix: Lint errors * fix: Unescape notification body * fix: Do not allow boosting if the status is hidden * feat: Add VAPID keys to the production sample environment * fix: Strip HTML tags from status * refactor: Better error messages * refactor: Handle browser not implementing the VAPID protocol (Samsung Internet) * fix: Error when target_status is nil * fix: Handle lack of image * fix: Delete reference to invalid subscriptions * feat: Better error handling * fix: Unescape HTML characters after tags are striped * refactor: Simpify code * fix: Modify to work with #4091 * Sort strings alphabetically * i18n: Updated Polish translation it annoys me that it's not fully localized :P * refactor: Use current_session in PushSubscriptionController * fix: Rebase mistake * fix: Set cacheName to mastodon * refactor: Pull request feedback * refactor: Remove logging statements * chore(yarn): Fix conflicts with master * chore(yarn): Copy latest from master * chore(yarn): Readd offline-plugin * refactor: Use save! and update! * refactor: Send notifications async * fix: Allow retry when push fails * fix: Save track for failed pushes * fix: Minify sw.js * fix: Remove account_id from fabricator
6 years ago
  1. # frozen_string_literal: true
  2. # == Schema Information
  3. #
  4. # Table name: users
  5. #
  6. # id :integer not null, primary key
  7. # email :string default(""), not null
  8. # created_at :datetime not null
  9. # updated_at :datetime not null
  10. # encrypted_password :string default(""), not null
  11. # reset_password_token :string
  12. # reset_password_sent_at :datetime
  13. # remember_created_at :datetime
  14. # sign_in_count :integer default(0), not null
  15. # current_sign_in_at :datetime
  16. # last_sign_in_at :datetime
  17. # current_sign_in_ip :inet
  18. # last_sign_in_ip :inet
  19. # admin :boolean default(FALSE), not null
  20. # confirmation_token :string
  21. # confirmed_at :datetime
  22. # confirmation_sent_at :datetime
  23. # unconfirmed_email :string
  24. # locale :string
  25. # encrypted_otp_secret :string
  26. # encrypted_otp_secret_iv :string
  27. # encrypted_otp_secret_salt :string
  28. # consumed_timestep :integer
  29. # otp_required_for_login :boolean default(FALSE), not null
  30. # last_emailed_at :datetime
  31. # otp_backup_codes :string is an Array
  32. # filtered_languages :string default([]), not null, is an Array
  33. # account_id :integer not null
  34. # disabled :boolean default(FALSE), not null
  35. # moderator :boolean default(FALSE), not null
  36. #
  37. class User < ApplicationRecord
  38. include Settings::Extend
  39. ACTIVE_DURATION = 14.days
  40. devise :registerable, :recoverable,
  41. :rememberable, :trackable, :validatable, :confirmable,
  42. :two_factor_authenticatable, :two_factor_backupable,
  43. otp_secret_encryption_key: ENV['OTP_SECRET'],
  44. otp_number_of_backup_codes: 10
  45. belongs_to :account, inverse_of: :user, required: true
  46. accepts_nested_attributes_for :account
  47. has_many :applications, class_name: 'Doorkeeper::Application', as: :owner
  48. validates :locale, inclusion: I18n.available_locales.map(&:to_s), if: :locale?
  49. validates_with BlacklistedEmailValidator, if: :email_changed?
  50. scope :recent, -> { order(id: :desc) }
  51. scope :admins, -> { where(admin: true) }
  52. scope :moderators, -> { where(moderator: true) }
  53. scope :staff, -> { admins.or(moderators) }
  54. scope :confirmed, -> { where.not(confirmed_at: nil) }
  55. scope :inactive, -> { where(arel_table[:current_sign_in_at].lt(ACTIVE_DURATION.ago)) }
  56. scope :active, -> { confirmed.where(arel_table[:current_sign_in_at].gteq(ACTIVE_DURATION.ago)).joins(:account).where(accounts: { suspended: false }) }
  57. scope :matches_email, ->(value) { where(arel_table[:email].matches("#{value}%")) }
  58. scope :with_recent_ip_address, ->(value) { where(arel_table[:current_sign_in_ip].eq(value).or(arel_table[:last_sign_in_ip].eq(value))) }
  59. before_validation :sanitize_languages
  60. # This avoids a deprecation warning from Rails 5.1
  61. # It seems possible that a future release of devise-two-factor will
  62. # handle this itself, and this can be removed from our User class.
  63. attribute :otp_secret
  64. has_many :session_activations, dependent: :destroy
  65. def confirmed?
  66. confirmed_at.present?
  67. end
  68. def staff?
  69. admin? || moderator?
  70. end
  71. def role
  72. if admin?
  73. 'admin'
  74. elsif moderator?
  75. 'moderator'
  76. else
  77. 'user'
  78. end
  79. end
  80. def disable!
  81. update!(disabled: true,
  82. last_sign_in_at: current_sign_in_at,
  83. current_sign_in_at: nil)
  84. end
  85. def enable!
  86. update!(disabled: false)
  87. end
  88. def confirm!
  89. skip_confirmation!
  90. save!
  91. end
  92. def promote!
  93. if moderator?
  94. update!(moderator: false, admin: true)
  95. elsif !admin?
  96. update!(moderator: true)
  97. end
  98. end
  99. def demote!
  100. if admin?
  101. update!(admin: false, moderator: true)
  102. elsif moderator?
  103. update!(moderator: false)
  104. end
  105. end
  106. def disable_two_factor!
  107. self.otp_required_for_login = false
  108. otp_backup_codes&.clear
  109. save!
  110. end
  111. def active_for_authentication?
  112. super && !disabled?
  113. end
  114. def setting_default_privacy
  115. settings.default_privacy || (account.locked? ? 'private' : 'public')
  116. end
  117. def setting_default_sensitive
  118. settings.default_sensitive
  119. end
  120. def setting_unfollow_modal
  121. settings.unfollow_modal
  122. end
  123. def setting_boost_modal
  124. settings.boost_modal
  125. end
  126. def setting_delete_modal
  127. settings.delete_modal
  128. end
  129. def setting_auto_play_gif
  130. settings.auto_play_gif
  131. end
  132. def setting_reduce_motion
  133. settings.reduce_motion
  134. end
  135. def setting_system_font_ui
  136. settings.system_font_ui
  137. end
  138. def setting_noindex
  139. settings.noindex
  140. end
  141. def setting_theme
  142. settings.theme
  143. end
  144. def token_for_app(a)
  145. return nil if a.nil? || a.owner != self
  146. Doorkeeper::AccessToken
  147. .find_or_create_by(application_id: a.id, resource_owner_id: id) do |t|
  148. t.scopes = a.scopes
  149. t.expires_in = Doorkeeper.configuration.access_token_expires_in
  150. t.use_refresh_token = Doorkeeper.configuration.refresh_token_enabled?
  151. end
  152. end
  153. def activate_session(request)
  154. session_activations.activate(session_id: SecureRandom.hex,
  155. user_agent: request.user_agent,
  156. ip: request.remote_ip).session_id
  157. end
  158. def exclusive_session(id)
  159. session_activations.exclusive(id)
  160. end
  161. def session_active?(id)
  162. session_activations.active? id
  163. end
  164. def web_push_subscription(session)
  165. session.web_push_subscription.nil? ? nil : session.web_push_subscription.as_payload
  166. end
  167. protected
  168. def send_devise_notification(notification, *args)
  169. devise_mailer.send(notification, self, *args).deliver_later
  170. end
  171. private
  172. def sanitize_languages
  173. filtered_languages.reject!(&:blank?)
  174. end
  175. end