Files
CyberPanel/install/mysqlUtilities.py
2020-06-26 18:22:20 +05:00

55 lines
1.7 KiB
Python
Executable File

import subprocess, shlex
class mysqlUtilities:
@staticmethod
def createDatabase(dbname, dbuser, dbpassword):
try:
try:
from json import loads
mysqlData = loads(open("/etc/cyberpanel/mysqlPassword", 'r').read())
createDB = "CREATE DATABASE " + dbname
initCommand = 'mysql -h %s --port %s -u %s -p%s -e "' % (mysqlData['mysqlhost'], mysqlData['mysqlport'], mysqlData['mysqluser'], mysqlData['mysqlpassword'])
except:
passFile = "/etc/cyberpanel/mysqlPassword"
f = open(passFile)
data = f.read()
password = data.split('\n', 1)[0]
createDB = "CREATE DATABASE " + dbname
initCommand = 'mysql -u root -p' + password + ' -e "'
command = initCommand + createDB + '"'
cmd = shlex.split(command)
res = subprocess.call(cmd)
if res == 1:
return 0
createUser = "CREATE USER '" + dbuser + "'@'localhost' IDENTIFIED BY '" + dbpassword + "'"
command = initCommand + createUser + '"'
cmd = shlex.split(command)
res = subprocess.call(cmd)
if res == 1:
return 0
else:
dropDB = "GRANT ALL PRIVILEGES ON " + dbname + ".* TO '" + dbuser + "'@'localhost'"
command = initCommand + dropDB + '"'
cmd = shlex.split(command)
res = subprocess.call(cmd)
if res == 1:
return 0
return 1
except BaseException as msg:
return 0