2022-01-15 00:23:50 +00:00
|
|
|
from enum import Enum
|
|
|
|
|
2022-03-23 02:50:12 +00:00
|
|
|
|
2022-01-15 00:23:50 +00:00
|
|
|
class PermissionHelper:
|
|
|
|
@staticmethod
|
|
|
|
def both_have_perm(a: str, b: str, permission_tested: Enum):
|
2022-03-23 02:50:12 +00:00
|
|
|
return permission_helper.combine_perm_bool(
|
|
|
|
a[permission_tested.value], b[permission_tested.value]
|
|
|
|
)
|
2022-01-15 00:23:50 +00:00
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def combine_perm(a: str, b: str) -> str:
|
2022-03-23 02:50:12 +00:00
|
|
|
return "1" if (a == "1" and b == "1") else "0"
|
2022-01-15 00:23:50 +00:00
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def combine_perm_bool(a: str, b: str) -> bool:
|
2022-03-23 02:50:12 +00:00
|
|
|
return a == "1" and b == "1"
|
2022-01-15 00:23:50 +00:00
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def combine_masks(permission_mask_a: str, permission_mask_b: str) -> str:
|
|
|
|
both_masks = zip(list(permission_mask_a), list(permission_mask_b))
|
2022-03-23 02:50:12 +00:00
|
|
|
return "".join(
|
|
|
|
map(lambda x: permission_helper.combine_perm(x[0], x[1]), both_masks)
|
|
|
|
)
|
2022-01-15 00:23:50 +00:00
|
|
|
|
|
|
|
|
|
|
|
permission_helper = PermissionHelper()
|