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
8387b392
Commit
8387b392
authored
7 years ago
by
Sorin Davidoi
Committed by
Eugen Rochko
7 years ago
Browse files
Options
Downloads
Patches
Plain Diff
fix(push-subscriptions): Refactor how Sidekiq jobs are handled (#4226)
parent
afa52e4d
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
app/models/web/push_subscription.rb
+5
-3
5 additions, 3 deletions
app/models/web/push_subscription.rb
app/services/notify_service.rb
+5
-1
5 additions, 1 deletion
app/services/notify_service.rb
app/workers/web_push_notification_worker.rb
+9
-13
9 additions, 13 deletions
app/workers/web_push_notification_worker.rb
with
19 additions
and
17 deletions
app/models/web/push_subscription.rb
+
5
−
3
View file @
8387b392
...
...
@@ -12,6 +12,9 @@
# updated_at :datetime not null
#
require
'webpush'
require_relative
'../../models/setting'
class
Web::PushSubscription
<
ApplicationRecord
include
RoutingHelper
include
StreamEntriesHelper
...
...
@@ -37,7 +40,6 @@ class Web::PushSubscription < ApplicationRecord
nsfw
=
notification
.
target_status
.
nil?
||
notification
.
target_status
.
spoiler_text
.
empty?
?
nil
:
notification
.
target_status
.
spoiler_text
# TODO: Make sure that the payload does not exceed 4KB - Webpush::PayloadTooLarge
# TODO: Queue the requests - Webpush::TooManyRequests
Webpush
.
payload_send
(
message:
JSON
.
generate
(
title:
title
,
...
...
@@ -59,7 +61,7 @@ class Web::PushSubscription < ApplicationRecord
p256dh:
key_p256dh
,
auth:
key_auth
,
vapid:
{
#
subject: "mailto:#{Setting.site_contact_email}",
subject:
"mailto:
#{
Setting
.
site_contact_email
}
"
,
private_key:
Rails
.
configuration
.
x
.
vapid_private_key
,
public_key:
Rails
.
configuration
.
x
.
vapid_public_key
,
},
...
...
@@ -166,7 +168,7 @@ class Web::PushSubscription < ApplicationRecord
p256dh:
key_p256dh
,
auth:
key_auth
,
vapid:
{
#
subject: "mailto:#{Setting.site_contact_email}",
subject:
"mailto:
#{
Setting
.
site_contact_email
}
"
,
private_key:
Rails
.
configuration
.
x
.
vapid_private_key
,
public_key:
Rails
.
configuration
.
x
.
vapid_public_key
,
},
...
...
This diff is collapsed.
Click to expand it.
app/services/notify_service.rb
+
5
−
1
View file @
8387b392
...
...
@@ -65,7 +65,11 @@ class NotifyService < BaseService
end
def
send_push_notifications
WebPushNotificationWorker
.
perform_async
(
@recipient
.
id
,
@notification
.
id
)
sessions_with_subscriptions_ids
=
@recipient
.
user
.
session_activations
.
where
.
not
(
web_push_subscription:
nil
).
pluck
(
:id
)
WebPushNotificationWorker
.
push_bulk
(
sessions_with_subscriptions_ids
)
do
|
session_activation_id
|
[
session_activation_id
,
@notification
.
id
]
end
end
def
send_email
...
...
This diff is collapsed.
Click to expand it.
app/workers/web_push_notification_worker.rb
+
9
−
13
View file @
8387b392
...
...
@@ -5,22 +5,18 @@ class WebPushNotificationWorker
sidekiq_options
backtrace:
true
def
perform
(
recipient
_id
,
notification_id
)
recipient
=
Account
.
find
(
recipient
_id
)
def
perform
(
session_activation
_id
,
notification_id
)
session_activation
=
SessionActivation
.
find
(
session_activation
_id
)
notification
=
Notification
.
find
(
notification_id
)
sessions_with_subscriptions
=
recipient
.
user
.
session_activations
.
where
.
not
(
web_push_subscription:
nil
)
begin
session_activation
.
web_push_subscription
.
push
(
notification
)
rescue
Webpush
::
InvalidSubscription
,
Webpush
::
ExpiredSubscription
=>
e
# Subscription expiration is not currently implemented in any browser
session_activation
.
web_push_subscription
.
destroy!
session_activation
.
update!
(
web_push_subscription:
nil
)
sessions_with_subscriptions
.
each
do
|
session
|
begin
session
.
web_push_subscription
.
push
(
notification
)
rescue
Webpush
::
InvalidSubscription
,
Webpush
::
ExpiredSubscription
# Subscription expiration is not currently implemented in any browser
session
.
web_push_subscription
.
destroy!
session
.
update!
(
web_push_subscription:
nil
)
rescue
Webpush
::
PayloadTooLarge
=>
e
Rails
.
logger
.
error
(
e
)
end
raise
e
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