Compare commits
24
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
88984365fe | ||
|
|
469b0c257e | ||
|
|
a94f59eb53 | ||
|
|
eb1fbe90d1 | ||
|
|
b5b7498041 | ||
|
|
828b41197b | ||
|
|
b0fed670b9 | ||
|
|
f13d177615 | ||
|
|
fcce28c9c4 | ||
|
|
e8e9d4e3cd | ||
|
|
59ef398452 | ||
|
|
80e39845ce | ||
|
|
cbab673084 | ||
|
|
f27df12e64 | ||
|
|
bdcb3f6203 | ||
|
|
f619b20e2a | ||
|
|
69aaee3fc4 | ||
|
|
7140895c58 | ||
|
|
190cef875e | ||
|
|
7aef8570a5 | ||
|
|
721a3ad8f2 | ||
|
|
1b1c30bff0 | ||
|
|
8c23087f89 | ||
|
|
9a9501635f |
@@ -33,8 +33,9 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
tox -r -e cov
|
tox -r -e cov
|
||||||
- name: Codecov
|
- name: Codecov
|
||||||
uses: codecov/codecov-action@v1.0.6
|
uses: codecov/codecov-action@v1
|
||||||
with:
|
with:
|
||||||
|
token: ${{ secrets.CODECOV_TOKEN }}
|
||||||
flags: unittests
|
flags: unittests
|
||||||
file: ./coverage.xml
|
file: ./coverage.xml
|
||||||
name: blinkpy
|
name: blinkpy
|
||||||
|
|||||||
@@ -8,12 +8,12 @@ repos:
|
|||||||
- --quiet
|
- --quiet
|
||||||
files: ^((blinkpy|tests)/.+)?[^/]+\.py$
|
files: ^((blinkpy|tests)/.+)?[^/]+\.py$
|
||||||
- repo: https://gitlab.com/pycqa/flake8
|
- repo: https://gitlab.com/pycqa/flake8
|
||||||
rev: 3.8.2
|
rev: 3.8.3
|
||||||
hooks:
|
hooks:
|
||||||
- id: flake8
|
- id: flake8
|
||||||
additional_dependencies:
|
additional_dependencies:
|
||||||
- flake8-docstrings==1.5.0
|
- flake8-docstrings==1.5.0
|
||||||
- pydocstyle==5.0.2
|
- pydocstyle==5.1.1
|
||||||
files: ^(blinkpy|tests)/.+\.py$
|
files: ^(blinkpy|tests)/.+\.py$
|
||||||
- repo: https://github.com/Lucas-C/pre-commit-hooks-markup
|
- repo: https://github.com/Lucas-C/pre-commit-hooks-markup
|
||||||
rev: v1.0.0
|
rev: v1.0.0
|
||||||
|
|||||||
+1
-3
@@ -244,9 +244,7 @@ def request_camera_liveview(blink, network, camera_id):
|
|||||||
:param network: Sync module network id.
|
:param network: Sync module network id.
|
||||||
:param camera_id: Camera ID of camera to request liveview from.
|
:param camera_id: Camera ID of camera to request liveview from.
|
||||||
"""
|
"""
|
||||||
url = (
|
url = f"{blink.urls.base_url}/api/v5/accounts/{blink.account_id}/networks/{network}/cameras/{camera_id}/liveview"
|
||||||
f"{blink.urls.base_url}/api/v3/networks/{network}/cameras/{camera_id}/liveview"
|
|
||||||
)
|
|
||||||
return http_post(blink, url)
|
return http_post(blink, url)
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -86,6 +86,7 @@ class Blink:
|
|||||||
if not self.available:
|
if not self.available:
|
||||||
self.setup_post_verify()
|
self.setup_post_verify()
|
||||||
|
|
||||||
|
self.get_homescreen()
|
||||||
for sync_name, sync_module in self.sync.items():
|
for sync_name, sync_module in self.sync.items():
|
||||||
_LOGGER.debug("Attempting refresh of sync %s", sync_name)
|
_LOGGER.debug("Attempting refresh of sync %s", sync_name)
|
||||||
sync_module.refresh(force_cache=force)
|
sync_module.refresh(force_cache=force)
|
||||||
|
|||||||
+14
-16
@@ -98,6 +98,15 @@ class BlinkCamera:
|
|||||||
self.sync.blink, self.network_id, self.camera_id
|
self.sync.blink, self.network_id, self.camera_id
|
||||||
)
|
)
|
||||||
|
|
||||||
|
def get_media(self, media_type="image"):
|
||||||
|
"""Download media (image or video)."""
|
||||||
|
url = self.thumbnail
|
||||||
|
if media_type.lower() == "video":
|
||||||
|
url = self.clip
|
||||||
|
return api.http_get(
|
||||||
|
self.sync.blink, url=url, stream=True, json=False, timeout=TIMEOUT_MEDIA,
|
||||||
|
)
|
||||||
|
|
||||||
def snap_picture(self):
|
def snap_picture(self):
|
||||||
"""Take a picture with camera to create a new thumbnail."""
|
"""Take a picture with camera to create a new thumbnail."""
|
||||||
return api.request_new_image(self.sync.blink, self.network_id, self.camera_id)
|
return api.request_new_image(self.sync.blink, self.network_id, self.camera_id)
|
||||||
@@ -180,21 +189,10 @@ class BlinkCamera:
|
|||||||
update_cached_video = True
|
update_cached_video = True
|
||||||
|
|
||||||
if new_thumbnail is not None and (update_cached_image or force_cache):
|
if new_thumbnail is not None and (update_cached_image or force_cache):
|
||||||
self._cached_image = api.http_get(
|
self._cached_image = self.get_media()
|
||||||
self.sync.blink,
|
|
||||||
url=self.thumbnail,
|
|
||||||
stream=True,
|
|
||||||
json=False,
|
|
||||||
timeout=TIMEOUT_MEDIA,
|
|
||||||
)
|
|
||||||
if clip_addr is not None and (update_cached_video or force_cache):
|
if clip_addr is not None and (update_cached_video or force_cache):
|
||||||
self._cached_video = api.http_get(
|
self._cached_video = self.get_media(media_type="video")
|
||||||
self.sync.blink,
|
|
||||||
url=self.clip,
|
|
||||||
stream=True,
|
|
||||||
json=False,
|
|
||||||
timeout=TIMEOUT_MEDIA,
|
|
||||||
)
|
|
||||||
|
|
||||||
def get_liveview(self):
|
def get_liveview(self):
|
||||||
"""Get livewview rtsps link."""
|
"""Get livewview rtsps link."""
|
||||||
@@ -210,7 +208,7 @@ class BlinkCamera:
|
|||||||
:param path: Path to write file
|
:param path: Path to write file
|
||||||
"""
|
"""
|
||||||
_LOGGER.debug("Writing image from %s to %s", self.name, path)
|
_LOGGER.debug("Writing image from %s to %s", self.name, path)
|
||||||
response = self._cached_image
|
response = self.get_media()
|
||||||
if response.status_code == 200:
|
if response.status_code == 200:
|
||||||
with open(path, "wb") as imgfile:
|
with open(path, "wb") as imgfile:
|
||||||
copyfileobj(response.raw, imgfile)
|
copyfileobj(response.raw, imgfile)
|
||||||
@@ -226,7 +224,7 @@ class BlinkCamera:
|
|||||||
:param path: Path to write file
|
:param path: Path to write file
|
||||||
"""
|
"""
|
||||||
_LOGGER.debug("Writing video from %s to %s", self.name, path)
|
_LOGGER.debug("Writing video from %s to %s", self.name, path)
|
||||||
response = self._cached_video
|
response = self.get_media(media_type="video")
|
||||||
if response is None:
|
if response is None:
|
||||||
_LOGGER.error("No saved video exist for %s.", self.name)
|
_LOGGER.error("No saved video exist for %s.", self.name)
|
||||||
return
|
return
|
||||||
|
|||||||
@@ -3,8 +3,8 @@
|
|||||||
import os
|
import os
|
||||||
|
|
||||||
MAJOR_VERSION = 0
|
MAJOR_VERSION = 0
|
||||||
MINOR_VERSION = 17
|
MINOR_VERSION = 16
|
||||||
PATCH_VERSION = "0.dev0"
|
PATCH_VERSION = "4-rc0"
|
||||||
|
|
||||||
__version__ = f"{MAJOR_VERSION}.{MINOR_VERSION}.{PATCH_VERSION}"
|
__version__ = f"{MAJOR_VERSION}.{MINOR_VERSION}.{PATCH_VERSION}"
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,3 @@
|
|||||||
python-dateutil>=2.8.1
|
python-dateutil>=2.8.1
|
||||||
requests>=2.24.0
|
requests>=2.24.0
|
||||||
python-slugify>=4.0.1
|
python-slugify>=4.0.1
|
||||||
testtools>=2.4.0
|
|
||||||
|
|||||||
@@ -1,13 +1,14 @@
|
|||||||
black==19.10b0
|
black==19.10b0
|
||||||
coverage==5.3
|
coverage==5.3
|
||||||
flake8==3.8.3
|
flake8==3.8.4
|
||||||
flake8-docstrings==1.5.0
|
flake8-docstrings==1.5.0
|
||||||
pre-commit==2.6.0
|
pre-commit==2.7.1
|
||||||
pylint==2.5.3
|
pylint==2.6.0
|
||||||
pydocstyle==5.0.2
|
pydocstyle==5.1.1
|
||||||
pytest==6.0.1
|
pytest==6.1.1
|
||||||
pytest-cov==2.10.1
|
pytest-cov==2.10.1
|
||||||
pytest-sugar==0.9.4
|
pytest-sugar==0.9.4
|
||||||
pytest-timeout==1.4.2
|
pytest-timeout==1.4.2
|
||||||
restructuredtext-lint==1.3.1
|
restructuredtext-lint==1.3.1
|
||||||
pygments==2.6.1
|
pygments==2.7.1
|
||||||
|
testtools>=2.4.0
|
||||||
|
|||||||
@@ -68,7 +68,7 @@ class TestBlinkSetup(unittest.TestCase):
|
|||||||
self.assertEqual(self.blink.last_refresh, None)
|
self.assertEqual(self.blink.last_refresh, None)
|
||||||
with mock.patch(
|
with mock.patch(
|
||||||
"blinkpy.sync_module.BlinkSyncModule.refresh", return_value=True
|
"blinkpy.sync_module.BlinkSyncModule.refresh", return_value=True
|
||||||
):
|
), mock.patch("blinkpy.blinkpy.Blink.get_homescreen", return_value=True):
|
||||||
self.blink.refresh()
|
self.blink.refresh()
|
||||||
|
|
||||||
self.assertEqual(self.blink.last_refresh, now)
|
self.assertEqual(self.blink.last_refresh, now)
|
||||||
|
|||||||
Reference in New Issue
Block a user