-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebhook.py
45 lines (34 loc) · 1.65 KB
/
webhook.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
import jsonpatch
from generic_k8s_webhook.jsonpatch_helpers import JsonPatchOperator
from generic_k8s_webhook.operators import Operator
class Action:
def __init__(self, condition: Operator, list_jpatch_op: list[JsonPatchOperator], accept: bool) -> None:
self.condition = condition
self.list_jpatch_op = list_jpatch_op
self.accept = accept
def check_condition(self, manifest: dict) -> bool:
return self.condition.get_value([manifest])
def get_patches(self, manifest: dict) -> jsonpatch.JsonPatch | None:
if not self.list_jpatch_op:
return None
# 1. Generate a json patch specific for the manifest
# 2. Update the manifest based on that patch
# 3. Extract the raw patch, so we can merge later all the patches into a single JsonPatch object
list_raw_patches = []
for jpatch_op in self.list_jpatch_op:
jpatch = jpatch_op.generate_patch(manifest)
manifest = jpatch.apply(manifest)
list_raw_patches.extend(jpatch.patch)
return jsonpatch.JsonPatch(list_raw_patches)
class Webhook:
def __init__(self, name: str, path: str, list_actions: list[Action]) -> None:
self.name = name
self.path = path
self.list_actions = list_actions
def process_manifest(self, manifest: dict) -> tuple[bool, jsonpatch.JsonPatch | None]:
for action in self.list_actions:
if action.check_condition(manifest):
patches = action.get_patches(manifest)
return action.accept, patches
# If no condition is met, we'll accept the manifest without any patch
return True, None