Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F5811158
signature.ex
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
signature.ex
View Options
# Pleroma: A lightweight social networking server
# Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: AGPL-3.0-only
defmodule
Pleroma.Signature
do
@behaviour
HTTPSignatures.Adapter
alias
Pleroma.Keys
alias
Pleroma.User
alias
Pleroma.Web.ActivityPub.ActivityPub
alias
Pleroma.Web.ActivityPub.Utils
def
fetch_public_key
(
conn
)
do
with
actor_id
<-
Utils
.
get_ap_id
(
conn
.
params
[
"actor"
]),
{
:ok
,
public_key
}
<-
User
.
get_public_key_for_ap_id
(
actor_id
)
do
{
:ok
,
public_key
}
else
e
->
{
:error
,
e
}
end
end
def
refetch_public_key
(
conn
)
do
with
actor_id
<-
Utils
.
get_ap_id
(
conn
.
params
[
"actor"
]),
{
:ok
,
_user
}
<-
ActivityPub
.
make_user_from_ap_id
(
actor_id
),
{
:ok
,
public_key
}
<-
User
.
get_public_key_for_ap_id
(
actor_id
)
do
{
:ok
,
public_key
}
else
e
->
{
:error
,
e
}
end
end
def
sign
(%
User
{}
=
user
,
headers
)
do
with
{
:ok
,
%{
info
:
%{
keys
:
keys
}}}
<-
User
.
ensure_keys_present
(
user
),
{
:ok
,
private_key
,
_
}
<-
Keys
.
keys_from_pem
(
keys
)
do
HTTPSignatures
.
sign
(
private_key
,
user
.
ap_id
<>
"
#
main-key"
,
headers
)
end
end
end
File Metadata
Details
Attached
Mime Type
text/x-ruby
Expires
Thu, Aug 14, 3:29 AM (1 d, 12 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
304604
Default Alt Text
signature.ex (1 KB)
Attached To
Mode
rPUBE pleroma-upstream
Attached
Detach File
Event Timeline
Log In to Comment