Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
Core
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mirrored_repos
HomeAssistant
Core
Commits
a2916a9c
Commit
a2916a9c
authored
7 years ago
by
Jerad Meisner
Committed by
Paulus Schoutsen
7 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Fix Xeoma camera platform to allow different admin/viewer credentials (#12161)
parent
49c7b422
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.gitignore
+2
-0
2 additions, 0 deletions
.gitignore
homeassistant/components/camera/xeoma.py
+17
-9
17 additions, 9 deletions
homeassistant/components/camera/xeoma.py
requirements_all.txt
+1
-1
1 addition, 1 deletion
requirements_all.txt
with
20 additions
and
10 deletions
.gitignore
+
2
−
0
View file @
a2916a9c
...
@@ -16,7 +16,9 @@ Icon
...
@@ -16,7 +16,9 @@ Icon
# Thumbnails
# Thumbnails
._*
._*
# IntelliJ IDEA
.idea
.idea
*.iml
# pytest
# pytest
.cache
.cache
...
...
This diff is collapsed.
Click to expand it.
homeassistant/components/camera/xeoma.py
+
17
−
9
View file @
a2916a9c
...
@@ -14,7 +14,7 @@ from homeassistant.const import (
...
@@ -14,7 +14,7 @@ from homeassistant.const import (
CONF_HOST
,
CONF_NAME
,
CONF_PASSWORD
,
CONF_USERNAME
)
CONF_HOST
,
CONF_NAME
,
CONF_PASSWORD
,
CONF_USERNAME
)
from
homeassistant.helpers
import
config_validation
as
cv
from
homeassistant.helpers
import
config_validation
as
cv
REQUIREMENTS
=
[
'
pyxeoma==1.
2
'
]
REQUIREMENTS
=
[
'
pyxeoma==1.
3
'
]
_LOGGER
=
logging
.
getLogger
(
__name__
)
_LOGGER
=
logging
.
getLogger
(
__name__
)
...
@@ -22,6 +22,8 @@ CONF_CAMERAS = 'cameras'
...
@@ -22,6 +22,8 @@ CONF_CAMERAS = 'cameras'
CONF_HIDE
=
'
hide
'
CONF_HIDE
=
'
hide
'
CONF_IMAGE_NAME
=
'
image_name
'
CONF_IMAGE_NAME
=
'
image_name
'
CONF_NEW_VERSION
=
'
new_version
'
CONF_NEW_VERSION
=
'
new_version
'
CONF_VIEWER_PASSWORD
=
'
viewer_password
'
CONF_VIEWER_USERNAME
=
'
viewer_username
'
CAMERAS_SCHEMA
=
vol
.
Schema
({
CAMERAS_SCHEMA
=
vol
.
Schema
({
vol
.
Required
(
CONF_IMAGE_NAME
):
cv
.
string
,
vol
.
Required
(
CONF_IMAGE_NAME
):
cv
.
string
,
...
@@ -48,9 +50,8 @@ def async_setup_platform(hass, config, async_add_devices, discovery_info=None):
...
@@ -48,9 +50,8 @@ def async_setup_platform(hass, config, async_add_devices, discovery_info=None):
host
=
config
[
CONF_HOST
]
host
=
config
[
CONF_HOST
]
login
=
config
.
get
(
CONF_USERNAME
)
login
=
config
.
get
(
CONF_USERNAME
)
password
=
config
.
get
(
CONF_PASSWORD
)
password
=
config
.
get
(
CONF_PASSWORD
)
new_version
=
config
[
CONF_NEW_VERSION
]
xeoma
=
Xeoma
(
host
,
new_version
,
login
,
password
)
xeoma
=
Xeoma
(
host
,
login
,
password
)
try
:
try
:
yield
from
xeoma
.
async_test_connection
()
yield
from
xeoma
.
async_test_connection
()
...
@@ -59,9 +60,12 @@ def async_setup_platform(hass, config, async_add_devices, discovery_info=None):
...
@@ -59,9 +60,12 @@ def async_setup_platform(hass, config, async_add_devices, discovery_info=None):
{
{
CONF_IMAGE_NAME
:
image_name
,
CONF_IMAGE_NAME
:
image_name
,
CONF_HIDE
:
False
,
CONF_HIDE
:
False
,
CONF_NAME
:
image_name
CONF_NAME
:
image_name
,
CONF_VIEWER_USERNAME
:
username
,
CONF_VIEWER_PASSWORD
:
pw
}
}
for
image_name
in
discovered_image_names
for
image_name
,
username
,
pw
in
discovered_image_names
]
]
for
cam
in
config
[
CONF_CAMERAS
]:
for
cam
in
config
[
CONF_CAMERAS
]:
...
@@ -77,8 +81,9 @@ def async_setup_platform(hass, config, async_add_devices, discovery_info=None):
...
@@ -77,8 +81,9 @@ def async_setup_platform(hass, config, async_add_devices, discovery_info=None):
cameras
=
list
(
filter
(
lambda
c
:
not
c
[
CONF_HIDE
],
discovered_cameras
))
cameras
=
list
(
filter
(
lambda
c
:
not
c
[
CONF_HIDE
],
discovered_cameras
))
async_add_devices
(
async_add_devices
(
[
XeomaCamera
(
xeoma
,
camera
[
CONF_IMAGE_NAME
],
camera
[
CONF_NAME
])
[
XeomaCamera
(
xeoma
,
camera
[
CONF_IMAGE_NAME
],
camera
[
CONF_NAME
],
for
camera
in
cameras
])
camera
[
CONF_VIEWER_USERNAME
],
camera
[
CONF_VIEWER_PASSWORD
])
for
camera
in
cameras
])
except
XeomaError
as
err
:
except
XeomaError
as
err
:
_LOGGER
.
error
(
"
Error: %s
"
,
err
.
message
)
_LOGGER
.
error
(
"
Error: %s
"
,
err
.
message
)
return
return
...
@@ -87,12 +92,14 @@ def async_setup_platform(hass, config, async_add_devices, discovery_info=None):
...
@@ -87,12 +92,14 @@ def async_setup_platform(hass, config, async_add_devices, discovery_info=None):
class
XeomaCamera
(
Camera
):
class
XeomaCamera
(
Camera
):
"""
Implementation of a Xeoma camera.
"""
"""
Implementation of a Xeoma camera.
"""
def
__init__
(
self
,
xeoma
,
image
,
name
):
def
__init__
(
self
,
xeoma
,
image
,
name
,
username
,
password
):
"""
Initialize a Xeoma camera.
"""
"""
Initialize a Xeoma camera.
"""
super
().
__init__
()
super
().
__init__
()
self
.
_xeoma
=
xeoma
self
.
_xeoma
=
xeoma
self
.
_name
=
name
self
.
_name
=
name
self
.
_image
=
image
self
.
_image
=
image
self
.
_username
=
username
self
.
_password
=
password
self
.
_last_image
=
None
self
.
_last_image
=
None
@asyncio.coroutine
@asyncio.coroutine
...
@@ -100,7 +107,8 @@ class XeomaCamera(Camera):
...
@@ -100,7 +107,8 @@ class XeomaCamera(Camera):
"""
Return a still image response from the camera.
"""
"""
Return a still image response from the camera.
"""
from
pyxeoma.xeoma
import
XeomaError
from
pyxeoma.xeoma
import
XeomaError
try
:
try
:
image
=
yield
from
self
.
_xeoma
.
async_get_camera_image
(
self
.
_image
)
image
=
yield
from
self
.
_xeoma
.
async_get_camera_image
(
self
.
_image
,
self
.
_username
,
self
.
_password
)
self
.
_last_image
=
image
self
.
_last_image
=
image
except
XeomaError
as
err
:
except
XeomaError
as
err
:
_LOGGER
.
error
(
"
Error fetching image: %s
"
,
err
.
message
)
_LOGGER
.
error
(
"
Error fetching image: %s
"
,
err
.
message
)
...
...
This diff is collapsed.
Click to expand it.
requirements_all.txt
+
1
−
1
View file @
a2916a9c
...
@@ -1015,7 +1015,7 @@ pywebpush==1.5.0
...
@@ -1015,7 +1015,7 @@ pywebpush==1.5.0
pywemo==0.4.25
pywemo==0.4.25
# homeassistant.components.camera.xeoma
# homeassistant.components.camera.xeoma
pyxeoma==1.
2
pyxeoma==1.
3
# homeassistant.components.zabbix
# homeassistant.components.zabbix
pyzabbix==0.7.4
pyzabbix==0.7.4
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment