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