about summary refs log tree commit diff
path: root/app/controllers/api/v1/featured_tags_controller.rb
blob: edb42a94ea6b202f6ed21e5e25b4d3aea5627133 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# frozen_string_literal: true

class Api::V1::FeaturedTagsController < Api::BaseController
  before_action -> { doorkeeper_authorize! :read, :'read:accounts' }, only: :index
  before_action -> { doorkeeper_authorize! :write, :'write:accounts' }, except: :index

  before_action :require_user!
  before_action :set_featured_tags, only: :index
  before_action :set_featured_tag, except: [:index, :create]

  def index
    render json: @featured_tags, each_serializer: REST::FeaturedTagSerializer
  end

  def create
    featured_tag = CreateFeaturedTagService.new.call(current_account, featured_tag_params[:name])
    render json: featured_tag, serializer: REST::FeaturedTagSerializer
  end

  def destroy
    RemoveFeaturedTagWorker.perform_async(current_account.id, @featured_tag.id)
    render_empty
  end

  private

  def set_featured_tag
    @featured_tag = current_account.featured_tags.find(params[:id])
  end

  def set_featured_tags
    @featured_tags = current_account.featured_tags.order(statuses_count: :desc)
  end

  def featured_tag_params
    params.permit(:name)
  end
end