assemblyline-v4-service 4.5.1.dev174__py3-none-any.whl → 4.5.1.dev177__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 assemblyline-v4-service might be problematic. Click here for more details.

@@ -1 +1 @@
1
- 4.5.1.dev174
1
+ 4.5.1.dev177
@@ -136,13 +136,19 @@ class SyncableSignatureClient(SignatureClient):
136
136
  if isinstance(d, SignatureModel):
137
137
  d = d.as_primitives()
138
138
 
139
+ # Compute the expected signature ID
140
+ sig_id = f"{sig_type}_{source}_{d['signature_id']}"
141
+ sig_exists = self.datastore.signature.get_if_exists(sig_id, as_obj=False)
142
+ if sig_exists and sig_exists['state_change_user'] not in ['update_service_account', None]:
143
+ # Preserve status set by an actual user
144
+ d['status'] = sig_exists['status']
145
+ d['state_change_user'] = sig_exists['state_change_user']
146
+
139
147
  if self.sync:
140
- # Compute the expected signature ID and add it to the list
141
- sig_id = f"{sig_type}_{source}_{d['signature_id']}"
148
+ # Add signature ID to the list
142
149
  current_signature_ids.add(sig_id)
143
150
 
144
151
  # Check to see if there's any important changes made
145
- sig_exists: SignatureModel = self.datastore.signature.get_if_exists(sig_id, as_obj=False)
146
152
  if sig_exists and all(sig_exists[attr] == d[attr] for attr in ['status', 'data', 'classification']):
147
153
  # If no changes, then use the old `last_modified` value
148
154
  d['last_modified'] = sig_exists['last_modified']
@@ -249,6 +249,10 @@ class ServiceUpdater(ThreadedCoreBase):
249
249
  # Download the service object from datastore
250
250
  self._service = self.datastore.get_service_with_delta(SERVICE_NAME)
251
251
 
252
+ # Update signature client with any changes to classification rewrites
253
+ self.client.signature.classification_replace_map = \
254
+ self._service.config.get('updater', {}).get('classification_replace', {})
255
+
252
256
  # If the update configuration for the service has changed, trigger an update
253
257
  if self.config_hash(self._service) != self.get_active_config_hash():
254
258
  self.source_update_flag.set()
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: assemblyline-v4-service
3
- Version: 4.5.1.dev174
3
+ Version: 4.5.1.dev177
4
4
  Summary: Assemblyline 4 - Service base
5
5
  Home-page: https://github.com/CybercentreCanada/assemblyline-v4-service/
6
6
  Author: CCCS Assemblyline development team
@@ -1,4 +1,4 @@
1
- assemblyline_v4_service/VERSION,sha256=Y0s4bc5iWvVlJE-JsyWv2maXm3sf3eCETq52ZheJvK8,13
1
+ assemblyline_v4_service/VERSION,sha256=jH7afe7HrzGYi-ZsGX7-BkacMRA7kIt_VGyh556gtvk,13
2
2
  assemblyline_v4_service/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3
3
  assemblyline_v4_service/healthz.py,sha256=sS1cFkDLw8hUPMpj7tbHXFv8ZmHcazrwZ0l6oQDwwkQ,1575
4
4
  assemblyline_v4_service/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -19,10 +19,10 @@ assemblyline_v4_service/dev/run_service_once.py,sha256=4K3ljw0MnfPGw0-6lzc_vtUYg
19
19
  assemblyline_v4_service/updater/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
20
20
  assemblyline_v4_service/updater/__main__.py,sha256=9Os-u8Tf7MD73JSrUSPmOaErTgfvesNLiEeszU4ujXA,133
21
21
  assemblyline_v4_service/updater/app.py,sha256=Mtmx4bkXfP4nFqqa5q15jW8QIXr4JK84lCovxAVyvPs,3317
22
- assemblyline_v4_service/updater/client.py,sha256=oOOIzh-Q-b5uOTo3C4rVSfQxqUO5Y_ogDmUhvWfm5uo,9518
22
+ assemblyline_v4_service/updater/client.py,sha256=7_56Ie-2073FlrVWscS-3lIIkg8F-81u97FVNqEJLyQ,9798
23
23
  assemblyline_v4_service/updater/gunicorn_config.py,sha256=p3j2KPBeD5jvMw9O5i7vAtlRgPSVVxIG9AO0DfN82J8,1247
24
24
  assemblyline_v4_service/updater/helper.py,sha256=-B35wdjpeY4t1R9SPDrTFHFKHwE3uzy9N69mV6mHy-g,9532
25
- assemblyline_v4_service/updater/updater.py,sha256=6LFvqBkNu6mDaBKZGEaFGtE8g3DtDNBYWt8jXx6fnOw,29507
25
+ assemblyline_v4_service/updater/updater.py,sha256=XxISsgQGzMjI8G55SEQbWo0xgY7PpExFBDVMIwHjD_Q,29733
26
26
  test/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
27
27
  test/conftest.py,sha256=W3SieQpZsZpGEmtLqY4aIlxREDSsHceyCrFcFsWUM0U,1851
28
28
  test/test_healthz.py,sha256=DkeLUlrb7rGx3nZ04aADU9HXXu5mZTf_DBwT0xhzIv4,7
@@ -38,8 +38,8 @@ test/test_common/test_request.py,sha256=Ceyds8BNO1O0f1kH1VEb84faJcaupvSjVKIrGdHe
38
38
  test/test_common/test_result.py,sha256=6BiOKxEPrKBjOY44jv3TY-yiXm0qI1ok_CZBnjP9TM4,45447
39
39
  test/test_common/test_task.py,sha256=P44mNcSe-3tJgDk9ppN3KbM7oN4LBVIuhONG-Gveh74,19007
40
40
  test/test_common/test_utils.py,sha256=TbnBxqpS_ZC5ptXR9XJX3xtbItD0mTbtiBxxdyP8J5k,5904
41
- assemblyline_v4_service-4.5.1.dev174.dist-info/LICENCE.md,sha256=NSkYo9EH8h5oOkzg4VhjAHF4339MqPP2cQ8msTPgl-c,1396
42
- assemblyline_v4_service-4.5.1.dev174.dist-info/METADATA,sha256=Lp5XW8YfqSjY5UVwLTT2ljkBMabA_NUUiEGqI1bxYkM,9499
43
- assemblyline_v4_service-4.5.1.dev174.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
44
- assemblyline_v4_service-4.5.1.dev174.dist-info/top_level.txt,sha256=LpTOEaVCatkrvbVq3EZseMSIa2PQZU-2rhuO_FTpZgY,29
45
- assemblyline_v4_service-4.5.1.dev174.dist-info/RECORD,,
41
+ assemblyline_v4_service-4.5.1.dev177.dist-info/LICENCE.md,sha256=NSkYo9EH8h5oOkzg4VhjAHF4339MqPP2cQ8msTPgl-c,1396
42
+ assemblyline_v4_service-4.5.1.dev177.dist-info/METADATA,sha256=_m_pmeVxn9ysNP2tB8Nx22H4E3FUh5F5vOdUqLVXrP4,9499
43
+ assemblyline_v4_service-4.5.1.dev177.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
44
+ assemblyline_v4_service-4.5.1.dev177.dist-info/top_level.txt,sha256=LpTOEaVCatkrvbVq3EZseMSIa2PQZU-2rhuO_FTpZgY,29
45
+ assemblyline_v4_service-4.5.1.dev177.dist-info/RECORD,,