Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
pleroma
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Steven Fuchs
pleroma
Commits
82fae3e2
Commit
82fae3e2
authored
5 years ago
by
Maxim Filippov
Browse files
Options
Downloads
Patches
Plain Diff
AdminAPI: Merge account views for list instance statuses
parent
1f498ba2
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
lib/pleroma/web/admin_api/admin_api_controller.ex
+1
-1
1 addition, 1 deletion
lib/pleroma/web/admin_api/admin_api_controller.ex
lib/pleroma/web/admin_api/views/status_view.ex
+42
-0
42 additions, 0 deletions
lib/pleroma/web/admin_api/views/status_view.ex
with
43 additions
and
1 deletion
lib/pleroma/web/admin_api/admin_api_controller.ex
+
1
−
1
View file @
82fae3e2
...
...
@@ -240,7 +240,7 @@ def list_instance_statuses(conn, %{"instance" => instance} = params) do
})
conn
|>
put_view
(
StatusView
)
|>
put_view
(
Pleroma
.
Web
.
AdminAPI
.
StatusView
)
|>
render
(
"index.json"
,
%{
activities:
activities
,
as:
:activity
})
end
...
...
This diff is collapsed.
Click to expand it.
lib/pleroma/web/admin_api/views/status_view.ex
0 → 100644
+
42
−
0
View file @
82fae3e2
# Pleroma: A lightweight social networking server
# Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: AGPL-3.0-only
defmodule
Pleroma
.
Web
.
AdminAPI
.
StatusView
do
use
Pleroma
.
Web
,
:view
require
Pleroma
.
Constants
alias
Pleroma
.
User
def
render
(
"index.json"
,
opts
)
do
render_many
(
opts
.
activities
,
__MODULE__
,
"show.json"
,
opts
)
end
def
render
(
"show.json"
,
%{
activity:
%{
data:
%{
"object"
=>
_object
}}
=
activity
}
=
opts
)
do
user
=
get_user
(
activity
.
data
[
"actor"
])
Pleroma
.
Web
.
MastodonAPI
.
StatusView
.
render
(
"show.json"
,
opts
)
|>
Map
.
merge
(%{
account:
merge_account_views
(
user
)})
end
defp
merge_account_views
(%
User
{}
=
user
)
do
Pleroma
.
Web
.
MastodonAPI
.
AccountView
.
render
(
"show.json"
,
%{
user:
user
})
|>
Map
.
merge
(
Pleroma
.
Web
.
AdminAPI
.
AccountView
.
render
(
"show.json"
,
%{
user:
user
}))
end
defp
merge_account_views
(
_
),
do
:
%{}
defp
get_user
(
ap_id
)
do
cond
do
user
=
User
.
get_cached_by_ap_id
(
ap_id
)
->
user
user
=
User
.
get_by_guessed_nickname
(
ap_id
)
->
user
true
->
User
.
error_user
(
ap_id
)
end
end
end
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment