mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 01:58:12 +08:00
95114f87ae
- Increase size of the reviewable's conversation excerpt to prevent truncation of the new copy - Remove the `domain` parameter from the `flag_linked_posts_as_spam` method in the user model since it is no longer needed - Remove the `domain` interpolation variable from all translation files - Add "All posts from this user that include links should be reviewed." to server.en.yml for added clarity on why the posts entered the queue
43 lines
1.2 KiB
Ruby
43 lines
1.2 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
class Reviewable < ActiveRecord::Base
|
|
class Conversation
|
|
include ActiveModel::Serialization
|
|
|
|
class Post
|
|
include ActiveModel::Serialization
|
|
attr_reader :id, :user, :excerpt
|
|
|
|
def initialize(post)
|
|
@user = post.user
|
|
@id = post.id
|
|
@excerpt = self.class.excerpt(post.cooked)
|
|
end
|
|
|
|
def self.excerpt(cooked)
|
|
excerpt = ::Post.excerpt(cooked, 250, keep_emoji_images: true)
|
|
# remove the first link if it's the first node
|
|
fragment = Nokogiri::HTML.fragment(excerpt)
|
|
if fragment.children.first == fragment.css("a:first").first && fragment.children.first
|
|
fragment.children.first.remove
|
|
end
|
|
fragment.to_html.strip
|
|
end
|
|
end
|
|
|
|
attr_reader :id, :permalink, :has_more, :conversation_posts
|
|
|
|
def initialize(meta_topic)
|
|
@id = meta_topic.id
|
|
@has_more = false
|
|
@permalink = "#{Discourse.base_url_no_prefix}#{meta_topic.relative_url}"
|
|
@posts = []
|
|
|
|
meta_posts = meta_topic.ordered_posts.where(post_type: ::Post.types[:regular]).limit(2)
|
|
|
|
@conversation_posts = meta_posts.map { |mp| Reviewable::Conversation::Post.new(mp) }
|
|
@has_more = meta_topic.posts_count > 2
|
|
end
|
|
end
|
|
end
|