Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Matrix
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Container Registry
Model registry
Operate
Environments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
TeDomum
Matrix
Commits
53cb1736
Commit
53cb1736
authored
9 years ago
by
Erik Johnston
Browse files
Options
Downloads
Patches
Plain Diff
Push: Use storage apis that are cached
parent
d685ae73
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
synapse/push/__init__.py
+13
-17
13 additions, 17 deletions
synapse/push/__init__.py
synapse/storage/roommember.py
+1
-0
1 addition, 0 deletions
synapse/storage/roommember.py
with
14 additions
and
17 deletions
synapse/push/__init__.py
+
13
−
17
View file @
53cb1736
...
...
@@ -17,7 +17,6 @@ from twisted.internet import defer
from
synapse.streams.config
import
PaginationConfig
from
synapse.types
import
StreamToken
from
synapse.api.constants
import
Membership
import
synapse.util.async
import
push_rule_evaluator
as
push_rule_evaluator
...
...
@@ -296,31 +295,28 @@ class Pusher(object):
@defer.inlineCallbacks
def
_get_badge_count
(
self
):
room_list
=
yield
self
.
store
.
get_rooms_for_user_where_membership_i
s
(
u
se
r_id
=
self
.
user_id
,
membership_list
=
(
Membership
.
INVITE
,
Membership
.
JOIN
)
)
invites
,
joins
=
yield
defer
.
gatherResult
s
(
[
se
lf
.
store
.
get_invites_for_user
(
self
.
user_id
)
,
self
.
store
.
get_rooms_for_user
(
self
.
user_id
),
],
consumeErrors
=
True
)
my_receipts_by_room
=
yield
self
.
store
.
get_receipts_for_user
(
self
.
user_id
,
"
m.read
"
,
)
badge
=
0
badge
=
len
(
invites
)
for
r
in
room_list
:
if
r
.
membership
==
Membership
.
INVITE
:
badge
+=
1
else
:
if
r
.
room_id
in
my_receipts_by_room
:
last_unread_event_id
=
my_receipts_by_room
[
r
.
room_id
]
for
r
in
joins
:
if
r
.
room_id
in
my_receipts_by_room
:
last_unread_event_id
=
my_receipts_by_room
[
r
.
room_id
]
notifs
=
yield
(
self
.
store
.
get_unread_event_push_actions_by_room_for_user
(
r
.
room_id
,
self
.
user_id
,
last_unread_event_id
)
notifs
=
yield
(
self
.
store
.
get_unread_event_push_actions_by_room_for_user
(
r
.
room_id
,
self
.
user_id
,
last_unread_event_id
)
badge
+=
len
(
notifs
)
)
badge
+=
len
(
notifs
)
defer
.
returnValue
(
badge
)
...
...
This diff is collapsed.
Click to expand it.
synapse/storage/roommember.py
+
1
−
0
View file @
53cb1736
...
...
@@ -110,6 +110,7 @@ class RoomMemberStore(SQLBaseStore):
membership
=
membership
,
).
addCallback
(
self
.
_get_events
)
@cached
()
def
get_invites_for_user
(
self
,
user_id
):
"""
Get all the invite events for a user
Args:
...
...
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