summaryrefslogtreecommitdiffstats
path: root/check-external/unknown-packages.py
diff options
context:
space:
mode:
authorLuciano Bello <luciano@debian.org>2015-01-16 23:21:35 +0000
committerLuciano Bello <luciano@debian.org>2015-01-16 23:21:35 +0000
commitf188fc15513f5a56780d38af940fcfa56938fe5b (patch)
tree8e89cf4674f89579d2fa246157c06a4383f4de7b /check-external/unknown-packages.py
parent4e100a8d02294656cac9fe560935ebb26a9d0f04 (diff)
unknown-packages: double check and DB update
git-svn-id: svn+ssh://svn.debian.org/svn/secure-testing@31413 e39458fd-73e7-0310-bf30-c45bca0a0e42
Diffstat (limited to 'check-external/unknown-packages.py')
-rwxr-xr-xcheck-external/unknown-packages.py68
1 files changed, 68 insertions, 0 deletions
diff --git a/check-external/unknown-packages.py b/check-external/unknown-packages.py
new file mode 100755
index 0000000000..5156e99968
--- /dev/null
+++ b/check-external/unknown-packages.py
@@ -0,0 +1,68 @@
+#!/usr/bin/python
+import urllib2
+import SOAPpy
+import os
+import string
+import sys
+import json
+
+cache_file=os.path.join(os.path.dirname(os.path.abspath(__file__)),'known-unknown-packages.cache')
+db_file=os.path.join(os.path.dirname(os.path.abspath(__file__)),'../data/security.db')
+
+def setup_paths():
+ check_file = 'lib/python/debian_support.py'
+ path = os.getcwd()
+ while 1:
+ if os.path.exists("%s/%s" % (path, check_file)):
+ sys.path = [path + '/lib/python'] + sys.path
+ return path
+ idx = string.rfind(path, '/')
+ if idx == -1:
+ raise ImportError, "could not setup paths"
+ path = path[0:idx]
+os.chdir(setup_paths())
+
+import security_db
+
+try:
+ db = security_db.DB(db_file)
+ new_file = False
+except security_db.SchemaMismatch:
+ os.unlink(db_file)
+ db = security_db.DB(db_file, verbose=True)
+ new_file = True
+
+ws = SOAPpy.SOAPProxy('https://packages.qa.debian.org/cgi-bin/soap-alpha.cgi')
+
+def checkInPTS(pkg):
+ try:
+ ws.versions(source=pkg)
+ except SOAPpy.faultType:
+ return False
+ else:
+ return True
+
+def fromSources(pkg):
+ try:
+ data = json.load(urllib2.urlopen('http://sources.debian.net/api/src/%s/latest/' %pkg))
+ except urllib2.HTTPError as e:
+ return []
+ if 'error' in data: return []
+ else: return data['pkg_infos']['suites']
+
+def updateAs(pkg,suite,cursor):
+ kind = 'experimental' if suite == 'experimental' else 'gone:'+suite
+ print pkg,kind
+ cursor.execute("""UPDATE package_notes SET package_kind = ? WHERE package = ?""", (kind,pkg))
+
+c=db.cursor()
+pkgs=set([ i[0] for i in db.getUnknownPackages(c)])
+pkgs.add('whatpackage');
+
+for pkg in pkgs:
+ suites = fromSources(pkg)
+ if len(suites) >0:
+ updateAs(pkg,suites[-1],c)
+ else:
+ if checkInPTS(pkg): updateAs(pkg,'n/a',c)
+ else: print 'UNKNOWN'

© 2014-2024 Faster IT GmbH | imprint | privacy policy