]> git.phdru.name Git - m_librarian.git/blob - m_librarian/db.py
Add database schema
[m_librarian.git] / m_librarian / db.py
1 #! /usr/bin/env python
2
3 import os
4 from sqlobject import SQLObject, StringCol, UnicodeCol, IntCol, \
5     connectionForURI, sqlhub
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()
42     count = IntCol()
43
44
45 class Book(SQLObject):
46     name = UnicodeCol()
47
48
49 class Extension(SQLObject):
50     name = StringCol()
51     count = IntCol()
52
53
54 class Language(SQLObject):
55     name = StringCol()
56     count = IntCol()
57
58
59 if __name__ == '__main__':
60     print "DB dirs:", db_dirs
61     if db_uri:
62         print "DB URI:", db_uri