Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Pleroma
pleroma
Commits
e7ddda44
Commit
e7ddda44
authored
Apr 07, 2018
by
eal
Browse files
Follow import: allow URI in addition to screen_name.
parent
303289d7
Pipeline
#1114
passed with stage
in 2 minutes and 41 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
lib/pleroma/web/twitter_api/controllers/util_controller.ex
View file @
e7ddda44
...
...
@@ -182,13 +182,13 @@ def follow_import(conn, %{"list" => %Plug.Upload{} = listfile}) do
def
follow_import
(%{
assigns:
%{
user:
user
}}
=
conn
,
%{
"list"
=>
list
})
do
Task
.
start
(
fn
->
String
.
split
(
list
)
|>
Enum
.
map
(
fn
nick
->
|>
Enum
.
map
(
fn
account
->
with
%
User
{}
=
follower
<-
User
.
get_cached_by_ap_id
(
user
.
ap_id
),
%
User
{}
=
followed
<-
User
.
get_or_fetch
_by_nickname
(
nick
),
%
User
{}
=
followed
<-
User
.
get_or_fetch
(
account
),
{
:ok
,
follower
}
<-
User
.
follow
(
follower
,
followed
)
do
ActivityPub
.
follow
(
follower
,
followed
)
else
_e
->
Logger
.
debug
(
"follow_import: following
#{
nick
}
failed"
)
_e
->
Logger
.
debug
(
"follow_import: following
#{
account
}
failed"
)
end
end
)
end
)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment