Merge pull request #4369 from BrokenEagle/post-version-fixes

Various post version fixes
This commit is contained in:
evazion
2020-04-04 02:55:37 -05:00
committed by GitHub
9 changed files with 119 additions and 53 deletions

View File

@@ -32,6 +32,13 @@ class PostVersion < ApplicationRecord
end
end
def tag_matches(string)
tag = string.split(/\S+/)[0]
return all if tag.nil?
tag = "*#{tag}*" unless tag =~ /\*/
where_ilike(:tags, tag)
end
def search(params)
q = super
q = q.search_attributes(params, :updater_id, :post_id, :tags, :added_tags, :removed_tags, :rating, :rating_changed, :parent_id, :parent_changed, :source, :source_changed, :version)
@@ -40,10 +47,20 @@ class PostVersion < ApplicationRecord
q = q.changed_tags_include_all(params[:changed_tags].scan(/[^[:space:]]+/))
end
if params[:tag_matches]
q = q.tag_matches(params[:tag_matches])
end
if params[:updater_name].present?
q = q.where(updater_id: User.name_to_id(params[:updater_name]))
end
if params[:is_new].to_s.truthy?
q = q.where(version: 1)
elsif params[:is_new].to_s.falsy?
q = q.where("version != 1")
end
q.apply_default_order(params)
end
end
@@ -130,6 +147,19 @@ class PostVersion < ApplicationRecord
}
end
def pretty_rating
case rating
when "q"
"Questionable"
when "e"
"Explicit"
when "s"
"Safe"
end
end
def changes
delta = {
:added_tags => added_tags,