reuse of the env variable in the base settings

This commit is contained in:
wcolmenares 2019-05-13 03:44:09 -04:00
commit 69ec7d2b46
3 changed files with 17 additions and 23 deletions

View file

@ -1,9 +1,8 @@
import logging
import os
import pyotp
import requests
import dotenv
from django.contrib.sites.models import Site
from django.conf import settings
from datacenterlight.tasks import create_vm_task
from hosting.models import HostingOrder, HostingBill, OrderDetail
@ -15,18 +14,6 @@ from .models import VMPricing, VMTemplate
logger = logging.getLogger(__name__)
PROJECT_DIR = os.path.abspath(
os.path.join(os.path.dirname(__file__)),
)
# load .env file
dotenv.read_dotenv("{0}/.env".format(PROJECT_DIR))
def env(env_name):
return os.environ.get(env_name)
def get_cms_integration(name):
current_site = Site.objects.get_current()
try:
@ -119,17 +106,17 @@ def clear_all_session_vars(request):
def check_otp(name, realm, token):
data = {
"auth_name": env('AUTH_NAME'),
"auth_token": pyotp.TOTP(env('AUTH_SEED')).now(),
"auth_realm": env('AUTH_REALM'),
"auth_name": settings.AUTH_NAME,
"auth_token": pyotp.TOTP(settings.AUTH_SEED).now(),
"auth_realm": settings.AUTH_REALM,
"name": name,
"realm": realm,
"token": token
}
response = requests.post(
"https://{OTP_SERVER}{OTP_VERIFY_ENDPOINT}".format(
OTP_SERVER=env('OTP_SERVER'),
OTP_VERIFY_ENDPOINT=env('OTP_VERIFY_ENDPOINT')
OTP_SERVER=settings.OTP_SERVER,
OTP_VERIFY_ENDPOINT=settings.OTP_VERIFY_ENDPOINT
),
data=data
)