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