57 lines
1.9 KiB
Python
57 lines
1.9 KiB
Python
"""
|
|
Support for Axis camera streaming.
|
|
|
|
For more details about this platform, please refer to the documentation at
|
|
https://home-assistant.io/components/camera.axis/
|
|
"""
|
|
import logging
|
|
|
|
from homeassistant.const import (
|
|
CONF_HOST, CONF_NAME, CONF_USERNAME, CONF_PASSWORD,
|
|
CONF_AUTHENTICATION, HTTP_DIGEST_AUTHENTICATION)
|
|
from homeassistant.components.camera.mjpeg import (
|
|
CONF_MJPEG_URL, CONF_STILL_IMAGE_URL, MjpegCamera)
|
|
from homeassistant.helpers.dispatcher import async_dispatcher_connect
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
DOMAIN = 'axis'
|
|
DEPENDENCIES = [DOMAIN]
|
|
|
|
|
|
def _get_image_url(host, mode):
|
|
if mode == 'mjpeg':
|
|
return 'http://{}/axis-cgi/mjpg/video.cgi'.format(host)
|
|
elif mode == 'single':
|
|
return 'http://{}/axis-cgi/jpg/image.cgi'.format(host)
|
|
|
|
|
|
def setup_platform(hass, config, add_devices, discovery_info=None):
|
|
"""Setup Axis camera."""
|
|
config = {
|
|
CONF_NAME: discovery_info[CONF_NAME],
|
|
CONF_USERNAME: discovery_info[CONF_USERNAME],
|
|
CONF_PASSWORD: discovery_info[CONF_PASSWORD],
|
|
CONF_MJPEG_URL: _get_image_url(discovery_info[CONF_HOST], 'mjpeg'),
|
|
CONF_STILL_IMAGE_URL: _get_image_url(discovery_info[CONF_HOST],
|
|
'single'),
|
|
CONF_AUTHENTICATION: HTTP_DIGEST_AUTHENTICATION,
|
|
}
|
|
add_devices([AxisCamera(hass, config)])
|
|
|
|
|
|
class AxisCamera(MjpegCamera):
|
|
"""AxisCamera class."""
|
|
|
|
def __init__(self, hass, config):
|
|
"""Initialize Axis Communications camera component."""
|
|
super().__init__(hass, config)
|
|
async_dispatcher_connect(hass,
|
|
DOMAIN + '_' + config[CONF_NAME] + '_new_ip',
|
|
self._new_ip)
|
|
|
|
def _new_ip(self, host):
|
|
"""Set new IP for video stream."""
|
|
self._mjpeg_url = _get_image_url(host, 'mjpeg')
|
|
self._still_image_url = _get_image_url(host, 'mjpeg')
|