72 lines
2.2 KiB
Python
72 lines
2.2 KiB
Python
"""
|
|
This component provides basic support for Foscam IP cameras.
|
|
|
|
For more details about this platform, please refer to the documentation at
|
|
https://home-assistant.io/components/camera.foscam/
|
|
"""
|
|
import logging
|
|
|
|
import requests
|
|
import voluptuous as vol
|
|
|
|
from homeassistant.components.camera import (Camera, PLATFORM_SCHEMA)
|
|
from homeassistant.const import (
|
|
CONF_NAME, CONF_USERNAME, CONF_PASSWORD, CONF_PORT)
|
|
from homeassistant.helpers import config_validation as cv
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
CONF_IP = 'ip'
|
|
|
|
DEFAULT_NAME = 'Foscam Camera'
|
|
DEFAULT_PORT = 88
|
|
|
|
PLATFORM_SCHEMA = PLATFORM_SCHEMA.extend({
|
|
vol.Required(CONF_IP): cv.string,
|
|
vol.Required(CONF_PASSWORD): cv.string,
|
|
vol.Required(CONF_USERNAME): cv.string,
|
|
vol.Optional(CONF_NAME, default=DEFAULT_NAME): cv.string,
|
|
vol.Optional(CONF_PORT, default=DEFAULT_PORT): cv.port,
|
|
})
|
|
|
|
|
|
# pylint: disable=unused-argument
|
|
def setup_platform(hass, config, add_devices, discovery_info=None):
|
|
"""Setup a Foscam IP Camera."""
|
|
add_devices([FoscamCamera(config)])
|
|
|
|
|
|
# pylint: disable=too-many-instance-attributes
|
|
class FoscamCamera(Camera):
|
|
"""An implementation of a Foscam IP camera."""
|
|
|
|
def __init__(self, device_info):
|
|
"""Initialize a Foscam camera."""
|
|
super(FoscamCamera, self).__init__()
|
|
|
|
ip_address = device_info.get(CONF_IP)
|
|
port = device_info.get(CONF_PORT)
|
|
|
|
self._base_url = 'http://{}:{}/'.format(ip_address, port)
|
|
self._username = device_info.get(CONF_USERNAME)
|
|
self._password = device_info.get(CONF_PASSWORD)
|
|
self._snap_picture_url = self._base_url \
|
|
+ 'cgi-bin/CGIProxy.fcgi?cmd=snapPicture2&usr=' \
|
|
+ self._username + '&pwd=' + self._password
|
|
self._name = device_info.get(CONF_NAME)
|
|
|
|
_LOGGER.info('Using the following URL for %s: %s',
|
|
self._name, self._snap_picture_url)
|
|
|
|
def camera_image(self):
|
|
"""Return a still image reponse from the camera."""
|
|
# Send the request to snap a picture and return raw jpg data
|
|
response = requests.get(self._snap_picture_url, timeout=10)
|
|
|
|
return response.content
|
|
|
|
@property
|
|
def name(self):
|
|
"""Return the name of this camera."""
|
|
return self._name
|