Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
Amonit
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
TeDomum
Amonit
Commits
0a3be672
Commit
0a3be672
authored
Mar 26, 2019
by
kaiyou
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add a federation check for Matrix
parent
be80f840
Pipeline
#159
passed with stage
in 1 minute and 6 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
45 additions
and
0 deletions
+45
-0
amonit/check/matrix.py
amonit/check/matrix.py
+45
-0
No files found.
amonit/check/matrix.py
0 → 100644
View file @
0a3be672
import
os
import
json
from
amonit
import
util
from
matrix_client
import
client
as
matrix_client
from
matrix_client
import
room
as
matrix_room
def
send_then_receive
(
context
,
account_from
,
account_to
,
roomid
):
""" Send a message using Matrix, then check that it is received.
This is useful either on a single server or across homeservers to
check that federation work properly.
The canary is first sent, then looked for in the next execution.
"""
result
=
{
"up"
:
False
,
"message"
:
""
}
if
"canary"
in
context
:
canary
=
context
[
"canary"
]
try
:
client_from
=
matrix_client
.
MatrixHttpApi
(
account_from
[
"hs"
],
token
=
account_from
[
"token"
]
)
filter
=
json
.
dumps
(
{
"room"
:{
"rooms"
:[
roomid
]}})
if
"next_batch"
in
context
:
since
=
context
[
"next_batch"
]
sync
=
client_from
.
sync
(
since
=
since
,
filter
=
filter
)
else
:
sync
=
client_from
.
sync
(
filter
=
filter
)
result
[
"next_batch"
]
=
sync
[
"next_batch"
]
events
=
sync
[
"rooms"
][
"join"
][
roomid
][
"timeline"
][
"events"
]
for
event
in
events
:
if
event
[
"content"
].
get
(
"body"
,
""
)
==
canary
:
result
[
"up"
]
=
True
except
Exception
as
error
:
result
=
{
"up"
:
False
,
"message"
:
str
(
error
)}
# Then drop a new canary
canary
=
os
.
urandom
(
8
).
hex
()
client_to
=
matrix_client
.
MatrixHttpApi
(
account_to
[
"hs"
],
token
=
account_to
[
"token"
]
)
client_to
.
send_message
(
roomid
,
canary
)
result
[
"canary"
]
=
canary
return
result
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment