-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathutils.py
31 lines (21 loc) · 861 Bytes
/
utils.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
import hashlib
import hmac
from typing import ByteString
import settings
from models import Body
def create_signature(key: ByteString, message: ByteString) -> str:
return 'sha1=' + hmac.new(key, message, hashlib.sha1).hexdigest()
def check_auth(body: ByteString, outer_sign: str):
inner_sign = create_signature(settings.SECRET_TOKEN.encode(), body)
return hmac.compare_digest(outer_sign, inner_sign)
def prepare_markdown(text: str) -> str:
return text\
.replace('*', '-')\
.replace('### ', '')
def make_message(body: Body) -> str:
release = body.release
verb = body.action.capitalize()
return f'Project: *{body.repository.name}*\n\r' \
f'{verb} release *{release.name} ({release.tag_name})*.' \
f'\n\r\n\r' \
f'*Release notes:* \n\r\n\r{prepare_markdown(release.body)}\n\r'