Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
M
mastofe
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
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
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Pleroma
mastofe
Commits
66d94520
Commit
66d94520
authored
6 years ago
by
ThibG
Committed by
Eugen Rochko
6 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Do not try fetching keys of unknown accounts on a Delete from them (#10326)
parent
158c31b9
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
app/controllers/activitypub/inboxes_controller.rb
+13
-3
13 additions, 3 deletions
app/controllers/activitypub/inboxes_controller.rb
spec/controllers/activitypub/inboxes_controller_spec.rb
+2
-2
2 additions, 2 deletions
spec/controllers/activitypub/inboxes_controller_spec.rb
with
15 additions
and
5 deletions
app/controllers/activitypub/inboxes_controller.rb
+
13
−
3
View file @
66d94520
...
...
@@ -2,11 +2,14 @@
class
ActivityPub::InboxesController
<
Api
::
BaseController
include
SignatureVerification
include
JsonLdHelper
before_action
:set_account
def
create
if
signed_request_account
if
unknown_deleted_account?
head
202
elsif
signed_request_account
upgrade_account
process_payload
head
202
...
...
@@ -17,12 +20,19 @@ class ActivityPub::InboxesController < Api::BaseController
private
def
unknown_deleted_account?
json
=
Oj
.
load
(
body
,
mode: :strict
)
json
[
'type'
]
==
'Delete'
&&
json
[
'actor'
].
present?
&&
json
[
'actor'
]
==
value_or_id
(
json
[
'object'
])
&&
!
Account
.
where
(
uri:
json
[
'actor'
]).
exists?
rescue
Oj
::
ParseError
false
end
def
set_account
@account
=
Account
.
find_local!
(
params
[
:account_username
])
if
params
[
:account_username
]
end
def
body
@body
||=
request
.
body
.
read
@body
||=
request
.
body
.
read
.
force_encoding
(
'UTF-8'
)
end
def
upgrade_account
...
...
@@ -36,6 +46,6 @@ class ActivityPub::InboxesController < Api::BaseController
end
def
process_payload
ActivityPub
::
ProcessingWorker
.
perform_async
(
signed_request_account
.
id
,
body
.
force_encoding
(
'UTF-8'
)
,
@account
&
.
id
)
ActivityPub
::
ProcessingWorker
.
perform_async
(
signed_request_account
.
id
,
body
,
@account
&
.
id
)
end
end
This diff is collapsed.
Click to expand it.
spec/controllers/activitypub/inboxes_controller_spec.rb
+
2
−
2
View file @
66d94520
...
...
@@ -10,7 +10,7 @@ RSpec.describe ActivityPub::InboxesController, type: :controller do
Fabricate
(
:account
)
end
post
:create
post
:create
,
body:
'{}'
expect
(
response
).
to
have_http_status
(
202
)
end
end
...
...
@@ -21,7 +21,7 @@ RSpec.describe ActivityPub::InboxesController, type: :controller do
false
end
post
:create
post
:create
,
body:
'{}'
expect
(
response
).
to
have_http_status
(
401
)
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