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