#68 まづは NOT に対応
このコミットが含まれているのは:
@@ -84,7 +84,7 @@ class PostsController < ApplicationController
|
|||||||
title = params[:title].presence
|
title = params[:title].presence
|
||||||
url = params[:url]
|
url = params[:url]
|
||||||
thumbnail = params[:thumbnail]
|
thumbnail = params[:thumbnail]
|
||||||
tag_names = params[:tags].to_s.split(' ')
|
tag_names = params[:tags].to_s.split
|
||||||
original_created_from = params[:original_created_from]
|
original_created_from = params[:original_created_from]
|
||||||
original_created_before = params[:original_created_before]
|
original_created_before = params[:original_created_before]
|
||||||
|
|
||||||
@@ -125,7 +125,7 @@ class PostsController < ApplicationController
|
|||||||
return head :forbidden unless current_user.gte_member?
|
return head :forbidden unless current_user.gte_member?
|
||||||
|
|
||||||
title = params[:title].presence
|
title = params[:title].presence
|
||||||
tag_names = params[:tags].to_s.split(' ')
|
tag_names = params[:tags].to_s.split
|
||||||
original_created_from = params[:original_created_from]
|
original_created_from = params[:original_created_from]
|
||||||
original_created_before = params[:original_created_before]
|
original_created_before = params[:original_created_before]
|
||||||
|
|
||||||
@@ -192,7 +192,7 @@ class PostsController < ApplicationController
|
|||||||
private
|
private
|
||||||
|
|
||||||
def filtered_posts
|
def filtered_posts
|
||||||
tag_names = params[:tags].to_s.split(' ')
|
tag_names = params[:tags].to_s.split
|
||||||
match_type = params[:match]
|
match_type = params[:match]
|
||||||
if tag_names.present?
|
if tag_names.present?
|
||||||
filter_posts_by_tags(tag_names, match_type)
|
filter_posts_by_tags(tag_names, match_type)
|
||||||
@@ -202,19 +202,41 @@ class PostsController < ApplicationController
|
|||||||
end
|
end
|
||||||
|
|
||||||
def filter_posts_by_tags tag_names, match_type
|
def filter_posts_by_tags tag_names, match_type
|
||||||
tag_names = TagName.canonicalise(tag_names)
|
literals = tag_names.map do |raw_name|
|
||||||
|
{ name: TagName.canonicalise(raw_name.sub(/\Anot:/i, '')).first,
|
||||||
|
negative: raw_name.downcase.start_with?('not:') }
|
||||||
|
end
|
||||||
|
|
||||||
posts = Post.joins(tags: :tag_name)
|
return Post.all if literals.empty?
|
||||||
|
|
||||||
if match_type == 'any'
|
if match_type == 'any'
|
||||||
posts.where(tag_names: { name: tag_names }).distinct
|
literals.reduce(Post.none) do |posts, literal|
|
||||||
|
posts.or(tag_literal_relation(literal[:name], negative: literal[:negative]))
|
||||||
|
end
|
||||||
else
|
else
|
||||||
posts.where(tag_names: { name: tag_names })
|
literals.reduce(Post.all) do |posts, literal|
|
||||||
.group('posts.id')
|
ids = tagged_post_ids_for(literal[:name])
|
||||||
.having('COUNT(DISTINCT tag_names.id) = ?', tag_names.uniq.size)
|
if literal[:negative]
|
||||||
|
posts.where.not(id: ids)
|
||||||
|
else
|
||||||
|
posts.where(id: ids)
|
||||||
|
end
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def tag_literal_relation name, negative:
|
||||||
|
ids = tagged_post_ids_for(name)
|
||||||
|
if negative
|
||||||
|
Post.where.not(id: ids)
|
||||||
|
else
|
||||||
|
Post.where(id: ids)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
def tagged_post_ids_for(name) =
|
||||||
|
Post.joins(tags: :tag_name).where(tag_names: { name: }).select(:id)
|
||||||
|
|
||||||
def sync_post_tags! post, desired_tags
|
def sync_post_tags! post, desired_tags
|
||||||
desired_tags.each do |t|
|
desired_tags.each do |t|
|
||||||
t.save! if t.new_record?
|
t.save! if t.new_record?
|
||||||
|
|||||||
@@ -17,8 +17,7 @@ class TagsController < ApplicationController
|
|||||||
end
|
end
|
||||||
|
|
||||||
def autocomplete
|
def autocomplete
|
||||||
q = params[:q].to_s.strip
|
q = params[:q].to_s.strip.sub(/\Anot:/i, '')
|
||||||
return render json: [] if q.blank?
|
|
||||||
|
|
||||||
with_nico = bool?(:nico, default: true)
|
with_nico = bool?(:nico, default: true)
|
||||||
present_only = bool?(:present, default: true)
|
present_only = bool?(:present, default: true)
|
||||||
|
|||||||
新しい課題から参照
ユーザをブロックする