Skip to content
Snippets Groups Projects
Commit 9d5fb49c authored by Eugen's avatar Eugen Committed by GitHub
Browse files

Merge pull request #603 from evanminto/activitypub-account

Expose ActivityStreams 2.0 representation of accounts
parents 8a081ce5 28cbb6dc
No related branches found
No related tags found
No related merge requests found
......@@ -18,6 +18,8 @@ class AccountsController < ApplicationController
format.atom do
@entries = @account.stream_entries.order('id desc').where(hidden: false).with_includes.paginate_by_max_id(20, params[:max_id], params[:since_id])
end
format.activitystreams2
end
end
......
extends 'activitypub/types/person.activitystreams2.rabl'
object @account
attributes display_name: :name, username: :preferredUsername, note: :summary
node(:icon) { |account| full_asset_url(account.avatar.url(:original)) }
node(:image) { |account| full_asset_url(account.header.url(:original)) }
node(:'@context') { 'https://www.w3.org/ns/activitystreams' }
extends 'activitypub/base.activitystreams2.rabl'
node(:id) { request.original_url }
extends 'activitypub/intransient.activitystreams2.rabl'
node(:type) { 'Person' }
# Be sure to restart your server when you modify this file.
Mime::Type.register "application/json", :json, %w( text/x-json application/jsonrequest application/jrd+json )
Mime::Type.register "text/xml", :xml, %w( application/xml application/atom+xml application/xrd+xml )
Mime::Type.register "application/json", :json, %w( text/x-json application/jsonrequest application/jrd+json )
Mime::Type.register "text/xml", :xml, %w( application/xml application/atom+xml application/xrd+xml )
Mime::Type.register "application/activity+json", :activitystreams2
......@@ -24,6 +24,16 @@ RSpec.describe AccountsController, type: :controller do
end
end
context 'activitystreams2' do
before do
get :show, params: { username: alice.username }, format: 'activitystreams2'
end
it 'returns http success with Activity Streams 2.0' do
expect(response).to have_http_status(:success)
end
end
context 'html' do
before do
get :show, params: { username: alice.username }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment