Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
synapse
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Monitor
Service Desk
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
Maunium
synapse
Commits
7331d348
Commit
7331d348
authored
10 years ago
by
Kegan Dougal
Browse files
Options
Downloads
Patches
Plain Diff
Add AS specific classes with docstrings.
parent
51449e06
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
synapse/storage/appservice.py
+59
-1
59 additions, 1 deletion
synapse/storage/appservice.py
with
59 additions
and
1 deletion
synapse/storage/appservice.py
+
59
−
1
View file @
7331d348
...
...
@@ -20,11 +20,69 @@ from synapse.api.errors import StoreError
from
._base
import
SQLBaseStore
# XXX: This feels like it should belong in a "models" module, not storage.
class
ApplicationService
(
object
):
"""
Defines an application service.
Provides methods to check if this service is
"
interested
"
in events.
"""
def
__init__
(
self
,
token
,
url
=
None
,
namespaces
=
None
):
self
.
token
=
token
if
url
:
self
.
url
=
url
if
namespaces
:
self
.
namespaces
=
namespaces
def
is_interested
(
self
,
event
):
"""
Check if this service is interested in this event.
Args:
event(Event): The event to check.
Returns:
bool: True if this service would like to know about this event.
"""
# NB: This does not check room alias regex matches because that requires
# more context that an Event can provide. Room alias matches are checked
# in the ApplicationServiceHandler.
# TODO check if event.room_id regex matches
# TODO check if event.user_id regex matches (or m.room.member state_key)
return
True
class
ApplicationServiceCache
(
object
):
"""
Caches ApplicationServices and provides utility functions on top.
This class is designed to be invoked on incoming events in order to avoid
hammering the database every time to extract a list of application service
regexes.
"""
def
__init__
(
self
):
self
.
services
=
[]
def
get_services_for_event
(
self
,
event
):
"""
Retrieve a list of application services interested in this event.
Args:
event(Event): The event to check.
Returns:
list<ApplicationService>: A list of services interested in this
event based on the service regex.
"""
interested_list
=
[
s
for
s
in
self
.
services
if
s
.
is_event_claimed
(
event
)
]
return
interested_list
class
ApplicationServiceStore
(
SQLBaseStore
):
def
__init__
(
self
,
hs
):
super
(
ApplicationServiceStore
,
self
).
__init__
(
hs
)
self
.
cache
=
ApplicationServiceCache
()
self
.
clock
=
hs
.
get_clock
()
@defer.inlineCallbacks
...
...
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