2015-06-15 00:24:49 -04:00
|
|
|
# name: discourse-solved
|
2015-05-19 01:45:19 -04:00
|
|
|
# about: Add a solved button to answers on Discourse
|
|
|
|
# version: 0.1
|
|
|
|
# authors: Sam Saffron
|
2017-04-26 00:40:03 -04:00
|
|
|
# url: https://github.com/discourse/discourse-solved
|
2015-05-19 01:45:19 -04:00
|
|
|
|
2017-02-02 12:20:01 -05:00
|
|
|
enabled_site_setting :solved_enabled
|
|
|
|
|
2018-11-07 21:08:46 -05:00
|
|
|
if respond_to?(:register_svg_icon)
|
|
|
|
register_svg_icon "far fa-check-square"
|
|
|
|
register_svg_icon "check-square"
|
|
|
|
register_svg_icon "far fa-square"
|
|
|
|
end
|
|
|
|
|
2015-06-15 00:24:49 -04:00
|
|
|
PLUGIN_NAME = "discourse_solved".freeze
|
2015-05-19 01:45:19 -04:00
|
|
|
|
|
|
|
register_asset 'stylesheets/solutions.scss'
|
|
|
|
|
|
|
|
after_initialize do
|
|
|
|
|
2016-12-06 01:28:15 -05:00
|
|
|
# we got to do a one time upgrade
|
|
|
|
if defined?(UserAction::SOLVED)
|
|
|
|
unless $redis.get('solved_already_upgraded')
|
|
|
|
unless UserAction.where(action_type: UserAction::SOLVED).exists?
|
|
|
|
Rails.logger.info("Upgrading storage for solved")
|
2017-08-02 02:09:07 -04:00
|
|
|
sql = <<SQL
|
2016-12-06 01:28:15 -05:00
|
|
|
INSERT INTO user_actions(action_type,
|
|
|
|
user_id,
|
|
|
|
target_topic_id,
|
|
|
|
target_post_id,
|
|
|
|
acting_user_id,
|
|
|
|
created_at,
|
|
|
|
updated_at)
|
|
|
|
SELECT :solved,
|
|
|
|
p.user_id,
|
|
|
|
p.topic_id,
|
|
|
|
p.id,
|
|
|
|
t.user_id,
|
|
|
|
pc.created_at,
|
|
|
|
pc.updated_at
|
|
|
|
FROM
|
|
|
|
post_custom_fields pc
|
|
|
|
JOIN
|
|
|
|
posts p ON p.id = pc.post_id
|
|
|
|
JOIN
|
|
|
|
topics t ON t.id = p.topic_id
|
|
|
|
WHERE
|
|
|
|
pc.name = 'is_accepted_answer' AND
|
|
|
|
pc.value = 'true' AND
|
|
|
|
p.user_id IS NOT NULL
|
|
|
|
SQL
|
|
|
|
|
2018-06-20 22:23:50 -04:00
|
|
|
# TODO post discourse 2.1 remove
|
|
|
|
if defined? DB
|
|
|
|
DB.exec(sql, solved: UserAction::SOLVED)
|
|
|
|
else
|
|
|
|
UserAction.exec_sql(sql, solved: UserAction::SOLVED)
|
|
|
|
end
|
2016-12-06 01:28:15 -05:00
|
|
|
end
|
|
|
|
$redis.set("solved_already_upgraded", "true")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-06-15 00:24:49 -04:00
|
|
|
module ::DiscourseSolved
|
2015-05-19 01:45:19 -04:00
|
|
|
class Engine < ::Rails::Engine
|
|
|
|
engine_name PLUGIN_NAME
|
2015-06-15 00:24:49 -04:00
|
|
|
isolate_namespace DiscourseSolved
|
2015-05-19 01:45:19 -04:00
|
|
|
end
|
2015-08-05 02:21:16 -04:00
|
|
|
|
2018-08-31 00:03:42 -04:00
|
|
|
AUTO_CLOSE_TOPIC_TIMER_CUSTOM_FIELD = "solved_auto_close_topic_timer_id".freeze
|
|
|
|
|
2018-07-17 20:56:56 -04:00
|
|
|
def self.accept_answer!(post, acting_user)
|
2017-05-22 05:09:40 -04:00
|
|
|
topic = post.topic
|
|
|
|
accepted_id = topic.custom_fields["accepted_answer_post_id"].to_i
|
2018-08-31 00:03:42 -04:00
|
|
|
|
2015-05-19 02:26:22 -04:00
|
|
|
if accepted_id > 0
|
2015-05-19 01:45:19 -04:00
|
|
|
if p2 = Post.find_by(id: accepted_id)
|
|
|
|
p2.custom_fields["is_accepted_answer"] = nil
|
|
|
|
p2.save!
|
2016-12-06 01:28:15 -05:00
|
|
|
|
|
|
|
if defined?(UserAction::SOLVED)
|
2018-08-31 00:03:42 -04:00
|
|
|
UserAction.where(
|
|
|
|
action_type: UserAction::SOLVED,
|
|
|
|
target_post_id: p2.id
|
|
|
|
).destroy_all
|
2016-12-06 01:28:15 -05:00
|
|
|
end
|
2015-05-19 01:45:19 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
post.custom_fields["is_accepted_answer"] = "true"
|
2017-05-22 05:09:40 -04:00
|
|
|
topic.custom_fields["accepted_answer_post_id"] = post.id
|
2015-05-19 01:45:19 -04:00
|
|
|
|
2016-12-06 01:28:15 -05:00
|
|
|
if defined?(UserAction::SOLVED)
|
2017-08-02 02:09:07 -04:00
|
|
|
UserAction.log_action!(
|
|
|
|
action_type: UserAction::SOLVED,
|
|
|
|
user_id: post.user_id,
|
2018-07-17 20:56:56 -04:00
|
|
|
acting_user_id: acting_user.id,
|
2017-08-02 02:09:07 -04:00
|
|
|
target_post_id: post.id,
|
|
|
|
target_topic_id: post.topic_id
|
|
|
|
)
|
2016-12-06 01:28:15 -05:00
|
|
|
end
|
|
|
|
|
2018-07-17 20:56:56 -04:00
|
|
|
unless acting_user.id == post.user_id
|
2017-08-02 02:09:07 -04:00
|
|
|
Notification.create!(
|
|
|
|
notification_type: Notification.types[:custom],
|
|
|
|
user_id: post.user_id,
|
|
|
|
topic_id: post.topic_id,
|
|
|
|
post_number: post.post_number,
|
|
|
|
data: {
|
|
|
|
message: 'solved.accepted_notification',
|
2018-07-17 20:56:56 -04:00
|
|
|
display_username: acting_user.username,
|
2017-08-02 02:09:07 -04:00
|
|
|
topic_title: topic.title
|
|
|
|
}.to_json
|
|
|
|
)
|
2015-06-15 00:24:49 -04:00
|
|
|
end
|
|
|
|
|
2018-08-31 00:03:42 -04:00
|
|
|
auto_close_hours = SiteSetting.solved_topics_auto_close_hours
|
|
|
|
|
|
|
|
if (auto_close_hours > 0) && !topic.closed
|
|
|
|
topic_timer = topic.set_or_create_timer(
|
2017-05-22 05:09:40 -04:00
|
|
|
TopicTimer.types[:close],
|
|
|
|
auto_close_hours,
|
|
|
|
based_on_last_post: true
|
|
|
|
)
|
2017-01-20 09:13:58 -05:00
|
|
|
|
2018-08-31 00:03:42 -04:00
|
|
|
topic.custom_fields[
|
|
|
|
AUTO_CLOSE_TOPIC_TIMER_CUSTOM_FIELD
|
|
|
|
] = topic_timer.id
|
|
|
|
|
2017-05-22 05:09:40 -04:00
|
|
|
MessageBus.publish("/topic/#{topic.id}", reload_topic: true)
|
|
|
|
end
|
|
|
|
|
2018-08-31 00:03:42 -04:00
|
|
|
topic.save!
|
|
|
|
post.save!
|
|
|
|
|
2017-05-22 05:09:40 -04:00
|
|
|
DiscourseEvent.trigger(:accepted_solution, post)
|
2015-05-19 01:45:19 -04:00
|
|
|
end
|
|
|
|
|
2018-07-17 20:56:56 -04:00
|
|
|
def self.unaccept_answer!(post)
|
2015-05-19 01:45:19 -04:00
|
|
|
post.custom_fields["is_accepted_answer"] = nil
|
|
|
|
post.topic.custom_fields["accepted_answer_post_id"] = nil
|
2018-08-31 00:03:42 -04:00
|
|
|
topic = post.topic
|
|
|
|
|
|
|
|
if timer_id = topic.custom_fields[AUTO_CLOSE_TOPIC_TIMER_CUSTOM_FIELD]
|
|
|
|
topic_timer = TopicTimer.find_by(id: timer_id)
|
|
|
|
topic_timer.destroy! if topic_timer
|
|
|
|
topic.custom_fields[AUTO_CLOSE_TOPIC_TIMER_CUSTOM_FIELD] = nil
|
|
|
|
end
|
|
|
|
|
|
|
|
topic.save!
|
2015-05-19 01:45:19 -04:00
|
|
|
post.save!
|
|
|
|
|
2016-12-06 01:28:15 -05:00
|
|
|
# TODO remove_action! does not allow for this type of interface
|
|
|
|
if defined? UserAction::SOLVED
|
|
|
|
UserAction.where(
|
|
|
|
action_type: UserAction::SOLVED,
|
|
|
|
target_post_id: post.id
|
|
|
|
).destroy_all
|
|
|
|
end
|
|
|
|
|
2015-06-21 20:06:18 -04:00
|
|
|
# yank notification
|
|
|
|
notification = Notification.find_by(
|
2018-08-31 00:03:42 -04:00
|
|
|
notification_type: Notification.types[:custom],
|
|
|
|
user_id: post.user_id,
|
|
|
|
topic_id: post.topic_id,
|
|
|
|
post_number: post.post_number
|
2015-06-21 20:06:18 -04:00
|
|
|
)
|
|
|
|
|
2018-08-30 21:52:10 -04:00
|
|
|
notification.destroy! if notification
|
2017-01-20 09:13:58 -05:00
|
|
|
DiscourseEvent.trigger(:unaccepted_solution, post)
|
2018-07-17 20:56:56 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
require_dependency "application_controller"
|
|
|
|
class DiscourseSolved::AnswerController < ::ApplicationController
|
|
|
|
|
|
|
|
def accept
|
|
|
|
|
|
|
|
limit_accepts
|
|
|
|
|
|
|
|
post = Post.find(params[:id].to_i)
|
|
|
|
guardian.ensure_can_accept_answer!(post.topic)
|
|
|
|
|
|
|
|
DiscourseSolved.accept_answer!(post, current_user)
|
|
|
|
|
|
|
|
render json: success_json
|
|
|
|
end
|
|
|
|
|
|
|
|
def unaccept
|
|
|
|
|
|
|
|
limit_accepts
|
2017-01-20 09:13:58 -05:00
|
|
|
|
2018-07-17 20:56:56 -04:00
|
|
|
post = Post.find(params[:id].to_i)
|
|
|
|
guardian.ensure_can_accept_answer!(post.topic)
|
|
|
|
|
|
|
|
DiscourseSolved.unaccept_answer!(post)
|
2015-05-19 01:45:19 -04:00
|
|
|
render json: success_json
|
|
|
|
end
|
2015-08-05 02:21:16 -04:00
|
|
|
|
|
|
|
def limit_accepts
|
|
|
|
unless current_user.staff?
|
|
|
|
RateLimiter.new(nil, "accept-hr-#{current_user.id}", 20, 1.hour).performed!
|
|
|
|
RateLimiter.new(nil, "accept-min-#{current_user.id}", 4, 30.seconds).performed!
|
|
|
|
end
|
|
|
|
end
|
2015-05-19 01:45:19 -04:00
|
|
|
end
|
|
|
|
|
2015-06-15 00:24:49 -04:00
|
|
|
DiscourseSolved::Engine.routes.draw do
|
2015-05-19 01:45:19 -04:00
|
|
|
post "/accept" => "answer#accept"
|
|
|
|
post "/unaccept" => "answer#unaccept"
|
|
|
|
end
|
|
|
|
|
|
|
|
Discourse::Application.routes.append do
|
2015-06-15 00:24:49 -04:00
|
|
|
mount ::DiscourseSolved::Engine, at: "solution"
|
2015-05-19 01:45:19 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
TopicView.add_post_custom_fields_whitelister do |user|
|
|
|
|
["is_accepted_answer"]
|
|
|
|
end
|
|
|
|
|
2018-11-01 18:38:16 -04:00
|
|
|
def before_head_close_meta(controller)
|
2018-11-01 19:15:05 -04:00
|
|
|
return "" if !controller.instance_of? TopicsController
|
|
|
|
|
|
|
|
topic_view = controller.instance_variable_get(:@topic_view)
|
|
|
|
topic = topic_view&.topic
|
|
|
|
return "" if !topic
|
|
|
|
# note, we have canonicals so we only do this for page 1 at the moment
|
|
|
|
# it can get confusing to have this on every page and it should make page 1
|
|
|
|
# a bit more prominent + cut down on pointless work
|
2018-11-04 18:21:10 -05:00
|
|
|
|
2018-11-01 19:15:05 -04:00
|
|
|
return "" if !controller.guardian.allow_accepted_answers_on_category?(topic.category_id)
|
|
|
|
|
2018-11-04 18:21:10 -05:00
|
|
|
first_post = topic_view.posts&.first
|
|
|
|
return "" if first_post&.post_number != 1
|
|
|
|
|
|
|
|
question_json = {
|
|
|
|
'@type' => 'Question',
|
|
|
|
'name' => topic.title,
|
|
|
|
'text' => first_post.excerpt,
|
|
|
|
'upvoteCount' => first_post.like_count,
|
2019-02-19 14:05:07 -05:00
|
|
|
'answerCount' => 0,
|
2018-11-04 18:21:10 -05:00
|
|
|
'dateCreated' => topic.created_at,
|
|
|
|
'author' => {
|
|
|
|
'@type' => 'Person',
|
|
|
|
'name' => topic.user&.name
|
2018-11-01 18:38:16 -04:00
|
|
|
}
|
2018-11-04 18:21:10 -05:00
|
|
|
}
|
2018-11-01 19:15:05 -04:00
|
|
|
|
2018-11-01 18:38:16 -04:00
|
|
|
if accepted_answer = Post.find_by(id: topic.custom_fields["accepted_answer_post_id"])
|
2019-02-19 14:05:07 -05:00
|
|
|
question_json['answerCount'] = 1
|
2018-11-01 18:38:16 -04:00
|
|
|
question_json[:acceptedAnswer] = {
|
|
|
|
'@type' => 'Answer',
|
2018-11-01 19:15:05 -04:00
|
|
|
'text' => accepted_answer.excerpt,
|
|
|
|
'upvoteCount' => accepted_answer.like_count,
|
|
|
|
'dateCreated' => accepted_answer.created_at,
|
|
|
|
'url' => accepted_answer.full_url,
|
2018-11-01 18:38:16 -04:00
|
|
|
'author' => {
|
|
|
|
'@type' => 'Person',
|
2018-11-01 19:15:05 -04:00
|
|
|
'name' => accepted_answer.user&.username
|
2018-11-01 18:38:16 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
end
|
2018-11-01 19:15:05 -04:00
|
|
|
|
2018-11-01 18:38:16 -04:00
|
|
|
['<script type="application/ld+json">', MultiJson.dump(
|
|
|
|
'@context' => 'http://schema.org',
|
2018-12-04 15:04:54 -05:00
|
|
|
'@type' => 'QAPage',
|
|
|
|
'name' => topic&.title,
|
|
|
|
'mainEntity' => question_json
|
2018-11-01 19:15:05 -04:00
|
|
|
).gsub("</", "<\\/").html_safe, '</script>'].join("")
|
2018-11-01 18:38:16 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
register_html_builder('server:before-head-close-crawler') do |controller|
|
|
|
|
before_head_close_meta(controller)
|
|
|
|
end
|
|
|
|
|
|
|
|
register_html_builder('server:before-head-close') do |controller|
|
|
|
|
before_head_close_meta(controller)
|
|
|
|
end
|
|
|
|
|
2015-06-24 20:41:24 -04:00
|
|
|
if Report.respond_to?(:add_report)
|
|
|
|
AdminDashboardData::GLOBAL_REPORTS << "accepted_solutions"
|
|
|
|
|
|
|
|
Report.add_report("accepted_solutions") do |report|
|
|
|
|
report.data = []
|
|
|
|
accepted_solutions = TopicCustomField.where(name: "accepted_answer_post_id")
|
|
|
|
accepted_solutions = accepted_solutions.joins(:topic).where("topics.category_id = ?", report.category_id) if report.category_id
|
|
|
|
accepted_solutions.where("topic_custom_fields.created_at >= ?", report.start_date)
|
2017-08-02 02:09:07 -04:00
|
|
|
.where("topic_custom_fields.created_at <= ?", report.end_date)
|
|
|
|
.group("DATE(topic_custom_fields.created_at)")
|
|
|
|
.order("DATE(topic_custom_fields.created_at)")
|
|
|
|
.count
|
|
|
|
.each do |date, count|
|
2015-06-24 20:41:24 -04:00
|
|
|
report.data << { x: date, y: count }
|
|
|
|
end
|
|
|
|
report.total = accepted_solutions.count
|
|
|
|
report.prev30Days = accepted_solutions.where("topic_custom_fields.created_at >= ?", report.start_date - 30.days)
|
2017-08-02 02:09:07 -04:00
|
|
|
.where("topic_custom_fields.created_at <= ?", report.start_date)
|
|
|
|
.count
|
2015-06-24 20:41:24 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-12-06 01:28:15 -05:00
|
|
|
if defined?(UserAction::SOLVED)
|
|
|
|
require_dependency 'user_summary'
|
|
|
|
class ::UserSummary
|
|
|
|
def solved_count
|
|
|
|
UserAction
|
|
|
|
.where(user: @user)
|
|
|
|
.where(action_type: UserAction::SOLVED)
|
|
|
|
.count
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
require_dependency 'user_summary_serializer'
|
|
|
|
class ::UserSummarySerializer
|
|
|
|
attributes :solved_count
|
|
|
|
|
|
|
|
def solved_count
|
|
|
|
object.solved_count
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-05-19 01:45:19 -04:00
|
|
|
require_dependency 'topic_view_serializer'
|
|
|
|
class ::TopicViewSerializer
|
|
|
|
attributes :accepted_answer
|
|
|
|
|
|
|
|
def include_accepted_answer?
|
|
|
|
accepted_answer_post_id
|
|
|
|
end
|
|
|
|
|
|
|
|
def accepted_answer
|
|
|
|
if info = accepted_answer_post_info
|
|
|
|
{
|
|
|
|
post_number: info[0],
|
|
|
|
username: info[1],
|
2017-03-08 10:21:41 -05:00
|
|
|
excerpt: info[2]
|
2015-05-19 01:45:19 -04:00
|
|
|
}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def accepted_answer_post_info
|
|
|
|
# TODO: we may already have it in the stream ... so bypass query here
|
2017-03-08 10:42:41 -05:00
|
|
|
postInfo = Post.where(id: accepted_answer_post_id, topic_id: object.topic.id)
|
2017-08-02 02:09:07 -04:00
|
|
|
.joins(:user)
|
|
|
|
.pluck('post_number', 'username', 'cooked')
|
|
|
|
.first
|
2017-05-22 05:09:40 -04:00
|
|
|
|
2017-03-08 10:47:18 -05:00
|
|
|
if postInfo
|
2017-08-06 17:22:30 -04:00
|
|
|
postInfo[2] = if SiteSetting.solved_quote_length > 0
|
2017-09-04 08:07:21 -04:00
|
|
|
PrettyText.excerpt(postInfo[2], SiteSetting.solved_quote_length, keep_emoji_images: true)
|
2017-08-11 15:36:38 -04:00
|
|
|
else
|
|
|
|
nil
|
|
|
|
end
|
2017-03-08 10:47:18 -05:00
|
|
|
return postInfo
|
|
|
|
end
|
2015-05-19 01:45:19 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def accepted_answer_post_id
|
|
|
|
id = object.topic.custom_fields["accepted_answer_post_id"]
|
2015-08-05 02:21:16 -04:00
|
|
|
# a bit messy but race conditions can give us an array here, avoid
|
|
|
|
id && id.to_i rescue nil
|
2015-05-19 01:45:19 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
2015-06-09 16:09:20 -04:00
|
|
|
class ::Category
|
|
|
|
after_save :reset_accepted_cache
|
|
|
|
|
|
|
|
protected
|
|
|
|
def reset_accepted_cache
|
|
|
|
::Guardian.reset_accepted_answer_cache
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
class ::Guardian
|
|
|
|
|
|
|
|
@@allowed_accepted_cache = DistributedCache.new("allowed_accepted")
|
|
|
|
|
|
|
|
def self.reset_accepted_answer_cache
|
|
|
|
@@allowed_accepted_cache["allowed"] =
|
|
|
|
begin
|
|
|
|
Set.new(
|
|
|
|
CategoryCustomField
|
|
|
|
.where(name: "enable_accepted_answers", value: "true")
|
|
|
|
.pluck(:category_id)
|
|
|
|
)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def allow_accepted_answers_on_category?(category_id)
|
2015-06-19 02:08:43 -04:00
|
|
|
return true if SiteSetting.allow_solved_on_all_topics
|
|
|
|
|
2015-06-09 16:09:20 -04:00
|
|
|
self.class.reset_accepted_answer_cache unless @@allowed_accepted_cache["allowed"]
|
|
|
|
@@allowed_accepted_cache["allowed"].include?(category_id)
|
|
|
|
end
|
|
|
|
|
|
|
|
def can_accept_answer?(topic)
|
|
|
|
allow_accepted_answers_on_category?(topic.category_id) && (
|
|
|
|
is_staff? || (
|
2016-03-30 21:06:03 -04:00
|
|
|
authenticated? && ((!topic.closed? && topic.user_id == current_user.id) ||
|
|
|
|
(current_user.trust_level >= SiteSetting.accept_all_solutions_trust_level))
|
2015-06-09 16:09:20 -04:00
|
|
|
)
|
|
|
|
)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-05-19 01:45:19 -04:00
|
|
|
require_dependency 'post_serializer'
|
|
|
|
class ::PostSerializer
|
|
|
|
attributes :can_accept_answer, :can_unaccept_answer, :accepted_answer
|
|
|
|
|
|
|
|
def can_accept_answer
|
|
|
|
topic = (topic_view && topic_view.topic) || object.topic
|
2015-06-19 02:08:43 -04:00
|
|
|
|
2015-05-19 01:45:19 -04:00
|
|
|
if topic
|
2016-02-17 15:58:32 -05:00
|
|
|
return scope.can_accept_answer?(topic) && object.post_number > 1 && !accepted_answer
|
2015-05-19 01:45:19 -04:00
|
|
|
end
|
2016-02-17 15:58:32 -05:00
|
|
|
|
|
|
|
false
|
2015-05-19 01:45:19 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def can_unaccept_answer
|
2015-06-09 16:09:20 -04:00
|
|
|
topic = (topic_view && topic_view.topic) || object.topic
|
|
|
|
if topic
|
2016-02-17 15:58:32 -05:00
|
|
|
return scope.can_accept_answer?(topic) && (post_custom_fields["is_accepted_answer"] == 'true')
|
2015-06-09 16:09:20 -04:00
|
|
|
end
|
2015-05-19 01:45:19 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def accepted_answer
|
2016-02-17 15:58:32 -05:00
|
|
|
post_custom_fields["is_accepted_answer"] == 'true'
|
2015-05-19 01:45:19 -04:00
|
|
|
end
|
2015-06-15 02:26:40 -04:00
|
|
|
end
|
2015-06-22 22:31:10 -04:00
|
|
|
|
|
|
|
require_dependency 'search'
|
|
|
|
|
|
|
|
#TODO Remove when plugin is 1.0
|
|
|
|
if Search.respond_to? :advanced_filter
|
|
|
|
Search.advanced_filter(/in:solved/) do |posts|
|
|
|
|
posts.where("topics.id IN (
|
|
|
|
SELECT tc.topic_id
|
|
|
|
FROM topic_custom_fields tc
|
|
|
|
WHERE tc.name = 'accepted_answer_post_id' AND
|
|
|
|
tc.value IS NOT NULL
|
|
|
|
)")
|
|
|
|
|
|
|
|
end
|
2015-06-22 22:56:22 -04:00
|
|
|
|
|
|
|
Search.advanced_filter(/in:unsolved/) do |posts|
|
|
|
|
posts.where("topics.id NOT IN (
|
|
|
|
SELECT tc.topic_id
|
|
|
|
FROM topic_custom_fields tc
|
|
|
|
WHERE tc.name = 'accepted_answer_post_id' AND
|
|
|
|
tc.value IS NOT NULL
|
|
|
|
)")
|
|
|
|
|
|
|
|
end
|
2015-06-22 22:31:10 -04:00
|
|
|
end
|
2015-06-15 02:26:40 -04:00
|
|
|
|
2017-02-27 14:51:50 -05:00
|
|
|
if Discourse.has_needed_version?(Discourse::VERSION::STRING, '1.8.0.beta6')
|
|
|
|
require_dependency 'topic_query'
|
|
|
|
|
|
|
|
TopicQuery.add_custom_filter(:solved) do |results, topic_query|
|
2017-02-28 10:22:07 -05:00
|
|
|
if topic_query.options[:solved] == 'yes'
|
2017-02-27 14:51:50 -05:00
|
|
|
results = results.where("topics.id IN (
|
|
|
|
SELECT tc.topic_id
|
|
|
|
FROM topic_custom_fields tc
|
|
|
|
WHERE tc.name = 'accepted_answer_post_id' AND
|
|
|
|
tc.value IS NOT NULL
|
|
|
|
)")
|
2017-02-28 10:22:07 -05:00
|
|
|
elsif topic_query.options[:solved] == 'no'
|
2017-02-27 14:51:50 -05:00
|
|
|
results = results.where("topics.id NOT IN (
|
|
|
|
SELECT tc.topic_id
|
|
|
|
FROM topic_custom_fields tc
|
|
|
|
WHERE tc.name = 'accepted_answer_post_id' AND
|
|
|
|
tc.value IS NOT NULL
|
|
|
|
)")
|
|
|
|
end
|
|
|
|
results
|
2017-02-27 13:19:21 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-06-15 02:26:40 -04:00
|
|
|
require_dependency 'topic_list_item_serializer'
|
2019-03-13 10:08:31 -04:00
|
|
|
require_dependency 'listable_topic_serializer'
|
2015-06-15 02:26:40 -04:00
|
|
|
|
|
|
|
class ::TopicListItemSerializer
|
2019-03-13 10:08:31 -04:00
|
|
|
attributes :has_accepted_answer, :can_have_answer
|
2015-05-19 01:45:19 -04:00
|
|
|
|
2019-03-13 10:08:31 -04:00
|
|
|
def has_accepted_answer
|
|
|
|
object.custom_fields["accepted_answer_post_id"] ? true : false
|
|
|
|
end
|
2017-04-18 23:55:15 -04:00
|
|
|
|
2019-03-13 10:08:31 -04:00
|
|
|
def can_have_answer
|
|
|
|
return true if SiteSetting.allow_solved_on_all_topics
|
|
|
|
return false if object.closed || object.archived
|
|
|
|
return scope.allow_accepted_answers_on_category?(object.category_id)
|
|
|
|
end
|
2017-04-18 23:55:15 -04:00
|
|
|
|
2019-03-13 10:08:31 -04:00
|
|
|
def include_can_have_answer?
|
|
|
|
SiteSetting.empty_box_on_unsolved
|
|
|
|
end
|
2019-03-13 06:29:07 -04:00
|
|
|
end
|
2017-04-18 23:55:15 -04:00
|
|
|
|
2019-03-13 10:08:31 -04:00
|
|
|
class ::ListableTopicSerializer
|
|
|
|
attributes :has_accepted_answer, :can_have_answer
|
|
|
|
|
|
|
|
def has_accepted_answer
|
|
|
|
object.custom_fields["accepted_answer_post_id"] ? true : false
|
|
|
|
end
|
|
|
|
|
|
|
|
def can_have_answer
|
|
|
|
return true if SiteSetting.allow_solved_on_all_topics
|
|
|
|
return false if object.closed || object.archived
|
|
|
|
return scope.allow_accepted_answers_on_category?(object.category_id)
|
|
|
|
end
|
|
|
|
|
|
|
|
def include_can_have_answer?
|
|
|
|
SiteSetting.empty_box_on_unsolved
|
|
|
|
end
|
2017-04-18 23:55:15 -04:00
|
|
|
end
|
|
|
|
|
2015-08-05 02:21:16 -04:00
|
|
|
TopicList.preloaded_custom_fields << "accepted_answer_post_id" if TopicList.respond_to? :preloaded_custom_fields
|
2015-06-15 02:26:40 -04:00
|
|
|
|
2017-08-01 04:25:54 -04:00
|
|
|
if CategoryList.respond_to?(:preloaded_topic_custom_fields)
|
|
|
|
CategoryList.preloaded_topic_custom_fields << "accepted_answer_post_id"
|
|
|
|
end
|
|
|
|
|
2018-07-17 20:56:56 -04:00
|
|
|
on(:filter_auto_bump_topics) do |_category, filters|
|
|
|
|
filters.push(->(r) { r.where(<<~SQL)
|
|
|
|
NOT EXISTS(
|
|
|
|
SELECT 1 FROM topic_custom_fields
|
|
|
|
WHERE topic_id = topics.id
|
|
|
|
AND name = 'accepted_answer_post_id'
|
|
|
|
)
|
|
|
|
SQL
|
|
|
|
})
|
|
|
|
end
|
2015-05-19 01:45:19 -04:00
|
|
|
end
|