]> git.decadent.org.uk Git - dak.git/blobdiff - dak/new_security_install.py
Debug suites might also miss the source package
[dak.git] / dak / new_security_install.py
index 3d8c6daea18a6522add671b1b2822bfab667b7eb..7d4603d5811ebcc21b3dc5b24e9f3a4cb77ba5eb 100755 (executable)
 #!/usr/bin/env python
 
-import katie, logging, utils, db_access
-import apt_pkg, os, sys, pwd, time, re, commands
+"""
+Do whatever is needed to get a security upload released
 
-re_taint_free = re.compile(r"^['/;\-\+\.\s\w]+$");
+@contact: Debian FTP Master <ftpmaster@debian.org>
+@copyright: 2010 Joerg Jaspert <joerg@debian.org>
+@license: GNU General Public License version 2 or later
+"""
 
-Cnf = None
-Options = None
-Katie = None
-Logger = None
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
 
-advisory = None
-changes = []
-srcverarches = {}
-
-def init():
-    global Cnf, Katie, Options, Logger
-
-    Cnf = utils.get_conf()
-    Cnf["Dinstall::Options::No-Mail"] = "y"
-    Arguments = [('h', "help", "Amber::Options::Help"),
-                 ('a', "automatic", "Amber::Options::Automatic"),
-                 ('n', "no-action", "Amber::Options::No-Action"),
-                ('s', "sudo", "Amber::Options::Sudo"),
-                (' ', "no-upload", "Amber::Options::No-Upload"),
-                (' ', "drop-advisory", "Amber::Options::Drop-Advisory"),
-                ('A', "approve", "Amber::Options::Approve"),
-                ('R', "reject", "Amber::Options::Reject"),
-                ('D', "disembargo", "Amber::Options::Disembargo") ]
-
-    for i in Arguments:
-         Cnf[i[2]] = ""
-
-    arguments = apt_pkg.ParseCommandLine(Cnf, Arguments, sys.argv)
-
-    Options = Cnf.SubTree("Amber::Options")
-
-    whoami = os.getuid()
-    whoamifull = pwd.getpwuid(whoami)
-    username = whoamifull[0]
-    if username != "katie":
-        print "Non-katie user: %s" % username
-        Options["Sudo"] = "y"
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
 
-    if Options["Help"]:
-        print "help yourself"
-       sys.exit(0)
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
-    if len(arguments) == 0:
-       utils.fubar("Process what?")
+################################################################################
 
-    Katie = katie.Katie(Cnf)
-    if not Options["Sudo"] and not Options["No-Action"]:
-        Logger = Katie.Logger = logging.Logger(Cnf, "newamber")
 
-    return arguments
+################################################################################
 
-def quit():
-    if Logger:
-        Logger.close()
-    sys.exit(0)
+import os
+import sys
+import time
+import apt_pkg
+import commands
 
-def load_args(arguments):
-    global advisory, changes
+from daklib import queue
+from daklib import daklog
+from daklib import utils
+from daklib.dbconn import *
+from daklib.regexes import re_taint_free
+from daklib.config import Config
 
-    adv_ids = {}
-    if not arguments[0].endswith(".changes"):
-       adv_ids [arguments[0]] = 1
-       arguments = arguments[1:]
+Options = None
+Logger = None
+Queue = None
+changes = []
 
