Initial commit of amcrest2mqtt code
parent
138d731260
commit
7fe314614d
@ -0,0 +1,10 @@
|
||||
version: 2
|
||||
updates:
|
||||
- package-ecosystem: "pip"
|
||||
directory: "/"
|
||||
schedule:
|
||||
interval: "weekly"
|
||||
- package-ecosystem: "github-actions"
|
||||
directory: "/"
|
||||
schedule:
|
||||
interval: "daily"
|
@ -0,0 +1,24 @@
|
||||
name: Publish
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
|
||||
jobs:
|
||||
docker-publish:
|
||||
name: Publish to Docker Hub
|
||||
runs-on: ubuntu-20.04
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v2
|
||||
- name: Login to DockerHub
|
||||
uses: docker/login-action@v1
|
||||
with:
|
||||
username: ${{ secrets.DOCKER_USERNAME }}
|
||||
password: ${{ secrets.DOCKER_PASSWORD }}
|
||||
- name: Build and push
|
||||
uses: docker/build-push-action@v2
|
||||
with:
|
||||
push: true
|
||||
tags: dchesterton/amcrest2mqtt:latest
|
@ -0,0 +1,15 @@
|
||||
FROM python:3.9-alpine as base
|
||||
FROM base as builder
|
||||
|
||||
RUN mkdir /install
|
||||
WORKDIR /install
|
||||
|
||||
COPY requirements.txt /
|
||||
RUN pip install --prefix=/install -r /requirements.txt
|
||||
|
||||
FROM base
|
||||
COPY --from=builder /install /usr/local
|
||||
COPY src /app
|
||||
WORKDIR /app
|
||||
|
||||
CMD [ "python", "-u", "/app/amcrest2mqtt.py" ]
|
@ -0,0 +1,61 @@
|
||||
# amcrest2mqtt
|
||||
|
||||
A simple app to expose all events generated by an Amcrest device to MQTT using the
|
||||
[`python-amcrest`](https://github.com/tchellomello/python-amcrest) library.
|
||||
|
||||
It supports the following environment variables:
|
||||
|
||||
- `AMCREST_HOST` (required)
|
||||
- `AMCREST_PORT` (optional, default = 80)
|
||||
- `AMCREST_USERNAME` (optional, default = admin)
|
||||
- `AMCREST_PASSWORD` (required)
|
||||
- `MQTT_USERNAME` (required)
|
||||
- `MQTT_PASSWORD` (optional, default = empty password)
|
||||
- `MQTT_HOST` (optional, default = 'localhost')
|
||||
- `MQTT_QOS` (optional, default = 0)
|
||||
- `MQTT_PORT` (optional, default = 1883)
|
||||
- `HOME_ASSISTANT` (optional, default = false)
|
||||
- `HOME_ASSISTANT_PREFIX` (optional, default = 'homeassistant')
|
||||
|
||||
It exposes events to the `amcrest2mqtt/[SERIAL_NUMBER]/event` MQTT topic. If the device is an AD110 doorbell it will expose the
|
||||
doorbell status to `amcrest2mqtt/[SERIAL_NUMBER]/doorbell`. If the device supports motion events it will expose motion events
|
||||
to `amcrest2mqtt/[SERIAL_NUMBER]/motion`.
|
||||
|
||||
## Device Support
|
||||
|
||||
The app supports events for any Amcrest device supported by [`python-amcrest`](https://github.com/tchellomello/python-amcrest).
|
||||
|
||||
## Home Assistant
|
||||
|
||||
The app has built-in support for Home Assistant discovery. Set the `HOME_ASSISTANT` environment variable to `true` to enable support.
|
||||
If you are using a different MQTT prefix to the default, you will need to set the `HOME_ASSISTANT_PREFIX` environment variable.
|
||||
|
||||
## Running the app
|
||||
|
||||
The easiest way to run the app is via Docker Compose, e.g.
|
||||
|
||||
```
|
||||
version: "3"
|
||||
services:
|
||||
amcrest2mqtt:
|
||||
container_name: amcrest2mqtt
|
||||
image: dchesterton/amcrest2mqtt:latest
|
||||
restart: unless-stopped
|
||||
environment:
|
||||
AMCREST_HOST: 192.168.0.1
|
||||
AMCREST_PASSWORD: password
|
||||
MQTT_HOST: 192.168.0.2
|
||||
MQTT_USERNAME: admin
|
||||
MQTT_PASSWORD: password
|
||||
HOME_ASSISTANT: "true"
|
||||
```
|
||||
|
||||
## Out of Scope
|
||||
|
||||
### Multiple Devices
|
||||
|
||||
The app will not support multiple devices. You can run multiple instances of the app if you need to expose events for multiple devies.
|
||||
|
||||
### Non-Docker Environments
|
||||
|
||||
Docker is the only supported way of deploying the application. The app should run directly via Python but this is not supported.
|
@ -0,0 +1,3 @@
|
||||
amcrest==1.7.2
|
||||
paho-mqtt==1.5.1
|
||||
python-slugify==4.0.1
|
@ -0,0 +1,181 @@
|
||||
from slugify import slugify
|
||||
from amcrest import AmcrestCamera,AmcrestError
|
||||
from datetime import datetime,timezone
|
||||
import paho.mqtt.client as mqtt
|
||||
import os
|
||||
import sys
|
||||
import json
|
||||
import signal
|
||||
|
||||
amcrest_host = os.getenv('AMCREST_HOST')
|
||||
amcrest_port = int(os.getenv('AMCREST_PORT') or 80)
|
||||
amcrest_username = os.getenv('AMCREST_USERNAME') or "admin"
|
||||
amcrest_password = os.getenv('AMCREST_PASSWORD')
|
||||
|
||||
mqtt_host = os.getenv('MQTT_HOST') or "localhost"
|
||||
mqtt_qos = int(os.getenv("MQTT_QOS") or 0)
|
||||
mqtt_port = int(os.getenv('MQTT_PORT') or 1883)
|
||||
mqtt_username = os.getenv('MQTT_USERNAME')
|
||||
mqtt_password = os.getenv('MQTT_PASSWORD') # can be None
|
||||
|
||||
home_assistant = os.getenv("HOME_ASSISTANT") == "true"
|
||||
home_assistant_prefix = os.getenv("HOME_ASSISTANT_PREFIX") or "homeassistant"
|
||||
|
||||
def log(msg, level="INFO"):
|
||||
ts = datetime.now(timezone.utc).strftime("%d/%m/%Y %H:%M:%S")
|
||||
print(f"{ts} [{level}] {msg}")
|
||||
|
||||
# Exit if any of the required vars are not provided
|
||||
if amcrest_host is None:
|
||||
log("Please set the AMCREST_HOST environment variable", level="ERROR")
|
||||
sys.exit(1)
|
||||
|
||||
if amcrest_password is None:
|
||||
log("Please set the AMCREST_PASSWORD environment variable", level="ERROR")
|
||||
sys.exit(1)
|
||||
|
||||
if mqtt_username is None:
|
||||
log("Please set the MQTT_USERNAME environment variable", level="ERROR")
|
||||
sys.exit(1)
|
||||
|
||||
# Connect to camera
|
||||
camera = AmcrestCamera(amcrest_host, amcrest_port, amcrest_username, amcrest_password).camera
|
||||
|
||||
device_type = camera.device_type.replace("type=", "").strip()
|
||||
log(f"Device type: {device_type}")
|
||||
|
||||
serial_number = camera.serial_number.strip()
|
||||
log(f"Serial number: {serial_number}")
|
||||
|
||||
sw_version = camera.software_information[0].replace("version=", "").strip()
|
||||
log(f"Software version: {sw_version}")
|
||||
|
||||
device_name = camera.machine_name.replace("name=", "").strip()
|
||||
device_slug = slugify(device_name, separator="_")
|
||||
log(f"Device name: {device_name}")
|
||||
|
||||
# Connect to MQTT
|
||||
status_topic = f"amcrest2mqtt/{serial_number}/status"
|
||||
event_topic = f"amcrest2mqtt/{serial_number}/event"
|
||||
motion_topic = f"amcrest2mqtt/{serial_number}/motion"
|
||||
doorbell_topic = f"amcrest2mqtt/{serial_number}/doorbell"
|
||||
|
||||
doorbell_home_assistant_topic = f"{home_assistant_prefix}/binary_sensor/amcrest2mqtt-{serial_number}/{device_slug}_doorbell/config"
|
||||
motion_home_assistant_topic = f"{home_assistant_prefix}/binary_sensor/amcrest2mqtt-{serial_number}/{device_slug}_motion/config"
|
||||
|
||||
client_id = f"amcrest2mqtt_{serial_number}"
|
||||
|
||||
def on_mqtt_disconnect(client, userdata, rc):
|
||||
if rc != 0:
|
||||
log(f"Unexpected MQTT disconnection", level="ERROR")
|
||||
exit_gracefully(rc, skip_mqtt=True)
|
||||
|
||||
mqtt_client = mqtt.Client(client_id=client_id, clean_session=False)
|
||||
mqtt_client.suppress_exceptions = False
|
||||
mqtt_client.on_disconnect = on_mqtt_disconnect
|
||||
mqtt_client.username_pw_set(mqtt_username, password=mqtt_password)
|
||||
mqtt_client.will_set(status_topic, payload="offline", qos=mqtt_qos, retain=True)
|
||||
|
||||
try:
|
||||
mqtt_client.connect(mqtt_host, port=mqtt_port)
|
||||
except ConnectionError as error:
|
||||
log(f"Could not connect to MQTT server: {error}", level="ERROR")
|
||||
sys.exit(1)
|
||||
|
||||
mqtt_client.loop_start()
|
||||
|
||||
def mqtt_publish(topic, payload, exit_on_error=True):
|
||||
global mqtt_client
|
||||
|
||||
msg = mqtt_client.publish(topic, payload=payload, qos=mqtt_qos, retain=True)
|
||||
|
||||
if msg.rc == mqtt.MQTT_ERR_SUCCESS:
|
||||
msg.wait_for_publish()
|
||||
return msg
|
||||
|
||||
log(f"Error publishing MQTT message: {mqtt.error_string(msg.rc)}", level="ERROR")
|
||||
|
||||
if exit_on_error:
|
||||
exit_gracefully(msg.rc, skip_mqtt=True)
|
||||
|
||||
def exit_gracefully(rc, skip_mqtt=False):
|
||||
global status_topic, mqtt_client
|
||||
|
||||
if mqtt_client.is_connected() and skip_mqtt == False:
|
||||
mqtt_publish(status_topic, "offline", exit_on_error=False)
|
||||
mqtt_client.loop_stop(force=True)
|
||||
mqtt_client.disconnect()
|
||||
|
||||
# Use os._exit instead of sys.exit to ensure an MQTT disconnect event causes the program to exit correctly as they
|
||||
# occur on a separate thread
|
||||
os._exit(rc)
|
||||
|
||||
is_exiting = False
|
||||
|
||||
def signal_handler(sig, frame):
|
||||
# exit immediately upon receiving a second SIGINT
|
||||
global is_exiting
|
||||
|
||||
if is_exiting:
|
||||
os._exit(1)
|
||||
|
||||
is_exiting = True
|
||||
exit_gracefully(0)
|
||||
|
||||
signal.signal(signal.SIGINT, signal_handler)
|
||||
|
||||
mqtt_publish(status_topic, "online")
|
||||
|
||||
if home_assistant:
|
||||
device_obj = {
|
||||
"name": f"Amcrest {device_type}",
|
||||
"manufacturer": "Amcrest",
|
||||
"model": device_type,
|
||||
"identifiers": serial_number,
|
||||
"sw_version": sw_version,
|
||||
"via_device": "amcrest2mqtt"
|
||||
}
|
||||
|
||||
log("Writing Home Assistant discovery config...")
|
||||
|
||||
if device_type == "AD110":
|
||||
mqtt_publish(doorbell_home_assistant_topic, json.dumps({
|
||||
"availability_topic": status_topic,
|
||||
"state_topic": doorbell_topic,
|
||||
"payload_on": "on",
|
||||
"payload_off": "off",
|
||||
"name": f"{device_name} Doorbell",
|
||||
"unique_id": f"{serial_number}.doorbell",
|
||||
"device": device_obj
|
||||
}))
|
||||
|
||||
mqtt_publish(motion_home_assistant_topic, json.dumps({
|
||||
"availability_topic": status_topic,
|
||||
"state_topic": motion_topic,
|
||||
"payload_on": "on",
|
||||
"payload_off": "off",
|
||||
"device_class": "motion",
|
||||
"name": f"{device_name} Motion",
|
||||
"unique_id": f"{serial_number}.motion",
|
||||
"device": device_obj,
|
||||
}))
|
||||
|
||||
log("Listening for events...")
|
||||
|
||||
try:
|
||||
for code, payload in camera.event_actions("All", retries=5):
|
||||
log(str(payload))
|
||||
|
||||
if code == "AlarmLocal":
|
||||
mqtt_payload = "on" if payload["action"] == "Start" else "off"
|
||||
mqtt_publish(motion_topic, mqtt_payload)
|
||||
|
||||
if code == "_DoTalkAction_":
|
||||
mqtt_payload = "on" if payload["data"]["Action"] == "Invite" else "off"
|
||||
mqtt_publish(doorbell_topic, mqtt_payload)
|
||||
|
||||
mqtt_publish(event_topic, json.dumps(payload))
|
||||
|
||||
except AmcrestError as error:
|
||||
log(f"Amcrest error {error}", level="ERROR")
|
||||
exit_gracefully(1)
|
Loading…
Reference in New Issue