-
-
Save josuedjh3/38c521c9091b5c268f2a4d5f3166c497 to your computer and use it in GitHub Desktop.
usar variable de env en django
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
import re | |
from pathlib import Path | |
class FilePermissionError(Exception): | |
"""The key file permissions are insecure.""" | |
pass | |
quote_match = re.compile(r'''[^"]*"(.+)"''').match | |
match_setting = re.compile(r'^(?P<name>[A-Z][A-Z_0-9]+)\s?=\s?(?P<value>.*)').match | |
aliases = {'true': True, 'on': True, 'false': False, 'off': False} | |
def load_env(path: Path): | |
""" | |
>>> | |
""" | |
if not path.exists(): | |
return | |
path = path.resolve() | |
if path.stat().st_mode != 0o100600: | |
raise FilePermissionError(f"Insecure environment file permissions for {path}! Make it 600") | |
content = path.read_text() | |
for line in content.split('\n'): | |
line = line.strip() | |
if not line: | |
continue | |
if line.startswith('#'): | |
continue | |
match = match_setting(line) | |
if not match: | |
continue | |
name, value = match.groups() | |
quoted = quote_match(value) | |
if quoted: | |
# Convert 'a', "a" to a, a | |
value = str(quoted.groups()[0]) | |
if name in aliases: | |
value = aliases[name] | |
# Replace placeholders like ${PATH} | |
for match_replace in re.findall(r'(\${([\w\d\-_]+)})', value): | |
replace, name = match_replace | |
value = value.replace(replace, os.environ.get(name, '')) | |
# Set environment value | |
os.environ[name] = value |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment