-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathdb.py
94 lines (76 loc) · 3.12 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
87
88
89
90
91
92
93
94
from peewee import *
from datetime import datetime
from flask_security import UserMixin, RoleMixin
from config import *
db = SqliteDatabase(DB_DATA_DIR)
class BaseModel(Model):
class Meta:
database = db
class URL(BaseModel):
url = CharField()
duration = IntegerField()
description = CharField()
is_active = BooleanField()
def __str__(self):
if self.description == "< migrated >":
return self.url
return self.description
class Sign(BaseModel):
token = CharField(unique=True)
name = CharField()
last_url = ForeignKeyField(URL, null=True)
last_url_first_send = DateTimeField(null=True)
last_ip = CharField(null=True)
def __unicode__(self):
return "%s (%s)" % (self.name, self.token)
def activeURLs(self):
urls = []
for url in URL.select().join(SignURL).where(SignURL.sign == self, SignURL.is_active == True,
URL.is_active == True):
urls.append(url.url)
return urls
def getCurrentURL(self):
if not self.last_url:
url = URL.select().join(SignURL).where(SignURL.sign == self, SignURL.is_active == True,
URL.is_active == True).get()
self.last_url = url
self.last_url_first_send = datetime.now()
self.save()
else:
delta = datetime.now() - self.last_url_first_send
if delta.total_seconds() > self.last_url.duration * 60:
# new URL
try:
url = URL.select().join(SignURL).where(SignURL.sign == self, SignURL.is_active == True,
URL.is_active == True, URL.id > self.last_url.id).get()
except:
url = URL.select().join(SignURL).where(SignURL.sign == self, SignURL.is_active == True,
URL.is_active == True).order_by(URL.id.asc()).get()
self.last_url = url
self.last_url_first_send = datetime.now()
self.save()
else:
url = self.last_url
return url.url
class SignURL(BaseModel):
sign = ForeignKeyField(Sign, related_name='urls')
url = ForeignKeyField(URL, related_name='signs')
is_active = BooleanField()
class Role(BaseModel, RoleMixin):
name = CharField(unique=True)
description = TextField(null=True)
class User(BaseModel, UserMixin):
email = TextField()
password = TextField()
active = BooleanField(default=False)
# confirmed_at = DateTimeField(null=True)
class UserRoles(BaseModel):
# Because peewee does not come with built-in many-to-many
# relationships, we need this intermediary class to link
# user to roles.
user = ForeignKeyField(User, related_name='roles')
role = ForeignKeyField(Role, related_name='users')
name = property(lambda self: self.role.name)
description = property(lambda self: self.role.description)
db.connect()
db.create_tables([URL, Sign, SignURL, Role,User,UserRoles], safe = True)