mirror of
https://git.securmail.fr/gizmo/python-module-pgsql.git
synced 2024-12-22 07:34:42 +01:00
Maj module
This commit is contained in:
parent
df68cc8bfb
commit
0810e4cfbb
|
@ -12,6 +12,7 @@
|
||||||
# */
|
# */
|
||||||
|
|
||||||
import sys
|
import sys
|
||||||
|
from configparser import SafeConfigParser
|
||||||
|
|
||||||
# Global name
|
# Global name
|
||||||
__version__ = '1.0'
|
__version__ = '1.0'
|
||||||
|
@ -23,3 +24,11 @@ try:
|
||||||
except ImportError:
|
except ImportError:
|
||||||
print('Psycopg2 library not found. Books-shelf cannot start.')
|
print('Psycopg2 library not found. Books-shelf cannot start.')
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
|
||||||
|
try:
|
||||||
|
ini_conf = "./config/conf.ini"
|
||||||
|
config = SafeConfigParser()
|
||||||
|
config.read(ini_conf)
|
||||||
|
except config.Error as error:
|
||||||
|
print(error)
|
||||||
|
sys.exit(1)
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -1,5 +0,0 @@
|
||||||
[psql]
|
|
||||||
host=localhost
|
|
||||||
database=books_shelf
|
|
||||||
user=books_shelf
|
|
||||||
passwd=blabli
|
|
5
manage_psql/config/conf.ini.sample
Normal file
5
manage_psql/config/conf.ini.sample
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
[psql]
|
||||||
|
host=localhost
|
||||||
|
database=books
|
||||||
|
user=books_shelf
|
||||||
|
passwd=blabli
|
|
@ -11,9 +11,21 @@
|
||||||
# * ----------------------------------------------------------------------------
|
# * ----------------------------------------------------------------------------
|
||||||
# */
|
# */
|
||||||
|
|
||||||
|
import socket
|
||||||
from configparser import SafeConfigParser
|
from configparser import SafeConfigParser
|
||||||
import psycopg2
|
import psycopg2
|
||||||
|
|
||||||
|
# Read conf.ini
|
||||||
|
INI_CONF = "./config/conf.ini"
|
||||||
|
CONFIG = SafeConfigParser()
|
||||||
|
CONFIG.read(INI_CONF)
|
||||||
|
|
||||||
|
# DB parameters
|
||||||
|
PSQL_HOST = CONFIG.get('psql', 'host')
|
||||||
|
PSQL_DB = CONFIG.get('psql', 'database')
|
||||||
|
PSQL_USER = CONFIG.get('psql', 'user')
|
||||||
|
PSQL_PWD = CONFIG.get('psql', 'passwd')
|
||||||
|
|
||||||
|
|
||||||
class HandlePsql:
|
class HandlePsql:
|
||||||
"""Class to handle psql connection."""
|
"""Class to handle psql connection."""
|
||||||
|
@ -21,28 +33,39 @@ class HandlePsql:
|
||||||
conn = None
|
conn = None
|
||||||
cur = None
|
cur = None
|
||||||
|
|
||||||
|
@staticmethod
|
||||||
|
def psql_checkport():
|
||||||
|
"""Check pgsql port."""
|
||||||
|
sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
|
||||||
|
check_port = sock.connect_ex((PSQL_HOST, 5432))
|
||||||
|
if check_port:
|
||||||
|
return True
|
||||||
|
return False
|
||||||
|
|
||||||
|
@staticmethod
|
||||||
|
def psql_checkcon():
|
||||||
|
"""Check pgsql connexion to database."""
|
||||||
|
try:
|
||||||
|
conn = psycopg2.connect(host=PSQL_HOST, database=PSQL_DB,
|
||||||
|
user=PSQL_USER, password=PSQL_PWD,
|
||||||
|
connect_timeout=5)
|
||||||
|
conn.close()
|
||||||
|
return True
|
||||||
|
except conn.error:
|
||||||
|
return False
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def psql_conn():
|
def psql_conn():
|
||||||
"""Init psql connection."""
|
"""Init psql connection."""
|
||||||
# Read conf.ini
|
|
||||||
ini_conf = "/usr/local/Securmail-Administration/config/conf.ini"
|
|
||||||
config = SafeConfigParser()
|
|
||||||
config.read(ini_conf)
|
|
||||||
|
|
||||||
# DB parameters
|
|
||||||
psql_host = config.get('psql', 'host')
|
|
||||||
psql_db = config.get('psql', 'database')
|
|
||||||
psql_user = config.get('psql', 'user')
|
|
||||||
psql_pwd = config.get('psql', 'passwd')
|
|
||||||
|
|
||||||
# connexion DB
|
# connexion DB
|
||||||
# http://initd.org/psycopg/docs/usage.html
|
# http://initd.org/psycopg/docs/usage.html
|
||||||
# http://www.postgresqltutorial.com/postgresql-python/
|
# http://www.postgresqltutorial.com/postgresql-python/
|
||||||
try:
|
try:
|
||||||
global conn
|
global conn
|
||||||
conn = psycopg2.connect(host=psql_host, database=psql_db, user=psql_user, password=psql_pwd)
|
conn = psycopg2.connect(host=PSQL_HOST, database=PSQL_DB,
|
||||||
|
user=PSQL_USER, password=PSQL_PWD)
|
||||||
conn.cursor()
|
conn.cursor()
|
||||||
except (Exception, psycopg2.DatabaseError) as error:
|
except psycopg2.DatabaseError as error:
|
||||||
print(error)
|
print(error)
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
|
@ -77,9 +100,11 @@ class HandlePsql:
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def psql_unconn():
|
def psql_unconn():
|
||||||
"""End psql connection."""
|
"""End psql connection."""
|
||||||
|
global conn
|
||||||
cur = conn.cursor()
|
cur = conn.cursor()
|
||||||
cur.close()
|
cur.close()
|
||||||
conn.close()
|
conn.close()
|
||||||
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
print("Module psql to handle the connection")
|
print("Module psql to handle the connection")
|
||||||
|
|
Loading…
Reference in a new issue