-    null_adv_changes = []
+def usage():
+    print """Usage: dak security-install [OPTIONS] changesfiles
+Do whatever there is to do for a security release
 
-    changesfiles = {}
-    for a in arguments:
-        if "/" in a:
-            utils.fubar("can only deal with files in the current directory")
-        if not a.endswith(".changes"):
-            utils.fubar("not a .changes file: %s" % (a))
-        Katie.init_vars()
-        Katie.pkg.changes_file = a
-        Katie.update_vars()
-        if "adv id" in Katie.pkg.changes:
-            changesfiles[a] = 1
-            adv_ids[Katie.pkg.changes["adv id"]] = 1
-        else:
-            null_adv_changes.append(a)
-
-    adv_ids = adv_ids.keys()
-    if len(adv_ids) > 1:
-        utils.fubar("multiple advisories selected: %s" % (", ".join(adv_ids)))
-    if adv_ids == []:
-        advisory = None
-    else:
-        advisory = adv_ids[0]
+    -h, --help                 show this help and exit
+    -n, --no-action            don't commit changes
+    -s, --sudo                 dont bother, used internally
 
-    changes = changesfiles.keys()
-    return null_adv_changes
-
-def load_adv_changes():
-    global srcverarches, changes
-
-    for c in os.listdir("."):
-        if not c.endswith(".changes"): continue
-        Katie.init_vars()
-        Katie.pkg.changes_file = c
-        Katie.update_vars()
-        if "adv id" not in Katie.pkg.changes:
-           continue
-       if Katie.pkg.changes["adv id"] != advisory:
-           continue
-
-       if c not in changes: changes.append(c)
-        srcver = "%s %s" % (Katie.pkg.changes["source"], 
-                           Katie.pkg.changes["version"])
-        srcverarches.setdefault(srcver, {})
-        for arch in Katie.pkg.changes["architecture"].keys():
-            srcverarches[srcver][arch] = 1
-
-def advisory_info():
-    if advisory != None:
-        print "Advisory: %s" % (advisory)
-    print "Changes:"
-    for c in changes:
-        print " %s" % (c)
-
-    print "Packages:"
-    svs = srcverarches.keys()
-    svs.sort()
-    for sv in svs:
-        as = srcverarches[sv].keys()
-        as.sort()
-        print " %s (%s)" % (sv, ", ".join(as))
-
-def prompt(opts, default):
-    p = ""
-    v = {}
-    for o in opts:
-        v[o[0].upper()] = o
-        if o[0] == default:
-           p += ", [%s]%s" % (o[0], o[1:])
-       else:
-           p += ", " + o
-    p = p[2:] + "? "
-    a = None
-
-    if Options["Automatic"]:
-        a = default
-
-    while a not in v:
-        a = utils.our_raw_input(p) + default
-       a = a[:1].upper()
-       
-    return v[a]
-
-def add_changes(extras):
-    for c in extras:
-       changes.append(c)
-        Katie.init_vars()
-        Katie.pkg.changes_file = c
-        Katie.update_vars()
-        srcver = "%s %s" % (Katie.pkg.changes["source"], Katie.pkg.changes["version"])
-        srcverarches.setdefault(srcver, {})
-        for arch in Katie.pkg.changes["architecture"].keys():
-            srcverarches[srcver][arch] = 1
-       Katie.pkg.changes["adv id"] = advisory
-       Katie.dump_vars(os.getcwd())
-
-def yes_no(prompt):
-    if Options["Automatic"]: return True
-    while 1:
-        answer = utils.our_raw_input(prompt + " ").lower()
-       if answer in "yn":
-           return answer == "y"
-       print "Invalid answer; please try again."
-
-def do_upload():
-    if Options["No-Upload"]:
-        print "Not uploading as requested"
-       return
-
-    print "Would upload to ftp-master" # XXX
-
-def generate_advisory(template):
-    global changes, advisory
-
-    adv_packages = []
-    updated_pkgs = {};  # updated_pkgs[distro][arch][file] = {path,md5,size}
-
-    for arg in changes:
-        arg = utils.validate_changes_file_arg(arg)
-       Katie.pkg.changes_file = arg
-       Katie.init_vars()
-       Katie.update_vars()
-
-        src = Katie.pkg.changes["source"]
-       src_ver = "%s (%s)" % (src, Katie.pkg.changes["version"])
-       if src_ver not in adv_packages:
-           adv_packages.append(src_ver)
-
-       suites = Katie.pkg.changes["distribution"].keys()
-       for suite in suites:
-           if not updated_pkgs.has_key(suite):
-                updated_pkgs[suite] = {}
-
-       files = Katie.pkg.files
-       for file in files.keys():
-           arch = files[file]["architecture"]
-           md5 = files[file]["md5sum"]
-           size = files[file]["size"]
-           poolname = Cnf["Dir::PoolRoot"] + \
-               utils.poolify(src, files[file]["component"])
-           if arch == "source" and file.endswith(".dsc"):
-               dscpoolname = poolname
-           for suite in suites:
-               if not updated_pkgs[suite].has_key(arch):
-                   updated_pkgs[suite][arch] = {}
-               updated_pkgs[suite][arch][file] = {
-                    "md5": md5, "size": size, "poolname": poolname }
-
-       dsc_files = Katie.pkg.dsc_files
-       for file in dsc_files.keys():
-           arch = "source"
-           if not dsc_files[file].has_key("files id"):
-                continue
-
-           # otherwise, it's already in the pool and needs to be
-           # listed specially
-           md5 = dsc_files[file]["md5sum"]
-           size = dsc_files[file]["size"]
-           for suite in suites:
-               if not updated_pkgs[suite].has_key(arch):
-                   updated_pkgs[suite][arch] = {}
-               updated_pkgs[suite][arch][file] = {
-                    "md5": md5, "size": size, "poolname": dscpoolname }
-
-    if os.environ.has_key("SUDO_UID"):
-        whoami = long(os.environ["SUDO_UID"])
-    else:
-        whoami = os.getuid()
-    whoamifull = pwd.getpwuid(whoami)
-    username = whoamifull[4].split(",")[0]
-
-    Subst = {
-       "__ADVISORY__": advisory,
-       "__WHOAMI__": username,
-       "__DATE__": time.strftime("%B %d, %Y", time.gmtime(time.time())),
-       "__PACKAGE__": ", ".join(adv_packages),
-        "__KATIE_ADDRESS__": Cnf["Dinstall::MyEmailAddress"]
-        }
-
-    if Cnf.has_key("Dinstall::Bcc"):
-        Subst["__BCC__"] = "Bcc: %s" % (Cnf["Dinstall::Bcc"])
-
-    adv = ""
-    archive = Cnf["Archive::%s::PrimaryMirror" % (utils.where_am_i())]
-    for suite in updated_pkgs.keys():
-        ver = Cnf["Suite::%s::Version" % suite]
-       if ver != "": ver += " "
-        suite_header = "%s %s(%s)" % (Cnf["Dinstall::MyDistribution"],
-                                       ver, suite)
-        adv += "%s\n%s\n\n" % (suite_header, "-"*len(suite_header))
-
-       arches = Cnf.ValueList("Suite::%s::Architectures" % suite)
-       if "source" in arches:
-            arches.remove("source")
-       if "all" in arches:
-            arches.remove("all")
-       arches.sort()
-
-       adv += "%s updates are available for %s.\n\n" % (
-               suite.capitalize(), utils.join_with_commas_and(arches))
-
-       for a in ["source", "all"] + arches:
-           if not updated_pkgs[suite].has_key(a):
-                continue
-
-           if a == "source":
-               adv += "Source archives:\n\n"
-           elif a == "all":
-               adv += "Architecture independent packages:\n\n"
-           else:
-               adv += "%s architecture (%s)\n\n" % (a,
-                       Cnf["Architectures::%s" % a])
-
-           for file in updated_pkgs[suite][a].keys():
-               adv += "  http://%s/%s%s\n" % (
-                               archive, updated_pkgs[suite][a][file]["poolname"], file)
-               adv += "    Size/MD5 checksum: %8s %s\n" % (
-                       updated_pkgs[suite][a][file]["size"],
-                       updated_pkgs[suite][a][file]["md5"])
-           adv += "\n"
-    adv = adv.rstrip()
-
-    Subst["__ADVISORY_TEXT__"] = adv
-
-    adv = utils.TemplateSubst(Subst, template)
-    return adv
+"""
+    sys.exit()
 
 
 def spawn(command):
