uiprotect 6.6.0__py3-none-any.whl → 6.6.2__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of uiprotect might be problematic. Click here for more details.

uiprotect/data/devices.py CHANGED
@@ -83,18 +83,7 @@ if TYPE_CHECKING:
83
83
  from .nvr import Event, Liveview
84
84
 
85
85
  PRIVACY_ZONE_NAME = "pyufp_privacy_zone"
86
- LUX_MAPPING_VALUES = [
87
- 30,
88
- 25,
89
- 20,
90
- 15,
91
- 12,
92
- 10,
93
- 7,
94
- 5,
95
- 3,
96
- 1,
97
- ]
86
+ LUX_MAPPING_VALUES = [30, 25, 20, 15, 12, 10, 7, 5, 3, 1, 0]
98
87
 
99
88
  _LOGGER = logging.getLogger(__name__)
100
89
 
@@ -2024,13 +2013,18 @@ class Camera(ProtectMotionDeviceModel):
2024
2013
 
2025
2014
  Datetime of screenshot is approximate. It may be +/- a few seconds.
2026
2015
  """
2016
+ # Use READ_LIVE if dt is None, otherwise READ_MEDIA
2017
+ permission = (
2018
+ PermissionNode.READ_LIVE if dt is None else PermissionNode.READ_MEDIA
2019
+ )
2027
2020
  if not self._api.bootstrap.auth_user.can(
2028
2021
  ModelType.CAMERA,
2029
- PermissionNode.READ_MEDIA,
2022
+ permission,
2030
2023
  self,
2031
2024
  ):
2025
+ action = "read live" if dt is None else "read media"
2032
2026
  raise NotAuthorized(
2033
- f"Do not have permission to read media for camera: {self.id}",
2027
+ f"Do not have permission to {action} for camera: {self.id}"
2034
2028
  )
2035
2029
 
2036
2030
  if height is None and width is None and self.high_camera_channel is not None:
@@ -2052,13 +2046,18 @@ class Camera(ProtectMotionDeviceModel):
2052
2046
  if not self.feature_flags.has_package_camera:
2053
2047
  raise BadRequest("Device does not have package camera")
2054
2048
 
2049
+ # Use READ_LIVE if dt is None, otherwise READ_MEDIA
2050
+ permission = (
2051
+ PermissionNode.READ_LIVE if dt is None else PermissionNode.READ_MEDIA
2052
+ )
2055
2053
  if not self._api.bootstrap.auth_user.can(
2056
2054
  ModelType.CAMERA,
2057
- PermissionNode.READ_MEDIA,
2055
+ permission,
2058
2056
  self,
2059
2057
  ):
2058
+ action = "read live" if dt is None else "read media"
2060
2059
  raise NotAuthorized(
2061
- f"Do not have permission to read media for camera: {self.id}",
2060
+ f"Do not have permission to {action} for camera: {self.id}"
2062
2061
  )
2063
2062
 
2064
2063
  if height is None and width is None and self.package_camera_channel is not None:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: uiprotect
3
- Version: 6.6.0
3
+ Version: 6.6.2
4
4
  Summary: Python API for Unifi Protect (Unofficial)
5
5
  Home-page: https://github.com/uilibs/uiprotect
6
6
  Author: UI Protect Maintainers
@@ -18,7 +18,7 @@ uiprotect/data/__init__.py,sha256=OcfuJl2qXfHcj_mdnrHhzZ5tEIZrw8auziX5IE7dn-I,29
18
18
  uiprotect/data/base.py,sha256=sn7IHKQN96uiZL6ImN1gdCHV97EpUmy-X7xWTUAtWsg,35054
19
19
  uiprotect/data/bootstrap.py,sha256=iROUw-pPdJpytaV8Dg5peOJotI7jidXJABsEzCQGid8,20704
20
20
  uiprotect/data/convert.py,sha256=8h6Il_DhMkPRDPj9F_rA2UZIlTuchS3BQD24peKpk2A,2185
21
- uiprotect/data/devices.py,sha256=Y_OXYf_qgbaG_b02knIQ0fipm7c04R9henW7tJZqQvI,112637
21
+ uiprotect/data/devices.py,sha256=H3ioGq8Px_McyrLykAcA2gAtTmkpsd6DdKX0XdDNpL4,113041
22
22
  uiprotect/data/nvr.py,sha256=FGI0eIAyy3Zy9kaxcr67HxwaVCUU8wq3oZyWvoDq7Sg,47251
23
23
  uiprotect/data/types.py,sha256=PA9YOEJCmh9DAlJajHh2Y6hi4aTjlQ8LhWN8ZH5x7Fc,18522
24
24
  uiprotect/data/user.py,sha256=1o5gyPHafn4lHARpoSMD_NWbo5IbzGPfiSASwqqDvWs,7002
@@ -31,8 +31,8 @@ uiprotect/test_util/__init__.py,sha256=Ky8mTL61nhp5II2mxTKBAsSGvNqK8U_CfKC5AGwTo
31
31
  uiprotect/test_util/anonymize.py,sha256=f-8ijU-_y9r-uAbhIPn0f0I6hzJpAkvJzc8UpWihObI,8478
32
32
  uiprotect/utils.py,sha256=jIWT7n_reL90oY91svBfQ4naRxo28qHzP5jNOL12mQE,20342
33
33
  uiprotect/websocket.py,sha256=tEyenqblNXHcjWYuf4oRP1E7buNwx6zoECMwpBr-jig,8191
34
- uiprotect-6.6.0.dist-info/LICENSE,sha256=INx18jhdbVXMEiiBANeKEbrbz57ckgzxk5uutmmcxGk,1111
35
- uiprotect-6.6.0.dist-info/METADATA,sha256=ZKPQbLYxoHJZC126wTGtweXiZyNoGm8E-wEjLZ1NrzE,11096
36
- uiprotect-6.6.0.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
37
- uiprotect-6.6.0.dist-info/entry_points.txt,sha256=J78AUTPrTTxgI3s7SVgrmGqDP7piX2wuuEORzhDdVRA,47
38
- uiprotect-6.6.0.dist-info/RECORD,,
34
+ uiprotect-6.6.2.dist-info/LICENSE,sha256=INx18jhdbVXMEiiBANeKEbrbz57ckgzxk5uutmmcxGk,1111
35
+ uiprotect-6.6.2.dist-info/METADATA,sha256=xUdjKyhJ_-hA0KUUdzYxlbQlC3clFxToPZc11A8iSCc,11096
36
+ uiprotect-6.6.2.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
37
+ uiprotect-6.6.2.dist-info/entry_points.txt,sha256=J78AUTPrTTxgI3s7SVgrmGqDP7piX2wuuEORzhDdVRA,47
38
+ uiprotect-6.6.2.dist-info/RECORD,,