forked from lilydjwg/xmpptalk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dbman.py
45 lines (40 loc) · 1.39 KB
/
dbman.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#
# (C) Copyright 2012 lilydjwg <[email protected]>
#
# This file is part of xmpptalk.
#
# xmpptalk is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# xmpptalk is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with xmpptalk. If not, see <http://www.gnu.org/licenses/>.
#
import models
models.init()
from models import connection
from models import User, Log
import config
def setup_user_collection():
col = connection[User.__database__][User.__collection__]
User.generate_index(col)
def setup_log_collection():
db = connection[Log.__database__]
#http://www.mongodb.org/display/DOCS/Capped+Collections
db.create_collection(Log.__collection__, {
'capped': True,
'size': getattr(config, 'log_size', 524288),
})
def setup_group_collection():
col = connection[Group.__database__][Group.__collection__]
col.insert({'welcome': None, 'status': None})
if __name__ == '__main__':
setup_user_collection()
setup_log_collection()
setup_group_collection()