|
|
|
|
@@ -4,19 +4,30 @@ Support for Canary camera.
|
|
|
|
|
For more details about this platform, please refer to the documentation at
|
|
|
|
|
https://home-assistant.io/components/camera.canary/
|
|
|
|
|
"""
|
|
|
|
|
import asyncio
|
|
|
|
|
import logging
|
|
|
|
|
from datetime import timedelta
|
|
|
|
|
|
|
|
|
|
import requests
|
|
|
|
|
import voluptuous as vol
|
|
|
|
|
|
|
|
|
|
from homeassistant.components.camera import Camera
|
|
|
|
|
from homeassistant.components.camera import Camera, PLATFORM_SCHEMA
|
|
|
|
|
from homeassistant.components.canary import DATA_CANARY, DEFAULT_TIMEOUT
|
|
|
|
|
from homeassistant.components.ffmpeg import DATA_FFMPEG
|
|
|
|
|
from homeassistant.helpers import config_validation as cv
|
|
|
|
|
from homeassistant.helpers.aiohttp_client import async_aiohttp_proxy_stream
|
|
|
|
|
from homeassistant.util import Throttle
|
|
|
|
|
|
|
|
|
|
DEPENDENCIES = ['canary']
|
|
|
|
|
CONF_FFMPEG_ARGUMENTS = 'ffmpeg_arguments'
|
|
|
|
|
|
|
|
|
|
DEPENDENCIES = ['canary', 'ffmpeg']
|
|
|
|
|
|
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
|
|
ATTR_MOTION_START_TIME = "motion_start_time"
|
|
|
|
|
ATTR_MOTION_END_TIME = "motion_end_time"
|
|
|
|
|
MIN_TIME_BETWEEN_SESSION_RENEW = timedelta(seconds=90)
|
|
|
|
|
|
|
|
|
|
PLATFORM_SCHEMA = PLATFORM_SCHEMA.extend({
|
|
|
|
|
vol.Optional(CONF_FFMPEG_ARGUMENTS): cv.string,
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def setup_platform(hass, config, add_devices, discovery_info=None):
|
|
|
|
|
@@ -25,10 +36,11 @@ def setup_platform(hass, config, add_devices, discovery_info=None):
|
|
|
|
|
devices = []
|
|
|
|
|
|
|
|
|
|
for location in data.locations:
|
|
|
|
|
entries = data.get_motion_entries(location.location_id)
|
|
|
|
|
if entries:
|
|
|
|
|
devices.append(CanaryCamera(data, location.location_id,
|
|
|
|
|
DEFAULT_TIMEOUT))
|
|
|
|
|
for device in location.devices:
|
|
|
|
|
if device.is_online:
|
|
|
|
|
devices.append(
|
|
|
|
|
CanaryCamera(hass, data, location, device, DEFAULT_TIMEOUT,
|
|
|
|
|
config.get(CONF_FFMPEG_ARGUMENTS)))
|
|
|
|
|
|
|
|
|
|
add_devices(devices, True)
|
|
|
|
|
|
|
|
|
|
@@ -36,60 +48,65 @@ def setup_platform(hass, config, add_devices, discovery_info=None):
|
|
|
|
|
class CanaryCamera(Camera):
|
|
|
|
|
"""An implementation of a Canary security camera."""
|
|
|
|
|
|
|
|
|
|
def __init__(self, data, location_id, timeout):
|
|
|
|
|
def __init__(self, hass, data, location, device, timeout, ffmpeg_args):
|
|
|
|
|
"""Initialize a Canary security camera."""
|
|
|
|
|
super().__init__()
|
|
|
|
|
|
|
|
|
|
self._ffmpeg = hass.data[DATA_FFMPEG]
|
|
|
|
|
self._ffmpeg_arguments = ffmpeg_args
|
|
|
|
|
self._data = data
|
|
|
|
|
self._location_id = location_id
|
|
|
|
|
self._location = location
|
|
|
|
|
self._device = device
|
|
|
|
|
self._timeout = timeout
|
|
|
|
|
|
|
|
|
|
self._location = None
|
|
|
|
|
self._motion_entry = None
|
|
|
|
|
self._image_content = None
|
|
|
|
|
|
|
|
|
|
def camera_image(self):
|
|
|
|
|
"""Update the status of the camera and return bytes of camera image."""
|
|
|
|
|
self.update()
|
|
|
|
|
return self._image_content
|
|
|
|
|
self._live_stream_session = None
|
|
|
|
|
|
|
|
|
|
@property
|
|
|
|
|
def name(self):
|
|
|
|
|
"""Return the name of this device."""
|
|
|
|
|
return self._location.name
|
|
|
|
|
return self._device.name
|
|
|
|
|
|
|
|
|
|
@property
|
|
|
|
|
def is_recording(self):
|
|
|
|
|
"""Return true if the device is recording."""
|
|
|
|
|
return self._location.is_recording
|
|
|
|
|
|
|
|
|
|
@property
|
|
|
|
|
def device_state_attributes(self):
|
|
|
|
|
"""Return device specific state attributes."""
|
|
|
|
|
if self._motion_entry is None:
|
|
|
|
|
return None
|
|
|
|
|
|
|
|
|
|
return {
|
|
|
|
|
ATTR_MOTION_START_TIME: self._motion_entry.start_time,
|
|
|
|
|
ATTR_MOTION_END_TIME: self._motion_entry.end_time,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
def update(self):
|
|
|
|
|
"""Update the status of the camera."""
|
|
|
|
|
self._data.update()
|
|
|
|
|
self._location = self._data.get_location(self._location_id)
|
|
|
|
|
|
|
|
|
|
entries = self._data.get_motion_entries(self._location_id)
|
|
|
|
|
if entries:
|
|
|
|
|
current = entries[0]
|
|
|
|
|
previous = self._motion_entry
|
|
|
|
|
|
|
|
|
|
if previous is None or previous.entry_id != current.entry_id:
|
|
|
|
|
self._motion_entry = current
|
|
|
|
|
self._image_content = requests.get(
|
|
|
|
|
current.thumbnails[0].image_url,
|
|
|
|
|
timeout=self._timeout).content
|
|
|
|
|
|
|
|
|
|
@property
|
|
|
|
|
def motion_detection_enabled(self):
|
|
|
|
|
"""Return the camera motion detection status."""
|
|
|
|
|
return not self._location.is_recording
|
|
|
|
|
|
|
|
|
|
@asyncio.coroutine
|
|
|
|
|
def async_camera_image(self):
|
|
|
|
|
"""Return a still image response from the camera."""
|
|
|
|
|
self.renew_live_stream_session()
|
|
|
|
|
|
|
|
|
|
from haffmpeg import ImageFrame, IMAGE_JPEG
|
|
|
|
|
ffmpeg = ImageFrame(self._ffmpeg.binary, loop=self.hass.loop)
|
|
|
|
|
image = yield from asyncio.shield(ffmpeg.get_image(
|
|
|
|
|
self._live_stream_session.live_stream_url,
|
|
|
|
|
output_format=IMAGE_JPEG,
|
|
|
|
|
extra_cmd=self._ffmpeg_arguments), loop=self.hass.loop)
|
|
|
|
|
return image
|
|
|
|
|
|
|
|
|
|
@asyncio.coroutine
|
|
|
|
|
def handle_async_mjpeg_stream(self, request):
|
|
|
|
|
"""Generate an HTTP MJPEG stream from the camera."""
|
|
|
|
|
if self._live_stream_session is None:
|
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
from haffmpeg import CameraMjpeg
|
|
|
|
|
stream = CameraMjpeg(self._ffmpeg.binary, loop=self.hass.loop)
|
|
|
|
|
yield from stream.open_camera(
|
|
|
|
|
self._live_stream_session.live_stream_url,
|
|
|
|
|
extra_cmd=self._ffmpeg_arguments)
|
|
|
|
|
|
|
|
|
|
yield from async_aiohttp_proxy_stream(
|
|
|
|
|
self.hass, request, stream,
|
|
|
|
|
'multipart/x-mixed-replace;boundary=ffserver')
|
|
|
|
|
yield from stream.close()
|
|
|
|
|
|
|
|
|
|
@Throttle(MIN_TIME_BETWEEN_SESSION_RENEW)
|
|
|
|
|
def renew_live_stream_session(self):
|
|
|
|
|
"""Renew live stream session."""
|
|
|
|
|
self._live_stream_session = self._data.get_live_stream_session(
|
|
|
|
|
self._device)
|
|
|
|
|
|