No project description provided
Project description
Famedly Control Synapse
Table of Contents
Documentation
This repository contains a Synapse module which allows for creating and managing "managed rooms". Those rooms have the following properties: invite-only, non-federated, cannot be left. Users are associated to groups in an external service and those same groups are associated to rooms in this module. Users are then automatically added to the corresponding rooms. This module is only "half of the work", the other half being in the external service.
The openapi specification is available at openapi-spec.yaml. You can use tools like swagger.io for a more readable format.
Note for users being deactivated: Highly recommended to remove a user from a group before it is deactivated. Upon deactivation, the user will be removed from the room regardless of any group. If the user should be reactivated in the future, it will not automatically re-join any rooms its groups are in.
Worker routing
The HTTP endpoints exposed by this module are only registered on the background task synapse worker (or the main process if no dedicated worker is configured). Requests to these endpoints on any other worker will return 404 NOT_FOUND.
This must be taken into account when configuring a reverse proxy for example; all requests under /_famedlyControl/ must be routed to the background task worker.
Installation
pip install famedly-control-synapse
Configuration
Here are the available configuration options:
# the outer modules section is just provided for completeness, the config block is the actual module config.
modules:
- module: "famedly_control_synapse.FamedlyControl"
config:
famedly_control:
api_url: str = "", # Prefix of the current famedly control http API
jwt_auth: # OAuth2 private-key-JWT authentication against the IdP (see "Authentication" below)
token_endpoint: str = "" # Token exchange endpoint, e.g. https://CUSTOM_DOMAIN/oauth/v2/token
aud: str = "" # Audience of the JWT assertion; the domain of the Zitadel instance
iss: str | null = null # Service user id (see below)
sub: str | null = null # Service user id (see below)
scopes: list[str] = [] # Extra scopes for the token exchange; "openid" is always added
token_lifetime: int = 3600 # Lifetime in seconds of the signed JWT assertion
jwk_path: str | null = null # Signing key source (see below)
zitadel_service_account_path: str | null = null # Signing key source (see below)
sync_enabled: bool = true, # Whether to run the background group membership sync loop
sync_polling_interval_seconds: int = 30, # Interval in seconds between polling requests
error_retry_queue_enabled: bool = true, # Enable retrying membership changes that previously errored
error_retry_queue_interval_seconds: int = 30, # Interval in seconds between retrying a failed membership change
error_retry_queue_log_after_retry_count: int = 3, # The count of error retry queue attempts to start logging warnings
auth_provider: str = "", # The unique, internal ID of the external identity provider.
admin_user: str = "", # The localpart of the sole administrator allowed to call the API
Authentication (jwt_auth)
The module authenticates to Famedly Control using the OAuth2
private-key-JWT
flow rather than a static token. It signs a short-lived JWT assertion with a private key,
exchanges it at token_endpoint for an access token, and uses that as the Bearer
credential for API requests. The access token is refreshed automatically before it
expires.
The signing key can be provided in one of two ways:
zitadel_service_account_path: path to a Zitadel service account JSON (contains the RSA private key, itskeyId, and the serviceuserId).issandsubdefault to the file'suserIdwhen not set explicitly. Internally the key is converted to a JWK.jwk_path: path to a JSON Web Key holding the private key, withkidset (andalgoptionally set/inferred). When using a raw JWK,issandsubare required.
API access restriction
The Famedly Control API is restricted to a single Matrix user, configured via the
admin_user option. Every API request from any other user (including other server
admins) is rejected with 403 M_FORBIDDEN.
This restriction exists because the module stores its management information in the
admin_user's account data. Allowing multiple admins would risk splitting that
management state across users. The configured admin_user should be a server admin.
Testing
To create a virtual development environment and install dependencies:
hatch shell
The tests use pytest, with the development environment managed by Hatch. Running the tests can be done like this:
hatch test
Additional optional testing arguments:
Run the tests in parallel: -p
Collect coverage data (automatically output as lcov.info): -c
Running a specific test:
Selecting a specific test to run can be as easy as providing the path to the test. All tests start from
the base test directory, tests. If running all tests, this can be left out. For specific tests, see
the pytest usage docs for more information.
Code Quality
Use hatch fmt to automatically format code, enforce style rules, and check types using:
blackandisortfor formattingrufffor lintingmypyfor static type checking
Check Code Without Modifying It
To check code quality without modifying files:
- Check formatting with
isortandblack:hatch fmt --check -f - Check types and linting with
mypyandruff:hatch fmt --check -l - Check all of above, formatting, linting, and typing:
hatch fmt --check
Auto-formatting Code
To automatically fix issues in the code:
- Format only using
blackandisort:hatch fmt -f - Type checks(
mypy) and lint, fixing autofixableruffissues:hatch fmt -l - Run all tools, format, lint, type-check:
hatch fmt
License
famedly-control-synapse is distributed under the terms of the
AGPL-3.0 license.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file famedly_control_synapse-0.1.0.tar.gz.
File metadata
- Download URL: famedly_control_synapse-0.1.0.tar.gz
- Upload date:
- Size: 121.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ff8fbebe21ad930b9f3bfb4f66b51b683c2971c29fd1466d76e1645c9f968021
|
|
| MD5 |
d4c1febe79d643c9237cb189029d397e
|
|
| BLAKE2b-256 |
22f327576a7814a999deafbc1051fb199887967dbfb1a900401799c9006d9532
|
Provenance
The following attestation bundles were made for famedly_control_synapse-0.1.0.tar.gz:
Publisher:
publish.yml on famedly/famedly-control-synapse
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
famedly_control_synapse-0.1.0.tar.gz -
Subject digest:
ff8fbebe21ad930b9f3bfb4f66b51b683c2971c29fd1466d76e1645c9f968021 - Sigstore transparency entry: 2275096176
- Sigstore integration time:
-
Permalink:
famedly/famedly-control-synapse@11cc07a38d45dae088f782354de95819fc4f7d84 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/famedly
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@11cc07a38d45dae088f782354de95819fc4f7d84 -
Trigger Event:
release
-
Statement type:
File details
Details for the file famedly_control_synapse-0.1.0-py3-none-any.whl.
File metadata
- Download URL: famedly_control_synapse-0.1.0-py3-none-any.whl
- Upload date:
- Size: 51.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
aa02efce6b201f7e35dc4eee696a9b8c79182ae9f4261f4a6be44e014a0fd922
|
|
| MD5 |
d38fd327a41ac14b360850709b8d9351
|
|
| BLAKE2b-256 |
8f03fedf0092814d859535eefe2551c495d4e307f4b88d5f0dd45a880b167742
|
Provenance
The following attestation bundles were made for famedly_control_synapse-0.1.0-py3-none-any.whl:
Publisher:
publish.yml on famedly/famedly-control-synapse
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
famedly_control_synapse-0.1.0-py3-none-any.whl -
Subject digest:
aa02efce6b201f7e35dc4eee696a9b8c79182ae9f4261f4a6be44e014a0fd922 - Sigstore transparency entry: 2275096225
- Sigstore integration time:
-
Permalink:
famedly/famedly-control-synapse@11cc07a38d45dae088f782354de95819fc4f7d84 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/famedly
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@11cc07a38d45dae088f782354de95819fc4f7d84 -
Trigger Event:
release
-
Statement type: