uiprotect 3.6.0__tar.gz → 3.7.0__tar.gz
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-3.6.0 → uiprotect-3.7.0}/PKG-INFO +1 -1
- {uiprotect-3.6.0 → uiprotect-3.7.0}/pyproject.toml +1 -1
- {uiprotect-3.6.0 → uiprotect-3.7.0}/src/uiprotect/data/nvr.py +27 -24
- {uiprotect-3.6.0 → uiprotect-3.7.0}/src/uiprotect/data/websocket.py +7 -4
- {uiprotect-3.6.0 → uiprotect-3.7.0}/LICENSE +0 -0
- {uiprotect-3.6.0 → uiprotect-3.7.0}/README.md +0 -0
- {uiprotect-3.6.0 → uiprotect-3.7.0}/src/uiprotect/__init__.py +0 -0
- {uiprotect-3.6.0 → uiprotect-3.7.0}/src/uiprotect/__main__.py +0 -0
- {uiprotect-3.6.0 → uiprotect-3.7.0}/src/uiprotect/api.py +0 -0
- {uiprotect-3.6.0 → uiprotect-3.7.0}/src/uiprotect/cli/__init__.py +0 -0
- {uiprotect-3.6.0 → uiprotect-3.7.0}/src/uiprotect/cli/backup.py +0 -0
- {uiprotect-3.6.0 → uiprotect-3.7.0}/src/uiprotect/cli/base.py +0 -0
- {uiprotect-3.6.0 → uiprotect-3.7.0}/src/uiprotect/cli/cameras.py +0 -0
- {uiprotect-3.6.0 → uiprotect-3.7.0}/src/uiprotect/cli/chimes.py +0 -0
- {uiprotect-3.6.0 → uiprotect-3.7.0}/src/uiprotect/cli/doorlocks.py +0 -0
- {uiprotect-3.6.0 → uiprotect-3.7.0}/src/uiprotect/cli/events.py +0 -0
- {uiprotect-3.6.0 → uiprotect-3.7.0}/src/uiprotect/cli/lights.py +0 -0
- {uiprotect-3.6.0 → uiprotect-3.7.0}/src/uiprotect/cli/liveviews.py +0 -0
- {uiprotect-3.6.0 → uiprotect-3.7.0}/src/uiprotect/cli/nvr.py +0 -0
- {uiprotect-3.6.0 → uiprotect-3.7.0}/src/uiprotect/cli/sensors.py +0 -0
- {uiprotect-3.6.0 → uiprotect-3.7.0}/src/uiprotect/cli/viewers.py +0 -0
- {uiprotect-3.6.0 → uiprotect-3.7.0}/src/uiprotect/data/__init__.py +0 -0
- {uiprotect-3.6.0 → uiprotect-3.7.0}/src/uiprotect/data/base.py +0 -0
- {uiprotect-3.6.0 → uiprotect-3.7.0}/src/uiprotect/data/bootstrap.py +0 -0
- {uiprotect-3.6.0 → uiprotect-3.7.0}/src/uiprotect/data/convert.py +0 -0
- {uiprotect-3.6.0 → uiprotect-3.7.0}/src/uiprotect/data/devices.py +0 -0
- {uiprotect-3.6.0 → uiprotect-3.7.0}/src/uiprotect/data/types.py +0 -0
- {uiprotect-3.6.0 → uiprotect-3.7.0}/src/uiprotect/data/user.py +0 -0
- {uiprotect-3.6.0 → uiprotect-3.7.0}/src/uiprotect/exceptions.py +0 -0
- {uiprotect-3.6.0 → uiprotect-3.7.0}/src/uiprotect/py.typed +0 -0
- {uiprotect-3.6.0 → uiprotect-3.7.0}/src/uiprotect/release_cache.json +0 -0
- {uiprotect-3.6.0 → uiprotect-3.7.0}/src/uiprotect/stream.py +0 -0
- {uiprotect-3.6.0 → uiprotect-3.7.0}/src/uiprotect/test_util/__init__.py +0 -0
- {uiprotect-3.6.0 → uiprotect-3.7.0}/src/uiprotect/test_util/anonymize.py +0 -0
- {uiprotect-3.6.0 → uiprotect-3.7.0}/src/uiprotect/utils.py +0 -0
- {uiprotect-3.6.0 → uiprotect-3.7.0}/src/uiprotect/websocket.py +0 -0
|
@@ -1024,7 +1024,7 @@ class NVR(ProtectDeviceModel):
|
|
|
1024
1024
|
|
|
1025
1025
|
@property
|
|
1026
1026
|
def is_analytics_enabled(self) -> bool:
|
|
1027
|
-
return self.analytics_data
|
|
1027
|
+
return self.analytics_data is not AnalyticsOption.NONE
|
|
1028
1028
|
|
|
1029
1029
|
@property
|
|
1030
1030
|
def protect_url(self) -> str:
|
|
@@ -1037,7 +1037,7 @@ class NVR(ProtectDeviceModel):
|
|
|
1037
1037
|
@property
|
|
1038
1038
|
def vault_cameras(self) -> list[Camera]:
|
|
1039
1039
|
"""Vault Cameras for NVR"""
|
|
1040
|
-
if
|
|
1040
|
+
if not self.vault_camera_ids:
|
|
1041
1041
|
return []
|
|
1042
1042
|
return [self._api.bootstrap.cameras[c] for c in self.vault_camera_ids]
|
|
1043
1043
|
|
|
@@ -1050,32 +1050,34 @@ class NVR(ProtectDeviceModel):
|
|
|
1050
1050
|
motion/smart detection events.
|
|
1051
1051
|
"""
|
|
1052
1052
|
return (
|
|
1053
|
-
self.global_camera_settings is not None
|
|
1054
|
-
and
|
|
1053
|
+
(global_camera_settings := self.global_camera_settings) is not None
|
|
1054
|
+
and global_camera_settings.recording_settings.mode
|
|
1055
1055
|
is not RecordingMode.NEVER
|
|
1056
1056
|
)
|
|
1057
1057
|
|
|
1058
1058
|
@property
|
|
1059
1059
|
def is_smart_detections_enabled(self) -> bool:
|
|
1060
1060
|
"""If smart detected enabled globally."""
|
|
1061
|
-
return
|
|
1061
|
+
return (
|
|
1062
|
+
smart_detection := self.smart_detection
|
|
1063
|
+
) is not None and smart_detection.enable
|
|
1062
1064
|
|
|
1063
1065
|
@property
|
|
1064
1066
|
def is_license_plate_detections_enabled(self) -> bool:
|
|
1065
1067
|
"""If smart detected enabled globally."""
|
|
1066
1068
|
return (
|
|
1067
|
-
self.smart_detection is not None
|
|
1068
|
-
and
|
|
1069
|
-
and
|
|
1069
|
+
(smart_detection := self.smart_detection) is not None
|
|
1070
|
+
and smart_detection.enable
|
|
1071
|
+
and smart_detection.license_plate_recognition
|
|
1070
1072
|
)
|
|
1071
1073
|
|
|
1072
1074
|
@property
|
|
1073
1075
|
def is_face_detections_enabled(self) -> bool:
|
|
1074
1076
|
"""If smart detected enabled globally."""
|
|
1075
1077
|
return (
|
|
1076
|
-
self.smart_detection is not None
|
|
1077
|
-
and
|
|
1078
|
-
and
|
|
1078
|
+
(smart_detection := self.smart_detection) is not None
|
|
1079
|
+
and smart_detection.enable
|
|
1080
|
+
and smart_detection.face_recognition
|
|
1079
1081
|
)
|
|
1080
1082
|
|
|
1081
1083
|
def update_all_messages(self) -> None:
|
|
@@ -1309,9 +1311,8 @@ class NVR(ProtectDeviceModel):
|
|
|
1309
1311
|
def _is_smart_enabled(self, smart_type: SmartDetectObjectType) -> bool:
|
|
1310
1312
|
return (
|
|
1311
1313
|
self.is_global_recording_enabled
|
|
1312
|
-
and self.global_camera_settings is not None
|
|
1313
|
-
and smart_type
|
|
1314
|
-
in self.global_camera_settings.smart_detect_settings.object_types
|
|
1314
|
+
and (global_camera_settings := self.global_camera_settings) is not None
|
|
1315
|
+
and smart_type in global_camera_settings.smart_detect_settings.object_types
|
|
1315
1316
|
)
|
|
1316
1317
|
|
|
1317
1318
|
@property
|
|
@@ -1326,11 +1327,13 @@ class NVR(ProtectDeviceModel):
|
|
|
1326
1327
|
def is_global_person_tracking_enabled(self) -> bool:
|
|
1327
1328
|
"""Is person tracking enabled"""
|
|
1328
1329
|
return (
|
|
1329
|
-
self.global_camera_settings is not None
|
|
1330
|
-
and
|
|
1330
|
+
(global_camera_settings := self.global_camera_settings) is not None
|
|
1331
|
+
and (
|
|
1332
|
+
auto_tracking_object_types
|
|
1333
|
+
:= global_camera_settings.smart_detect_settings.auto_tracking_object_types
|
|
1334
|
+
)
|
|
1331
1335
|
is not None
|
|
1332
|
-
and SmartDetectObjectType.PERSON
|
|
1333
|
-
in self.global_camera_settings.smart_detect_settings.auto_tracking_object_types
|
|
1336
|
+
and SmartDetectObjectType.PERSON in auto_tracking_object_types
|
|
1334
1337
|
)
|
|
1335
1338
|
|
|
1336
1339
|
@property
|
|
@@ -1366,15 +1369,15 @@ class NVR(ProtectDeviceModel):
|
|
|
1366
1369
|
return self._is_smart_enabled(SmartDetectObjectType.ANIMAL)
|
|
1367
1370
|
|
|
1368
1371
|
def _is_audio_enabled(self, smart_type: SmartDetectObjectType) -> bool:
|
|
1369
|
-
audio_type = smart_type.audio_type
|
|
1370
1372
|
return (
|
|
1371
|
-
audio_type is not None
|
|
1373
|
+
(audio_type := smart_type.audio_type) is not None
|
|
1372
1374
|
and self.is_global_recording_enabled
|
|
1373
|
-
and self.global_camera_settings is not None
|
|
1374
|
-
and
|
|
1375
|
+
and (global_camera_settings := self.global_camera_settings) is not None
|
|
1376
|
+
and (
|
|
1377
|
+
audio_types := global_camera_settings.smart_detect_settings.audio_types
|
|
1378
|
+
)
|
|
1375
1379
|
is not None
|
|
1376
|
-
and audio_type
|
|
1377
|
-
in self.global_camera_settings.smart_detect_settings.audio_types
|
|
1380
|
+
and audio_type in audio_types
|
|
1378
1381
|
)
|
|
1379
1382
|
|
|
1380
1383
|
@property
|
|
@@ -46,8 +46,12 @@ class WSSubscriptionMessage:
|
|
|
46
46
|
old_obj: ProtectModelWithId | None = None
|
|
47
47
|
|
|
48
48
|
|
|
49
|
+
_PACKET_STRUCT = struct.Struct("!bbbbi")
|
|
50
|
+
|
|
51
|
+
|
|
49
52
|
class BaseWSPacketFrame:
|
|
50
|
-
|
|
53
|
+
unpack = _PACKET_STRUCT.unpack
|
|
54
|
+
pack = _PACKET_STRUCT.pack
|
|
51
55
|
|
|
52
56
|
data: Any
|
|
53
57
|
position: int = 0
|
|
@@ -102,7 +106,7 @@ class BaseWSPacketFrame:
|
|
|
102
106
|
deflated,
|
|
103
107
|
unknown,
|
|
104
108
|
payload_size,
|
|
105
|
-
) = BaseWSPacketFrame.
|
|
109
|
+
) = BaseWSPacketFrame.unpack(
|
|
106
110
|
data[position:header_end],
|
|
107
111
|
)
|
|
108
112
|
except struct.error as e:
|
|
@@ -134,8 +138,7 @@ class BaseWSPacketFrame:
|
|
|
134
138
|
raise WSEncodeError("No header to encode")
|
|
135
139
|
|
|
136
140
|
data = self.get_binary_from_data()
|
|
137
|
-
header =
|
|
138
|
-
"!bbbbi",
|
|
141
|
+
header = self.pack(
|
|
139
142
|
self.header.packet_type,
|
|
140
143
|
self.header.payload_format,
|
|
141
144
|
self.header.deflated,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|