|
|
|
@ -1,30 +1,32 @@
|
|
|
|
|
from slugify import slugify
|
|
|
|
|
from amcrest import AmcrestCamera,AmcrestError
|
|
|
|
|
from datetime import datetime,timezone
|
|
|
|
|
from amcrest import AmcrestCamera, AmcrestError
|
|
|
|
|
from datetime import datetime, timezone
|
|
|
|
|
import paho.mqtt.client as mqtt
|
|
|
|
|
import os
|
|
|
|
|
import sys
|
|
|
|
|
import json
|
|
|
|
|
from json import dumps
|
|
|
|
|
import signal
|
|
|
|
|
from threading import Timer
|
|
|
|
|
|
|
|
|
|
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')
|
|
|
|
|
storage_sensors_interval = 60 # 1 hour
|
|
|
|
|
is_exiting = False
|
|
|
|
|
mqtt_client = None
|
|
|
|
|
|
|
|
|
|
# Read env variables
|
|
|
|
|
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_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
|
|
|
|
|
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")
|
|
|
|
@ -38,56 +40,18 @@ 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)
|
|
|
|
|
# Helper functions and callbacks
|
|
|
|
|
def log(msg, level="INFO"):
|
|
|
|
|
ts = datetime.now(timezone.utc).strftime("%d/%m/%Y %H:%M:%S")
|
|
|
|
|
print(f"{ts} [{level}] {msg}")
|
|
|
|
|
|
|
|
|
|
mqtt_client.loop_start()
|
|
|
|
|
|
|
|
|
|
def mqtt_publish(topic, payload, exit_on_error=True):
|
|
|
|
|
def mqtt_publish(topic, payload, exit_on_error=True, json=False):
|
|
|
|
|
global mqtt_client
|
|
|
|
|
|
|
|
|
|
msg = mqtt_client.publish(topic, payload=payload, qos=mqtt_qos, retain=True)
|
|
|
|
|
msg = mqtt_client.publish(
|
|
|
|
|
topic, payload=(dumps(payload) if json else payload), qos=mqtt_qos, retain=True
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
if msg.rc == mqtt.MQTT_ERR_SUCCESS:
|
|
|
|
|
msg.wait_for_publish()
|
|
|
|
@ -98,11 +62,18 @@ def mqtt_publish(topic, payload, exit_on_error=True):
|
|
|
|
|
if exit_on_error:
|
|
|
|
|
exit_gracefully(msg.rc, skip_mqtt=True)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def on_mqtt_disconnect(client, userdata, rc):
|
|
|
|
|
if rc != 0:
|
|
|
|
|
log(f"Unexpected MQTT disconnection", level="ERROR")
|
|
|
|
|
exit_gracefully(rc, skip_mqtt=True)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def exit_gracefully(rc, skip_mqtt=False):
|
|
|
|
|
global status_topic, mqtt_client
|
|
|
|
|
global topics, mqtt_client
|
|
|
|
|
|
|
|
|
|
if mqtt_client.is_connected() and skip_mqtt == False:
|
|
|
|
|
mqtt_publish(status_topic, "offline", exit_on_error=False)
|
|
|
|
|
if mqtt_client is not None and mqtt_client.is_connected() and skip_mqtt == False:
|
|
|
|
|
mqtt_publish(topics["status"], "offline", exit_on_error=False)
|
|
|
|
|
mqtt_client.loop_stop(force=True)
|
|
|
|
|
mqtt_client.disconnect()
|
|
|
|
|
|
|
|
|
@ -110,7 +81,18 @@ def exit_gracefully(rc, skip_mqtt=False):
|
|
|
|
|
# occur on a separate thread
|
|
|
|
|
os._exit(rc)
|
|
|
|
|
|
|
|
|
|
is_exiting = False
|
|
|
|
|
|
|
|
|
|
def refresh_storage_sensors():
|
|
|
|
|
global camera, topics, storage_sensors_interval
|
|
|
|
|
|
|
|
|
|
Timer(storage_sensors_interval, refresh_storage_sensors).start()
|
|
|
|
|
log("Fetching storage sensors...")
|
|
|
|
|
|
|
|
|
|
storage = camera.storage_all
|
|
|
|
|
mqtt_publish(topics["storage_used_percent"], str(storage["used_percent"]))
|
|
|
|
|
mqtt_publish(topics["storage_used"], str(storage["used"][0]))
|
|
|
|
|
mqtt_publish(topics["storage_total"], str(storage["total"][0]))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def signal_handler(sig, frame):
|
|
|
|
|
# exit immediately upon receiving a second SIGINT
|
|
|
|
@ -122,56 +104,159 @@ def signal_handler(sig, frame):
|
|
|
|
|
is_exiting = True
|
|
|
|
|
exit_gracefully(0)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
signal.signal(signal.SIGINT, signal_handler)
|
|
|
|
|
|
|
|
|
|
mqtt_publish(status_topic, "online")
|
|
|
|
|
# Connect to camera
|
|
|
|
|
camera = AmcrestCamera(
|
|
|
|
|
amcrest_host, amcrest_port, amcrest_username, amcrest_password
|
|
|
|
|
).camera
|
|
|
|
|
|
|
|
|
|
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("Fetching camera details...")
|
|
|
|
|
|
|
|
|
|
device_type = camera.device_type.replace("type=", "").strip()
|
|
|
|
|
serial_number = camera.serial_number.strip()
|
|
|
|
|
sw_version = camera.software_information[0].replace("version=", "").strip()
|
|
|
|
|
device_name = camera.machine_name.replace("name=", "").strip()
|
|
|
|
|
device_slug = slugify(device_name, separator="_")
|
|
|
|
|
|
|
|
|
|
log(f"Device type: {device_type}")
|
|
|
|
|
log(f"Serial number: {serial_number}")
|
|
|
|
|
log(f"Software version: {sw_version}")
|
|
|
|
|
log(f"Device name: {device_name}")
|
|
|
|
|
|
|
|
|
|
# MQTT topics
|
|
|
|
|
topics = {
|
|
|
|
|
"status": f"amcrest2mqtt/{serial_number}/status",
|
|
|
|
|
"event": f"amcrest2mqtt/{serial_number}/event",
|
|
|
|
|
"motion": f"amcrest2mqtt/{serial_number}/motion",
|
|
|
|
|
"doorbell": f"amcrest2mqtt/{serial_number}/doorbell",
|
|
|
|
|
"storage_used": f"amcrest2mqtt/{serial_number}/storage/used",
|
|
|
|
|
"storage_used_percent": f"amcrest2mqtt/{serial_number}/storage/used_percent",
|
|
|
|
|
"storage_total": f"amcrest2mqtt/{serial_number}/storage/total",
|
|
|
|
|
"home_assistant": {
|
|
|
|
|
"doorbell": f"{home_assistant_prefix}/binary_sensor/amcrest2mqtt-{serial_number}/{device_slug}_doorbell/config",
|
|
|
|
|
"motion": f"{home_assistant_prefix}/binary_sensor/amcrest2mqtt-{serial_number}/{device_slug}_motion/config",
|
|
|
|
|
"storage_used": f"{home_assistant_prefix}/sensor/amcrest2mqtt-{serial_number}/{device_slug}_storage_used/config",
|
|
|
|
|
"storage_used_percent": f"{home_assistant_prefix}/sensor/amcrest2mqtt-{serial_number}/{device_slug}_storage_used_percent/config",
|
|
|
|
|
"storage_total": f"{home_assistant_prefix}/sensor/amcrest2mqtt-{serial_number}/{device_slug}_storage_total/config",
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# Connect to MQTT
|
|
|
|
|
mqtt_client = mqtt.Client(
|
|
|
|
|
client_id=f"amcrest2mqtt_{serial_number}", clean_session=False
|
|
|
|
|
)
|
|
|
|
|
mqtt_client.on_disconnect = on_mqtt_disconnect
|
|
|
|
|
mqtt_client.username_pw_set(mqtt_username, password=mqtt_password)
|
|
|
|
|
mqtt_client.will_set(topics["status"], payload="offline", qos=mqtt_qos, retain=True)
|
|
|
|
|
|
|
|
|
|
try:
|
|
|
|
|
mqtt_client.connect(mqtt_host, port=mqtt_port)
|
|
|
|
|
mqtt_client.loop_start()
|
|
|
|
|
except ConnectionError as error:
|
|
|
|
|
log(f"Could not connect to MQTT server: {error}", level="ERROR")
|
|
|
|
|
sys.exit(1)
|
|
|
|
|
|
|
|
|
|
# Configure Home Assistant
|
|
|
|
|
if home_assistant:
|
|
|
|
|
log("Writing Home Assistant discovery config...")
|
|
|
|
|
|
|
|
|
|
base_config = {
|
|
|
|
|
"availability_topic": topics["status"],
|
|
|
|
|
"device": {
|
|
|
|
|
"name": f"Amcrest {device_type}",
|
|
|
|
|
"manufacturer": "Amcrest",
|
|
|
|
|
"model": device_type,
|
|
|
|
|
"identifiers": serial_number,
|
|
|
|
|
"sw_version": sw_version,
|
|
|
|
|
"via_device": "amcrest2mqtt",
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if device_type in ["AD110", "AD410"]:
|
|
|
|
|
mqtt_publish(doorbell_home_assistant_topic, json.dumps({
|
|
|
|
|
"availability_topic": status_topic,
|
|
|
|
|
"state_topic": doorbell_topic,
|
|
|
|
|
mqtt_publish(
|
|
|
|
|
topics["home_assistant"]["doorbell"],
|
|
|
|
|
base_config
|
|
|
|
|
| {
|
|
|
|
|
"state_topic": topics["doorbell"],
|
|
|
|
|
"payload_on": "on",
|
|
|
|
|
"payload_off": "off",
|
|
|
|
|
"name": f"{device_name} Doorbell",
|
|
|
|
|
"unique_id": f"{serial_number}.doorbell",
|
|
|
|
|
},
|
|
|
|
|
json=True,
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
mqtt_publish(
|
|
|
|
|
topics["home_assistant"]["motion"],
|
|
|
|
|
base_config
|
|
|
|
|
| {
|
|
|
|
|
"state_topic": topics["motion"],
|
|
|
|
|
"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,
|
|
|
|
|
}))
|
|
|
|
|
"device_class": "motion",
|
|
|
|
|
"name": f"{device_name} Motion",
|
|
|
|
|
"unique_id": f"{serial_number}.motion",
|
|
|
|
|
},
|
|
|
|
|
json=True,
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
mqtt_publish(
|
|
|
|
|
topics["home_assistant"]["storage_used_percent"],
|
|
|
|
|
base_config
|
|
|
|
|
| {
|
|
|
|
|
"state_topic": topics["storage_used_percent"],
|
|
|
|
|
"unit_of_measurement": "%",
|
|
|
|
|
"icon": "mdi:micro-sd",
|
|
|
|
|
"name": f"{device_name} Storage Used %",
|
|
|
|
|
"unique_id": f"{serial_number}.storage_used_percent",
|
|
|
|
|
},
|
|
|
|
|
json=True,
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
mqtt_publish(
|
|
|
|
|
topics["storage_used"],
|
|
|
|
|
base_config
|
|
|
|
|
| {
|
|
|
|
|
"state_topic": topics["home_assistant"]["storage_used"],
|
|
|
|
|
"unit_of_measurement": "GB",
|
|
|
|
|
"icon": "mdi:micro-sd",
|
|
|
|
|
"name": f"{device_name} Storage Used",
|
|
|
|
|
"unique_id": f"{serial_number}.storage_used",
|
|
|
|
|
},
|
|
|
|
|
json=True,
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
mqtt_publish(
|
|
|
|
|
topics["storage_total"],
|
|
|
|
|
base_config
|
|
|
|
|
| {
|
|
|
|
|
"state_topic": topics["home_assistant"]["storage_total"],
|
|
|
|
|
"unit_of_measurement": "GB",
|
|
|
|
|
"icon": "mdi:micro-sd",
|
|
|
|
|
"name": f"{device_name} Storage Total",
|
|
|
|
|
"unique_id": f"{serial_number}.storage_total",
|
|
|
|
|
},
|
|
|
|
|
json=True,
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
# Main loop
|
|
|
|
|
mqtt_publish(topics["status"], "online")
|
|
|
|
|
refresh_storage_sensors()
|
|
|
|
|
|
|
|
|
|
log("Listening for events...")
|
|
|
|
|
|
|
|
|
|
try:
|
|
|
|
|
for code, payload in camera.event_actions("All", retries=5):
|
|
|
|
|
if code == "ProfileAlarmTransmit":
|
|
|
|
|
mqtt_payload = "on" if payload["action"] == "Start" else "off"
|
|
|
|
|
mqtt_publish(motion_topic, mqtt_payload)
|
|
|
|
|
motion_payload = "on" if payload["action"] == "Start" else "off"
|
|
|
|
|
mqtt_publish(topics["motion"], motion_payload)
|
|
|
|
|
elif code == "_DoTalkAction_":
|
|
|
|
|
mqtt_payload = "on" if payload["data"]["Action"] == "Invite" else "off"
|
|
|
|
|
mqtt_publish(doorbell_topic, mqtt_payload)
|
|
|
|
|
doorbell_payload = "on" if payload["data"]["Action"] == "Invite" else "off"
|
|
|
|
|
mqtt_publish(topics["doorbell"], doorbell_payload)
|
|
|
|
|
|
|
|
|
|
mqtt_publish(event_topic, json.dumps(payload))
|
|
|
|
|
mqtt_publish(topics["event"], payload, json=True)
|
|
|
|
|
log(str(payload))
|
|
|
|
|
|
|
|
|
|
except AmcrestError as error:
|
|
|
|
|