2017-10-25 10:19:43 +08:00
|
|
|
# frozen_string_literal: true
|
2015-02-04 12:10:54 +08:00
|
|
|
class ApplicationRequest < ActiveRecord::Base
|
2015-02-06 11:39:04 +08:00
|
|
|
enum req_type: %i[
|
|
|
|
http_total
|
|
|
|
http_2xx
|
|
|
|
http_background
|
|
|
|
http_3xx
|
|
|
|
http_4xx
|
|
|
|
http_5xx
|
|
|
|
page_view_crawler
|
|
|
|
page_view_logged_in
|
2015-07-04 05:02:57 +08:00
|
|
|
page_view_anon
|
|
|
|
page_view_logged_in_mobile
|
2022-11-29 19:07:42 +08:00
|
|
|
page_view_anon_mobile
|
|
|
|
api
|
|
|
|
user_api
|
2023-01-09 20:20:10 +08:00
|
|
|
]
|
2015-02-04 12:10:54 +08:00
|
|
|
|
2018-03-16 05:10:45 +08:00
|
|
|
include CachedCounting
|
2015-02-04 12:10:54 +08:00
|
|
|
|
2020-05-18 17:22:39 +08:00
|
|
|
def self.disable
|
2020-05-23 12:56:13 +08:00
|
|
|
@disabled = true
|
2020-05-18 17:22:39 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
def self.enable
|
2020-05-23 12:56:13 +08:00
|
|
|
@disabled = false
|
2020-05-18 17:22:39 +08:00
|
|
|
end
|
|
|
|
|
2022-02-23 00:45:25 +08:00
|
|
|
def self.increment!(req_type)
|
2020-05-23 12:56:13 +08:00
|
|
|
return if @disabled
|
2022-02-23 00:45:25 +08:00
|
|
|
perform_increment!(req_type)
|
2015-02-04 12:10:54 +08:00
|
|
|
end
|
|
|
|
|
2022-02-23 00:45:25 +08:00
|
|
|
def self.write_cache!(req_type, count, date)
|
2015-02-04 12:10:54 +08:00
|
|
|
req_type_id = req_types[req_type]
|
|
|
|
|
2023-03-17 17:35:29 +08:00
|
|
|
DB.exec(<<~SQL, date: date, req_type_id: req_type_id, count: count)
|
|
|
|
INSERT INTO application_requests (date, req_type, count)
|
|
|
|
VALUES (:date, :req_type_id, :count)
|
|
|
|
ON CONFLICT (date, req_type)
|
|
|
|
DO UPDATE SET count = application_requests.count + excluded.count
|
|
|
|
SQL
|
2015-02-04 12:10:54 +08:00
|
|
|
end
|
|
|
|
|
2015-02-05 04:05:16 +08:00
|
|
|
def self.stats
|
2015-02-12 06:41:29 +08:00
|
|
|
s = HashWithIndifferentAccess.new({})
|
2015-02-05 04:05:16 +08:00
|
|
|
|
2015-02-12 06:41:29 +08:00
|
|
|
self.req_types.each do |key, i|
|
|
|
|
query = self.where(req_type: i)
|
|
|
|
s["#{key}_total"] = query.sum(:count)
|
|
|
|
s["#{key}_30_days"] = query.where("date > ?", 30.days.ago).sum(:count)
|
|
|
|
s["#{key}_7_days"] = query.where("date > ?", 7.days.ago).sum(:count)
|
2015-02-05 04:05:16 +08:00
|
|
|
end
|
2015-02-12 06:41:29 +08:00
|
|
|
|
|
|
|
s
|
2015-02-05 04:05:16 +08:00
|
|
|
end
|
2015-02-04 12:10:54 +08:00
|
|
|
end
|
|
|
|
|
2015-02-04 13:34:25 +08:00
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: application_requests
|
|
|
|
#
|
|
|
|
# id :integer not null, primary key
|
|
|
|
# date :date not null
|
|
|
|
# req_type :integer not null
|
|
|
|
# count :integer default(0), not null
|
|
|
|
#
|
|
|
|
# Indexes
|
|
|
|
#
|
|
|
|
# index_application_requests_on_date_and_req_type (date,req_type) UNIQUE
|
|
|
|
#
|