@@ -309,7 +68,6 @@ def spawn(command):
         if (result != 0):
             utils.fubar("Invocation of '%s' failed:\n%s\n" % (command, output), result)
 
-
 ##################### ! ! ! N O T E ! ! !  #####################
 #
 # These functions will be reinvoked by semi-priveleged users, be careful not
@@ -319,10 +77,8 @@ def spawn(command):
 
 def sudo(arg, fn, exit):
     if Options["Sudo"]:
-        if advisory == None:
-           utils.fubar("Must set advisory name")
-        os.spawnl(os.P_WAIT, "/usr/bin/sudo","/usr/bin/sudo", "-u", "katie", "-H", 
-          "/org/security.debian.org/katie/newamber", "-"+arg, "--", advisory)
+        os.spawnl(os.P_WAIT, "/usr/bin/sudo", "/usr/bin/sudo", "-u", "dak", "-H",
+                  "/usr/local/bin/dak", "new-security-install", "-"+arg)
     else:
         fn()
     if exit:
@@ -330,220 +86,110 @@ def sudo(arg, fn, exit):
 
 def do_Approve(): sudo("A", _do_Approve, True)
 def _do_Approve():
-    # 1. dump advisory in drafts
-    draft = "/org/security.debian.org/advisories/drafts/%s" % (advisory)
-    print "Advisory in %s" % (draft)
-    if not Options["No-Action"]:
-        adv_file = "./advisory.%s" % (advisory)
-        if not os.path.exists(adv_file):
-            adv_file = Cnf["Dir::Templates"]+"/amber.advisory"
-        adv_fd = os.open(draft, os.O_RDWR|os.O_CREAT|os.O_EXCL, 0664)
-        os.write(adv_fd, generate_advisory(adv_file))
-        os.close(adv_fd)
-        adv_fd = None
-
-    # 2. run kelly on changes
-    print "Accepting packages..."
-    spawn("%s/kelly -pa %s" % (Cnf["Dir::Katie"], " ".join(changes)))
-
-    # 3. run jenna / apt-ftparchve / ziyi / tiffani
-    if not Options["No-Action"]:
-        os.chdir(Cnf["Dir::Katie"])
-
-    print "Updating file lists for apt-ftparchive..."
-    spawn("./jenna")
-    print "Updating Packages and Sources files..."
-    spawn("apt-ftparchive generate %s" % (utils.which_apt_conf_file()))
-    print "Updating Release files..."
-    spawn("./ziyi")
-    print "Triggering security mirrors..."
-    spawn("sudo -u archvsync /home/archvsync/signal_security")
-
-    # 4. chdir to done - do upload
-    if not Options["No-Action"]:
-        os.chdir(Cnf["Dir::Queue::Done"])
-    do_upload()
-
-def do_Disembargo(): sudo("D", _do_Disembargo, True)
-def _do_Disembargo():
-    if os.getcwd() != Cnf["Dir::Queue::Embargoed"].rstrip("/"):
-        utils.fubar("Can only disembargo from %s" % Cnf["Dir::Queue::Embargoed"])
-
-    dest = Cnf["Dir::Queue::Unembargoed"]
-    emb_q = db_access.get_or_set_queue_id("embargoed")
-    une_q = db_access.get_or_set_queue_id("unembargoed")
-
-    queuefiles = []
-    for c in changes:
-        print "Disembargoing %s" % (c)
-
-        Katie.init_vars()
-        Katie.pkg.changes_file = c
-        Katie.update_vars()
-
-        if "source" in Katie.pkg.changes["architecture"].keys():
-           print "Adding %s %s to disembargo table" % (Katie.pkg.changes["source"], Katie.pkg.changes["version"])
-           Katie.projectB.query("INSERT INTO disembargo (package, version) VALUES ('%s', '%s')" % (Katie.pkg.changes["source"], Katie.pkg.changes["version"]))
-
-        files = {}
-       for suite in Katie.pkg.changes["distribution"].keys():
-           if suite not in Cnf.ValueList("Dinstall::QueueBuildSuites"):
-               continue
-           dest_dir = Cnf["Dir::QueueBuild"]
-           if Cnf.FindB("Dinstall::SecurityQueueBuild"):
-               dest_dir = os.path.join(dest_dir, suite)
-           for file in Katie.pkg.files.keys():
-               files[os.path.join(dest_dir, file)] = 1
-
-       files = files.keys()
-       Katie.projectB.query("BEGIN WORK")
-       for f in files:
-           Katie.projectB.query("UPDATE queue_build SET queue = %s WHERE filename = '%s' AND queue = %s" % (une_q, f, emb_q))
-       Katie.projectB.query("COMMIT WORK")
-
-       for file in Katie.pkg.files.keys():
-           utils.copy(file, os.path.join(dest, file))
-           os.unlink(file)
-
-    for c in changes:
-        utils.copy(c, os.path.join(dest, c))
-       os.unlink(c)
-       k = c[:8] + ".katie"
-        utils.copy(k, os.path.join(dest, k))
-       os.unlink(k)
-
-def do_Reject(): sudo("R", _do_Reject, True)
-def _do_Reject():
-    global changes
-    for c in changes:
-        print "Rejecting %s..." % (c)
-        Katie.init_vars()
-        Katie.pkg.changes_file = c
-        Katie.update_vars()
-        files = {}
-       for suite in Katie.pkg.changes["distribution"].keys():
-           if suite not in Cnf.ValueList("Dinstall::QueueBuildSuites"):
-               continue
-           dest_dir = Cnf["Dir::QueueBuild"]
-           if Cnf.FindB("Dinstall::SecurityQueueBuild"):
-               dest_dir = os.path.join(dest_dir, suite)
-           for file in Katie.pkg.files.keys():
-               files[os.path.join(dest_dir, file)] = 1
-
-       files = files.keys()
-
-       aborted = Katie.do_reject()
-       if not aborted:
-           os.unlink(c[:-8]+".katie")
-           for f in files:
-               Katie.projectB.query(
-                   "DELETE FROM queue_build WHERE filename = '%s'" % (f))
-               os.unlink(f)
-
-    print "Updating buildd information..."
-    spawn("/org/security.debian.org/katie/cron.buildd-security")
-
-    adv_file = "./advisory.%s" % (advisory)
-    if os.path.exists(adv_file):
-        os.unlink(adv_file)
-
-def do_DropAdvisory():
-    for c in changes:
-        Katie.init_vars()
-        Katie.pkg.changes_file = c
-        Katie.update_vars()
-       del Katie.pkg.changes["adv id"]
-       Katie.dump_vars(os.getcwd())
-    quit()
-
-def do_Edit():
-    adv_file = "./advisory.%s" % (advisory)
-    if not os.path.exists(adv_file):
-        utils.copy(Cnf["Dir::Templates"]+"/amber.advisory", adv_file)
-    editor = os.environ.get("EDITOR","vi")
-    result = os.system("%s %s" % (editor, adv_file))
-    if result != 0:
-        utils.fubar("%s invocation failed for %s." % (editor, adv_file))
-
-def do_Show():
-    adv_file = "./advisory.%s" % (advisory)
-    if not os.path.exists(adv_file):
-        adv_file = Cnf["Dir::Templates"]+"/amber.advisory"
-    print "====\n%s\n====" % (generate_advisory(adv_file))
-
-def do_Quit():
-    quit()
+    print "Locking unchecked"
+    lockfile='/srv/security-master.debian.org/lock/unchecked.lock'
+    spawn("lockfile -r42 {0}".format(lockfile))
+
+    try:
+        # 1. Install accepted packages
+        print "Installing accepted packages into security archive"
+        for queue in ("embargoed",):
+            spawn("dak process-policy {0}".format(queue))
+
+        # 3. Run all the steps that are needed to publish the changed archive
+        print "Domination"
+        spawn("dak dominate")
+        print "Updating Packages and Sources files... This may take a while, be patient"
+        spawn("/srv/security-master.debian.org/dak/config/debian-security/map.sh")
+        spawn("dak generate-packages-sources2 -a security")
+        print "Updating Release files..."
+        spawn("dak generate-releases -a security")
+        print "Triggering security mirrors... (this may take a while)"
+        spawn("/srv/security-master.debian.org/dak/config/debian-security/make-mirror.sh")
+        spawn("sudo -u archvsync -H /home/archvsync/signal_security")
+        print "Triggering metadata export for packages.d.o and other consumers"
+        spawn("/srv/security-master.debian.org/dak/config/debian-security/export.sh")
+    finally:
+        os.unlink(lockfile)
+        print "Lock released."
+
+########################################################################
+########################################################################
 
 def main():
