Class: UserCustomAttribute

Inherits:
ApplicationRecord show all
Defined in:
app/models/user_custom_attribute.rb

Constant Summary collapse

BLOCKED_BY =
'blocked_by'
UNBLOCKED_BY =
'unblocked_by'
ARKOSE_RISK_BAND =
'arkose_risk_band'
AUTO_BANNED_BY_ABUSE_REPORT_ID =
'auto_banned_by_abuse_report_id'
AUTO_BANNED_BY_SPAM_LOG_ID =
'auto_banned_by_spam_log_id'
ALLOW_POSSIBLE_SPAM =
'allow_possible_spam'
IDENTITY_VERIFICATION_PHONE_EXEMPT =
'identity_verification_phone_exempt'

Constants inherited from ApplicationRecord

ApplicationRecord::MAX_PLUCK

Constants included from ResetOnUnionError

ResetOnUnionError::MAX_RESET_PERIOD

Class Method Summary collapse

Methods inherited from ApplicationRecord

cached_column_list, #create_or_load_association, declarative_enum, default_select_columns, id_in, id_not_in, iid_in, pluck_primary_key, primary_key_in, #readable_by?, safe_ensure_unique, safe_find_or_create_by, safe_find_or_create_by!, #to_ability_name, underscore, where_exists, where_not_exists, with_fast_read_statement_timeout, without_order

Methods included from SensitiveSerializableHash

#serializable_hash

Class Method Details

.sessionsObject



33
34
35
36
37
38
39
# File 'app/models/user_custom_attribute.rb', line 33

def sessions
  return none if blocked_users.empty?

  arkose_sessions
    .by_user_id(blocked_users.map(&:user_id))
    .select(:value)
end

.set_banned_by_abuse_report(abuse_report) ⇒ Object



41
42
43
44
45
46
47
# File 'app/models/user_custom_attribute.rb', line 41

def set_banned_by_abuse_report(abuse_report)
  return unless abuse_report

  custom_attribute = { user_id: abuse_report.user.id, key: AUTO_BANNED_BY_ABUSE_REPORT_ID, value: abuse_report.id }

  upsert_custom_attributes([custom_attribute])
end

.set_banned_by_spam_log(spam_log) ⇒ Object



49
50
51
52
53
54
55
# File 'app/models/user_custom_attribute.rb', line 49

def set_banned_by_spam_log(spam_log)
  return unless spam_log

  custom_attribute = { user_id: spam_log.user_id, key: AUTO_BANNED_BY_SPAM_LOG_ID, value: spam_log.id }

  upsert_custom_attributes([custom_attribute])
end

.upsert_custom_attributes(custom_attributes) ⇒ Object



23
24
25
26
27
28
29
30
31
# File 'app/models/user_custom_attribute.rb', line 23

def upsert_custom_attributes(custom_attributes)
  created_at = DateTime.now
  updated_at = DateTime.now

  custom_attributes.map! do |custom_attribute|
    custom_attribute.merge({ created_at: created_at, updated_at: updated_at })
  end
  upsert_all(custom_attributes, unique_by: [:user_id, :key])
end