and email the Secretariet when a draft sent to the RFC Editor ends up in the queue, split it up so it's easier to test; also moved the location of the binaries to bin/ - Legacy-Id: 4848
36 lines
900 B
Python
Executable file
36 lines
900 B
Python
Executable file
#!/usr/bin/env python
|
|
|
|
import os, sys, re, json, datetime
|
|
import syslog
|
|
|
|
syslog.openlog(os.path.basename(__file__), syslog.LOG_PID, syslog.LOG_LOCAL0)
|
|
|
|
# boilerplate
|
|
basedir = os.path.abspath(os.path.join(os.path.dirname(__file__), "../.."))
|
|
sys.path = [ basedir ] + sys.path
|
|
|
|
from ietf import settings
|
|
from django.core import management
|
|
management.setup_environ(settings)
|
|
|
|
|
|
from ietf.sync.rfceditor import *
|
|
|
|
syslog.syslog("Updating RFC Editor queue states from %s" % QUEUE_URL)
|
|
|
|
response = fetch_queue_xml(QUEUE_URL)
|
|
drafts, warnings = parse_queue(response)
|
|
for w in warnings:
|
|
syslog.syslog(u"WARNING: %s" % w)
|
|
|
|
if len(drafts) < MIN_QUEUE_RESULTS:
|
|
syslog.syslog("Not enough results, only %s" % len(drafts))
|
|
sys.exit(1)
|
|
|
|
changed, warnings = update_drafts_from_queue(drafts)
|
|
for w in warnings:
|
|
syslog.syslog(u"WARNING: %s" % w)
|
|
|
|
for c in changed:
|
|
syslog.syslog(u"Updated %s" % c)
|