-    global changes
-
-    args = init()
-    extras = load_args(args)
-    if advisory:
-        load_adv_changes()
-    if extras:
-        if not advisory:
-            changes = extras
-       else:
-            if srcverarches == {}:
-                if not yes_no("Create new advisory %s?" % (advisory)):
-                   print "Not doing anything, then"
-                   quit()
-            else:
-                advisory_info()
-               doextras = []
-                for c in extras:
-                   if yes_no("Add %s to %s?" % (c, advisory)):
-                        doextras.append(c)
-                extras = doextras
-            add_changes(extras)
-
-    if not advisory:
-        utils.fubar("Must specify an advisory id")
-
-    if not changes:
-        utils.fubar("No changes specified")
+    global Options, Logger, Queue, changes
+    cnf = Config()
+
+    Arguments = [('h', "Help",      "Security::Options::Help"),
+                 ('n', "No-Action", "Security::Options::No-Action"),
+                 ('c', 'Changesfile', "Security::Options::Changesfile"),
+                 ('s', "Sudo", "Security::Options::Sudo"),
+                 ('A', "Approve", "Security::Options::Approve")
+                 ]
+
+    for i in ["Help", "No-Action", "Changesfile", "Sudo", "Approve"]:
+        if not cnf.has_key("Security::Options::%s" % (i)):
+            cnf["Security::Options::%s" % (i)] = ""
+
+    changes_files = apt_pkg.parse_commandline(cnf.Cnf, Arguments, sys.argv)
+
+    Options = cnf.subtree("Security::Options")
+    if Options['Help']:
+        usage()
+
+    changesfiles={}
+    for a in changes_files:
+        if not a.endswith(".changes"):
+            utils.fubar("not a .changes file: %s" % (a))
+        changesfiles[a]=1
+    changes = changesfiles.keys()
+
+    username = utils.getusername()
+    if username != "dak":
+        print "Non-dak user: %s" % username
+        Options["Sudo"] = "y"
+
+    if Options["No-Action"]:
+        Options["Sudo"] = ""
+
+    if not Options["Sudo"] and not Options["No-Action"]:
+        Logger = daklog.Logger("security-install")
+
+    session = DBConn().session()
 
