X-Git-Url: https://git.phdru.name/?a=blobdiff_plain;f=m_librarian%2Fdb.py;h=6888ab8d418fe7f0c3845d244c95daa7f5e18a28;hb=ee08410d892e2facfbe8469a78a661c3e366ff8c;hp=199f967b929152bdc33c329ed7bb4d1492f578b0;hpb=33c7142a48442ee0cd1a95269ac55d4238097a28;p=m_librarian.git diff --git a/m_librarian/db.py b/m_librarian/db.py index 199f967..6888ab8 100755 --- a/m_librarian/db.py +++ b/m_librarian/db.py @@ -1,12 +1,13 @@ #! /usr/bin/env python __all__ = ['Author', 'Book', 'Extension', 'Genre', 'Language', - 'init_db', + 'init_db', 'insert_name', ] import os from sqlobject import SQLObject, StringCol, UnicodeCol, IntCol, BoolCol, \ - ForeignKey, DateCol, connectionForURI, sqlhub, dberrors + ForeignKey, DateCol, RelatedJoin, \ + connectionForURI, sqlhub, SQLObjectNotFound, dberrors from .config import ml_conf try: @@ -45,11 +46,12 @@ sqlhub.processConnection = connectionForURI(db_uri) class Author(SQLObject): name = UnicodeCol(unique=True) count = IntCol() + books = RelatedJoin('Book', otherColumn='book_id') class Book(SQLObject): - author = ForeignKey('Author') - genre = ForeignKey('Genre') + authors = RelatedJoin('Author') + genres = RelatedJoin('Genre') title = UnicodeCol() series = UnicodeCol() ser_no = IntCol() @@ -58,7 +60,7 @@ class Book(SQLObject): size = IntCol() lib_id = StringCol() deleted = BoolCol() - ext = ForeignKey('Extension') + extension = ForeignKey('Extension') date = DateCol() language = ForeignKey('Language') @@ -72,6 +74,7 @@ class Genre(SQLObject): name = StringCol(unique=True) title = UnicodeCol() count = IntCol() + books = RelatedJoin('Book', otherColumn='book_id') class Language(SQLObject): @@ -91,6 +94,13 @@ def init_db(): return +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: