discourse/app/models/unsubscribe_key.rb
Sam Saffron 30990006a9 DEV: enable frozen string literal on all files
This reduces chances of errors where consumers of strings mutate inputs
and reduces memory usage of the app.

Test suite passes now, but there may be some stuff left, so we will run
a few sites on a branch prior to merging
2019-05-13 09:31:32 +08:00

45 lines
1.0 KiB
Ruby

# frozen_string_literal: true
class UnsubscribeKey < ActiveRecord::Base
belongs_to :user
belongs_to :post
belongs_to :topic
before_create :generate_random_key
def self.create_key_for(user, type)
if Post === type
create(user_id: user.id, unsubscribe_key_type: "topic", topic_id: type.topic_id, post_id: type.id).key
else
create(user_id: user.id, unsubscribe_key_type: type).key
end
end
def self.user_for_key(key)
where(key: key).first.try(:user)
end
private
def generate_random_key
self.key = SecureRandom.hex(32)
end
end
# == Schema Information
#
# Table name: unsubscribe_keys
#
# key :string(64) not null, primary key
# user_id :integer not null
# created_at :datetime not null
# updated_at :datetime not null
# unsubscribe_key_type :string
# topic_id :integer
# post_id :integer
#
# Indexes
#
# index_unsubscribe_keys_on_created_at (created_at)
#