2014-10-06 20:16:12 +01:00
|
|
|
class Statistic < ActiveRecord::Base
|
|
|
|
belongs_to :user
|
|
|
|
belongs_to :project
|
|
|
|
|
|
|
|
validates :user_id,
|
2014-10-08 22:01:03 +01:00
|
|
|
uniqueness: { scope: [:project_id, :key, :activity_at] },
|
2014-10-06 20:16:12 +01:00
|
|
|
presence: true
|
|
|
|
|
|
|
|
validates :email,
|
|
|
|
presence: true
|
|
|
|
|
|
|
|
validates :project_id,
|
|
|
|
presence: true
|
|
|
|
|
|
|
|
validates :project_name_with_owner,
|
|
|
|
presence: true
|
|
|
|
|
2014-10-08 22:01:03 +01:00
|
|
|
validates :key,
|
2014-10-06 20:16:12 +01:00
|
|
|
presence: true
|
|
|
|
|
|
|
|
validates :counter,
|
|
|
|
presence: true
|
|
|
|
|
|
|
|
validates :activity_at,
|
|
|
|
presence: true
|
|
|
|
|
|
|
|
attr_accessible :user_id,
|
|
|
|
:email,
|
|
|
|
:project_id,
|
|
|
|
:project_name_with_owner,
|
2014-10-08 22:01:03 +01:00
|
|
|
:key,
|
2014-10-06 20:16:12 +01:00
|
|
|
:counter,
|
|
|
|
:activity_at
|
2014-10-06 20:35:50 +01:00
|
|
|
|
2014-10-13 21:21:32 +01:00
|
|
|
scope :for_period, -> (start_date, end_date) { where(activity_at: (start_date..end_date)) }
|
2014-10-08 22:01:03 +01:00
|
|
|
|
2014-10-13 21:21:32 +01:00
|
|
|
scope :build_lists_started, -> { where(key: "build_list.#{BuildList::BUILD_STARTED}") }
|
|
|
|
scope :build_lists_success, -> { where(key: "build_list.#{BuildList::SUCCESS}") }
|
|
|
|
scope :build_lists_error, -> { where(key: "build_list.#{BuildList::BUILD_ERROR}") }
|
|
|
|
scope :build_lists_published, -> { where(key: "build_list.#{BuildList::BUILD_PUBLISHED}") }
|
2014-10-08 22:01:03 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def self.now_statsd_increment(activity_at: nil, user_id: nil, project_id: nil, key: nil)
|
2014-10-06 20:35:50 +01:00
|
|
|
# Truncates a DateTime to the minute
|
2014-10-08 22:01:03 +01:00
|
|
|
activity_at = activity_at.utc.change(min: 0)
|
|
|
|
user = User.find user_id
|
|
|
|
project = Project.find project_id
|
2014-10-06 20:35:50 +01:00
|
|
|
Statistic.create(
|
2014-10-08 22:01:03 +01:00
|
|
|
user_id: user_id,
|
2014-10-06 20:35:50 +01:00
|
|
|
email: user.email,
|
2014-10-08 22:01:03 +01:00
|
|
|
project_id: project_id,
|
2014-10-06 20:35:50 +01:00
|
|
|
project_name_with_owner: project.name_with_owner,
|
2014-10-08 22:01:03 +01:00
|
|
|
key: key,
|
2014-10-06 20:35:50 +01:00
|
|
|
activity_at: activity_at
|
|
|
|
)
|
2014-10-15 21:30:12 +01:00
|
|
|
rescue ActiveRecord::RecordNotUnique
|
|
|
|
# Do nothing, see: ensure
|
2014-10-06 20:35:50 +01:00
|
|
|
ensure
|
|
|
|
Statistic.where(
|
2014-10-08 22:01:03 +01:00
|
|
|
user_id: user_id,
|
|
|
|
project_id: project_id,
|
|
|
|
key: key,
|
2014-10-06 20:35:50 +01:00
|
|
|
activity_at: activity_at
|
2014-10-08 22:01:03 +01:00
|
|
|
).update_all('counter = counter + 1')
|
|
|
|
end
|
|
|
|
|
2014-10-13 21:21:32 +01:00
|
|
|
# TODO: remove later
|
|
|
|
def self.fill_in_build_lists
|
2014-10-08 22:01:03 +01:00
|
|
|
BuildList.find_each do |bl|
|
2014-10-13 21:21:32 +01:00
|
|
|
Statistic.now_statsd_increment({
|
|
|
|
activity_at: bl.created_at,
|
|
|
|
key: "build_list.#{BuildList::BUILD_STARTED}",
|
|
|
|
project_id: bl.project_id,
|
|
|
|
user_id: bl.user_id,
|
|
|
|
})
|
2014-10-08 22:01:03 +01:00
|
|
|
Statistic.now_statsd_increment({
|
|
|
|
activity_at: bl.updated_at,
|
|
|
|
key: "build_list.#{bl.status}",
|
|
|
|
project_id: bl.project_id,
|
|
|
|
user_id: bl.user_id,
|
|
|
|
})
|
|
|
|
end
|
2014-10-06 20:35:50 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def self.statsd_increment(options = {})
|
|
|
|
Statistic.perform_later(:middle, :now_statsd_increment, options)
|
|
|
|
end
|
|
|
|
|
2014-10-06 20:16:12 +01:00
|
|
|
end
|