1
0
Fork 0
This repository has been archived on 2023-03-27. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
lpr-partynest/app/models/account.rb
2019-02-02 02:40:45 +05:00

64 lines
1.4 KiB
Ruby

# frozen_string_literal: true
class Account < ApplicationRecord
USERNAME_RE = /\A[a-z][_a-z0-9]*[a-z0-9]\z/.freeze
rolify role_join_table_name: :account_roles
belongs_to :person, optional: true
has_one :user, dependent: :restrict_with_exception
has_many :account_telegram_contacts,
dependent: :restrict_with_exception
has_one :own_membership_app,
class_name: 'MembershipApp',
dependent: :restrict_with_exception
has_many :passport_confirmations, dependent: :restrict_with_exception
scope :guests, -> { includes(:user).where(users: { id: nil }) }
after_initialize :generate_username
before_create :generate_guest_token
validates :person_id, allow_nil: true, uniqueness: true
validates :username,
presence: true,
length: { in: 3..36 },
format: USERNAME_RE,
uniqueness: { case_sensitive: false }
validates :biography, length: { maximum: 10_000 }
def to_param
username
end
def guest?
user.nil?
end
def add_role(_role_name, _resource = nil)
raise 'can not add role to guest account' if guest?
super
end
def can_access_sidekiq_web_interface?
is_superuser?
end
private
def generate_username
self.username = "noname_#{SecureRandom.hex(8)}" if username.nil?
end
def generate_guest_token
self.guest_token = SecureRandom.hex
end
end