63 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			Python
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			63 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			Python
		
	
	
		
			Executable File
		
	
	
	
	
#!/usr/bin/env python
 | 
						|
"""This file needs to be run from the root of the project to correctly
 | 
						|
import authentik. This is done by the dockerfile."""
 | 
						|
from sys import exit as sysexit
 | 
						|
from time import sleep
 | 
						|
from urllib.parse import quote_plus
 | 
						|
 | 
						|
from psycopg2 import OperationalError, connect
 | 
						|
from redis import Redis
 | 
						|
from redis.exceptions import RedisError
 | 
						|
 | 
						|
from authentik.lib.config import CONFIG
 | 
						|
 | 
						|
CONFIG.log("info", "Starting authentik bootstrap")
 | 
						|
 | 
						|
# Sanity check, ensure SECRET_KEY is set before we even check for database connectivity
 | 
						|
if CONFIG.y("secret_key") is None or len(CONFIG.y("secret_key")) == 0:
 | 
						|
    CONFIG.log("info", "----------------------------------------------------------------------")
 | 
						|
    CONFIG.log("info", "Secret key missing, check https://goauthentik.io/docs/installation/.")
 | 
						|
    CONFIG.log("info", "----------------------------------------------------------------------")
 | 
						|
    sysexit(1)
 | 
						|
 | 
						|
 | 
						|
while True:
 | 
						|
    try:
 | 
						|
        conn = connect(
 | 
						|
            dbname=CONFIG.y("postgresql.name"),
 | 
						|
            user=CONFIG.y("postgresql.user"),
 | 
						|
            password=CONFIG.y("postgresql.password"),
 | 
						|
            host=CONFIG.y("postgresql.host"),
 | 
						|
            port=int(CONFIG.y("postgresql.port")),
 | 
						|
            sslmode=CONFIG.y("postgresql.sslmode"),
 | 
						|
            sslrootcert=CONFIG.y("postgresql.sslrootcert"),
 | 
						|
            sslcert=CONFIG.y("postgresql.sslcert"),
 | 
						|
            sslkey=CONFIG.y("postgresql.sslkey"),
 | 
						|
        )
 | 
						|
        conn.cursor()
 | 
						|
        break
 | 
						|
    except OperationalError as exc:
 | 
						|
        sleep(1)
 | 
						|
        CONFIG.log("info", f"PostgreSQL connection failed, retrying... ({exc})")
 | 
						|
CONFIG.log("info", "PostgreSQL connection successful")
 | 
						|
 | 
						|
REDIS_PROTOCOL_PREFIX = "redis://"
 | 
						|
if CONFIG.y_bool("redis.tls", False):
 | 
						|
    REDIS_PROTOCOL_PREFIX = "rediss://"
 | 
						|
REDIS_URL = (
 | 
						|
    f"{REDIS_PROTOCOL_PREFIX}:"
 | 
						|
    f"{quote_plus(CONFIG.y('redis.password'))}@{quote_plus(CONFIG.y('redis.host'))}:"
 | 
						|
    f"{int(CONFIG.y('redis.port'))}/{CONFIG.y('redis.db')}"
 | 
						|
)
 | 
						|
while True:
 | 
						|
    try:
 | 
						|
        redis = Redis.from_url(REDIS_URL)
 | 
						|
        redis.ping()
 | 
						|
        break
 | 
						|
    except RedisError as exc:
 | 
						|
        sleep(1)
 | 
						|
        CONFIG.log("info", f"Redis Connection failed, retrying... ({exc})", redis_url=REDIS_URL)
 | 
						|
CONFIG.log("info", "Redis Connection successful")
 | 
						|
 | 
						|
CONFIG.log("info", "Finished authentik bootstrap")
 |