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
1cfc9aa2
Commit
1cfc9aa2
authored
8 years ago
by
Eugen Rochko
Browse files
Options
Downloads
Patches
Plain Diff
OStatus2 and Goldfinger gems now have timeouts for requests
parent
059ebbf4
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
Gemfile.lock
+2
-2
2 additions, 2 deletions
Gemfile.lock
app/models/account.rb
+1
-1
1 addition, 1 deletion
app/models/account.rb
lib/tasks/mastodon.rake
+5
-0
5 additions, 0 deletions
lib/tasks/mastodon.rake
with
8 additions
and
3 deletions
Gemfile.lock
+
2
−
2
View file @
1cfc9aa2
...
...
@@ -106,7 +106,7 @@ GEM
ruby-progressbar (~> 1.4)
globalid (0.3.7)
activesupport (>= 4.1.0)
goldfinger (1.0.
2
)
goldfinger (1.0.
3
)
addressable (~> 2.4)
http (~> 1.0)
nokogiri (~> 1.6)
...
...
@@ -171,7 +171,7 @@ GEM
pkg-config (~> 1.1.7)
oj (2.17.3)
orm_adapter (0.5.0)
ostatus2 (0.2)
ostatus2 (0.2
.1
)
addressable (~> 2.4)
http (~> 1.0)
nokogiri (~> 1.6)
...
...
This diff is collapsed.
Click to expand it.
app/models/account.rb
+
1
−
1
View file @
1cfc9aa2
...
...
@@ -82,7 +82,7 @@ class Account < ApplicationRecord
end
def
subscription
(
webhook_url
)
@subscription
||=
OStatus2
::
Subscription
.
new
(
self
.
remote_url
,
secret:
self
.
secret
,
token:
self
.
verify_token
,
webhook:
webhook_url
,
hub:
self
.
hub_url
)
OStatus2
::
Subscription
.
new
(
self
.
remote_url
,
secret:
self
.
secret
,
token:
self
.
verify_token
,
webhook:
webhook_url
,
hub:
self
.
hub_url
)
end
def
ping!
(
atom_url
,
hubs
)
...
...
This diff is collapsed.
Click to expand it.
lib/tasks/mastodon.rake
+
5
−
0
View file @
1cfc9aa2
...
...
@@ -12,7 +12,11 @@ namespace :mastodon do
desc
'Unsubscribes from PuSH updates of feeds nobody follows locally'
task
clear: :environment
do
Account
.
remote
.
without_followers
.
find_each
do
|
a
|
Rails
.
logger
.
debug
"PuSH unsubscribing from
#{
a
.
acct
}
"
a
.
subscription
(
''
).
unsubscribe
rescue
HTTP
::
Error
,
OpenSSL
::
SSL
::
SSLError
Rails
.
logger
.
debug
"PuSH unsubscribing from
#{
a
.
acct
}
failed due to an HTTP or SSL error"
ensure
a
.
update!
(
verify_token:
''
,
secret:
''
,
subscription_expires_at:
nil
)
end
end
...
...
@@ -20,6 +24,7 @@ namespace :mastodon do
desc
'Re-subscribes to soon expiring PuSH subscriptions'
task
refresh: :environment
do
Account
.
expiring
(
1
.
day
.
from_now
).
find_each
do
|
a
|
Rails
.
logger
.
debug
"PuSH re-subscribing to
#{
a
.
acct
}
"
SubscribeService
.
new
.
(
a
)
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