aboutsummaryrefslogtreecommitdiff
path: root/src/conf.py
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2020-02-26 11:27:31 +0100
committerCédric Bonhomme <cedric@cedricbonhomme.org>2020-02-26 11:27:31 +0100
commit62b3afeeedfe054345f86093e2d243e956c1e3c9 (patch)
treebbd58f5c8c07f5d87b1c1cca73fa1d5af6178f48 /src/conf.py
parentUpdated Python dependencies. (diff)
downloadnewspipe-62b3afeeedfe054345f86093e2d243e956c1e3c9.tar.gz
newspipe-62b3afeeedfe054345f86093e2d243e956c1e3c9.tar.bz2
newspipe-62b3afeeedfe054345f86093e2d243e956c1e3c9.zip
The project is now using Poetry.
Diffstat (limited to 'src/conf.py')
-rw-r--r--src/conf.py126
1 files changed, 0 insertions, 126 deletions
diff --git a/src/conf.py b/src/conf.py
deleted file mode 100644
index ced602ca..00000000
--- a/src/conf.py
+++ /dev/null
@@ -1,126 +0,0 @@
-#! /usr/bin/env python
-# -*- coding: utf-8 -*-
-""" Program variables.
-
-This file contain the variables used by the application.
-"""
-import os
-import logging
-
-BASE_DIR = os.path.abspath(os.path.dirname(__file__))
-PATH = os.path.abspath(".")
-API_ROOT = '/api/v2.0'
-
-# available languages
-LANGUAGES = {
- 'en': 'English',
- 'fr': 'French'
-}
-
-TIME_ZONE = {
- "en": "US/Eastern",
- "fr": "Europe/Paris"
-}
-
-ON_HEROKU = int(os.environ.get('HEROKU', 0)) == 1
-DEFAULTS = {"platform_url": "https://www.newspipe.org/",
- "self_registration": "false",
- "cdn_address": "",
- "admin_email": "info@newspipe.org",
- "sendgrid_api_key": "",
- "token_validity_period": "3600",
- "default_max_error": "3",
- "log_path": "newspipe.log",
- "log_level": "info",
- "secret_key": "",
- "security_password_salt": "",
- "enabled": "false",
- "notification_email": "info@newspipe.org",
- "tls": "false",
- "ssl": "true",
- "host": "0.0.0.0",
- "port": "5000",
- "crawling_method": "default",
- "crawler_user_agent": "Newspipe (https://github.com/newspipe)",
- "crawler_timeout": "30",
- "crawler_resolv": "false",
- "feed_refresh_interval": "120"
- }
-
-if not ON_HEROKU:
- import configparser as confparser
- # load the configuration
- config = confparser.SafeConfigParser(defaults=DEFAULTS)
- config.read(os.path.join(BASE_DIR, "conf/conf.cfg"))
-else:
- class Config(object):
- def get(self, _, name):
- return os.environ.get(name.upper(), DEFAULTS.get(name))
-
- def getint(self, _, name):
- return int(self.get(_, name))
-
- def getboolean(self, _, name):
- value = self.get(_, name)
- if value == 'true':
- return True
- elif value == 'false':
- return False
- return None
- config = Config()
-
-
-WEBSERVER_HOST = config.get('webserver', 'host')
-WEBSERVER_PORT = config.getint('webserver', 'port')
-WEBSERVER_SECRET = config.get('webserver', 'secret_key')
-WEBSERVER_DEBUG = config.getboolean('webserver', 'debug')
-
-CDN_ADDRESS = config.get('cdn', 'cdn_address')
-
-try:
- PLATFORM_URL = config.get('misc', 'platform_url')
-except:
- PLATFORM_URL = "https://www.newspipe.org/"
-ADMIN_EMAIL = config.get('misc', 'admin_email')
-SELF_REGISTRATION = config.getboolean('misc', 'self_registration')
-SECURITY_PASSWORD_SALT = config.get('misc', 'security_password_salt')
-try:
- TOKEN_VALIDITY_PERIOD = config.getint('misc', 'token_validity_period')
-except:
- TOKEN_VALIDITY_PERIOD = int(config.get('misc', 'token_validity_period'))
-if not ON_HEROKU:
- LOG_PATH = os.path.abspath(config.get('misc', 'log_path'))
-else:
- LOG_PATH = ''
-LOG_LEVEL = {'debug': logging.DEBUG,
- 'info': logging.INFO,
- 'warn': logging.WARN,
- 'error': logging.ERROR,
- 'fatal': logging.FATAL}[config.get('misc', 'log_level')]
-
-SQLALCHEMY_DATABASE_URI = config.get('database', 'database_url')
-
-CRAWLING_METHOD = config.get('crawler', 'crawling_method')
-CRAWLER_USER_AGENT = config.get('crawler', 'user_agent')
-DEFAULT_MAX_ERROR = config.getint('crawler', 'default_max_error')
-ERROR_THRESHOLD = int(DEFAULT_MAX_ERROR / 2)
-CRAWLER_TIMEOUT = config.get('crawler', 'timeout')
-CRAWLER_RESOLV = config.getboolean('crawler', 'resolv')
-try:
- FEED_REFRESH_INTERVAL = config.getint('crawler', 'feed_refresh_interval')
-except:
- FEED_REFRESH_INTERVAL = int(config.get('crawler', 'feed_refresh_interval'))
-
-NOTIFICATION_EMAIL = config.get('notification', 'notification_email')
-NOTIFICATION_HOST = config.get('notification', 'host')
-NOTIFICATION_PORT = config.getint('notification', 'port')
-NOTIFICATION_TLS = config.getboolean('notification', 'tls')
-NOTIFICATION_SSL = config.getboolean('notification', 'ssl')
-NOTIFICATION_USERNAME = config.get('notification', 'username')
-NOTIFICATION_PASSWORD = config.get('notification', 'password')
-SENDGRID_API_KEY = config.get('notification', 'sendgrid_api_key')
-POSTMARK_API_KEY = ''
-
-CSRF_ENABLED = True
-# slow database query threshold (in seconds)
-DATABASE_QUERY_TIMEOUT = 0.5
bgstack15