-
Notifications
You must be signed in to change notification settings - Fork 0
/
db.py
86 lines (68 loc) · 2.23 KB
/
db.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
from pymongo import Connection
import json,time
# MONGODB_DATABASE
################################################################################
#
# setting up the database
#
################################################################################
import os
c = Connection(host=os.getenv("MONGO_URL"),port=os.getenv("MONGO_PORT"))
#c = Connection(port=49157)
uname = os.getenv("MONGODB_USERNAME")
pword = os.getenv("MONGODB_PASSWORD")
db=c.['test-production']
db.auth(uname,pword)
db = c[os.getenv("MONGODB_DATABASE")]
users = db.users
################################################################################
#
# tracking routines
#
################################################################################
def updateCurrent(name,loc):
"""
remove the old current for this user
and add in a new location
"""
print "HELLO"
db.current.remove({'name':name})
print "World"
newitem = {'name':name,'timestamp':time.time(),
'geo':{'type':'Point',
'coordinates':loc}}
db.current.insert(newitem)
def getCurrents():
"""
return everyone logged in right now
"""
return json.dumps([x for x in db.current.find({},{'_id':False})])
def removeOld():
"""
remove any entries in current that are more than 5 minutes old
"""
now=time.time()
toremove = [x for x in db.current.find() if now-x['timestamp']>60*5] # remove 5 minutes old
for r in toremove:
db.current.remove(r)
################################################################################
#
# User routines
#
################################################################################
def checkCredentials(username,password):
res=users.find({"user":username,"pass":password})
return len([x for x in res])==1
def addUser(username,password):
res = users.find({'usr':username})
if len([x for x in res])>0:
return None
users.insert({'user':username,'pass':password})
return (username,password)
################################################################################
#
# main (for testing)
#
################################################################################
if __name__=='__main__':
removeOld()