2016-11-16 02:56:29 +11:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-03-01 05:42:08 +11:00
|
|
|
class AccountsController < ApplicationController
|
2017-04-19 21:52:37 +10:00
|
|
|
include AccountControllerConcern
|
2017-07-15 04:41:49 +10:00
|
|
|
include SignatureVerification
|
2016-03-01 05:42:08 +11:00
|
|
|
|
|
|
|
def show
|
|
|
|
respond_to do |format|
|
2016-09-09 04:36:01 +10:00
|
|
|
format.html do
|
2017-05-27 00:35:25 +10:00
|
|
|
@statuses = @account.statuses.permitted_for(@account, current_account).paginate_by_max_id(20, params[:max_id], params[:since_id])
|
2016-12-02 02:26:25 +11:00
|
|
|
@statuses = cache_collection(@statuses, Status)
|
2016-09-09 04:36:01 +10:00
|
|
|
end
|
2016-03-24 23:21:53 +11:00
|
|
|
|
|
|
|
format.atom do
|
2017-05-27 00:35:25 +10:00
|
|
|
@entries = @account.stream_entries.where(hidden: false).with_includes.paginate_by_max_id(20, params[:max_id], params[:since_id])
|
2017-07-19 00:39:47 +10:00
|
|
|
render xml: Ostatus::AtomSerializer.render(Ostatus::AtomSerializer.new.feed(@account, @entries.to_a))
|
2016-03-24 23:21:53 +11:00
|
|
|
end
|
2017-02-06 20:19:05 +11:00
|
|
|
|
2017-07-15 11:01:39 +10:00
|
|
|
format.json do
|
|
|
|
render json: @account, serializer: ActivityPub::ActorSerializer, adapter: ActivityPub::Adapter
|
|
|
|
end
|
2016-03-01 05:42:08 +11:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def set_account
|
2016-09-05 05:06:04 +10:00
|
|
|
@account = Account.find_local!(params[:username])
|
2016-03-01 05:42:08 +11:00
|
|
|
end
|
|
|
|
end
|