discourse/app/models/api_key.rb

68 lines
1.8 KiB
Ruby
Raw Normal View History

# frozen_string_literal: true
2013-10-22 15:53:08 -04:00
class ApiKey < ActiveRecord::Base
belongs_to :user
belongs_to :created_by, class_name: 'User'
2013-10-22 15:53:08 -04:00
scope :active, -> { where("revoked_at IS NULL") }
scope :revoked, -> { where("revoked_at IS NOT NULL") }
2013-10-22 15:53:08 -04:00
validates_presence_of :key
after_initialize :generate_key
def generate_key
self.key ||= SecureRandom.hex(32)
2013-10-22 15:53:08 -04:00
end
def truncated_key
self.key[0..3]
end
def self.last_used_epoch
SiteSetting.api_key_last_used_epoch.presence
2013-10-22 15:53:08 -04:00
end
def self.revoke_unused_keys!
return if SiteSetting.revoke_api_keys_days == 0 # Never expire keys
to_revoke = active.where("GREATEST(last_used_at, created_at, updated_at, :epoch) < :threshold",
epoch: last_used_epoch,
threshold: SiteSetting.revoke_api_keys_days.days.ago
)
to_revoke.find_each do |api_key|
ApiKey.transaction do
api_key.update!(revoked_at: Time.zone.now)
StaffActionLogger.new(Discourse.system_user).log_api_key(
api_key,
UserHistory.actions[:api_key_update],
changes: api_key.saved_changes,
context: I18n.t("staff_action_logs.api_key.automatic_revoked", count: SiteSetting.revoke_api_keys_days))
end
end
end
2013-10-22 15:53:08 -04:00
end
2013-12-05 01:40:35 -05:00
# == Schema Information
#
# Table name: api_keys
#
# id :integer not null, primary key
# key :string(64) not null
# user_id :integer
# created_by_id :integer
# created_at :datetime not null
# updated_at :datetime not null
# allowed_ips :inet is an Array
# hidden :boolean default(FALSE), not null
# last_used_at :datetime
2019-11-19 05:20:14 -05:00
# revoked_at :datetime
# description :text
2013-12-05 01:40:35 -05:00
#
# Indexes
#
# index_api_keys_on_key (key)
2019-11-19 05:20:14 -05:00
# index_api_keys_on_user_id (user_id)
2013-12-05 01:40:35 -05:00
#