+    # If we call ourselve to approve, we do just that and exit
     if Options["Approve"]:
-       advisory_info()
         do_Approve()
-    elif Options["Reject"]:
-       advisory_info()
-        do_Reject()
-    elif Options["Disembargo"]:
-       advisory_info()
-        do_Disembargo()
-    elif Options["Drop-Advisory"]:
-        advisory_info()
-       do_DropAdvisory()
+        sys.exit()
+
+    if len(changes) == 0:
+        utils.fubar("Need changes files as arguments")
+
+    # Yes, we could do this inside do_Approve too. But this way we see who exactly
+    # called it (ownership of the file)
+
+    acceptfiles={}
+    for change in changes:
+        dbchange=get_dbchange(os.path.basename(change), session)
+        # strip epoch from version
+        version=dbchange.version
+        version=version[(version.find(':')+1):]
+        acceptfilename="%s/COMMENTS/ACCEPT.%s_%s" % (os.path.dirname(os.path.abspath(changes[0])), dbchange.source, version)
+        acceptfiles[acceptfilename]=1
+
+    print "Would create %s now and then go on to accept this package, if you allow me to." % (acceptfiles.keys())
+    if Options["No-Action"]:
+        sys.exit(0)
     else:
-        while 1:
-            default = "Q"
-           opts = ["Approve", "Edit advisory"]
-           if os.path.exists("./advisory.%s" % advisory):
-               default = "A"
-           else:
-               default = "E"
-           if os.getcwd() == Cnf["Dir::Queue::Embargoed"].rstrip("/"):
-               opts.append("Disembargo")
-           opts += ["Show advisory", "Reject", "Quit"]
-       
-           advisory_info()
-            what = prompt(opts, default)
-
-           if what == "Quit":
-               do_Quit()
-           elif what == "Approve":
-               do_Approve()
-           elif what == "Edit advisory":
-               do_Edit()
-           elif what == "Show advisory":
-               do_Show()
-           elif what == "Disembargo":
-               do_Disembargo()
-           elif what == "Reject":
-               do_Reject()
-           else:
-               utils.fubar("Impossible answer '%s', wtf?" % (what))
-
-main()
+        raw_input("Press Enter to continue")
+
+    for acceptfilename in acceptfiles.keys():
+        accept_file = file(acceptfilename, "w")
+        accept_file.write("OK\n")
+        accept_file.close()
+
+    do_Approve()
+
+
+if __name__ == '__main__':
+    main()