]> git.phdru.name Git - m_librarian.git/blobdiff - m_librarian/db.py
Add insert_name
[m_librarian.git] / m_librarian / db.py
index e02b95bcad56c13d033b52af576245877d3e9798..7cd53a17c7bb78b38938901ccac59b0c53f94375 100755 (executable)
@@ -1,8 +1,12 @@
 #! /usr/bin/env python
 
+__all__ = ['Author', 'Book', 'Extension', 'Genre', 'Language',
+           'init_db', 'insert_name',
+           ]
+
 import os
 from sqlobject import SQLObject, StringCol, UnicodeCol, IntCol, BoolCol, \
-    ForeignKey, DateCol, connectionForURI, sqlhub, dberrors
+    ForeignKey, DateCol, connectionForURI, sqlhub, SQLObjectNotFound, dberrors
 from .config import ml_conf
 
 try:
@@ -32,7 +36,8 @@ if not db_uri:
         except OSError:  # Perhaps already exists
             pass
         db_file = os.path.join(db_dir, 'm_librarian.sqlite')
-        db_uri = 'sqlite://%s' % db_file.replace(os.sep, '/')
+
+    db_uri = 'sqlite://%s' % db_file.replace(os.sep, '/')
 
 sqlhub.processConnection = connectionForURI(db_uri)
 
@@ -48,6 +53,7 @@ class Book(SQLObject):
     title = UnicodeCol()
     series = UnicodeCol()
     ser_no = IntCol()
+    archive = StringCol()
     file = StringCol()
     size = IntCol()
     lib_id = StringCol()
@@ -85,7 +91,17 @@ def init_db():
         return
 
 
-if __name__ == '__main__':
+def insert_name(table, name):
+    try:
+        return table.byName(name)
+    except SQLObjectNotFound:
+        return table(name=name, count=0)
+
+
+def test():
     print "DB dirs:", db_dirs
     if db_uri:
         print "DB URI:", db_uri
+
+if __name__ == '__main__':
+    test()