-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsql.py
118 lines (98 loc) · 3.24 KB
/
sql.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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
#!/bin/python
# -*- coding: utf-8 -*-
from pony.orm import *
import hashlib
import base64
import os
import ConfigParser
db = Database()
class userConfig(object):
conf = None
'''Define use case specfic stuff here'''
def __init__(self, config):
self.conf = self.configParse(config)
db.bind(provider = self.conf['provider'], host = self.conf['host'],
user = self.conf['user'], passwd = self.conf['passwd'], db = self.conf['database'])
db.generate_mapping(create_tables=True)
# Maybe init tables here later?
def genPassword(self,password=None):
sha = hashlib.sha512()
sha.update(password)
salt = base64.b64encode(os.urandom(12)) #arbitrary length salt
sha.update('$6$')
sha.update(salt)
password = base64.b64encode(sha.digest())
return '$6${}${}'.format(salt,password)
@db_session
def saveUser(self,email = None,password = None, domain = None):
new = self.getUser(email)
try:
domain_id = self.getDomainByName(domain = domain)
if new:
new.set(email = email,password = password, domain_id = domain_id)
else:
Virtual_users(email = email,password = password, domain_id = domain_id)
return True
except:
return False
@db_session
def removeUser(self,id=None):
Virtual_users.get(id=id).delete()
@db_session
def getUser(self,email=None):
try:
return Virtual_users.get(email=email)
except:
return False
@db_session
def removeUser(self,email=None):
Virtual_users.get(email=email).delete()
@db_session
def addDomain(self,domain = None):
Virtual_domains(name = domain)
@db_session
def removeDomain(self,did = None):
Virtual_domains[did].delete()
@db_session
def getDomains(self):
return select(e for e in Virtual_domains)[:]
@db_session
def getDomainByName(self,domain = None):
try:
return Virtual_domains.get(name = domain).id
except:
return False
@db_session
def getDomainById(self,id = None):
try:
return Virtual_domains.get(id = id).name
except:
return False
@db_session
def getUsers(self):
return select(e for e in Virtual_users)[:]
@db_session
def getAliases(self):
return select(e for e in Virtual_aliases)[:]
def configParse(self,config):
conf = ConfigParser.ConfigParser()
conf.read(os.path.expanduser(config))
# database = config.get(mysql,database)
# user = config.get(mysql,user)
# passwd = config.get(mysql,passwd)
# table = config.get(mysql,table)
# host = config.get(mysql,host)
return dict((j,k) for j,k in conf.items('mysql'))
class Virtual_domains(db.Entity):
id = PrimaryKey(int, auto=True)
name = Required(str)
class Virtual_aliases(db.Entity):
id = PrimaryKey(int, auto=True)
domain_id = Required(int)
source = Required(str)
destination = Required(str)
class Virtual_users(db.Entity):
id = PrimaryKey(int, auto=True)
domain_id = Optional(int)
password = Optional(str)
email = Required(str)