uiprotect 6.6.1__py3-none-any.whl → 6.6.3__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/__init__.py CHANGED
@@ -21,7 +21,7 @@ __all__ = [
21
21
  "get_nested_attr",
22
22
  "get_nested_attr_as_bool",
23
23
  "get_top_level_attr_as_bool",
24
- "make_value_getter",
25
24
  "make_enabled_getter",
26
25
  "make_required_getter",
26
+ "make_value_getter",
27
27
  ]
uiprotect/api.py CHANGED
@@ -12,7 +12,7 @@ import time
12
12
  from collections.abc import Callable
13
13
  from datetime import datetime, timedelta
14
14
  from functools import partial
15
- from http import HTTPStatus
15
+ from http import HTTPStatus, cookies
16
16
  from http.cookies import Morsel, SimpleCookie
17
17
  from ipaddress import IPv4Address, IPv6Address
18
18
  from pathlib import Path
@@ -67,9 +67,7 @@ from .utils import (
67
67
  )
68
68
  from .websocket import Websocket, WebsocketState
69
69
 
70
- if sys.version_info[:2] < (3, 13):
71
- from http import cookies
72
-
70
+ if "partitioned" not in cookies.Morsel._reserved: # type: ignore[attr-defined]
73
71
  # See: https://github.com/python/cpython/issues/112713
74
72
  cookies.Morsel._reserved["partitioned"] = "partitioned" # type: ignore[attr-defined]
75
73
  cookies.Morsel._flags.add("partitioned") # type: ignore[attr-defined]
uiprotect/data/devices.py CHANGED
@@ -2013,13 +2013,18 @@ class Camera(ProtectMotionDeviceModel):
2013
2013
 
2014
2014
  Datetime of screenshot is approximate. It may be +/- a few seconds.
2015
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
+ )
2016
2020
  if not self._api.bootstrap.auth_user.can(
2017
2021
  ModelType.CAMERA,
2018
- PermissionNode.READ_MEDIA,
2022
+ permission,
2019
2023
  self,
2020
2024
  ):
2025
+ action = "read live" if dt is None else "read media"
2021
2026
  raise NotAuthorized(
2022
- f"Do not have permission to read media for camera: {self.id}",
2027
+ f"Do not have permission to {action} for camera: {self.id}"
2023
2028
  )
2024
2029
 
2025
2030
  if height is None and width is None and self.high_camera_channel is not None:
@@ -2041,13 +2046,18 @@ class Camera(ProtectMotionDeviceModel):
2041
2046
  if not self.feature_flags.has_package_camera:
2042
2047
  raise BadRequest("Device does not have package camera")
2043
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
+ )
2044
2053
  if not self._api.bootstrap.auth_user.can(
2045
2054
  ModelType.CAMERA,
2046
- PermissionNode.READ_MEDIA,
2055
+ permission,
2047
2056
  self,
2048
2057
  ):
2058
+ action = "read live" if dt is None else "read media"
2049
2059
  raise NotAuthorized(
2050
- f"Do not have permission to read media for camera: {self.id}",
2060
+ f"Do not have permission to {action} for camera: {self.id}"
2051
2061
  )
2052
2062
 
2053
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.1
3
+ Version: 6.6.3
4
4
  Summary: Python API for Unifi Protect (Unofficial)
5
5
  Home-page: https://github.com/uilibs/uiprotect
6
6
  Author: UI Protect Maintainers
@@ -1,7 +1,7 @@
1
- uiprotect/__init__.py,sha256=GDRM9WvWUBbOyBVgltq6Qv8i7LVdWEbG8q5EzYvOFbE,636
1
+ uiprotect/__init__.py,sha256=Oz6i1tonIz4QWVnEPkbielJDJ3WQdwZVgYtjY4IwGAQ,636
2
2
  uiprotect/__main__.py,sha256=C_bHCOkv5qj6WMy-6ELoY3Y6HDhLxOa1a30CzmbZhsg,462
3
3
  uiprotect/_compat.py,sha256=HThmb1zQZCEssCxYYbQzFhJq8zYYlVaSnIEZabKc-6U,302
4
- uiprotect/api.py,sha256=RkaGtvzIkWg0OCM429uKnqklHbqruCjVTwo-iEo5uKU,67954
4
+ uiprotect/api.py,sha256=Gc_x8mo-W-xtEFAhRIkiQyW99MJQgWdkkXlKxl3h-JU,67978
5
5
  uiprotect/cli/__init__.py,sha256=1MO8rJmjjAsfVx2x01gn5DJo8B64xdPGo6gRVJbWd18,8868
6
6
  uiprotect/cli/backup.py,sha256=ZiS7RZnJGKI8TJKLW2cOUzkRM8nyTvE5Ov_jZZGtvSM,36708
7
7
  uiprotect/cli/base.py,sha256=k-_qGuNT7br0iV0KE5F4wYXF75iyLLjBEckTqxC71xM,7591
@@ -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=j9wRo6gzt2FKrv_DghTp4s6CURkhuWKhT6E9Uy5auf4,112597
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.1.dist-info/LICENSE,sha256=INx18jhdbVXMEiiBANeKEbrbz57ckgzxk5uutmmcxGk,1111
35
- uiprotect-6.6.1.dist-info/METADATA,sha256=cZwLI_Pmj7HvpeS0_CBH3MNj1hQftFDOveuS03ml-Lw,11096
36
- uiprotect-6.6.1.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
37
- uiprotect-6.6.1.dist-info/entry_points.txt,sha256=J78AUTPrTTxgI3s7SVgrmGqDP7piX2wuuEORzhDdVRA,47
38
- uiprotect-6.6.1.dist-info/RECORD,,
34
+ uiprotect-6.6.3.dist-info/LICENSE,sha256=INx18jhdbVXMEiiBANeKEbrbz57ckgzxk5uutmmcxGk,1111
35
+ uiprotect-6.6.3.dist-info/METADATA,sha256=YnqERLOjUwMMT69t6otj0UKw253NT_-ouDjbXCk22No,11096
36
+ uiprotect-6.6.3.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
37
+ uiprotect-6.6.3.dist-info/entry_points.txt,sha256=J78AUTPrTTxgI3s7SVgrmGqDP7piX2wuuEORzhDdVRA,47
38
+ uiprotect-6.6.3.dist-info/RECORD,,