2016-05-30 18:44:51 +00:00
|
|
|
import setuptools
|
2016-04-07 21:57:22 +00:00
|
|
|
import sqlite3, pymysql, pymysql.cursors
|
|
|
|
|
|
|
|
SQLITE = 0
|
|
|
|
MYSQL = 1
|
|
|
|
MARIADB = MYSQL
|
|
|
|
|
2016-04-07 22:15:21 +00:00
|
|
|
MIN = 0
|
|
|
|
MAX = 1
|
|
|
|
|
2016-04-07 21:57:22 +00:00
|
|
|
class dbObject:
|
|
|
|
|
|
|
|
# --------------------------------------------- Initialization -------------------------------------------------
|
|
|
|
|
|
|
|
def initMySQL(self, host, port, user, pwd, db):
|
|
|
|
self.conn = pymysql.connect(host = host, port = port, user = user, password = pwd, db = db, charset = "utf8mb4", cursorclass = pymysql.cursors.DictCursor)
|
2016-05-30 21:52:33 +00:00
|
|
|
self.cur = self.conn.cursor()
|
2016-04-07 21:57:22 +00:00
|
|
|
self.dbtype = MYSQL
|
|
|
|
self.host = host
|
|
|
|
self.port = port
|
|
|
|
self.user = user
|
|
|
|
self.pwd = pwd
|
|
|
|
self.db = db
|
|
|
|
|
|
|
|
def initSQLite(self, path):
|
|
|
|
self.conn = sqlite3.connect(path)
|
|
|
|
self.cur = self.conn.cursor()
|
|
|
|
self.dbtype = SQLITE
|
|
|
|
self.path = path
|
|
|
|
|
2016-05-20 19:39:21 +00:00
|
|
|
def __init__(self, dbtype = SQLITE, path = None, host = None, port = None, user = None, pwd = None, db = None):
|
2016-04-07 21:57:22 +00:00
|
|
|
|
|
|
|
if dbtype == SQLITE:
|
2016-05-20 19:39:21 +00:00
|
|
|
self.initSQLite(path or 'Database.db')
|
2016-04-07 21:57:22 +00:00
|
|
|
|
|
|
|
elif dbtype == MYSQL:
|
2016-05-20 19:39:21 +00:00
|
|
|
self.initMySQL(host or 'localhost', port or 3306, user, pwd, db)
|
2016-04-07 21:57:22 +00:00
|
|
|
|
|
|
|
else:
|
|
|
|
raise ValueError("Unknown database type %s." % str(dbtype))
|
|
|
|
|
|
|
|
# ---------------------------------------------- No more initialization ----------------------------------------
|
|
|
|
|
|
|
|
def closeConnection(self):
|
|
|
|
return self.conn.close()
|
|
|
|
|
|
|
|
def commit(self):
|
|
|
|
return self.conn.commit()
|
|
|
|
|
|
|
|
def executeQuery(self, query):
|
|
|
|
return self.cur.execute(query)
|
|
|
|
|
2016-08-01 16:02:11 +00:00
|
|
|
def getAll(self):
|
|
|
|
return self.cur.fetchall()
|
|
|
|
|
2016-04-07 21:57:22 +00:00
|
|
|
def getNext(self):
|
|
|
|
return self.cur.fetchone()
|
|
|
|
|
|
|
|
def isInitialized(self):
|
|
|
|
try:
|
|
|
|
self.executeQuery("SELECT * FROM tweets")
|
|
|
|
return True
|
|
|
|
except:
|
|
|
|
return False
|
|
|
|
|
2016-04-07 22:15:21 +00:00
|
|
|
def getFLDate(self, val = MIN):
|
|
|
|
if val == MIN:
|
2016-04-07 21:57:22 +00:00
|
|
|
mode = "MIN"
|
|
|
|
else:
|
|
|
|
mode = "MAX"
|
2016-06-30 10:33:09 +00:00
|
|
|
if self.dbtype == SQLITE:
|
|
|
|
return setuptools.getDate(str(list(self.executeQuery("SELECT %s(SUBSTR(timestamp,0,11)) FROM tweets" % mode))[0][0]))
|
|
|
|
else:
|
|
|
|
self.executeQuery("SELECT %s(SUBSTR(timestamp,0,11)) FROM tweets" % mode)
|
|
|
|
return setuptools.getDate(str(self.getNext()["%s(SUBSTR(timestamp,0,11))" % mode]))
|
|
|
|
|
2016-08-01 16:02:11 +00:00
|
|
|
def getFollowers(db):
|
|
|
|
db.executeQuery("SELECT id FROM followers;")
|
|
|
|
for i in db.getAll():
|
|
|
|
yield i[0]
|
|
|
|
|
|
|
|
def getFollowing(db):
|
|
|
|
db.executeQuery("SELECT id FROM following;")
|
|
|
|
for i in db.getAll():
|
|
|
|
yield i[0]
|
|
|
|
|
|
|
|
|
2016-06-30 10:33:09 +00:00
|
|
|
def getLatestMessage(db):
|
|
|
|
db.executeQuery("SELECT max(id) FROM messages")
|
|
|
|
try:
|
|
|
|
return int(db.getNext()[0])
|
|
|
|
except:
|
|
|
|
return 0
|
2016-04-07 22:15:21 +00:00
|
|
|
|
|
|
|
def getLatestTweet(db):
|
|
|
|
db.executeQuery("SELECT max(tweet_id) FROM tweets")
|
|
|
|
try:
|
|
|
|
return int(db.getNext()[0])
|
|
|
|
except:
|
|
|
|
return 0
|
|
|
|
|
2016-06-30 10:33:09 +00:00
|
|
|
def dbHelper():
|
|
|
|
if setuptools.dbtype() == SQLITE:
|
|
|
|
return dbObject(dbtype=SQLITE, path=setuptools.dbpath())
|
|
|
|
elif setuptools.dbtype() == MYSQL:
|
|
|
|
return dbObject(dbtype=MYSQL, host=setuptools.dbhost(), user=setuptools.dbuser(), pwd=setuptools.dbpass(), db=setuptools.dbname())
|
|
|
|
else:
|
|
|
|
raise setuptools.SetupException()
|