]> git.phdru.name Git - m_librarian.git/blobdiff - m_librarian/db.py
Create database tables
[m_librarian.git] / m_librarian / db.py
index e78f8f17c49b41b45e101f56d858469b42f3e0f9..d63fd416406abe7b01d426189edfbf7e7d65d545 100755 (executable)
@@ -1,8 +1,8 @@
 #! /usr/bin/env python
 
 import os
-from sqlobject import SQLObject, StringCol, UnicodeCol, IntCol, \
-    connectionForURI, sqlhub
+from sqlobject import SQLObject, StringCol, UnicodeCol, IntCol, BoolCol, \
+    ForeignKey, DateCol, connectionForURI, sqlhub, dberrors
 from .config import ml_conf
 
 try:
@@ -43,7 +43,18 @@ class Author(SQLObject):
 
 
 class Book(SQLObject):
-    name = UnicodeCol()
+    author = ForeignKey('Author')
+    genre = ForeignKey('Genre')
+    title = UnicodeCol()
+    series = UnicodeCol()
+    ser_no = IntCol()
+    file = StringCol()
+    size = IntCol()
+    lib_id = StringCol()
+    deleted = BoolCol()
+    ext = ForeignKey('Extension')
+    date = DateCol()
+    language = ForeignKey('Language')
 
 
 class Extension(SQLObject):
@@ -51,11 +62,29 @@ class Extension(SQLObject):
     count = IntCol()
 
 
+class Genre(SQLObject):
+    name = StringCol()
+    title = UnicodeCol()
+    count = IntCol()
+
+
 class Language(SQLObject):
     name = StringCol()
     count = IntCol()
 
 
+def init_db():
+    try:
+        Book.select()[0]
+    except IndexError:  # Table exists but is empty
+        return
+    except dberrors.Error:
+        for table in Author, Extension, Genre, Language, Book:
+            table.createTable()
+    else:
+        return
+
+
 if __name__ == '__main__':
     print "DB dirs:", db_dirs
     if db_uri: