Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
mastodon
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
Package Registry
Model registry
Operate
Environments
Terraform modules
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
Pierre Boudes
mastodon
Commits
037f96c5
Commit
037f96c5
authored
7 years ago
by
René Klačan
Committed by
Eugen Rochko
7 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Don't follow account if it's already followed (#3575)
Closes
https://github.com/tootsuite/mastodon/issues/3102
parent
f54dca06
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/services/follow_service.rb
+2
-0
2 additions, 0 deletions
app/services/follow_service.rb
spec/services/follow_service_spec.rb
+34
-0
34 additions, 0 deletions
spec/services/follow_service_spec.rb
with
36 additions
and
0 deletions
app/services/follow_service.rb
+
2
−
0
View file @
037f96c5
...
...
@@ -12,6 +12,8 @@ class FollowService < BaseService
raise
ActiveRecord
::
RecordNotFound
if
target_account
.
nil?
||
target_account
.
id
==
source_account
.
id
||
target_account
.
suspended?
raise
Mastodon
::
NotPermittedError
if
target_account
.
blocking?
(
source_account
)
||
source_account
.
blocking?
(
target_account
)
return
if
source_account
.
following?
(
target_account
)
if
target_account
.
locked?
request_follow
(
source_account
,
target_account
)
else
...
...
This diff is collapsed.
Click to expand it.
spec/services/follow_service_spec.rb
+
34
−
0
View file @
037f96c5
...
...
@@ -29,6 +29,19 @@ RSpec.describe FollowService do
expect
(
sender
.
following?
(
bob
)).
to
be
true
end
end
describe
'already followed account'
do
let
(
:bob
)
{
Fabricate
(
:user
,
email:
'bob@example.com'
,
account:
Fabricate
(
:account
,
username:
'bob'
)).
account
}
before
do
sender
.
follow!
(
bob
)
subject
.
call
(
sender
,
bob
.
acct
)
end
it
'keeps a following relation'
do
expect
(
sender
.
following?
(
bob
)).
to
be
true
end
end
end
context
'remote account'
do
...
...
@@ -76,5 +89,26 @@ RSpec.describe FollowService do
expect
(
a_request
(
:post
,
"http://hub.example.com/"
)).
to
have_been_made
.
once
end
end
describe
'already followed account'
do
let
(
:bob
)
{
Fabricate
(
:user
,
email:
'bob@example.com'
,
account:
Fabricate
(
:account
,
username:
'bob'
,
domain:
'example.com'
,
salmon_url:
'http://salmon.example.com'
,
hub_url:
'http://hub.example.com'
)).
account
}
before
do
sender
.
follow!
(
bob
)
subject
.
call
(
sender
,
bob
.
acct
)
end
it
'keeps a following relation'
do
expect
(
sender
.
following?
(
bob
)).
to
be
true
end
it
'does not send a follow salmon slap'
do
expect
(
a_request
(
:post
,
"http://salmon.example.com/"
)).
not_to
have_been_made
end
it
'does not subscribe to PuSH'
do
expect
(
a_request
(
:post
,
"http://hub.example.com/"
)).
not_to
have_been_made
end
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