]> git.decadent.org.uk Git - dak.git/commitdiff
Port database.get_or_set_keyring_id => dbconn.get_or_set_keyring
authorChris Lamb <lamby@debian.org>
Mon, 26 Oct 2009 14:45:55 +0000 (14:45 +0000)
committerChris Lamb <lamby@debian.org>
Mon, 26 Oct 2009 14:48:21 +0000 (14:48 +0000)
Signed-off-by: Chris Lamb <lamby@debian.org>
daklib/dbconn.py

index 23aeda6fdad5ae52109eac5fb4f5989d2eb28463..c0b7d0e841498097bf2fc6cc32522317f98f1717 100755 (executable)
@@ -981,6 +981,42 @@ class Keyring(object):
 
 __all__.append('Keyring')
 
+def get_or_set_keyring(keyring, session=None):
+    """
+    If C{keyring} does not have an entry in the C{keyrings} table yet, create one
+    and return the new Keyring
+    If C{keyring} already has an entry, simply return the existing Keyring
+
+    @type keyring: string
+    @param keyring: the keyring name
+
+    @rtype: Keyring
+    @return: the Keyring object for this keyring
+
+    """
+    privatetrans = False
+    if session is None:
+        session = DBConn().session()
+        privatetrans = True
+
+    try:
+        obj = session.query(Keyring).filter_by(keyring_name=keyring).first()
+
+        if obj is None:
+            obj = Keyring(keyring_name=keyring)
+            session.add(obj)
+            if privatetrans:
+                session.commit()
+            else:
+                session.flush()
+
+        return obj
+    finally:
+        if privatetrans:
+            session.close()
+
+__all__.append('get_or_set_keyring')
+
 ################################################################################
 
 class Location(object):