2013-02-05 14:16:51 -05:00
|
|
|
require_dependency 'topic_view'
|
|
|
|
require_dependency 'promotion'
|
2013-12-12 11:24:00 -05:00
|
|
|
require_dependency 'url_helper'
|
2014-01-30 11:15:49 -05:00
|
|
|
require_dependency 'topics_bulk_action'
|
2015-01-02 15:56:44 -05:00
|
|
|
require_dependency 'discourse_event'
|
2016-08-03 00:28:46 -04:00
|
|
|
require_dependency 'rate_limiter'
|
2018-03-13 15:59:12 -04:00
|
|
|
require_dependency 'topic_publisher'
|
2013-02-05 14:16:51 -05:00
|
|
|
|
|
|
|
class TopicsController < ApplicationController
|
2018-01-31 23:17:59 -05:00
|
|
|
requires_login only: [
|
2018-01-31 20:26:45 -05:00
|
|
|
:timings,
|
|
|
|
:destroy_timings,
|
|
|
|
:update,
|
2018-03-23 11:12:22 -04:00
|
|
|
:update_shared_draft,
|
2018-01-31 20:26:45 -05:00
|
|
|
:destroy,
|
|
|
|
:recover,
|
|
|
|
:status,
|
|
|
|
:invite,
|
|
|
|
:mute,
|
|
|
|
:unmute,
|
|
|
|
:set_notifications,
|
|
|
|
:move_posts,
|
|
|
|
:merge_topic,
|
|
|
|
:clear_pin,
|
|
|
|
:re_pin,
|
|
|
|
:status_update,
|
|
|
|
:timer,
|
|
|
|
:bulk,
|
|
|
|
:reset_new,
|
|
|
|
:change_post_owners,
|
|
|
|
:change_timestamps,
|
|
|
|
:archive_message,
|
|
|
|
:move_to_inbox,
|
|
|
|
:convert_topic,
|
2018-03-13 15:59:12 -04:00
|
|
|
:bookmark,
|
2018-08-09 20:51:03 -04:00
|
|
|
:publish,
|
|
|
|
:reset_bump_date
|
2018-01-31 20:26:45 -05:00
|
|
|
]
|
2013-03-06 15:17:07 -05:00
|
|
|
|
2017-08-31 00:06:56 -04:00
|
|
|
before_action :consider_user_for_promotion, only: :show
|
2013-02-05 14:16:51 -05:00
|
|
|
|
2018-04-16 06:32:23 -04:00
|
|
|
skip_before_action :check_xhr, only: [:show, :feed]
|
2013-02-05 14:16:51 -05:00
|
|
|
|
2014-09-17 11:18:41 -04:00
|
|
|
def id_for_slug
|
|
|
|
topic = Topic.find_by(slug: params[:slug].downcase)
|
|
|
|
guardian.ensure_can_see!(topic)
|
|
|
|
raise Discourse::NotFound unless topic
|
2017-07-27 21:20:09 -04:00
|
|
|
render json: { slug: topic.slug, topic_id: topic.id, url: topic.url }
|
2014-09-17 11:18:41 -04:00
|
|
|
end
|
|
|
|
|
2013-02-10 13:50:26 -05:00
|
|
|
def show
|
2015-04-22 12:41:28 -04:00
|
|
|
if request.referer
|
|
|
|
flash["referer"] ||= request.referer[0..255]
|
|
|
|
end
|
2014-08-03 21:06:06 -04:00
|
|
|
|
2013-06-28 13:55:34 -04:00
|
|
|
# We'd like to migrate the wordpress feed to another url. This keeps up backwards compatibility with
|
|
|
|
# existing installs.
|
|
|
|
return wordpress if params[:best].present?
|
|
|
|
|
2016-02-24 22:32:16 -05:00
|
|
|
# work around people somehow sending in arrays,
|
|
|
|
# arrays are not supported
|
|
|
|
params[:page] = params[:page].to_i rescue 1
|
|
|
|
|
2014-07-15 17:02:43 -04:00
|
|
|
opts = params.slice(:username_filters, :filter, :page, :post_number, :show_deleted)
|
2013-10-28 02:12:07 -04:00
|
|
|
username_filters = opts[:username_filters]
|
2013-09-16 14:08:55 -04:00
|
|
|
|
2014-12-15 11:54:26 -05:00
|
|
|
opts[:slow_platform] = true if slow_platform?
|
2016-08-01 00:45:05 -04:00
|
|
|
opts[:print] = true if params[:print].present?
|
2014-04-15 15:33:08 -04:00
|
|
|
opts[:username_filters] = username_filters.split(',') if username_filters.is_a?(String)
|
2013-10-03 12:51:30 -04:00
|
|
|
|
2016-09-19 13:31:19 -04:00
|
|
|
# Special case: a slug with a number in front should look by slug first before looking
|
|
|
|
# up that particular number
|
|
|
|
if params[:id] && params[:id] =~ /^\d+[^\d\\]+$/
|
|
|
|
topic = Topic.find_by(slug: params[:id].downcase)
|
2017-08-22 17:53:45 -04:00
|
|
|
return redirect_to_correct_topic(topic, opts[:post_number]) if topic
|
2016-09-19 13:31:19 -04:00
|
|
|
end
|
|
|
|
|
2016-08-03 00:28:46 -04:00
|
|
|
if opts[:print]
|
2016-08-05 01:12:35 -04:00
|
|
|
raise Discourse::InvalidAccess unless SiteSetting.max_prints_per_hour_per_user > 0
|
2016-08-03 00:28:46 -04:00
|
|
|
begin
|
2016-08-08 23:53:08 -04:00
|
|
|
RateLimiter.new(current_user, "print-topic-per-hour", SiteSetting.max_prints_per_hour_per_user, 1.hour).performed! unless @guardian.is_admin?
|
2016-08-03 00:28:46 -04:00
|
|
|
rescue RateLimiter::LimitExceeded
|
2017-12-12 04:18:58 -05:00
|
|
|
return render_json_error I18n.t("rate_limiter.slow_down")
|
2016-08-03 00:28:46 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-06-06 14:41:27 -04:00
|
|
|
begin
|
|
|
|
@topic_view = TopicView.new(params[:id] || params[:topic_id], current_user, opts)
|
|
|
|
rescue Discourse::NotFound
|
2015-01-05 11:02:32 -05:00
|
|
|
if params[:id]
|
|
|
|
topic = Topic.find_by(slug: params[:id].downcase)
|
2017-08-22 17:53:45 -04:00
|
|
|
return redirect_to_correct_topic(topic, opts[:post_number]) if topic
|
2015-01-05 11:02:32 -05:00
|
|
|
end
|
|
|
|
raise Discourse::NotFound
|
2013-06-06 14:41:27 -04:00
|
|
|
end
|
2013-05-19 20:29:49 -04:00
|
|
|
|
2016-02-24 22:32:16 -05:00
|
|
|
page = params[:page]
|
2014-12-12 11:47:20 -05:00
|
|
|
if (page < 0) || ((page - 1) * @topic_view.chunk_size > @topic_view.topic.highest_post_number)
|
2014-09-22 03:08:11 -04:00
|
|
|
raise Discourse::NotFound
|
|
|
|
end
|
|
|
|
|
2013-10-16 01:39:18 -04:00
|
|
|
discourse_expires_in 1.minute
|
2013-07-04 14:08:23 -04:00
|
|
|
|
2016-06-09 20:53:03 -04:00
|
|
|
if slugs_do_not_match || (!request.format.json? && params[:slug].nil?)
|
|
|
|
redirect_to_correct_topic(@topic_view.topic, opts[:post_number])
|
|
|
|
return
|
|
|
|
end
|
2013-07-04 14:08:23 -04:00
|
|
|
|
2013-10-16 01:39:18 -04:00
|
|
|
track_visit_to_topic
|
2013-10-04 03:00:23 -04:00
|
|
|
|
2013-10-16 01:39:18 -04:00
|
|
|
if should_track_visit_to_topic?
|
|
|
|
@topic_view.draft = Draft.get(current_user, @topic_view.draft_key, @topic_view.draft_sequence)
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
2015-06-22 14:00:39 -04:00
|
|
|
|
|
|
|
unless @topic_view.topic.visible
|
|
|
|
response.headers['X-Robots-Tag'] = 'noindex'
|
|
|
|
end
|
2013-02-13 06:04:43 -05:00
|
|
|
|
2015-10-01 12:24:07 -04:00
|
|
|
canonical_url UrlHelper.absolute_without_cdn(@topic_view.canonical_path)
|
2015-09-21 19:37:23 -04:00
|
|
|
|
2018-04-13 00:58:33 -04:00
|
|
|
# provide hint to crawlers only for now
|
|
|
|
# we would like to give them a bit more signal about age of data
|
|
|
|
if use_crawler_layout?
|
|
|
|
if last_modified = @topic_view.posts&.map { |p| p.updated_at }&.max&.httpdate
|
|
|
|
response.headers['Last-Modified'] = last_modified
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-10-16 01:39:18 -04:00
|
|
|
perform_show_response
|
|
|
|
|
2014-05-26 13:26:28 -04:00
|
|
|
rescue Discourse::InvalidAccess => ex
|
|
|
|
|
|
|
|
if current_user
|
|
|
|
# If the user can't see the topic, clean up notifications for it.
|
|
|
|
Notification.remove_for(current_user.id, params[:topic_id])
|
|
|
|
end
|
|
|
|
|
2015-09-18 03:14:10 -04:00
|
|
|
if ex.obj && Topic === ex.obj && guardian.can_see_topic_if_not_deleted?(ex.obj)
|
2018-08-09 01:05:12 -04:00
|
|
|
raise Discourse::NotFound.new(
|
|
|
|
"topic was deleted",
|
|
|
|
status: 410,
|
|
|
|
check_permalinks: true,
|
|
|
|
original_path: ex.obj.relative_url
|
|
|
|
)
|
2015-09-18 03:14:10 -04:00
|
|
|
end
|
|
|
|
|
2014-05-26 13:26:28 -04:00
|
|
|
raise ex
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
2018-03-13 15:59:12 -04:00
|
|
|
def publish
|
|
|
|
params.permit(:id, :destination_category_id)
|
|
|
|
|
|
|
|
topic = Topic.find(params[:id])
|
|
|
|
category = Category.find(params[:destination_category_id])
|
|
|
|
|
|
|
|
guardian.ensure_can_publish_topic!(topic, category)
|
|
|
|
topic = TopicPublisher.new(topic, current_user, category.id).publish!
|
|
|
|
|
|
|
|
render_serialized(topic.reload, BasicTopicSerializer)
|
|
|
|
end
|
|
|
|
|
2013-06-28 13:55:34 -04:00
|
|
|
def wordpress
|
|
|
|
params.require(:best)
|
|
|
|
params.require(:topic_id)
|
2013-07-05 16:07:24 -04:00
|
|
|
params.permit(:min_trust_level, :min_score, :min_replies, :bypass_trust_level_score, :only_moderator_liked)
|
2014-06-16 12:28:07 -04:00
|
|
|
|
2017-07-27 21:20:09 -04:00
|
|
|
opts = {
|
|
|
|
best: params[:best].to_i,
|
2014-08-19 20:15:24 -04:00
|
|
|
min_trust_level: params[:min_trust_level] ? params[:min_trust_level].to_i : 1,
|
2013-10-28 02:12:07 -04:00
|
|
|
min_score: params[:min_score].to_i,
|
|
|
|
min_replies: params[:min_replies].to_i,
|
|
|
|
bypass_trust_level_score: params[:bypass_trust_level_score].to_i, # safe cause 0 means ignore
|
|
|
|
only_moderator_liked: params[:only_moderator_liked].to_s == "true"
|
|
|
|
}
|
|
|
|
|
|
|
|
@topic_view = TopicView.new(params[:topic_id], current_user, opts)
|
2013-10-16 01:39:18 -04:00
|
|
|
discourse_expires_in 1.minute
|
|
|
|
|
|
|
|
wordpress_serializer = TopicViewWordpressSerializer.new(@topic_view, scope: guardian, root: false)
|
|
|
|
render_json_dump(wordpress_serializer)
|
2013-06-20 17:20:08 -04:00
|
|
|
end
|
|
|
|
|
2018-06-28 02:54:54 -04:00
|
|
|
def post_ids
|
|
|
|
params.require(:topic_id)
|
|
|
|
params.permit(:post_number, :username_filters, :filter)
|
|
|
|
|
|
|
|
options = {
|
|
|
|
filter_post_number: params[:post_number],
|
|
|
|
filter: params[:filter],
|
|
|
|
skip_limit: true,
|
|
|
|
asc: true,
|
|
|
|
skip_custom_fields: true
|
|
|
|
}
|
|
|
|
|
|
|
|
fetch_topic_view(options)
|
|
|
|
render_json_dump(post_ids: @topic_view.posts.pluck(:id))
|
|
|
|
end
|
|
|
|
|
2013-06-20 17:20:08 -04:00
|
|
|
def posts
|
|
|
|
params.require(:topic_id)
|
2018-07-11 03:41:26 -04:00
|
|
|
params.permit(:post_ids, :post_number, :username_filters, :filter)
|
2013-06-28 13:55:34 -04:00
|
|
|
|
2018-06-28 02:54:54 -04:00
|
|
|
options = {
|
2018-07-11 03:41:26 -04:00
|
|
|
filter_post_number: params[:post_number],
|
|
|
|
post_ids: params[:post_ids],
|
|
|
|
asc: ActiveRecord::Type::Boolean.new.deserialize(params[:asc]),
|
|
|
|
filter: params[:filter]
|
|
|
|
}
|
|
|
|
|
2018-06-28 02:54:54 -04:00
|
|
|
fetch_topic_view(options)
|
2018-07-11 03:41:26 -04:00
|
|
|
|
|
|
|
render_json_dump(TopicViewPostsSerializer.new(@topic_view,
|
|
|
|
scope: guardian,
|
|
|
|
root: false,
|
|
|
|
include_raw: !!params[:include_raw]
|
|
|
|
))
|
2013-06-28 13:55:34 -04:00
|
|
|
end
|
|
|
|
|
2016-11-24 19:34:43 -05:00
|
|
|
def excerpts
|
|
|
|
params.require(:topic_id)
|
|
|
|
params.require(:post_ids)
|
|
|
|
|
|
|
|
post_ids = params[:post_ids].map(&:to_i)
|
|
|
|
unless Array === post_ids
|
|
|
|
render_json_error("Expecting post_ids to contain a list of posts ids")
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
if post_ids.length > 100
|
|
|
|
render_json_error("Requested a chunk that is too big")
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
@topic = Topic.with_deleted.where(id: params[:topic_id]).first
|
|
|
|
guardian.ensure_can_see!(@topic)
|
|
|
|
|
|
|
|
@posts = Post.where(hidden: false, deleted_at: nil, topic_id: @topic.id)
|
2017-07-27 21:20:09 -04:00
|
|
|
.where('posts.id in (?)', post_ids)
|
|
|
|
.joins("LEFT JOIN users u on u.id = posts.user_id")
|
|
|
|
.pluck(:id, :cooked, :username)
|
|
|
|
.map do |post_id, cooked, username|
|
|
|
|
{
|
|
|
|
post_id: post_id,
|
|
|
|
username: username,
|
|
|
|
excerpt: PrettyText.excerpt(cooked, 800, keep_emoji_images: true)
|
|
|
|
}
|
|
|
|
end
|
2016-11-24 19:34:43 -05:00
|
|
|
|
|
|
|
render json: @posts.to_json
|
|
|
|
end
|
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
def destroy_timings
|
2014-02-21 13:03:50 -05:00
|
|
|
PostTiming.destroy_for(current_user.id, [params[:topic_id].to_i])
|
2017-08-31 00:06:56 -04:00
|
|
|
render body: nil
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
2018-03-23 11:12:22 -04:00
|
|
|
def update_shared_draft
|
|
|
|
topic = Topic.find_by(id: params[:id])
|
|
|
|
guardian.ensure_can_edit!(topic)
|
|
|
|
|
2018-03-23 11:33:02 -04:00
|
|
|
category = Category.where(id: params[:category_id].to_i).first
|
|
|
|
guardian.ensure_can_publish_topic!(topic, category)
|
|
|
|
|
|
|
|
row_count = SharedDraft.where(topic_id: topic.id).update_all(category_id: category.id)
|
|
|
|
if row_count == 0
|
|
|
|
SharedDraft.create(topic_id: topic.id, category_id: category.id)
|
|
|
|
end
|
2018-03-23 11:12:22 -04:00
|
|
|
|
|
|
|
render json: success_json
|
|
|
|
end
|
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
def update
|
2014-05-06 09:41:59 -04:00
|
|
|
topic = Topic.find_by(id: params[:topic_id])
|
2013-02-07 10:45:24 -05:00
|
|
|
guardian.ensure_can_edit!(topic)
|
2013-02-05 14:16:51 -05:00
|
|
|
|
2018-03-01 20:13:04 -05:00
|
|
|
if params[:category_id] && (params[:category_id].to_i != topic.category_id.to_i)
|
|
|
|
category = Category.find_by(id: params[:category_id])
|
|
|
|
if category || (params[:category_id].to_i == 0)
|
2018-07-12 22:51:08 -04:00
|
|
|
guardian.ensure_can_move_topic_to_category!(category)
|
2018-03-01 20:13:04 -05:00
|
|
|
else
|
|
|
|
return render_json_error(I18n.t('category.errors.not_found'))
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-10-27 17:06:43 -04:00
|
|
|
changes = {}
|
2015-04-18 07:53:53 -04:00
|
|
|
PostRevisor.tracked_topic_fields.each_key do |f|
|
2015-01-27 12:13:45 -05:00
|
|
|
changes[f] = params[f] if params.has_key?(f)
|
|
|
|
end
|
2014-10-27 17:06:43 -04:00
|
|
|
|
2015-01-27 12:13:45 -05:00
|
|
|
changes.delete(:title) if topic.title == changes[:title]
|
2015-02-17 18:35:52 -05:00
|
|
|
changes.delete(:category_id) if topic.category_id.to_i == changes[:category_id].to_i
|
2014-10-27 17:06:43 -04:00
|
|
|
|
2015-01-27 12:13:45 -05:00
|
|
|
success = true
|
2017-08-31 00:06:56 -04:00
|
|
|
|
2014-10-27 17:06:43 -04:00
|
|
|
if changes.length > 0
|
|
|
|
first_post = topic.ordered_posts.first
|
2014-11-17 10:06:43 -05:00
|
|
|
success = PostRevisor.new(first_post, topic).revise!(current_user, changes, validate_post: false)
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
2013-12-11 21:41:34 -05:00
|
|
|
|
|
|
|
# this is used to return the title to the client as it may have been changed by "TextCleaner"
|
2013-10-28 02:12:07 -04:00
|
|
|
success ? render_serialized(topic, BasicTopicSerializer) : render_json_error(topic)
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
2015-03-13 20:18:05 -04:00
|
|
|
def feature_stats
|
|
|
|
params.require(:category_id)
|
|
|
|
category_id = params[:category_id].to_i
|
|
|
|
|
2015-06-22 08:08:30 -04:00
|
|
|
visible_topics = Topic.listable_topics.visible
|
2015-03-13 20:18:05 -04:00
|
|
|
|
|
|
|
render json: {
|
2015-06-22 08:08:30 -04:00
|
|
|
pinned_in_category_count: visible_topics.where(category_id: category_id).where(pinned_globally: false).where.not(pinned_at: nil).count,
|
|
|
|
pinned_globally_count: visible_topics.where(pinned_globally: true).where.not(pinned_at: nil).count,
|
|
|
|
banner_count: Topic.listable_topics.where(archetype: Archetype.banner).count,
|
2015-03-13 20:18:05 -04:00
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
def status
|
2013-06-06 03:14:32 -04:00
|
|
|
params.require(:status)
|
|
|
|
params.require(:enabled)
|
2015-07-29 10:34:21 -04:00
|
|
|
params.permit(:until)
|
|
|
|
|
2017-07-27 21:20:09 -04:00
|
|
|
status = params[:status]
|
2015-07-29 10:34:21 -04:00
|
|
|
topic_id = params[:topic_id].to_i
|
|
|
|
enabled = params[:enabled] == 'true'
|
2013-02-05 14:16:51 -05:00
|
|
|
|
2013-10-28 02:12:07 -04:00
|
|
|
check_for_status_presence(:status, status)
|
2014-05-06 09:41:59 -04:00
|
|
|
@topic = Topic.find_by(id: topic_id)
|
2013-02-05 14:16:51 -05:00
|
|
|
guardian.ensure_can_moderate!(@topic)
|
2015-07-29 10:34:21 -04:00
|
|
|
@topic.update_status(status, enabled, current_user, until: params[:until])
|
2017-03-31 03:56:09 -04:00
|
|
|
|
|
|
|
render json: success_json.merge!(
|
2017-05-11 18:23:18 -04:00
|
|
|
topic_status_update: TopicTimerSerializer.new(
|
|
|
|
TopicTimer.find_by(topic: @topic), root: false
|
2017-03-31 03:56:09 -04:00
|
|
|
)
|
|
|
|
)
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
2013-02-07 10:45:24 -05:00
|
|
|
def mute
|
2013-06-14 01:38:59 -04:00
|
|
|
toggle_mute
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def unmute
|
2013-06-14 01:38:59 -04:00
|
|
|
toggle_mute
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
2017-05-11 18:23:18 -04:00
|
|
|
def timer
|
2017-12-07 08:42:58 -05:00
|
|
|
params.permit(:time, :based_on_last_post, :category_id)
|
2017-03-21 23:12:02 -04:00
|
|
|
params.require(:status_type)
|
2014-10-10 12:21:44 -04:00
|
|
|
|
2017-03-21 23:12:02 -04:00
|
|
|
status_type =
|
|
|
|
begin
|
2017-05-11 18:23:18 -04:00
|
|
|
TopicTimer.types.fetch(params[:status_type].to_sym)
|
2017-03-21 23:12:02 -04:00
|
|
|
rescue
|
|
|
|
invalid_param(:status_type)
|
|
|
|
end
|
|
|
|
|
|
|
|
topic = Topic.find_by(id: params[:topic_id])
|
2013-11-26 19:06:20 -05:00
|
|
|
guardian.ensure_can_moderate!(topic)
|
2014-10-10 12:21:44 -04:00
|
|
|
|
2017-04-03 05:28:41 -04:00
|
|
|
options = {
|
2017-03-21 23:12:02 -04:00
|
|
|
by_user: current_user,
|
|
|
|
based_on_last_post: params[:based_on_last_post]
|
2017-04-03 05:28:41 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
options.merge!(category_id: params[:category_id]) if !params[:category_id].blank?
|
|
|
|
|
2017-05-11 18:23:18 -04:00
|
|
|
topic_status_update = topic.set_or_create_timer(
|
2017-04-03 05:28:41 -04:00
|
|
|
status_type,
|
|
|
|
params[:time],
|
|
|
|
options
|
2017-03-21 23:12:02 -04:00
|
|
|
)
|
2014-10-10 12:21:44 -04:00
|
|
|
|
2013-11-26 19:06:20 -05:00
|
|
|
if topic.save
|
2017-07-27 21:20:09 -04:00
|
|
|
render json: success_json.merge!(
|
2017-03-21 23:12:02 -04:00
|
|
|
execute_at: topic_status_update&.execute_at,
|
|
|
|
duration: topic_status_update&.duration,
|
2017-03-31 03:02:36 -04:00
|
|
|
based_on_last_post: topic_status_update&.based_on_last_post,
|
2017-04-03 05:28:41 -04:00
|
|
|
closed: topic.closed,
|
|
|
|
category_id: topic_status_update&.category_id
|
2017-07-27 21:20:09 -04:00
|
|
|
)
|
2013-11-26 19:06:20 -05:00
|
|
|
else
|
|
|
|
render_json_error(topic)
|
|
|
|
end
|
2013-05-07 14:25:41 -04:00
|
|
|
end
|
|
|
|
|
2014-06-16 12:28:07 -04:00
|
|
|
def make_banner
|
|
|
|
topic = Topic.find_by(id: params[:topic_id].to_i)
|
|
|
|
guardian.ensure_can_moderate!(topic)
|
|
|
|
|
2014-06-16 13:21:21 -04:00
|
|
|
topic.make_banner!(current_user)
|
2014-06-16 12:28:07 -04:00
|
|
|
|
2017-08-31 00:06:56 -04:00
|
|
|
render body: nil
|
2014-06-16 12:28:07 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def remove_banner
|
|
|
|
topic = Topic.find_by(id: params[:topic_id].to_i)
|
|
|
|
guardian.ensure_can_moderate!(topic)
|
|
|
|
|
2014-06-16 13:21:21 -04:00
|
|
|
topic.remove_banner!(current_user)
|
2014-06-16 12:28:07 -04:00
|
|
|
|
2017-08-31 00:06:56 -04:00
|
|
|
render body: nil
|
2014-06-16 12:28:07 -04:00
|
|
|
end
|
|
|
|
|
2015-02-18 18:58:57 -05:00
|
|
|
def remove_bookmarks
|
|
|
|
topic = Topic.find(params[:topic_id].to_i)
|
|
|
|
|
|
|
|
PostAction.joins(:post)
|
2017-07-27 21:20:09 -04:00
|
|
|
.where(user_id: current_user.id)
|
|
|
|
.where('topic_id = ?', topic.id).each do |pa|
|
2015-02-18 18:58:57 -05:00
|
|
|
|
|
|
|
PostAction.remove_act(current_user, pa.post, PostActionType.types[:bookmark])
|
|
|
|
end
|
|
|
|
|
2017-08-31 00:06:56 -04:00
|
|
|
render body: nil
|
2015-02-18 18:58:57 -05:00
|
|
|
end
|
|
|
|
|
2015-12-29 21:26:21 -05:00
|
|
|
def archive_message
|
|
|
|
toggle_archive_message(true)
|
|
|
|
end
|
|
|
|
|
|
|
|
def move_to_inbox
|
|
|
|
toggle_archive_message(false)
|
|
|
|
end
|
|
|
|
|
|
|
|
def toggle_archive_message(archive)
|
|
|
|
topic = Topic.find(params[:id].to_i)
|
2016-01-11 23:49:05 -05:00
|
|
|
|
|
|
|
group_id = nil
|
|
|
|
|
2015-12-29 21:26:21 -05:00
|
|
|
group_ids = current_user.groups.pluck(:id)
|
|
|
|
if group_ids.present?
|
|
|
|
allowed_groups = topic.allowed_groups
|
2017-07-27 21:20:09 -04:00
|
|
|
.where('topic_allowed_groups.group_id IN (?)', group_ids).pluck(:id)
|
2015-12-29 21:26:21 -05:00
|
|
|
allowed_groups.each do |id|
|
|
|
|
if archive
|
2018-03-06 01:38:43 -05:00
|
|
|
GroupArchivedMessage.archive!(id, topic)
|
2016-01-11 23:49:05 -05:00
|
|
|
group_id = id
|
2016-02-07 07:39:07 -05:00
|
|
|
else
|
2018-03-06 01:38:43 -05:00
|
|
|
GroupArchivedMessage.move_to_inbox!(id, topic)
|
2015-12-29 21:26:21 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
if topic.allowed_users.include?(current_user)
|
|
|
|
if archive
|
2018-03-06 01:38:43 -05:00
|
|
|
UserArchivedMessage.archive!(current_user.id, topic)
|
2016-02-07 07:39:07 -05:00
|
|
|
else
|
2018-03-06 01:38:43 -05:00
|
|
|
UserArchivedMessage.move_to_inbox!(current_user.id, topic)
|
2015-12-29 21:26:21 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-01-11 23:49:05 -05:00
|
|
|
if group_id
|
|
|
|
name = Group.find_by(id: group_id).try(:name)
|
|
|
|
render_json_dump(group_name: name)
|
|
|
|
else
|
2017-08-31 00:06:56 -04:00
|
|
|
render body: nil
|
2016-01-11 23:49:05 -05:00
|
|
|
end
|
2015-12-29 21:26:21 -05:00
|
|
|
end
|
|
|
|
|
2015-01-12 06:10:15 -05:00
|
|
|
def bookmark
|
2015-02-18 18:58:57 -05:00
|
|
|
topic = Topic.find(params[:topic_id].to_i)
|
2015-01-12 06:10:15 -05:00
|
|
|
first_post = topic.ordered_posts.first
|
|
|
|
|
2016-12-20 23:01:26 -05:00
|
|
|
guardian.ensure_can_see!(first_post)
|
|
|
|
|
2015-02-18 18:58:57 -05:00
|
|
|
PostAction.act(current_user, first_post, PostActionType.types[:bookmark])
|
2015-01-12 06:10:15 -05:00
|
|
|
|
2017-08-31 00:06:56 -04:00
|
|
|
render body: nil
|
2015-01-12 06:10:15 -05:00
|
|
|
end
|
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
def destroy
|
2014-05-06 09:41:59 -04:00
|
|
|
topic = Topic.find_by(id: params[:id])
|
2013-02-05 14:16:51 -05:00
|
|
|
guardian.ensure_can_delete!(topic)
|
2014-08-07 13:12:35 -04:00
|
|
|
|
|
|
|
first_post = topic.ordered_posts.first
|
2017-07-27 21:20:09 -04:00
|
|
|
PostDestroyer.new(current_user, first_post, context: params[:context]).destroy
|
2014-08-07 13:12:35 -04:00
|
|
|
|
2017-08-31 00:06:56 -04:00
|
|
|
render body: nil
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
2013-02-07 10:45:24 -05:00
|
|
|
|
2013-07-12 12:08:23 -04:00
|
|
|
def recover
|
|
|
|
topic = Topic.where(id: params[:topic_id]).with_deleted.first
|
|
|
|
guardian.ensure_can_recover_topic!(topic)
|
2014-08-07 13:12:35 -04:00
|
|
|
|
|
|
|
first_post = topic.posts.with_deleted.order(:post_number).first
|
2018-03-21 00:15:16 -04:00
|
|
|
PostDestroyer.new(current_user, first_post, context: params[:context]).recover
|
2014-08-07 13:12:35 -04:00
|
|
|
|
2017-08-31 00:06:56 -04:00
|
|
|
render body: nil
|
2013-07-12 12:08:23 -04:00
|
|
|
end
|
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
def excerpt
|
2017-08-31 00:06:56 -04:00
|
|
|
render body: nil
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
2013-06-18 03:17:01 -04:00
|
|
|
def remove_allowed_user
|
|
|
|
params.require(:username)
|
2014-05-06 09:41:59 -04:00
|
|
|
topic = Topic.find_by(id: params[:topic_id])
|
2017-10-10 04:26:56 -04:00
|
|
|
user = User.find_by(username: params[:username])
|
|
|
|
guardian.ensure_can_remove_allowed_users!(topic, user)
|
2013-06-18 03:17:01 -04:00
|
|
|
|
2017-10-10 04:26:56 -04:00
|
|
|
if topic.remove_allowed_user(current_user, user)
|
2013-06-18 03:17:01 -04:00
|
|
|
render json: success_json
|
|
|
|
else
|
|
|
|
render json: failed_json, status: 422
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-06-20 02:29:11 -04:00
|
|
|
def remove_allowed_group
|
|
|
|
params.require(:name)
|
|
|
|
topic = Topic.find_by(id: params[:topic_id])
|
|
|
|
guardian.ensure_can_remove_allowed_users!(topic)
|
|
|
|
|
|
|
|
if topic.remove_allowed_group(current_user, params[:name])
|
|
|
|
render json: success_json
|
|
|
|
else
|
|
|
|
render json: failed_json, status: 422
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def invite_group
|
|
|
|
group = Group.find_by(name: params[:group])
|
|
|
|
raise Discourse::NotFound unless group
|
|
|
|
|
|
|
|
topic = Topic.find_by(id: params[:topic_id])
|
|
|
|
|
|
|
|
if topic.private_message?
|
2017-12-13 21:53:21 -05:00
|
|
|
guardian.ensure_can_invite_group_to_private_message!(group, topic)
|
2016-06-20 02:29:11 -04:00
|
|
|
topic.invite_group(current_user, group)
|
2016-06-21 02:01:29 -04:00
|
|
|
render_json_dump BasicGroupSerializer.new(group, scope: guardian, root: 'group')
|
2016-06-20 02:29:11 -04:00
|
|
|
else
|
|
|
|
render json: failed_json, status: 422
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
def invite
|
2014-05-06 09:41:59 -04:00
|
|
|
topic = Topic.find_by(id: params[:topic_id])
|
2018-02-25 21:42:06 -05:00
|
|
|
raise Discourse::InvalidParameters.new unless topic
|
|
|
|
|
|
|
|
username_or_email = params[:user] ? fetch_username : fetch_email
|
2013-02-05 14:16:51 -05:00
|
|
|
|
2017-07-21 02:12:24 -04:00
|
|
|
groups = Group.lookup_groups(
|
|
|
|
group_ids: params[:group_ids],
|
|
|
|
group_names: params[:group_names]
|
|
|
|
)
|
|
|
|
|
|
|
|
guardian.ensure_can_invite_to!(topic, groups)
|
|
|
|
group_ids = groups.map(&:id)
|
2014-05-08 21:45:18 -04:00
|
|
|
|
2015-12-14 11:02:23 -05:00
|
|
|
begin
|
2016-06-07 13:24:45 -04:00
|
|
|
if topic.invite(current_user, username_or_email, group_ids, params[:custom_message])
|
2015-12-14 11:02:23 -05:00
|
|
|
user = User.find_by_username_or_email(username_or_email)
|
2018-02-25 21:42:06 -05:00
|
|
|
|
2015-12-14 11:02:23 -05:00
|
|
|
if user
|
|
|
|
render_json_dump BasicUserSerializer.new(user, scope: guardian, root: 'user')
|
|
|
|
else
|
|
|
|
render json: success_json
|
|
|
|
end
|
2013-06-18 03:17:01 -04:00
|
|
|
else
|
2015-12-14 11:02:23 -05:00
|
|
|
render json: failed_json, status: 422
|
2013-06-18 03:17:01 -04:00
|
|
|
end
|
2017-05-02 05:43:33 -04:00
|
|
|
rescue Topic::UserExists => e
|
2017-07-27 21:20:09 -04:00
|
|
|
render json: { errors: [e.message] }, status: 422
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def set_notifications
|
|
|
|
topic = Topic.find(params[:topic_id].to_i)
|
|
|
|
TopicUser.change(current_user, topic.id, notification_level: params[:notification_level].to_i)
|
|
|
|
render json: success_json
|
|
|
|
end
|
|
|
|
|
2013-05-16 15:55:14 -04:00
|
|
|
def merge_topic
|
2013-06-06 03:14:32 -04:00
|
|
|
params.require(:destination_topic_id)
|
2013-05-16 15:55:14 -04:00
|
|
|
|
2014-05-06 09:41:59 -04:00
|
|
|
topic = Topic.find_by(id: params[:topic_id])
|
2013-05-16 15:55:14 -04:00
|
|
|
guardian.ensure_can_move_posts!(topic)
|
|
|
|
|
|
|
|
dest_topic = topic.move_posts(current_user, topic.posts.pluck(:id), destination_topic_id: params[:destination_topic_id].to_i)
|
2013-06-18 01:52:09 -04:00
|
|
|
render_topic_changes(dest_topic)
|
2013-05-16 15:55:14 -04:00
|
|
|
end
|
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
def move_posts
|
2018-01-22 11:23:19 -05:00
|
|
|
post_ids = params.require(:post_ids)
|
|
|
|
topic_id = params.require(:topic_id)
|
2013-10-29 15:30:06 -04:00
|
|
|
params.permit(:category_id)
|
2018-07-06 12:21:32 -04:00
|
|
|
params.permit(:tags)
|
2013-05-08 13:33:58 -04:00
|
|
|
|
2018-01-22 11:23:19 -05:00
|
|
|
topic = Topic.with_deleted.find_by(id: topic_id)
|
2013-02-05 14:16:51 -05:00
|
|
|
guardian.ensure_can_move_posts!(topic)
|
|
|
|
|
2018-01-22 11:23:19 -05:00
|
|
|
# when creating a new topic, ensure the 1st post is a regular post
|
|
|
|
if params[:title].present? && Post.where(topic: topic, id: post_ids).order(:post_number).pluck(:post_type).first != Post.types[:regular]
|
|
|
|
return render_json_error("When moving posts to a new topic, the first post must be a regular post.")
|
|
|
|
end
|
|
|
|
|
2013-09-04 11:53:00 -04:00
|
|
|
dest_topic = move_posts_to_destination(topic)
|
2013-06-18 01:52:09 -04:00
|
|
|
render_topic_changes(dest_topic)
|
2014-08-11 14:42:50 -04:00
|
|
|
rescue ActiveRecord::RecordInvalid => ex
|
|
|
|
render_json_error(ex)
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
2014-03-27 21:28:14 -04:00
|
|
|
def change_post_owners
|
|
|
|
params.require(:post_ids)
|
|
|
|
params.require(:topic_id)
|
|
|
|
params.require(:username)
|
|
|
|
|
|
|
|
guardian.ensure_can_change_post_owner!
|
|
|
|
|
2015-03-02 11:17:11 -05:00
|
|
|
begin
|
2017-07-27 21:20:09 -04:00
|
|
|
PostOwnerChanger.new(post_ids: params[:post_ids].to_a,
|
|
|
|
topic_id: params[:topic_id].to_i,
|
|
|
|
new_owner: User.find_by(username: params[:username]),
|
|
|
|
acting_user: current_user).change_owner!
|
2015-03-02 11:17:11 -05:00
|
|
|
render json: success_json
|
|
|
|
rescue ArgumentError
|
|
|
|
render json: failed_json, status: 422
|
2014-03-27 21:28:14 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-07-25 12:06:49 -04:00
|
|
|
def change_timestamps
|
|
|
|
params.require(:topic_id)
|
|
|
|
params.require(:timestamp)
|
|
|
|
|
2016-11-06 14:14:09 -05:00
|
|
|
guardian.ensure_can_change_post_timestamps!
|
2015-07-25 12:06:49 -04:00
|
|
|
|
|
|
|
begin
|
2017-05-22 03:01:33 -04:00
|
|
|
TopicTimestampChanger.new(
|
|
|
|
topic_id: params[:topic_id].to_i,
|
2017-05-22 04:03:49 -04:00
|
|
|
timestamp: params[:timestamp].to_f
|
2017-05-22 03:01:33 -04:00
|
|
|
).change!
|
2015-07-25 12:06:49 -04:00
|
|
|
|
|
|
|
render json: success_json
|
2017-05-22 04:03:49 -04:00
|
|
|
rescue ActiveRecord::RecordInvalid, TopicTimestampChanger::InvalidTimestampError
|
2015-07-25 12:06:49 -04:00
|
|
|
render json: failed_json, status: 422
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-03-06 15:17:07 -05:00
|
|
|
def clear_pin
|
2014-05-06 09:41:59 -04:00
|
|
|
topic = Topic.find_by(id: params[:topic_id].to_i)
|
2013-03-06 15:17:07 -05:00
|
|
|
guardian.ensure_can_see!(topic)
|
|
|
|
topic.clear_pin_for(current_user)
|
2017-08-31 00:06:56 -04:00
|
|
|
render body: nil
|
2013-03-06 15:17:07 -05:00
|
|
|
end
|
2013-02-25 18:38:11 -05:00
|
|
|
|
2014-04-09 20:56:56 -04:00
|
|
|
def re_pin
|
2014-05-06 09:41:59 -04:00
|
|
|
topic = Topic.find_by(id: params[:topic_id].to_i)
|
2014-04-09 20:56:56 -04:00
|
|
|
guardian.ensure_can_see!(topic)
|
|
|
|
topic.re_pin_for(current_user)
|
2017-08-31 00:06:56 -04:00
|
|
|
render body: nil
|
2014-04-09 20:56:56 -04:00
|
|
|
end
|
|
|
|
|
2013-03-06 15:17:07 -05:00
|
|
|
def timings
|
2018-01-18 16:26:18 -05:00
|
|
|
allowed_params = topic_params
|
|
|
|
|
|
|
|
topic_id = allowed_params[:topic_id].to_i
|
|
|
|
topic_time = allowed_params[:topic_time].to_i
|
|
|
|
timings = allowed_params[:timings].to_h || {}
|
|
|
|
|
2018-05-24 01:38:33 -04:00
|
|
|
# ensure we capture current user for the block
|
|
|
|
user = current_user
|
|
|
|
|
2018-01-18 16:26:18 -05:00
|
|
|
hijack do
|
|
|
|
PostTiming.process_timings(
|
2018-05-24 01:38:33 -04:00
|
|
|
user,
|
2018-01-18 16:26:18 -05:00
|
|
|
topic_id,
|
|
|
|
topic_time,
|
|
|
|
timings.map { |post_number, t| [post_number.to_i, t.to_i] },
|
|
|
|
mobile: view_context.mobile_view?
|
|
|
|
)
|
|
|
|
render body: nil
|
|
|
|
end
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
2013-02-21 13:20:00 -05:00
|
|
|
def feed
|
|
|
|
@topic_view = TopicView.new(params[:topic_id])
|
2013-10-16 01:39:18 -04:00
|
|
|
discourse_expires_in 1.minute
|
|
|
|
render 'topics/show', formats: [:rss]
|
2013-02-21 13:20:00 -05:00
|
|
|
end
|
|
|
|
|
2014-01-29 15:48:52 -05:00
|
|
|
def bulk
|
2014-02-21 14:17:45 -05:00
|
|
|
if params[:topic_ids].present?
|
2017-07-27 21:20:09 -04:00
|
|
|
topic_ids = params[:topic_ids].map { |t| t.to_i }
|
2014-02-21 14:17:45 -05:00
|
|
|
elsif params[:filter] == 'unread'
|
|
|
|
tq = TopicQuery.new(current_user)
|
2017-05-25 15:07:12 -04:00
|
|
|
topics = TopicQuery.unread_filter(tq.joined_topic_user, current_user.id, staff: guardian.is_staff?).listable_topics
|
2014-10-30 10:19:49 -04:00
|
|
|
topics = topics.where('category_id = ?', params[:category_id]) if params[:category_id]
|
|
|
|
topic_ids = topics.pluck(:id)
|
2014-02-21 14:17:45 -05:00
|
|
|
else
|
|
|
|
raise ActionController::ParameterMissing.new(:topic_ids)
|
|
|
|
end
|
|
|
|
|
2018-03-23 12:59:31 -04:00
|
|
|
operation = params
|
|
|
|
.require(:operation)
|
2018-04-10 03:31:03 -04:00
|
|
|
.permit(:type, :group, :category_id, :notification_level_id, tags: [])
|
2018-03-23 12:59:31 -04:00
|
|
|
.to_h.symbolize_keys
|
2017-08-31 00:06:56 -04:00
|
|
|
|
2014-01-30 11:15:49 -05:00
|
|
|
raise ActionController::ParameterMissing.new(:operation_type) if operation[:type].blank?
|
2015-12-22 19:09:17 -05:00
|
|
|
operator = TopicsBulkAction.new(current_user, topic_ids, operation, group: operation[:group])
|
2014-01-30 11:15:49 -05:00
|
|
|
changed_topic_ids = operator.perform!
|
|
|
|
render_json_dump topic_ids: changed_topic_ids
|
2014-01-29 15:48:52 -05:00
|
|
|
end
|
|
|
|
|
2014-03-03 15:46:38 -05:00
|
|
|
def reset_new
|
|
|
|
current_user.user_stat.update_column(:new_since, Time.now)
|
2017-08-31 00:06:56 -04:00
|
|
|
render body: nil
|
2014-03-03 15:46:38 -05:00
|
|
|
end
|
|
|
|
|
2016-05-01 07:48:43 -04:00
|
|
|
def convert_topic
|
|
|
|
params.require(:id)
|
|
|
|
params.require(:type)
|
|
|
|
topic = Topic.find_by(id: params[:id])
|
|
|
|
guardian.ensure_can_convert_topic!(topic)
|
|
|
|
|
|
|
|
if params[:type] == "public"
|
|
|
|
converted_topic = topic.convert_to_public_topic(current_user)
|
|
|
|
else
|
|
|
|
converted_topic = topic.convert_to_private_message(current_user)
|
|
|
|
end
|
|
|
|
render_topic_changes(converted_topic)
|
|
|
|
rescue ActiveRecord::RecordInvalid => ex
|
|
|
|
render_json_error(ex)
|
|
|
|
end
|
|
|
|
|
2018-08-09 20:51:03 -04:00
|
|
|
def reset_bump_date
|
|
|
|
params.require(:id)
|
|
|
|
guardian.ensure_can_update_bumped_at!
|
|
|
|
|
|
|
|
topic = Topic.find_by(id: params[:id])
|
|
|
|
raise Discourse::NotFound.new unless topic
|
|
|
|
|
|
|
|
topic.reset_bumped_at
|
|
|
|
render body: nil
|
|
|
|
end
|
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
private
|
|
|
|
|
2017-08-31 00:06:56 -04:00
|
|
|
def topic_params
|
|
|
|
params.permit(
|
|
|
|
:topic_id,
|
|
|
|
:topic_time,
|
|
|
|
timings: {}
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
2018-06-28 02:54:54 -04:00
|
|
|
def fetch_topic_view(options)
|
|
|
|
if (username_filters = params[:username_filters]).present?
|
2018-07-13 03:34:28 -04:00
|
|
|
options[:username_filters] = username_filters.split(',')
|
2018-06-28 02:54:54 -04:00
|
|
|
end
|
2018-07-13 03:34:28 -04:00
|
|
|
|
|
|
|
@topic_view = TopicView.new(params[:topic_id], current_user, options)
|
2018-06-28 02:54:54 -04:00
|
|
|
end
|
|
|
|
|
2013-06-14 01:38:59 -04:00
|
|
|
def toggle_mute
|
2014-05-06 09:41:59 -04:00
|
|
|
@topic = Topic.find_by(id: params[:topic_id].to_i)
|
2013-02-10 13:50:26 -05:00
|
|
|
guardian.ensure_can_see!(@topic)
|
|
|
|
|
2013-05-24 02:06:38 -04:00
|
|
|
@topic.toggle_mute(current_user)
|
2017-08-31 00:06:56 -04:00
|
|
|
render body: nil
|
2013-02-10 13:50:26 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def consider_user_for_promotion
|
|
|
|
Promotion.new(current_user).review if current_user.present?
|
|
|
|
end
|
|
|
|
|
|
|
|
def slugs_do_not_match
|
|
|
|
params[:slug] && @topic_view.topic.slug != params[:slug]
|
|
|
|
end
|
|
|
|
|
2017-07-27 21:20:09 -04:00
|
|
|
def redirect_to_correct_topic(topic, post_number = nil)
|
2014-08-13 16:12:44 -04:00
|
|
|
url = topic.relative_url
|
2014-08-17 22:35:31 -04:00
|
|
|
url << "/#{post_number}" if post_number.to_i > 0
|
2014-08-13 16:12:44 -04:00
|
|
|
url << ".json" if request.format.json?
|
|
|
|
|
2016-02-24 22:32:16 -05:00
|
|
|
page = params[:page]
|
2015-05-20 10:16:17 -04:00
|
|
|
url << "?page=#{page}" if page != 0
|
|
|
|
|
2014-08-13 16:12:44 -04:00
|
|
|
redirect_to url, status: 301
|
2013-02-10 13:50:26 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def track_visit_to_topic
|
2014-06-11 21:29:29 -04:00
|
|
|
topic_id = @topic_view.topic.id
|
|
|
|
ip = request.remote_ip
|
|
|
|
user_id = (current_user.id if current_user)
|
|
|
|
track_visit = should_track_visit_to_topic?
|
|
|
|
|
2018-08-22 00:36:56 -04:00
|
|
|
if !request.format.json?
|
|
|
|
hash = {
|
2014-08-03 21:06:06 -04:00
|
|
|
referer: request.referer || flash[:referer],
|
|
|
|
host: request.host,
|
|
|
|
current_user: current_user,
|
|
|
|
topic_id: @topic_view.topic.id,
|
|
|
|
post_number: params[:post_number],
|
|
|
|
username: request['u'],
|
|
|
|
ip_address: request.remote_ip
|
2018-08-22 00:36:56 -04:00
|
|
|
}
|
|
|
|
# defer this way so we do not capture the whole controller
|
|
|
|
# in the closure
|
|
|
|
TopicsController.defer_add_incoming_link(hash)
|
|
|
|
end
|
|
|
|
|
|
|
|
TopicsController.defer_track_visit(topic_id, ip, user_id, track_visit)
|
|
|
|
end
|
2014-08-03 21:06:06 -04:00
|
|
|
|
2018-08-22 00:36:56 -04:00
|
|
|
def self.defer_track_visit(topic_id, ip, user_id, track_visit)
|
2014-07-17 16:22:46 -04:00
|
|
|
Scheduler::Defer.later "Track Visit" do
|
2014-08-04 05:07:55 -04:00
|
|
|
TopicViewItem.add(topic_id, ip, user_id)
|
2016-05-14 04:06:29 -04:00
|
|
|
TopicUser.track_visit!(topic_id, user_id) if track_visit
|
2014-06-11 21:29:29 -04:00
|
|
|
end
|
2018-08-22 00:36:56 -04:00
|
|
|
end
|
2013-10-04 03:00:23 -04:00
|
|
|
|
2018-08-22 00:36:56 -04:00
|
|
|
def self.defer_add_incoming_link(hash)
|
|
|
|
Scheduler::Defer.later "Track Link" do
|
|
|
|
IncomingLink.add(hash)
|
|
|
|
end
|
2013-02-10 13:50:26 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def should_track_visit_to_topic?
|
2014-08-29 13:39:02 -04:00
|
|
|
!!((!request.format.json? || params[:track_visit]) && current_user)
|
2013-02-10 13:50:26 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def perform_show_response
|
2016-08-16 20:04:23 -04:00
|
|
|
|
|
|
|
if request.head?
|
|
|
|
head :ok
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
2017-09-26 02:42:27 -04:00
|
|
|
topic_view_serializer = TopicViewSerializer.new(@topic_view,
|
|
|
|
scope: guardian,
|
|
|
|
root: false,
|
2017-09-26 02:47:38 -04:00
|
|
|
include_raw: !!params[:include_raw]
|
2017-09-26 02:42:27 -04:00
|
|
|
)
|
2013-06-28 13:55:34 -04:00
|
|
|
|
2013-02-10 13:50:26 -05:00
|
|
|
respond_to do |format|
|
|
|
|
format.html do
|
2017-08-08 12:47:05 -04:00
|
|
|
@description_meta = @topic_view.topic.excerpt || @topic_view.summary
|
2013-02-10 13:50:26 -05:00
|
|
|
store_preloaded("topic_#{@topic_view.topic.id}", MultiJson.dump(topic_view_serializer))
|
2015-08-12 17:00:16 -04:00
|
|
|
render :show
|
2013-02-10 13:50:26 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
format.json do
|
|
|
|
render_json_dump(topic_view_serializer)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2013-06-18 01:52:09 -04:00
|
|
|
|
|
|
|
def render_topic_changes(dest_topic)
|
|
|
|
if dest_topic.present?
|
2017-07-27 21:20:09 -04:00
|
|
|
render json: { success: true, url: dest_topic.relative_url }
|
2013-06-18 01:52:09 -04:00
|
|
|
else
|
2017-07-27 21:20:09 -04:00
|
|
|
render json: { success: false }
|
2013-06-18 01:52:09 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-09-04 11:53:00 -04:00
|
|
|
def move_posts_to_destination(topic)
|
2013-06-18 01:52:09 -04:00
|
|
|
args = {}
|
|
|
|
args[:title] = params[:title] if params[:title].present?
|
|
|
|
args[:destination_topic_id] = params[:destination_topic_id].to_i if params[:destination_topic_id].present?
|
2013-10-29 15:30:06 -04:00
|
|
|
args[:category_id] = params[:category_id].to_i if params[:category_id].present?
|
2018-07-06 12:21:32 -04:00
|
|
|
args[:tags] = params[:tags] if params[:tags].present?
|
2013-06-18 01:52:09 -04:00
|
|
|
|
2013-09-04 11:53:00 -04:00
|
|
|
topic.move_posts(current_user, post_ids_including_replies, args)
|
2013-06-18 01:52:09 -04:00
|
|
|
end
|
|
|
|
|
2013-10-28 02:12:07 -04:00
|
|
|
def check_for_status_presence(key, attr)
|
2015-03-13 20:18:05 -04:00
|
|
|
invalid_param(key) unless %w(pinned pinned_globally visible closed archived).include?(attr)
|
2013-10-28 02:12:07 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def invalid_param(key)
|
|
|
|
raise Discourse::InvalidParameters.new(key.to_sym)
|
|
|
|
end
|
|
|
|
|
|
|
|
def fetch_username
|
|
|
|
params.require(:user)
|
|
|
|
params[:user]
|
|
|
|
end
|
|
|
|
|
|
|
|
def fetch_email
|
|
|
|
params.require(:email)
|
|
|
|
params[:email]
|
|
|
|
end
|
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|