# System import import os, secrets from datetime import timedelta # Lib imports # Apoplication imports # Configs APP_NAME = 'WebFM' ROOT_FILE_PTH = os.path.dirname(os.path.realpath(__file__)) class Config(object): TITLE = APP_NAME DEBUG = False TESTING = False THREADED = True SECRET_KEY = "2A#GQafbREoblgMSQYomZSxbaPE6dt#" # SECRET_KEY = secrets.token_hex(32) PERMANENT_SESSION_LIFETIME = timedelta(days = 7).total_seconds() SQLALCHEMY_DATABASE_URI = "sqlite:///static/db/webfm.db" SQLALCHEMY_TRACK_MODIFICATIONS = False LOGIN_PATH = "OIDC" # Value can be OIDC or FLASK_LOGIN OIDC_TOKEN_TYPE_HINT = 'access_token' APP_REDIRECT_URI = "https%3A%2F%2Fwww.webfm.com%2F" # This path is submitted as the redirect URI in certain code flows OIDC_CLIENT_SECRETS = ROOT_FILE_PTH + '/client_secrets.json' OIDC_ID_TOKEN_COOKIE_SECURE = True OIDC_REQUIRE_VERIFIED_EMAIL = False OIDC_USER_INFO_ENABLED = True OIDC_VALID_ISSUERS = [ 'http://www.ssoapps.com/auth/realms/apps', 'https://www.ssoapps.com/auth/realms/apps' ] STATIC_FPTH = ROOT_FILE_PTH + "/static" REL_THUMBS_PTH = "static/imgs/thumbnails" # Used for flask thumbnail return # We are overiding some of the the shellmen view settings with these to make it all work with flask. # These are passed along to the shellmen view from the Routes file upon the window controller creation. ABS_THUMBS_PTH = STATIC_FPTH + "/imgs/thumbnails" # Used for thumbnail generation REMUX_FOLDER = STATIC_FPTH + "/remuxs" # Remuxed files folder FFMPG_THUMBNLR = STATIC_FPTH + "/ffmpegthumbnailer" # Thumbnail generator binary class ProductionConfig(Config): pass class DevelopmentConfig(Config): DEBUG = True USE_RELOADER = True OIDC_ID_TOKEN_COOKIE_SECURE = False OIDC_REQUIRE_VERIFIED_EMAIL = False class TestingConfig(Config): TESTING = True