2019-05-02 18:17:27 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2015-06-24 15:08:22 -04:00
|
|
|
class SimilarTopicsController < ApplicationController
|
|
|
|
class SimilarTopic
|
|
|
|
def initialize(topic)
|
|
|
|
@topic = topic
|
|
|
|
end
|
|
|
|
|
|
|
|
attr_reader :topic
|
|
|
|
|
|
|
|
def blurb
|
2020-07-17 04:27:30 -04:00
|
|
|
Search::GroupedSearchResults.blurb_for(cooked: @topic.try(:blurb))
|
2015-06-24 15:08:22 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def index
|
2017-09-15 19:03:29 -04:00
|
|
|
title = params.require(:title)
|
|
|
|
raw = params[:raw]
|
2015-06-24 15:08:22 -04:00
|
|
|
|
2017-09-15 19:03:29 -04:00
|
|
|
if title.length < SiteSetting.min_title_similar_length || !Topic.count_exceeds_minimum?
|
|
|
|
return render json: []
|
|
|
|
end
|
2015-06-24 15:08:22 -04:00
|
|
|
|
|
|
|
topics = Topic.similar_to(title, raw, current_user).to_a
|
|
|
|
topics.map! { |t| SimilarTopic.new(t) }
|
|
|
|
render_serialized(topics, SimilarTopicSerializer, root: :similar_topics, rest_serializer: true)
|
|
|
|
end
|
|
|
|
end
|