about summary refs log tree commit diff
path: root/app/controllers/api/v1/statuses_controller.rb
blob: 51a044a6cc494d6bdee04451adc5b565bd0f4c83 (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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
class Api::V1::StatusesController < ApiController
  before_action -> { doorkeeper_authorize! :read }, except: [:create, :destroy, :reblog, :unreblog, :favourite, :unfavourite]
  before_action -> { doorkeeper_authorize! :write }, only:  [:create, :destroy, :reblog, :unreblog, :favourite, :unfavourite]
  before_action :require_user!, except: [:show, :context, :reblogged_by, :favourited_by]
  before_action :set_status, only:      [:show, :context, :reblogged_by, :favourited_by]

  respond_to :json

  def show
  end

  def context
    @context = OpenStruct.new({ ancestors: @status.ancestors, descendants: @status.descendants })
    set_maps([@status] + @context[:ancestors] + @context[:descendants])
  end

  def reblogged_by
    @accounts = @status.reblogged_by(40)
    render action: :accounts
  end

  def favourited_by
    @accounts = @status.favourited_by(40)
    render action: :accounts
  end

  def create
    @status = PostStatusService.new.call(current_user.account, params[:status], params[:in_reply_to_id].blank? ? nil : Status.find(params[:in_reply_to_id]), params[:media_ids])
    render action: :show
  end

  def destroy
    @status = Status.where(account_id: current_user.account).find(params[:id])
    RemoveStatusService.new.call(@status)
    render_empty
  end

  def reblog
    @status = ReblogService.new.call(current_user.account, Status.find(params[:id])).reload
    render action: :show
  end

  def unreblog
    RemoveStatusService.new.call(Status.where(account_id: current_user.account, reblog_of_id: params[:id]).first!)
    @status = Status.find(params[:id])
    render action: :show
  end

  def favourite
    @status = FavouriteService.new.call(current_user.account, Status.find(params[:id])).status.reload
    render action: :show
  end

  def unfavourite
    @status = UnfavouriteService.new.call(current_user.account, Status.find(params[:id])).status.reload
    render action: :show
  end

  private

  def set_status
    @status = Status.find(params[:id])
  end
end