-
Notifications
You must be signed in to change notification settings - Fork 840
Expand file tree
/
Copy pathtasks.py
More file actions
423 lines (362 loc) · 13.9 KB
/
Copy pathtasks.py
File metadata and controls
423 lines (362 loc) · 13.9 KB
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
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
# Copyright The IETF Trust 2024-2026, All Rights Reserved
#
# Celery task definitions
#
import datetime
from pathlib import Path
from tempfile import NamedTemporaryFile
import requests
from celery import shared_task
from django.conf import settings
from django.utils import timezone
from ietf.doc.models import DocEvent, DocTagName, Document, RelatedDocument, RpcAssignmentDocEvent, State
from ietf.doc.tasks import rebuild_reference_relations_task
from ietf.doc.utils import add_state_change_event, new_state_change_event, update_action_holders
from ietf.person.models import Person
from ietf.utils.mail import send_mail_text
from ietf.sync import iana
from ietf.sync.errata import (
errata_are_dirty,
mark_errata_as_processed,
update_errata_from_rfceditor,
)
from ietf.sync.rfcindex import (
create_bcp_txt_index,
create_fyi_txt_index,
create_rfc_txt_index,
create_rfc_xml_index,
create_std_txt_index,
rfcindex_is_dirty, mark_rfcindex_as_processed, mark_rfcindex_as_dirty,
)
from ietf.sync.utils import (
build_from_file_content,
expand_rfc_number_range_list,
load_rfcs_into_blobdb,
rsync_helper,
)
from ietf.utils import log
@shared_task
def iana_changes_update_task():
# compensate to avoid we ask for something that happened now and then
# don't get it back because our request interval is slightly off
CLOCK_SKEW_COMPENSATION = 5 # seconds
# actually the interface accepts 24 hours, but then we get into
# trouble with daylights savings - meh
MAX_INTERVAL_ACCEPTED_BY_IANA = datetime.timedelta(hours=23)
start = (
timezone.now()
- datetime.timedelta(hours=23)
+ datetime.timedelta(
seconds=CLOCK_SKEW_COMPENSATION,
)
)
end = start + datetime.timedelta(hours=23)
t = start
while t < end:
# the IANA server doesn't allow us to fetch more than a certain
# period, so loop over the requested period and make multiple
# requests if necessary
text = iana.fetch_changes_json(
settings.IANA_SYNC_CHANGES_URL,
t,
min(end, t + MAX_INTERVAL_ACCEPTED_BY_IANA),
)
log.log(f"Retrieved the JSON: {text}")
changes = iana.parse_changes_json(text)
added_events, warnings = iana.update_history_with_changes(
changes, send_email=True
)
for e in added_events:
log.log(
f"Added event for {e.doc_id} {e.time}: {e.desc} (parsed json: {e.json})"
)
for w in warnings:
log.log(f"WARNING: {w}")
t += MAX_INTERVAL_ACCEPTED_BY_IANA
@shared_task
def iana_protocols_update_task():
# Earliest date for which we have data suitable to update (was described as
# "this needs to be the date where this tool is first deployed" in the original
# iana-protocols-updates script)"
rfc_must_published_later_than = datetime.datetime(
2012,
11,
26,
tzinfo=datetime.UTC,
)
try:
response = requests.get(
settings.IANA_SYNC_PROTOCOLS_URL,
timeout=30,
)
except requests.Timeout as exc:
log.log(f"GET request timed out retrieving IANA protocols page: {exc}")
return
rfc_numbers = iana.parse_protocol_page(response.text)
def batched(l, n):
"""Split list l up in batches of max size n.
For Python 3.12 or later, replace this with itertools.batched()
"""
return (l[i : i + n] for i in range(0, len(l), n))
for batch in batched(rfc_numbers, 100):
updated = iana.update_rfc_log_from_protocol_page(
batch,
rfc_must_published_later_than,
)
for d in updated:
log.log("Added history entry for %s" % d.display_name())
@shared_task
def fix_subseries_docevents_task():
"""Repairs DocEvents related to bugs around removing docs from subseries
Removes bogus and repairs the date of non-bogus DocEvents
about removing RFCs from subseries
This is designed to be a one-shot task that should be removed
after running it. It is intended to be safe if it runs more than once.
"""
log.log("Repairing DocEvents related to bugs around removing docs from subseries")
bogus_event_descs = [
"Removed rfc8499 from bcp218",
"Removed rfc7042 from bcp184",
"Removed rfc9499 from bcp238",
"Removed rfc5033 from std74",
"Removed rfc3228 from bcp55",
"Removed rfc8109 from std85",
]
DocEvent.objects.filter(
type="sync_from_rfc_editor", desc__in=bogus_event_descs
).delete()
needs_moment_fix = [
"Removed rfc8499 from bcp219",
"Removed rfc7042 from bcp141",
"Removed rfc5033 from bcp133",
"Removed rfc3228 from bcp57",
]
# Assumptions (which have been manually verified):
# 1) each of the above RFCs is obsoleted by exactly one other RFC
# 2) each of the obsoleting RFCs has exactly one published_rfc docevent
for desc in needs_moment_fix:
obsoleted_rfc_name = desc.split(" ")[1]
obsoleting_rfc = RelatedDocument.objects.get(
relationship_id="obs", target__name=obsoleted_rfc_name
).source
obsoleting_time = obsoleting_rfc.docevent_set.get(type="published_rfc").time
DocEvent.objects.filter(type="sync_from_rfc_editor", desc=desc).update(
time=obsoleting_time
)
@shared_task
def rsync_rfcs_from_rfceditor_task(rfc_numbers: list[int]):
log.log(f"Rsyncing rfcs from rfc-editor: {rfc_numbers}")
from_file = None
with NamedTemporaryFile(mode="w", delete_on_close=False) as fp:
fp.write(build_from_file_content(rfc_numbers))
fp.close()
from_file = Path(fp.name)
rsync_helper(
[
"-a",
"--ignore-existing",
f"--include-from={from_file}",
"--exclude=*",
"rsync.rfc-editor.org::rfcs/",
f"{settings.RFC_PATH}",
]
)
load_rfcs_into_blobdb(rfc_numbers)
rebuild_reference_relations_task.delay([f"rfc{num}" for num in rfc_numbers])
@shared_task
def load_rfcs_into_blobdb_task(start: int, end: int):
"""Move file content for rfcs from rfc{start} to rfc{end} inclusive
As this is expected to be removed once the blobdb is populated, it
will truncate its work to a coded max end.
This will not overwrite any existing blob content, and will only
log a small complaint if asked to load a non-exsiting RFC.
"""
# Protect us from ourselves
if end < start:
return
if start < 1:
start = 1
if end > 11000: # Arbitrarily chosen
end = 11000
load_rfcs_into_blobdb(list(range(start, end + 1)))
@shared_task
def update_errata_from_rfceditor_task():
if errata_are_dirty():
# new_processed_time is the *start* of processing so that any changes after
# this point will trigger another refresh
new_processed_time = timezone.now()
changed_numbers = update_errata_from_rfceditor()
mark_errata_as_processed(new_processed_time)
mark_rfcindex_as_dirty() # ensure any changes are reflected in the indexes
if changed_numbers:
update_rfc_json_task.delay(list(changed_numbers))
@shared_task
def update_rfc_json_by_range_list_task(ranges: str) -> None:
"""Regenerate RFC JSON for the RFCs described by a range-list string
See expand_rfc_number_range_list() for the accepted format (e.g.
"[1,100,1000-1004]"). Invalid input is logged and otherwise ignored.
"""
try:
rfc_numbers = expand_rfc_number_range_list(ranges)
except ValueError as e:
log.log(
f"update_rfc_json_by_range_list_task: ignoring invalid input "
f"'{ranges}': {e}"
)
return
if rfc_numbers:
update_rfc_json_task(rfc_numbers)
@shared_task
def update_rfc_json_task(rfc_numbers: list[int]) -> None:
from ietf.doc.utils_rfc_json import generate_rfc_json
from ietf.sync.rfcindex import get_publication_std_levels
try:
pub_levels = get_publication_std_levels()
except Exception as e:
log.log(f"update_rfc_json_task: failed to get publication std levels: {e}")
return
for rfc_number in rfc_numbers:
try:
generate_rfc_json(rfc_number, pub_levels=pub_levels)
except Exception as e:
log.log(f"update_rfc_json_task: failed for RFC {rfc_number}: {e}")
@shared_task
def refresh_rfc_index_task():
if rfcindex_is_dirty():
# new_processed_time is the *start* of processing so that any changes after
# this point will trigger another refresh
new_processed_time = timezone.now()
try:
create_rfc_txt_index()
except Exception as e:
log.log(f"Error: failure in creating rfc-index.txt. {e}")
pass
try:
create_rfc_xml_index()
except Exception as e:
log.log(f"Error: failure in creating rfc-index.xml. {e}")
pass
try:
create_bcp_txt_index()
except Exception as e:
log.log(f"Error: failure in creating bcp-index.txt. {e}")
pass
try:
create_std_txt_index()
except Exception as e:
log.log(f"Error: failure in creating std-index.txt. {e}")
pass
try:
create_fyi_txt_index()
except Exception as e:
log.log(f"Error: failure in creating fyi-index.txt. {e}")
pass
mark_rfcindex_as_processed(new_processed_time)
@shared_task
def process_rpc_queue_task(data: list):
in_progress_state = State.objects.get(
used=True, type="draft-rfceditor", slug="in_progress"
)
blocked_state = State.objects.get(used=True, type="draft-rfceditor", slug="blocked")
system = Person.objects.get(name="(System)")
iana_ref_tags = list(DocTagName.objects.filter(slug__in=["iana", "ref"]))
names = [obj["name"] for obj in data]
docs_in_db = {
d.name: d for d in Document.objects.filter(type="draft", name__in=names)
}
for obj in data:
name = obj["name"]
if name not in docs_in_db:
log.log(f"process_rpc_queue_task: unknown document {name}")
continue
d = docs_in_db[name]
events = []
prev_state = d.get_state("draft-rfceditor")
# Same check as ietf.sync.rfceditor.update_drafts_from_queue:
# if this document just arrived at the RFC Editor for the first time, record it.
if (
d.get_state_slug("draft-iesg") == "ann"
and not prev_state
and not d.latest_event(DocEvent, type="rfc_editor_received_announcement")
):
e = DocEvent(
doc=d, rev=d.rev, by=system, type="rfc_editor_received_announcement"
)
e.desc = "Announcement was received by RFC Editor"
e.save()
send_mail_text(
None,
"iesg-secretary@ietf.org",
None,
"%s in RFC Editor queue" % d.name,
"The announcement for %s has been received by the RFC Editor." % d.name,
)
prev_iesg_state = State.objects.get(
used=True, type="draft-iesg", slug="ann"
)
next_iesg_state = State.objects.get(
used=True, type="draft-iesg", slug="rfcqueue"
)
d.set_state(next_iesg_state)
e = add_state_change_event(d, system, prev_iesg_state, next_iesg_state)
if e:
events.append(e)
e = update_action_holders(d, prev_iesg_state, next_iesg_state)
if e:
events.append(e)
is_blocked = any(a["role"] == "blocked" for a in obj.get("assignment_set", []))
next_state = blocked_state if is_blocked else in_progress_state
if prev_state != next_state:
d.set_state(next_state)
e = new_state_change_event(d, system, prev_state, next_state)
if e:
e.save()
events.append(e)
roles = sorted(a["role"] for a in obj.get("assignment_set", []))
next_assignments = ", ".join(roles)
blocking_names = sorted(
br["reason"]["name"] for br in obj.get("blocking_reasons", [])
)
if blocking_names:
next_assignments += ": " + ", ".join(blocking_names)
if next_assignments == "":
next_assignments = "Awaiting Editor Assignment"
prev_assignments_event = d.latest_event(
RpcAssignmentDocEvent, type="changed_rpc_assignments"
)
prev_assignments = (
prev_assignments_event.assignments if prev_assignments_event else None
)
if next_assignments != prev_assignments:
e = RpcAssignmentDocEvent(
doc=d,
rev=d.rev,
by=system,
type="changed_rpc_assignments",
assignments=next_assignments,
)
e.desc = f"RPC status changed to {next_assignments}"
if prev_assignments is not None and prev_assignments != "":
e.desc += f" from {prev_assignments}"
e.save()
events.append(e)
rfc_number = obj.get("rfc_number")
if obj.get("final_approval") and rfc_number:
d.documenturl_set.update_or_create(
tag_id="auth48",
defaults=dict(
url=f"{settings.RFC_EDITOR_QUEUE_SITE_BASE_URL}/final-review/rfc{rfc_number}/"
),
)
else:
d.documenturl_set.filter(tag_id="auth48").delete()
d.tags.remove(*iana_ref_tags)
if events:
d.save_with_history(events)
for d in (
Document.objects.exclude(name__in=names)
.filter(states__type="draft-rfceditor")
.distinct()
):
d.tags.remove(*iana_ref_tags)
d.unset_state("draft-rfceditor")