Using websocket matter server to query/control matter-enabled lights/sensors via a HTTP GET interface.
Project description
Unified Matter and Logical Web Controller
This document delineates the operational framework of the hybrid device management system, unifying physical Matter networks and virtual logical bridges via a standardized web interface.
System Architecture
The architecture implements a dual-stack aggregation model to optimize performance and interoperability:
-
Physical Matter Subsystem: The application executes
python-matter-serveras an isolated background daemon. This isolates heavy protocol operations from the primary web server. -
Logical Bridge Integration: The system incorporates third-party control planes (e.g., Casambi) via HTTP metadata polling and embedded script execution. It automatically normalizes scale mismatches (e.g., mapping raw Casambi values to standardized levels).
-
Event-Driven Caching: The web server subscribes to hardware events and maintains local persistence arrays (
devices_cache.txt,bridge_cache.json, etc.). Caches are hydrated immediately upon initialization to guarantee non-blocking, asynchronous API responses. -
Unified Abstraction Layer: Complex websocket operations and embedded script executions are abstracted into standard HTTP requests. Control commands are dynamically routed to physical or logical nodes based on identifier resolution.
Requirements
Python 3.12 or newer.
Installation
Create a virtual environment and execute the package installation. Dependencies such as aiohttp, fastapi, and home-assistant-chip-core are resolved automatically.
How to Run
Execute the command matter-srv. Utilize the --port argument to specify the web server port (default: 8080). The background Matter process inherently binds to the subsequent port integer.
API Endpoints
Note on Device Identifiers: All hardware and virtual nodes utilize a standardized hash identifier format (dev_{node_id}_{endpoint_id}). Aliases assigned via /api/name function interchangeably with standard IDs across all control protocols.
Add a Logical Bridge
-
URL
/api/bridge -
Method
GET -
Description: Registers a new logical bridge and persists its network configuration to the local cache.
-
Parameters:
ip(string, required): The IPv4 address of the logical bridge.port(integer, required): The communication port.
-
Example:
http://localhost:8080/api/bridge?ip=192.168.1.220&port=8000
Get all cached devices
-
URL:
/api/devices -
Method:
GET -
Description: Retrieves the unified list of all local Matter devices and registered logical devices, including their aliases and raw states.
-
Example:
http://localhost:8080/api/devices
Get lighting device status
-
URL:
/api/lights -
Method:
GET -
Description: Aggregates lighting states across physical and logical nodes. Data includes the standardized ID, aliases, Boolean power state, normalized brightness (0.0 to 1.0), and color temperature in Kelvin (if applicable).
-
Example:
http://localhost:8080/api/lights
Get sensor device status
-
URL:
/api/sensors -
Method:
GET -
Description: Retrieves sensor metrics from physical Matter nodes. Includes standard identifiers, aliases, normalized sensor values, human-readable occupancy timestamps, and registered script paths.
-
Example:
http://localhost:8080/api/sensors
Assign a name to a device
-
URL:
/api/name -
Method:
GETorPOST -
Description: Assigns a globally unique alias to a physical or logical device identifier.
-
Parameters / JSON Body:
id(string, required): The standard ID or existing alias.name(string, required): The target unique string to assign.
-
Example (POST):
curl -X POST -H "Content-Type: application/json" -d '{"id": "dev_1_8", "name": "Main Hall"}' http://localhost:8080/api/name
Commission a new Matter device
-
URL:
/api/register -
Method:
GET -
Description: Executes network inclusion routines for unprovisioned physical Matter hardware.
-
Parameters:
code(string, required): The standard manual pairing payload.ip(string, optional): Target IP address for localized IP-based commissioning.name(string, optional): A pending alias mapped post-commissioning.
-
Example:
http://localhost:8080/api/register?code=11223344556&name=Kitchen
Control a lighting device
-
URL:
/api/set -
Method:
GETorPOST -
Description: Actuates state mutation. The server dynamically routes the payload to Matter clusters for physical devices or executes embedded Python scripts for logical nodes.
-
Parameters / JSON Body:
id(string, required): The standardized ID or alias.brightness(float, optional): Target level (0.0 to 1.0).temperature(integer, optional): Target color temperature (Kelvin).
-
Example (POST):
curl -X POST -H "Content-Type: application/json" -d '{"id": "Sofa and Painting", "brightness": 0.8}' http://localhost:8080/api/set
Create and register an occupancy script
-
URL:
/api/script -
Method:
GETorPOST -
Description: Serves a graphical interface (GET) or processes form payloads (POST) to generate executable bash scripts. Scripts are auto-registered to the occupancy callback of the specified physical sensor.
-
Parameters (GET):
id(string, required): The standard ID or alias of the target sensor.
-
Form Body (POST):
content(string, required): The rigorous bash script logic.
-
Example:
http://localhost:8080/api/script?id=Motion_Entry
Project details
Release history Release notifications | RSS feed
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 matter_web_controller-0.15.0.tar.gz.
File metadata
- Download URL: matter_web_controller-0.15.0.tar.gz
- Upload date:
- Size: 14.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5757a85f935cf807d73aec95992de006d21093a2db1f42b20ccc261fb5df9cc2
|
|
| MD5 |
6419e2bcba93f26955f5f9b1863e3dc9
|
|
| BLAKE2b-256 |
9c4a658693fc4344b43c0321b52d9b880f51414ce0f3dcad860f55fe8b662b40
|
Provenance
The following attestation bundles were made for matter_web_controller-0.15.0.tar.gz:
Publisher:
python-publish.yml on dongnh/matter_webcontrol
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
matter_web_controller-0.15.0.tar.gz -
Subject digest:
5757a85f935cf807d73aec95992de006d21093a2db1f42b20ccc261fb5df9cc2 - Sigstore transparency entry: 1050113059
- Sigstore integration time:
-
Permalink:
dongnh/matter_webcontrol@914eaf7b3050ae060f8c9ad73fc7ef283ff5cbba -
Branch / Tag:
refs/tags/v0.15.0 - Owner: https://github.com/dongnh
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@914eaf7b3050ae060f8c9ad73fc7ef283ff5cbba -
Trigger Event:
release
-
Statement type:
File details
Details for the file matter_web_controller-0.15.0-py3-none-any.whl.
File metadata
- Download URL: matter_web_controller-0.15.0-py3-none-any.whl
- Upload date:
- Size: 14.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
98a25a2d97b499d0985af0532d10ce87162824078ce609900933c5491115d219
|
|
| MD5 |
5f9bbe32de0f095c387e36616a92d57b
|
|
| BLAKE2b-256 |
04de2b22e3c56715925636b427808bf7c0f61aaa53af97b6ca5b810a52570c8e
|
Provenance
The following attestation bundles were made for matter_web_controller-0.15.0-py3-none-any.whl:
Publisher:
python-publish.yml on dongnh/matter_webcontrol
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
matter_web_controller-0.15.0-py3-none-any.whl -
Subject digest:
98a25a2d97b499d0985af0532d10ce87162824078ce609900933c5491115d219 - Sigstore transparency entry: 1050113090
- Sigstore integration time:
-
Permalink:
dongnh/matter_webcontrol@914eaf7b3050ae060f8c9ad73fc7ef283ff5cbba -
Branch / Tag:
refs/tags/v0.15.0 - Owner: https://github.com/dongnh
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@914eaf7b3050ae060f8c9ad73fc7ef283ff5cbba -
Trigger Event:
release
-
Statement type: