discourse/app/models/post_reply_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

38 lines
918 B
Ruby

# frozen_string_literal: true
class PostReplyKey < ActiveRecord::Base
belongs_to :post
belongs_to :user
before_validation { self.reply_key ||= self.class.generate_reply_key }
validates :post_id, presence: true, uniqueness: { scope: :user_id }
validates :user_id, presence: true
validates :reply_key, presence: true
def reply_key
super&.delete('-')
end
def self.generate_reply_key
SecureRandom.hex(16)
end
end
# == Schema Information
#
# Table name: post_reply_keys
#
# id :bigint not null, primary key
# user_id :integer not null
# post_id :integer not null
# reply_key :uuid not null
# created_at :datetime not null
# updated_at :datetime not null
#
# Indexes
#
# index_post_reply_keys_on_reply_key (reply_key) UNIQUE
# index_post_reply_keys_on_user_id_and_post_id (user_id,post_id) UNIQUE
#