2014-03-05 07:52:20 -05:00
|
|
|
class Badge < ActiveRecord::Base
|
2014-07-03 03:29:44 -04:00
|
|
|
# badge ids
|
|
|
|
Welcome = 5
|
|
|
|
NicePost = 6
|
|
|
|
GoodPost = 7
|
|
|
|
GreatPost = 8
|
|
|
|
Autobiographer = 9
|
2014-07-07 03:55:25 -04:00
|
|
|
Editor = 10
|
2014-07-08 22:17:39 -04:00
|
|
|
FirstLike = 11
|
|
|
|
FirstShare = 12
|
|
|
|
FirstFlag = 13
|
2014-07-09 21:18:02 -04:00
|
|
|
FirstLink = 14
|
2014-07-11 00:17:01 -04:00
|
|
|
FirstQuote = 15
|
2014-07-16 02:26:22 -04:00
|
|
|
ReadGuidelines = 16
|
2014-07-15 01:16:41 -04:00
|
|
|
Reader = 17
|
2014-07-03 03:29:44 -04:00
|
|
|
|
|
|
|
# other consts
|
|
|
|
AutobiographerMinBioLength = 10
|
|
|
|
|
2014-07-24 04:28:09 -04:00
|
|
|
def self.trigger_hash
|
|
|
|
Hash[*(
|
|
|
|
Badge::Trigger.constants.map{|k|
|
|
|
|
[k.to_s.underscore, Badge::Trigger.const_get(k)]
|
|
|
|
}.flatten
|
|
|
|
)]
|
|
|
|
end
|
|
|
|
|
2014-07-21 22:46:31 -04:00
|
|
|
module Trigger
|
2014-07-24 04:28:09 -04:00
|
|
|
None = 0
|
2014-07-21 21:11:30 -04:00
|
|
|
PostAction = 1
|
2014-07-22 21:42:24 -04:00
|
|
|
PostRevision = 2
|
|
|
|
TrustLevelChange = 4
|
|
|
|
UserChange = 8
|
FEATURE: Badge query validation, preview results, and EXPLAIN
Upon saving a badge or requesting a badge result preview,
BadgeGranter.contract_checks! will examine the provided badge SQL for
some contractual obligations - namely, the returned columns and use of
trigger parameters.
Saving the badge is wrapped in a transaction to make this easier, by
raising ActiveRecord::Rollback on a detected violation.
On the client, a modal view is added for the badge query sample run
results, named admin-badge-preview.
The preview action is moved up to the route.
The save action, on failure, triggers a 'saveError' action (also in the
route).
The preview action gains a new parameter, 'explain', which will give the
output of an EXPLAIN query for the badge sql, which can be used by forum
admins to estimate the cost of their badge queries.
The preview link is replaced by two links, one which omits (false) and
includes (true) the EXPLAIN query.
The Badge.save() method is amended to propogate errors.
Badge::Trigger gets some utility methods for use in the
BadgeGranter.contract_checks! method.
Additionally, extra checks outside of BadgeGranter.contract_checks! are
added in the preview() method, to cover cases of null granted_at
columns.
An uninitialized variable path is removed in the backfill() method.
TODO - it would be nice to be able to get the actual names of all
columns the provided query returns, so we could give more errors
2014-08-25 18:17:29 -04:00
|
|
|
|
|
|
|
def self.is_none?(trigger)
|
2014-08-31 22:36:31 -04:00
|
|
|
[None].include? trigger
|
FEATURE: Badge query validation, preview results, and EXPLAIN
Upon saving a badge or requesting a badge result preview,
BadgeGranter.contract_checks! will examine the provided badge SQL for
some contractual obligations - namely, the returned columns and use of
trigger parameters.
Saving the badge is wrapped in a transaction to make this easier, by
raising ActiveRecord::Rollback on a detected violation.
On the client, a modal view is added for the badge query sample run
results, named admin-badge-preview.
The preview action is moved up to the route.
The save action, on failure, triggers a 'saveError' action (also in the
route).
The preview action gains a new parameter, 'explain', which will give the
output of an EXPLAIN query for the badge sql, which can be used by forum
admins to estimate the cost of their badge queries.
The preview link is replaced by two links, one which omits (false) and
includes (true) the EXPLAIN query.
The Badge.save() method is amended to propogate errors.
Badge::Trigger gets some utility methods for use in the
BadgeGranter.contract_checks! method.
Additionally, extra checks outside of BadgeGranter.contract_checks! are
added in the preview() method, to cover cases of null granted_at
columns.
An uninitialized variable path is removed in the backfill() method.
TODO - it would be nice to be able to get the actual names of all
columns the provided query returns, so we could give more errors
2014-08-25 18:17:29 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def self.uses_user_ids?(trigger)
|
2014-08-31 22:36:31 -04:00
|
|
|
[TrustLevelChange, UserChange].include? trigger
|
FEATURE: Badge query validation, preview results, and EXPLAIN
Upon saving a badge or requesting a badge result preview,
BadgeGranter.contract_checks! will examine the provided badge SQL for
some contractual obligations - namely, the returned columns and use of
trigger parameters.
Saving the badge is wrapped in a transaction to make this easier, by
raising ActiveRecord::Rollback on a detected violation.
On the client, a modal view is added for the badge query sample run
results, named admin-badge-preview.
The preview action is moved up to the route.
The save action, on failure, triggers a 'saveError' action (also in the
route).
The preview action gains a new parameter, 'explain', which will give the
output of an EXPLAIN query for the badge sql, which can be used by forum
admins to estimate the cost of their badge queries.
The preview link is replaced by two links, one which omits (false) and
includes (true) the EXPLAIN query.
The Badge.save() method is amended to propogate errors.
Badge::Trigger gets some utility methods for use in the
BadgeGranter.contract_checks! method.
Additionally, extra checks outside of BadgeGranter.contract_checks! are
added in the preview() method, to cover cases of null granted_at
columns.
An uninitialized variable path is removed in the backfill() method.
TODO - it would be nice to be able to get the actual names of all
columns the provided query returns, so we could give more errors
2014-08-25 18:17:29 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def self.uses_post_ids?(trigger)
|
2014-08-31 22:36:31 -04:00
|
|
|
[PostAction, PostRevision].include? trigger
|
FEATURE: Badge query validation, preview results, and EXPLAIN
Upon saving a badge or requesting a badge result preview,
BadgeGranter.contract_checks! will examine the provided badge SQL for
some contractual obligations - namely, the returned columns and use of
trigger parameters.
Saving the badge is wrapped in a transaction to make this easier, by
raising ActiveRecord::Rollback on a detected violation.
On the client, a modal view is added for the badge query sample run
results, named admin-badge-preview.
The preview action is moved up to the route.
The save action, on failure, triggers a 'saveError' action (also in the
route).
The preview action gains a new parameter, 'explain', which will give the
output of an EXPLAIN query for the badge sql, which can be used by forum
admins to estimate the cost of their badge queries.
The preview link is replaced by two links, one which omits (false) and
includes (true) the EXPLAIN query.
The Badge.save() method is amended to propogate errors.
Badge::Trigger gets some utility methods for use in the
BadgeGranter.contract_checks! method.
Additionally, extra checks outside of BadgeGranter.contract_checks! are
added in the preview() method, to cover cases of null granted_at
columns.
An uninitialized variable path is removed in the backfill() method.
TODO - it would be nice to be able to get the actual names of all
columns the provided query returns, so we could give more errors
2014-08-25 18:17:29 -04:00
|
|
|
end
|
2014-07-21 21:11:30 -04:00
|
|
|
end
|
2014-07-03 03:29:44 -04:00
|
|
|
|
|
|
|
module Queries
|
2014-07-11 03:32:29 -04:00
|
|
|
|
2014-07-15 01:16:41 -04:00
|
|
|
Reader = <<SQL
|
2014-08-27 04:02:13 -04:00
|
|
|
SELECT id user_id, current_timestamp granted_at
|
2014-07-15 01:16:41 -04:00
|
|
|
FROM users
|
|
|
|
WHERE id IN
|
|
|
|
(
|
|
|
|
SELECT pt.user_id
|
|
|
|
FROM post_timings pt
|
|
|
|
JOIN badge_posts b ON b.post_number = pt.post_number AND
|
|
|
|
b.topic_id = pt.topic_id
|
|
|
|
JOIN topics t ON t.id = pt.topic_id
|
|
|
|
LEFT JOIN user_badges ub ON ub.badge_id = 17 AND ub.user_id = pt.user_id
|
2014-07-18 01:57:03 -04:00
|
|
|
WHERE ub.id IS NULL AND t.posts_count > 100
|
2014-07-15 01:16:41 -04:00
|
|
|
GROUP BY pt.user_id, pt.topic_id, t.posts_count
|
|
|
|
HAVING count(*) = t.posts_count
|
|
|
|
)
|
|
|
|
SQL
|
|
|
|
|
2014-07-16 02:26:22 -04:00
|
|
|
ReadGuidelines = <<SQL
|
2014-08-27 04:02:13 -04:00
|
|
|
SELECT user_id, read_faq granted_at
|
2014-07-11 03:35:34 -04:00
|
|
|
FROM user_stats
|
2014-08-27 04:02:13 -04:00
|
|
|
WHERE read_faq IS NOT NULL AND (user_id IN (:user_ids) OR :backfill)
|
2014-07-11 03:32:29 -04:00
|
|
|
SQL
|
|
|
|
|
2014-07-11 00:17:01 -04:00
|
|
|
FirstQuote = <<SQL
|
2014-07-15 03:47:24 -04:00
|
|
|
SELECT ids.user_id, q.post_id, q.created_at granted_at
|
2014-07-11 00:17:01 -04:00
|
|
|
FROM
|
|
|
|
(
|
2014-07-15 03:47:24 -04:00
|
|
|
SELECT p1.user_id, MIN(q1.id) id
|
|
|
|
FROM quoted_posts q1
|
|
|
|
JOIN badge_posts p1 ON p1.id = q1.post_id
|
|
|
|
JOIN badge_posts p2 ON p2.id = q1.quoted_post_id
|
2014-08-07 20:00:10 -04:00
|
|
|
WHERE (:backfill OR ( p1.id IN (:post_ids) ))
|
2014-07-15 03:47:24 -04:00
|
|
|
GROUP BY p1.user_id
|
2014-07-11 00:17:01 -04:00
|
|
|
) ids
|
2014-07-15 03:47:24 -04:00
|
|
|
JOIN quoted_posts q ON q.id = ids.id
|
2014-07-11 00:17:01 -04:00
|
|
|
SQL
|
2014-07-08 22:17:39 -04:00
|
|
|
|
2014-07-09 21:18:02 -04:00
|
|
|
FirstLink = <<SQL
|
|
|
|
SELECT l.user_id, l.post_id, l.created_at granted_at
|
|
|
|
FROM
|
|
|
|
(
|
|
|
|
SELECT MIN(l1.id) id
|
|
|
|
FROM topic_links l1
|
|
|
|
JOIN badge_posts p1 ON p1.id = l1.post_id
|
|
|
|
JOIN badge_posts p2 ON p2.id = l1.link_post_id
|
2014-08-07 20:00:10 -04:00
|
|
|
WHERE NOT reflection AND p1.topic_id <> p2.topic_id AND not quote AND
|
|
|
|
(:backfill OR ( p1.id in (:post_ids) ))
|
2014-07-09 21:18:02 -04:00
|
|
|
GROUP BY l1.user_id
|
|
|
|
) ids
|
|
|
|
JOIN topic_links l ON l.id = ids.id
|
|
|
|
SQL
|
|
|
|
|
2014-07-08 22:17:39 -04:00
|
|
|
FirstShare = <<SQL
|
2014-08-04 02:43:57 -04:00
|
|
|
SELECT views.user_id, i2.post_id, i2.created_at granted_at
|
2014-07-08 22:17:39 -04:00
|
|
|
FROM
|
|
|
|
(
|
|
|
|
SELECT i.user_id, MIN(i.id) i_id
|
|
|
|
FROM incoming_links i
|
2014-08-04 02:43:57 -04:00
|
|
|
JOIN badge_posts p on p.id = i.post_id
|
2014-07-09 21:18:02 -04:00
|
|
|
WHERE i.user_id IS NOT NULL
|
2014-07-08 22:17:39 -04:00
|
|
|
GROUP BY i.user_id
|
|
|
|
) as views
|
|
|
|
JOIN incoming_links i2 ON i2.id = views.i_id
|
|
|
|
SQL
|
|
|
|
|
|
|
|
FirstFlag = <<SQL
|
2014-07-22 21:42:24 -04:00
|
|
|
SELECT pa1.user_id, pa1.created_at granted_at, pa1.post_id
|
|
|
|
FROM (
|
|
|
|
SELECT pa.user_id, min(pa.id) id
|
|
|
|
FROM post_actions pa
|
|
|
|
JOIN badge_posts p on p.id = pa.post_id
|
2014-08-07 20:00:10 -04:00
|
|
|
WHERE post_action_type_id IN (#{PostActionType.flag_types.values.join(",")}) AND
|
|
|
|
(:backfill OR pa.post_id IN (:post_ids) )
|
2014-07-22 21:42:24 -04:00
|
|
|
GROUP BY pa.user_id
|
|
|
|
) x
|
|
|
|
JOIN post_actions pa1 on pa1.id = x.id
|
2014-07-08 22:17:39 -04:00
|
|
|
SQL
|
|
|
|
|
|
|
|
FirstLike = <<SQL
|
2014-07-22 21:42:24 -04:00
|
|
|
SELECT pa1.user_id, pa1.created_at granted_at, pa1.post_id
|
|
|
|
FROM (
|
|
|
|
SELECT pa.user_id, min(pa.id) id
|
|
|
|
FROM post_actions pa
|
|
|
|
JOIN badge_posts p on p.id = pa.post_id
|
2014-08-07 20:00:10 -04:00
|
|
|
WHERE post_action_type_id = 2 AND
|
|
|
|
(:backfill OR pa.post_id IN (:post_ids) )
|
2014-07-22 21:42:24 -04:00
|
|
|
GROUP BY pa.user_id
|
|
|
|
) x
|
|
|
|
JOIN post_actions pa1 on pa1.id = x.id
|
2014-07-08 00:26:53 -04:00
|
|
|
SQL
|
2014-07-07 03:55:25 -04:00
|
|
|
|
2014-07-22 21:42:24 -04:00
|
|
|
# Incorrect, but good enough - (earlies post edited vs first edit)
|
2014-07-07 03:55:25 -04:00
|
|
|
Editor = <<SQL
|
|
|
|
SELECT p.user_id, min(p.id) post_id, min(p.created_at) granted_at
|
2014-07-09 21:18:02 -04:00
|
|
|
FROM badge_posts p
|
2014-08-07 20:00:10 -04:00
|
|
|
WHERE p.self_edits > 0 AND
|
|
|
|
(:backfill OR p.id IN (:post_ids) )
|
2014-07-07 03:55:25 -04:00
|
|
|
GROUP BY p.user_id
|
|
|
|
SQL
|
|
|
|
|
2014-07-03 03:29:44 -04:00
|
|
|
Welcome = <<SQL
|
|
|
|
SELECT p.user_id, min(post_id) post_id, min(pa.created_at) granted_at
|
|
|
|
FROM post_actions pa
|
2014-07-09 21:18:02 -04:00
|
|
|
JOIN badge_posts p on p.id = pa.post_id
|
2014-08-07 20:00:10 -04:00
|
|
|
WHERE post_action_type_id = 2 AND
|
|
|
|
(:backfill OR pa.post_id IN (:post_ids) )
|
2014-07-03 03:29:44 -04:00
|
|
|
GROUP BY p.user_id
|
|
|
|
SQL
|
|
|
|
|
|
|
|
Autobiographer = <<SQL
|
2014-08-27 04:02:13 -04:00
|
|
|
SELECT u.id user_id, current_timestamp granted_at
|
2014-07-03 03:29:44 -04:00
|
|
|
FROM users u
|
|
|
|
JOIN user_profiles up on u.id = up.user_id
|
|
|
|
WHERE bio_raw IS NOT NULL AND LENGTH(TRIM(bio_raw)) > #{Badge::AutobiographerMinBioLength} AND
|
2014-08-07 20:00:10 -04:00
|
|
|
uploaded_avatar_id IS NOT NULL AND
|
|
|
|
(:backfill OR u.id IN (:user_ids) )
|
2014-07-03 03:29:44 -04:00
|
|
|
SQL
|
|
|
|
|
|
|
|
def self.like_badge(count)
|
|
|
|
# we can do better with dates, but its hard work
|
|
|
|
"
|
2014-07-09 21:18:02 -04:00
|
|
|
SELECT p.user_id, p.id post_id, p.updated_at granted_at
|
|
|
|
FROM badge_posts p
|
2014-08-07 20:00:10 -04:00
|
|
|
WHERE p.like_count >= #{count.to_i} AND
|
|
|
|
(:backfill OR p.id IN (:post_ids) )
|
2014-07-03 03:29:44 -04:00
|
|
|
"
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.trust_level(level)
|
|
|
|
# we can do better with dates, but its hard work figuring this out historically
|
|
|
|
"
|
2014-08-27 04:02:13 -04:00
|
|
|
SELECT u.id user_id, current_timestamp granted_at FROM users u
|
2014-08-07 20:00:10 -04:00
|
|
|
WHERE trust_level >= #{level.to_i} AND (
|
|
|
|
:backfill OR u.id IN (:user_ids)
|
|
|
|
)
|
2014-07-03 03:29:44 -04:00
|
|
|
"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-03-05 07:52:20 -05:00
|
|
|
belongs_to :badge_type
|
2014-07-18 01:46:36 -04:00
|
|
|
belongs_to :badge_grouping
|
|
|
|
|
2014-03-21 08:26:06 -04:00
|
|
|
has_many :user_badges, dependent: :destroy
|
2014-03-05 07:52:20 -05:00
|
|
|
|
|
|
|
validates :name, presence: true, uniqueness: true
|
|
|
|
validates :badge_type, presence: true
|
2014-04-25 14:25:29 -04:00
|
|
|
validates :allow_title, inclusion: [true, false]
|
2014-05-23 22:33:46 -04:00
|
|
|
validates :multiple_grant, inclusion: [true, false]
|
2014-05-04 14:15:38 -04:00
|
|
|
|
2014-07-14 03:40:01 -04:00
|
|
|
scope :enabled, ->{ where(enabled: true) }
|
|
|
|
|
2014-08-05 20:51:39 -04:00
|
|
|
before_create :ensure_not_system
|
|
|
|
|
2014-07-24 04:28:09 -04:00
|
|
|
# fields that can not be edited on system badges
|
|
|
|
def self.protected_system_fields
|
|
|
|
[:badge_type_id, :multiple_grant, :target_posts, :show_posts, :query, :trigger, :auto_revoke, :listable]
|
|
|
|
end
|
|
|
|
|
2014-07-01 08:00:31 -04:00
|
|
|
|
2014-05-04 14:15:38 -04:00
|
|
|
def self.trust_level_badge_ids
|
|
|
|
(1..4).to_a
|
|
|
|
end
|
2014-05-15 20:34:06 -04:00
|
|
|
|
2014-07-03 03:29:44 -04:00
|
|
|
def self.like_badge_counts
|
|
|
|
@like_badge_counts ||= {
|
|
|
|
NicePost => 10,
|
|
|
|
GoodPost => 25,
|
|
|
|
GreatPost => 50
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2014-05-15 20:34:06 -04:00
|
|
|
def reset_grant_count!
|
|
|
|
self.grant_count = UserBadge.where(badge_id: id).count
|
|
|
|
save!
|
|
|
|
end
|
|
|
|
|
2014-05-21 03:22:42 -04:00
|
|
|
def single_grant?
|
|
|
|
!self.multiple_grant?
|
|
|
|
end
|
|
|
|
|
2014-07-16 22:25:16 -04:00
|
|
|
def default_name=(val)
|
|
|
|
self.name ||= val
|
|
|
|
end
|
2014-07-17 02:10:44 -04:00
|
|
|
|
2014-07-29 18:46:46 -04:00
|
|
|
def default_allow_title=(val)
|
|
|
|
self.allow_title ||= val
|
|
|
|
end
|
|
|
|
|
2014-07-17 02:10:44 -04:00
|
|
|
def default_badge_grouping_id=(val)
|
2014-07-18 01:55:42 -04:00
|
|
|
# allow to correct orphans
|
|
|
|
if !self.badge_grouping_id || self.badge_grouping_id < 0
|
|
|
|
self.badge_grouping_id = val
|
|
|
|
end
|
2014-07-17 02:10:44 -04:00
|
|
|
end
|
2014-08-05 20:51:39 -04:00
|
|
|
|
|
|
|
protected
|
|
|
|
def ensure_not_system
|
|
|
|
unless id
|
|
|
|
self.id = [Badge.maximum(:id) + 1, 100].max
|
|
|
|
end
|
|
|
|
end
|
2014-03-05 07:52:20 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: badges
|
|
|
|
#
|
2014-07-17 02:10:44 -04:00
|
|
|
# id :integer not null, primary key
|
|
|
|
# name :string(255) not null
|
|
|
|
# description :text
|
|
|
|
# badge_type_id :integer not null
|
|
|
|
# grant_count :integer default(0), not null
|
2014-08-27 01:19:25 -04:00
|
|
|
# created_at :datetime not null
|
|
|
|
# updated_at :datetime not null
|
2014-07-17 02:10:44 -04:00
|
|
|
# allow_title :boolean default(FALSE), not null
|
|
|
|
# multiple_grant :boolean default(FALSE), not null
|
|
|
|
# icon :string(255) default("fa-certificate")
|
|
|
|
# listable :boolean default(TRUE)
|
|
|
|
# target_posts :boolean default(FALSE)
|
|
|
|
# query :text
|
|
|
|
# enabled :boolean default(TRUE), not null
|
|
|
|
# auto_revoke :boolean default(TRUE), not null
|
2014-07-21 22:46:31 -04:00
|
|
|
# badge_grouping_id :integer default(5), not null
|
|
|
|
# trigger :integer
|
2014-07-24 04:28:09 -04:00
|
|
|
# show_posts :boolean default(FALSE), not null
|
2014-08-06 23:33:11 -04:00
|
|
|
# system :boolean default(FALSE), not null
|
2014-03-05 07:52:20 -05:00
|
|
|
#
|
|
|
|
# Indexes
|
|
|
|
#
|
2014-07-03 03:29:44 -04:00
|
|
|
# index_badges_on_name (name) UNIQUE
|
2014-03-05 07:52:20 -05:00
|
|
|
#
|