]>
git.datanom.net - securemail.git/blob - db.py
1 # -*- coding: utf-8 -*-
3 # Copyright (c) 2018 Michael Rasmussen <mir@datanom.net>
5 # This file is part of SecureMail.
7 # SecureMail is free software: you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation, either version 3 of the License, or
10 # (at your option) any later version.
12 # SecureMail is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with SecureMail. If not, see <https://www.gnu.org/licenses/>.
21 # create table account (
22 # id int auto_increment,
23 # token char(128) unique not null,
24 # cipher blob not null,
28 # create table account (
30 # token char(128) unique not null,
31 # cipher bytea not null,
35 from config
import DBTYPE
, DBHOST
, DBPORT
, DBUID
, DBPWD
, DBNAME
36 from cryptonize
import Cryptonize
39 def __init__(self
, klass
):
43 def __call__(self
, *args
, **kwargs
):
44 if self
.instance
== None:
45 self
.instance
= self
.klass(*args
, **kwargs
)
52 def get_connection(self
):
57 self
.conn
= MySQLdb
.connect(host
=DBHOST
, port
=DBPORT
, user
=DBUID
, password
=DBPWD
, database
=DBNAME
)
58 elif DBTYPE
== 'postgresql':
60 self
.conn
= psycopg2
.connect(host
=DBHOST
, port
=DBPORT
, user
=DBUID
, password
=DBPWD
, dbname
=DBNAME
)
62 raise ValueError('{0}: Unsupported database'.format(DBTYPE
))
66 if self
.conn
is not None:
72 conn
= DB().get_connection()
73 cursor
= conn
.cursor()
74 cursor
.execute("select a.cipher from account a where token = '{0}'".format(key
))
75 row
= cursor
.fetchone()
80 msg
= base64
.b64decode(row
[0])
81 obj
= c
.create_EncryptedMessage(msg
)
87 def store_user(key
, cipher
):
89 from MySQLdb
import Error
as DBError
90 elif DBTYPE
== 'postgresql':
91 from psycopg2
import Error
as DBError
92 conn
= DB().get_connection()
93 cursor
= conn
.cursor()
94 raw
= base64
.b64encode(cipher
)
96 cursor
.execute("insert into account(token, cipher) values(%s, %s)", (key
, raw
))
This page took 0.10312 seconds and 6 git commands to generate.