]> git.phdru.name Git - m_librarian.git/blob - m_librarian/db.py
e02b95bcad56c13d033b52af576245877d3e9798
[m_librarian.git] / m_librarian / db.py
1 #! /usr/bin/env python
2
3 import os
4 from sqlobject import SQLObject, StringCol, UnicodeCol, IntCol, BoolCol, \
5     ForeignKey, DateCol, connectionForURI, sqlhub, dberrors
6 from .config import ml_conf
7
8 try:
9     db_uri = ml_conf.get('database', 'URI')
10 except:
11     db_uri = None
12
13 db_dirs = []
14 if not db_uri:
15     if 'XDG_CACHE_HOME' in os.environ:
16         db_dirs.append(os.environ['XDG_CACHE_HOME'])
17     home_cache = os.path.expanduser('~/.cache')
18     if home_cache not in db_dirs:
19         db_dirs.append(home_cache)
20
21     for d in db_dirs:
22         db_file = os.path.join(d, 'm_librarian.sqlite')
23         if os.path.exists(db_file):
24             break
25     else:
26         # octal; -rw-------;
27         # make the database file/directory readable/writeable only by the user
28         os.umask(0066)
29         db_dir = db_dirs[0]
30         try:
31             os.makedirs(db_dir)
32         except OSError:  # Perhaps already exists
33             pass
34         db_file = os.path.join(db_dir, 'm_librarian.sqlite')
35         db_uri = 'sqlite://%s' % db_file.replace(os.sep, '/')
36
37 sqlhub.processConnection = connectionForURI(db_uri)
38
39
40 class Author(SQLObject):
41     name = UnicodeCol(unique=True)
42     count = IntCol()
43
44
45 class Book(SQLObject):
46     author = ForeignKey('Author')
47     genre = ForeignKey('Genre')
48     title = UnicodeCol()
49     series = UnicodeCol()
50     ser_no = IntCol()
51     file = StringCol()
52     size = IntCol()
53     lib_id = StringCol()
54     deleted = BoolCol()
55     ext = ForeignKey('Extension')
56     date = DateCol()
57     language = ForeignKey('Language')
58
59
60 class Extension(SQLObject):
61     name = StringCol(unique=True)
62     count = IntCol()
63
64
65 class Genre(SQLObject):
66     name = StringCol(unique=True)
67     title = UnicodeCol()
68     count = IntCol()
69
70
71 class Language(SQLObject):
72     name = StringCol(unique=True)
73     count = IntCol()
74
75
76 def init_db():
77     try:
78         Book.select()[0]
79     except IndexError:  # Table exists but is empty
80         return
81     except dberrors.Error:
82         for table in Author, Extension, Genre, Language, Book:
83             table.createTable()
84     else:
85         return
86
87
88 if __name__ == '__main__':
89     print "DB dirs:", db_dirs
90     if db_uri:
91         print "DB URI:", db_uri