summaryrefslogtreecommitdiffstats
path: root/pgaas/pgaas/pgaas_plugin.py
diff options
context:
space:
mode:
Diffstat (limited to 'pgaas/pgaas/pgaas_plugin.py')
-rw-r--r--pgaas/pgaas/pgaas_plugin.py54
1 files changed, 24 insertions, 30 deletions
diff --git a/pgaas/pgaas/pgaas_plugin.py b/pgaas/pgaas/pgaas_plugin.py
index b1625c5..a73407c 100644
--- a/pgaas/pgaas/pgaas_plugin.py
+++ b/pgaas/pgaas/pgaas_plugin.py
@@ -2,6 +2,7 @@
# ============LICENSE_START====================================================
# =============================================================================
# Copyright (c) 2017-2018 AT&T Intellectual Property. All rights reserved.
+# Copyright (c) 2020 Pantheon.tech. All rights reserved.
# =============================================================================
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -22,22 +23,6 @@ PostgreSQL plugin to manage passwords
from __future__ import print_function
import sys
-USING_PYTHON2 = sys.version_info[0] < 3
-
-# pylint: disable=wrong-import-position
-# pylint: disable=wrong-import-order
-# pylint: disable=import-error
-from cloudify import ctx
-from cloudify.decorators import operation
-from cloudify.exceptions import NonRecoverableError
-from cloudify.exceptions import RecoverableError
-
-# pylint: disable=wildcard-import
-if USING_PYTHON2:
- from logginginterface import debug, info, warn, error
-else:
- from .logginginterface import debug, info, warn, error
-
import os
import re
import json
@@ -45,20 +30,31 @@ import hashlib
import socket
import traceback
import base64
-if USING_PYTHON2:
- import urllib
-else:
- import urllib.request
- import urllib.parse
- import urllib.error
+import binascii
import collections
+try:
+ from urllib.parse import quote
+except ImportError:
+ from urllib import quote
+
+from cloudify import ctx
+from cloudify.decorators import operation
+from cloudify.exceptions import NonRecoverableError
+from cloudify.exceptions import RecoverableError
+
+try:
+ import psycopg2
+except ImportError:
+ # FIXME: any users of this plugin installing its dependencies in nonstandard
+ # directories should set up PYTHONPATH accordingly, outside the program code
+ SYSPATH = sys.path
+ sys.path = list(SYSPATH)
+ sys.path.append('/usr/lib64/python2.7/site-packages')
+ import psycopg2
+ sys.path = SYSPATH
+from pgaas.logginginterface import debug, info, warn, error
-SYSPATH = sys.path
-sys.path = list(SYSPATH)
-sys.path.append('/usr/lib64/python2.7/site-packages')
-import psycopg2
-sys.path = SYSPATH
"""
To set up a cluster:
@@ -185,8 +181,7 @@ def safestr(s):
"""
returns a safely printable version of the string
"""
- # pylint: disable=no-member
- return urllib.quote(str(s), '') if USING_PYTHON2 else urllib.parse.quote(str(s), '')
+ return quote(str(s), '')
def raiseRecoverableError(msg):
"""
@@ -739,7 +734,6 @@ def update_database(refctx, **kwargs):
with open(hostPortDbname, "a") as fp:
with open("/dev/urandom", "rb") as rp:
b = rp.read(16)
- import binascii
print(binascii.hexlify(b).decode('utf-8'), file=fp)
appended = True
if not appended: