-
Notifications
You must be signed in to change notification settings - Fork 29
/
mailutil.py
317 lines (261 loc) · 8.93 KB
/
mailutil.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
# SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and Gardener contributors
#
# SPDX-License-Identifier: Apache-2.0
import git
import smtplib
import typing
import ocm
import cnudie.retrieve
import cnudie.util
from model.email import EmailConfig
from ci.util import (
existing_dir,
not_empty,
not_none,
info,
fail,
ctx,
)
from mail import template_mailer as mailer
import ccc.github
import github.codeowners
import version
def send_mail(
email_cfg_name: str,
recipients: typing.Iterable[str],
mail_template_file: str,
subject: str,
cc_recipients: typing.Iterable[str],
replace_token: typing.Iterable[str],
):
'''
Sends an email using the specified email_cfg (retrieved from a cfg_factory) to the specified
recipients. The mail body is read from a file. A simple token-replacement is done if
(optional) replace-tokens are given.
@param recipients: mail recipients (email addresses)
@param mail_template_file: path to the mail template file. Must exist.
@param subject: email subject
@param cc_recipients: cc mail recipients
@param replace_token: format: <token>=<replace-value> - tokens in mail-body are replaced
'''
not_empty(email_cfg_name)
cfg_factory = ctx().cfg_factory()
email_cfg = cfg_factory.email(email_cfg_name)
with open(mail_template_file) as f:
mail_template = f.read()
# validate template-tokens
invalid_tokens = filter(lambda t: not isinstance(t, str) or '=' not in t, replace_token)
if len(list(invalid_tokens)) > 0:
fail('all replace-tokens must be of form <key>=<value>: ' + ' '.join(
invalid_tokens
)
)
# parse replace-tokens
replace_tokens = dict(map(lambda t: t.split('=', 1), replace_token))
_send_mail(
email_cfg=email_cfg,
recipients=recipients,
mail_template=mail_template,
subject=subject,
cc_recipients=cc_recipients,
replace_tokens=replace_tokens,
)
def _send_mail(
email_cfg: EmailConfig,
recipients: typing.Iterable[str],
mail_template: str,
subject: str,
replace_tokens: dict={},
cc_recipients: typing.Iterable[str]=[],
mimetype='text',
):
not_none(email_cfg)
not_empty(recipients)
not_none(mail_template)
not_empty(subject)
# create body from template
mail_body = mailer.create_body(
mail_template=mail_template,
replace_tokens=replace_tokens,
)
recipients = {r.lower() for r in recipients}
cc_recipients = {r.lower() for r in cc_recipients}
sender_name = email_cfg.sender_name()
if email_cfg.use_tls():
smtp_server = smtplib.SMTP_SSL(email_cfg.smtp_host())
else:
smtp_server = smtplib.SMTP(email_cfg.smtp_host())
if email_cfg.has_credentials():
credentials = email_cfg.credentials()
smtp_server.login(user=credentials.username(), password=credentials.passwd())
# create mail envelope
mail = mailer.create_mail(
subject=subject,
sender=sender_name,
recipients=recipients,
cc_recipients=cc_recipients,
text=mail_body,
mimetype=mimetype,
)
recipients.update(cc_recipients)
recipients = email_cfg.filter_recipients(recipients)
smtp_server.send_message(msg=mail, to_addrs=recipients) # from_addr is taken from header
#TODO: refactor into class - MailHelper?
def determine_head_commit_recipients(
src_dirs=(),
):
'''returns a generator yielding e-mail adresses from the head commit's author and
committer for all given repository work trees.
'''
for src_dir in src_dirs:
# commiter/author from head commit
repo = git.Repo(existing_dir(src_dir))
head_commit = repo.commit(repo.head)
yield head_commit.author.email.lower()
yield head_commit.committer.email.lower()
def determine_local_repository_codeowners_recipients(
github_api,
src_dirs=(),
):
'''returns a generator yielding e-mail adresses from all given repository work
tree's CODEOWNERS files.
'''
def enumerate_entries_from_src_dirs(src_dirs):
for src_dir in src_dirs:
yield from github.codeowners.enumerate_codeowners_from_local_repo(
repo_dir=src_dir,
)
entries = enumerate_entries_from_src_dirs(src_dirs)
yield from github.codeowners.resolve_email_addresses(
codeowners_entries=entries,
github_api=github_api,
)
def determine_codeowner_file_recipients(
github_api,
codeowners_files=(),
):
'''returns a generator yielding e-mail adresses from the given CODEOWNERS file(s).
'''
def enumerate_entries_from_codeowners_files(codeowners_files):
for codeowners_file in codeowners_files:
yield from github.codeowners.enumerate_codeowners_from_file(codeowners_file)
entries = enumerate_entries_from_codeowners_files(codeowners_files)
yield from github.codeowners.resolve_email_addresses(
codeowners_entries=entries,
github_api=github_api,
)
def determine_mail_recipients(
github_cfg_name,
src_dirs=(),
components: typing.Sequence[ocm.Component]=(),
component_names=(),
codeowners_files=(),
branch_name='master',
component_descriptor_lookup=None,
version_lookup=None,
):
'''
returns a generator yielding all email addresses for the given (git) repository work tree
Email addresses are looked up:
- from head commit: author and committer
- from *CODEOWNERS files [0]
Email addresses are not de-duplicated (this should be done by consumers)
[0] https://help.github.com/articles/about-codeowners/
'''
if not any((components, component_names, src_dirs, codeowners_files)):
return # nothing to do
if components and component_names:
raise ValueError('only one of components, component_names must be set')
if component_names and not component_descriptor_lookup:
raise ValueError(
'If component_names is given, component_descriptor_lookup must also be given'
)
cfg_factory = ctx().cfg_factory()
github_cfg = cfg_factory.github(github_cfg_name)
github_api = ccc.github.github_api(github_cfg)
yield from determine_head_commit_recipients(src_dirs)
yield from determine_local_repository_codeowners_recipients(
github_api=github_api,
src_dirs=src_dirs,
)
yield from determine_codeowner_file_recipients(
github_api=github_api,
codeowners_files=codeowners_files,
)
if component_names:
entries_and_apis = [
_codeowners_parser_from_component_name(
component_name=component_name,
component_descriptor_lookup=component_descriptor_lookup,
version_lookup=version_lookup,
branch_name=branch_name
) for component_name in component_names
]
elif components:
entries_and_apis = [
_codeowners_parser_from_component(
component=component,
branch_name=branch_name
) for component in components
]
else:
raise ValueError('One of components and component_names must be given')
for api, codeowner_entries in entries_and_apis:
yield from github.codeowners.resolve_email_addresses(
codeowners_entries=codeowner_entries,
github_api=api,
)
def _codeowners_parser_from_component_name(
component_name: str,
component_descriptor_lookup,
version_lookup,
branch_name='master',
):
greatest_version = version.greatest_version(
versions=version_lookup(component_name)
)
component = component_descriptor_lookup((
component_name,
greatest_version,
))
return _codeowners_parser_from_component(
component=component,
branch_name=branch_name,
)
def _codeowners_parser_from_component(
component: ocm.Component,
branch_name: str='master',
):
main_source = cnudie.util.main_source(
component=component,
absent_ok=False,
)
if not main_source.access.type is ocm.AccessType.GITHUB:
raise NotImplementedError(main_source.access.type)
access = main_source.access
github_api = ccc.github.github_api_from_gh_access(access=access)
repo_helper = ccc.github.repo_helper(
host=access.hostname(),
org=access.org_name(),
repo=access.repository_name(),
branch=branch_name,
)
return github_api, github.codeowners.enumerate_codeowners_from_remote_repo(
repo=repo_helper.repository,
)
def notify(
subject: str,
body: str,
email_cfg_name: str,
recipients: typing.Iterable[str],
):
recipients = set(recipients)
cfg_factory = ctx().cfg_factory()
email_cfg = cfg_factory.email(email_cfg_name)
_send_mail(
email_cfg=email_cfg,
recipients=recipients,
mail_template=body,
subject=subject
)
info('sent email to: {r}'.format(r=recipients))