ALBS-443: Integrate CodeNotary with git updater tool

- Additional metadata for notarizing
This commit is contained in:
soksanichenko 2022-06-21 09:59:43 +03:00
parent e25c5070b0
commit f46eef7df9
1 changed files with 28 additions and 25 deletions

View File

@ -30,38 +30,20 @@ class CasWrapper:
self._cas = local['cas']
self._cas['login']()
def notarize(self, local_git_repo_path: str) -> str:
def notarize(
self,
local_path: str,
metadata: Dict = None,
) -> str:
"""
Wrapper around `cas notarize`
:param local_git_repo_path: path to a local Git repo
:param local_path: path to a local Git repo
:param metadata: additional metadata
:return: hash of notarized commit
:rtype: str
"""
command = self._cas[
'notarize',
local_git_repo_path,
'-o',
'json',
]
result_of_execution = command()
return json.loads(result_of_execution)['hash']
def authenticate(
self,
local_path: str,
metadata: Dict = None,
):
"""
Wrapper around `cas authenticate`
:param local_path: path to a local Git repo
(should be started from `git://`)
or to a single local file
:param metadata: additional metadata
:return: true if a commit is trusted, vice versa - false
:rtype: bool
"""
command = self._cas[
'authenticate',
local_path,
'-o',
'json',
@ -72,6 +54,27 @@ class CasWrapper:
'-a',
f'{key}={value}',
]
result_of_execution = command()
return json.loads(result_of_execution)['hash']
def authenticate(
self,
local_path: str,
):
"""
Wrapper around `cas authenticate`
:param local_path: path to a local Git repo
(should be started from `git://`)
or to a single local file
:return: true if a commit is trusted, vice versa - false
:rtype: bool
"""
command = self._cas[
'authenticate',
local_path,
'-o',
'json',
]
try:
result_of_execution = command()
except ProcessExecutionError: