2016-03-07 17:13:03 +02:00
|
|
|
#!/usr/bin/python3
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# Author: İsmail BAŞARAN <ismail.basaran@tubitak.gov.tr> <basaran.ismaill@gmail.com>
|
2016-03-17 17:55:27 +02:00
|
|
|
# Author: Volkan Şahin <volkansah.in> <bm.volkansahin@gmail.com>
|
2016-03-07 17:13:03 +02:00
|
|
|
import sqlite3
|
|
|
|
|
2016-03-23 17:15:27 +02:00
|
|
|
from base.Scope import Scope
|
|
|
|
|
|
|
|
|
2016-03-07 17:13:03 +02:00
|
|
|
class AhenkDbService(object):
|
|
|
|
"""
|
|
|
|
Sqlite manager for ahenk
|
|
|
|
"""
|
2016-03-23 17:15:27 +02:00
|
|
|
|
2016-03-07 17:13:03 +02:00
|
|
|
def __init__(self):
|
|
|
|
scope = Scope.getInstance()
|
|
|
|
self.logger = scope.getLogger()
|
|
|
|
self.configurationManager = scope.getConfigurationManager()
|
2016-03-23 17:15:27 +02:00
|
|
|
self.db_path = self.configurationManager.get('BASE', 'dbPath')
|
|
|
|
self.connection = None
|
2016-03-07 17:13:03 +02:00
|
|
|
self.cursor = None
|
|
|
|
|
2016-03-18 18:40:44 +02:00
|
|
|
def initialize_table(self):
|
2016-03-23 17:15:27 +02:00
|
|
|
self.check_and_create_table('task', ['id INTEGER', 'create_date TEXT', 'modify_date TEXT', 'command_cls_id TEXT', 'parameter_map BLOB', 'deleted INTEGER', 'plugin TEXT'])
|
|
|
|
self.check_and_create_table('policy', ['id INTEGER PRIMARY KEY AUTOINCREMENT', 'type TEXT', 'version TEXT', 'name TEXT'])
|
2016-03-29 15:29:49 +03:00
|
|
|
self.check_and_create_table('profile', ['id INTEGER', 'create_date TEXT', 'label TEXT', 'description TEXT', 'overridable INTEGER', 'active INTEGER', 'deleted INTEGER', 'profile_data TEXT', 'modify_date TEXT', 'plugin TEXT'])
|
2016-03-23 17:15:27 +02:00
|
|
|
self.check_and_create_table('plugin', ['version TEXT', 'name TEXT', 'description TEXT'])
|
2016-03-23 16:39:39 +02:00
|
|
|
self.check_and_create_table('registration', ['jid TEXT', 'password TEXT', 'registered INTEGER', 'dn TEXT', 'params TEXT', 'timestamp TEXT'])
|
2016-03-18 18:40:44 +02:00
|
|
|
|
2016-03-16 10:40:17 +02:00
|
|
|
def connect(self):
|
2016-03-07 17:13:03 +02:00
|
|
|
try:
|
2016-03-23 17:15:27 +02:00
|
|
|
self.connection = sqlite3.connect(self.db_path, check_same_thread=False)
|
2016-03-07 17:13:03 +02:00
|
|
|
self.cursor = self.connection.cursor()
|
|
|
|
except Exception as e:
|
|
|
|
self.logger.error('Database connection error ' + str(e))
|
|
|
|
|
2016-03-23 17:15:27 +02:00
|
|
|
def check_and_create_table(self, table_name, cols):
|
2016-03-07 17:13:03 +02:00
|
|
|
if self.cursor:
|
|
|
|
cols = ', '.join([str(x) for x in cols])
|
2016-03-23 17:15:27 +02:00
|
|
|
self.cursor.execute('create table if not exists ' + table_name + ' (' + cols + ')')
|
2016-03-16 10:40:17 +02:00
|
|
|
else:
|
2016-03-23 17:15:27 +02:00
|
|
|
self.logger.warning('Could not create table cursor is None! Table Name : ' + str(table_name))
|
2016-03-07 17:13:03 +02:00
|
|
|
|
2016-03-23 17:15:27 +02:00
|
|
|
def drop_table(self, table_name):
|
|
|
|
sql = 'DROP TABLE ' + table_name
|
2016-03-16 10:40:17 +02:00
|
|
|
self.cursor.execute(sql)
|
|
|
|
self.connection.commit()
|
|
|
|
|
2016-03-07 17:13:03 +02:00
|
|
|
def update(self, table_name, cols, args, criteria=None):
|
|
|
|
try:
|
|
|
|
if self.connection:
|
2016-03-29 15:29:49 +03:00
|
|
|
if criteria is None:
|
2016-03-07 17:13:03 +02:00
|
|
|
cols = ', '.join([str(x) for x in cols])
|
2016-03-23 17:15:27 +02:00
|
|
|
params = ', '.join(['?' for x in args])
|
|
|
|
sql = 'INSERT INTO ' + table_name + ' (' + cols + ') VALUES (' + params + ')'
|
2016-03-07 17:13:03 +02:00
|
|
|
else:
|
2016-03-23 17:15:27 +02:00
|
|
|
update_list = ''
|
2016-03-07 17:13:03 +02:00
|
|
|
for index in range(len(cols)):
|
2016-03-23 17:15:27 +02:00
|
|
|
update_list = update_list + ' ' + cols[index] + ' = ?,'
|
2016-03-07 17:13:03 +02:00
|
|
|
update_list = update_list.strip(',')
|
2016-03-23 17:15:27 +02:00
|
|
|
sql = 'UPDATE ' + table_name + ' SET ' + update_list + ' where ' + criteria
|
2016-03-17 17:55:27 +02:00
|
|
|
self.cursor.execute(sql, tuple(args))
|
2016-03-07 17:13:03 +02:00
|
|
|
self.connection.commit()
|
|
|
|
else:
|
2016-03-23 17:15:27 +02:00
|
|
|
self.logger.warning('Could not update table cursor is None! Table Name : ' + str(table_name))
|
2016-03-16 10:40:17 +02:00
|
|
|
except Exception as e:
|
2016-03-23 17:15:27 +02:00
|
|
|
self.logger.error('Updating table error ! Table Name : ' + str(table_name) + ' ' + str(e))
|
2016-03-07 17:13:03 +02:00
|
|
|
|
2016-03-23 17:15:27 +02:00
|
|
|
def delete(self, table_name, criteria):
|
2016-03-17 17:55:27 +02:00
|
|
|
if self.cursor:
|
2016-03-23 17:15:27 +02:00
|
|
|
sql = 'DELETE FROM ' + table_name
|
2016-03-17 17:55:27 +02:00
|
|
|
if criteria:
|
2016-03-23 17:15:27 +02:00
|
|
|
sql += ' where ' + str(criteria)
|
2016-03-17 17:55:27 +02:00
|
|
|
self.cursor.execute(sql)
|
|
|
|
self.connection.commit()
|
2016-03-07 17:13:03 +02:00
|
|
|
|
|
|
|
def findByProperty(self):
|
|
|
|
# Not implemented yet
|
|
|
|
pass
|
2016-03-23 16:39:39 +02:00
|
|
|
|
2016-03-23 17:15:27 +02:00
|
|
|
def select(self, table_name, cols='*', criteria='', orderby=''):
|
2016-03-07 17:13:03 +02:00
|
|
|
if self.cursor:
|
|
|
|
try:
|
2016-03-23 17:15:27 +02:00
|
|
|
if not cols == '*':
|
2016-03-07 17:13:03 +02:00
|
|
|
cols = ', '.join([str(x) for x in cols])
|
2016-03-23 17:15:27 +02:00
|
|
|
sql = 'SELECT ' + cols + ' FROM ' + table_name
|
|
|
|
if criteria != '':
|
2016-03-23 16:39:39 +02:00
|
|
|
sql += ' where '
|
|
|
|
sql += criteria
|
2016-03-23 17:15:27 +02:00
|
|
|
if orderby != '':
|
2016-03-23 16:39:39 +02:00
|
|
|
sql += ' order by '
|
|
|
|
sql += orderby
|
2016-03-17 17:55:27 +02:00
|
|
|
|
2016-03-07 17:13:03 +02:00
|
|
|
self.cursor.execute(sql)
|
2016-03-23 16:39:39 +02:00
|
|
|
|
2016-03-07 17:13:03 +02:00
|
|
|
rows = self.cursor.fetchall()
|
|
|
|
return rows
|
|
|
|
except Exception as e:
|
|
|
|
raise
|
|
|
|
else:
|
2016-03-23 17:15:27 +02:00
|
|
|
self.logger.warning('Could not select table cursor is None! Table Name : ' + str(table_name))
|
2016-03-07 17:13:03 +02:00
|
|
|
|
2016-03-23 16:39:39 +02:00
|
|
|
def select_one_result(self, table_name, col, criteria=''):
|
|
|
|
if self.cursor:
|
|
|
|
try:
|
|
|
|
sql = 'SELECT ' + col + ' FROM ' + table_name
|
|
|
|
if criteria != '':
|
|
|
|
sql += ' where '
|
|
|
|
sql += criteria
|
|
|
|
self.cursor.execute(sql)
|
|
|
|
row = self.cursor.fetchone()
|
|
|
|
if row is not None:
|
|
|
|
return row[0]
|
2016-03-25 17:56:15 +02:00
|
|
|
else:
|
|
|
|
return None
|
2016-03-23 16:39:39 +02:00
|
|
|
except Exception as e:
|
|
|
|
raise
|
|
|
|
else:
|
|
|
|
self.logger.warning('Could not select table cursor is None! Table Name : ' + str(table_name))
|
|
|
|
|
2016-03-07 17:13:03 +02:00
|
|
|
def close(self):
|
|
|
|
try:
|
|
|
|
self.cursor.close()
|
|
|
|
self.connection.close()
|
|
|
|
except Exception as e:
|
2016-03-23 17:15:27 +02:00
|
|
|
self.logger.error('Closing database connection error:' + str(e))
|