settings_base.py 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346
  1. # -*- coding: utf-8 -*-
  2. from __future__ import unicode_literals
  3. import os
  4. import ldap
  5. # Django settings for coin project.
  6. # Build paths inside the project like this: os.path.join(BASE_DIR, ...)
  7. BASE_DIR = os.path.dirname(os.path.dirname(__file__))
  8. PROJECT_PATH = os.path.abspath(os.path.dirname(__file__))
  9. DEBUG = TEMPLATE_DEBUG = True
  10. ADMINS = (
  11. # ('Your Name', 'your_email@example.com'),
  12. )
  13. # Email on which to send emails
  14. NOTIFICATION_EMAILS = None
  15. MANAGERS = ADMINS
  16. DATABASES = {
  17. # Database hosted on vagant test box
  18. 'default': {
  19. 'ENGINE': 'django.db.backends.postgresql_psycopg2',
  20. 'NAME': 'coin',
  21. 'USER': 'coin',
  22. 'PASSWORD': 'coin',
  23. 'HOST': 'localhost', # Empty for localhost through domain sockets
  24. 'PORT': '15432', # Empty for default
  25. },
  26. }
  27. # Hosts/domain names that are valid for this site; required if DEBUG is False
  28. # See https://docs.djangoproject.com/en/1.7/ref/settings/#allowed-hosts
  29. ALLOWED_HOSTS = []
  30. # Local time zone for this installation. Choices can be found here:
  31. # http://en.wikipedia.org/wiki/List_of_tz_zones_by_name
  32. # although not all choices may be available on all operating systems.
  33. # In a Windows environment this must be set to your system time zone.
  34. TIME_ZONE = 'Europe/Paris'
  35. # Language code for this installation. All choices can be found here:
  36. # http://www.i18nguy.com/unicode/language-identifiers.html
  37. LANGUAGE_CODE = 'fr-fr'
  38. SITE_ID = 1
  39. # If you set this to False, Django will make some optimizations so as not
  40. # to load the internationalization machinery.
  41. USE_I18N = True
  42. # If you set this to False, Django will not format dates, numbers and
  43. # calendars according to the current locale.
  44. USE_L10N = True
  45. # If you set this to False, Django will not use timezone-aware datetimes.
  46. USE_TZ = True
  47. # Default URL for login and logout
  48. LOGIN_URL = '/members/login'
  49. LOGIN_REDIRECT_URL = '/members'
  50. LOGOUT_URL = '/members/logout'
  51. # Absolute filesystem path to the directory that will hold user-uploaded files.
  52. # Example: "/var/www/example.com/media/"
  53. MEDIA_ROOT = os.path.join(BASE_DIR, 'media/')
  54. # URL that handles the media served from MEDIA_ROOT. Make sure to use a
  55. # trailing slash.
  56. # Examples: "http://example.com/media/", "http://media.example.com/"
  57. MEDIA_URL = '/media/'
  58. # Absolute path to the directory static files should be collected to.
  59. # Don't put anything in this directory yourself; store your static files
  60. # in apps' "static/" subdirectories and in STATICFILES_DIRS.
  61. # Example: "/var/www/example.com/static/"
  62. STATIC_ROOT = os.path.join(BASE_DIR, 'static/')
  63. # URL prefix for static files.
  64. # Example: "http://example.com/static/", "http://static.example.com/"
  65. STATIC_URL = '/static/'
  66. # Additional locations of static files
  67. STATICFILES_DIRS = (
  68. # Put strings here, like "/home/html/static" or "C:/www/django/static".
  69. # Always use forward slashes, even on Windows.
  70. # Don't forget to use absolute paths, not relative paths.
  71. )
  72. # List of finder classes that know how to find static files in
  73. # various locations.
  74. STATICFILES_FINDERS = (
  75. 'django.contrib.staticfiles.finders.FileSystemFinder',
  76. 'django.contrib.staticfiles.finders.AppDirectoriesFinder',
  77. #'django.contrib.staticfiles.finders.DefaultStorageFinder',
  78. )
  79. # Location of private files. (Like invoices)
  80. # In production, this location should not be publicly accessible through
  81. # the web server
  82. PRIVATE_FILES_ROOT = os.path.join(BASE_DIR, 'smedia/')
  83. # Backend to use when sending private files to client
  84. # In production, must be sendfile.backends.xsendfile with Apache xsend file mod
  85. # Or failing xsendfile, use : sendfile.backends.simple
  86. # https://github.com/johnsensible/django-sendfile
  87. SENDFILE_BACKEND = 'sendfile.backends.development'
  88. # Make this unique, and don't share it with anybody.
  89. SECRET_KEY = '!qy_)gao6q)57#mz1s-d$5^+dp1nt=lk1d19&9bb3co37vn)!3'
  90. # List of callables that know how to import templates from various sources.
  91. TEMPLATE_LOADERS = (
  92. 'django.template.loaders.filesystem.Loader',
  93. 'django.template.loaders.app_directories.Loader',
  94. #'django.template.loaders.eggs.Loader',
  95. )
  96. MIDDLEWARE_CLASSES = (
  97. 'debug_toolbar.middleware.DebugToolbarMiddleware',
  98. 'django.middleware.common.CommonMiddleware',
  99. 'django.contrib.sessions.middleware.SessionMiddleware',
  100. 'django.middleware.csrf.CsrfViewMiddleware',
  101. 'django.contrib.auth.middleware.AuthenticationMiddleware',
  102. 'django.contrib.messages.middleware.MessageMiddleware',
  103. # Uncomment the next line for simple clickjacking protection:
  104. # 'django.middleware.clickjacking.XFrameOptionsMiddleware',
  105. )
  106. # Do not load jQuery from crappy CDN
  107. DEBUG_TOOLBAR_CONFIG = {
  108. 'JQUERY_URL': '/static/js/vendor/jquery.js'
  109. }
  110. # Used for debug toolbar
  111. INTERNAL_IPS = ['127.0.0.1', '::1']
  112. ROOT_URLCONF = 'coin.urls'
  113. # Python dotted path to the WSGI application used by Django's runserver.
  114. WSGI_APPLICATION = 'coin.wsgi.application'
  115. TEMPLATE_DIRS = (
  116. # Only absolute paths, always forward slashes
  117. os.path.join(PROJECT_PATH, 'templates/'),
  118. )
  119. EXTRA_TEMPLATE_DIRS = tuple()
  120. INSTALLED_APPS = (
  121. 'debug_toolbar', # always installed, but enabled only if DEBUG=True
  122. 'django.contrib.auth',
  123. 'django.contrib.contenttypes',
  124. 'django.contrib.sessions',
  125. 'django.contrib.sites',
  126. 'ldapdb', # LDAP as database backend
  127. 'django.contrib.messages',
  128. 'django.contrib.staticfiles',
  129. # Uncomment the next line to enable the admin:
  130. 'django.contrib.admin',
  131. 'netfields',
  132. # Uncomment the next line to enable admin documentation:
  133. #'django.contrib.admindocs',
  134. 'polymorphic',
  135. # 'south',
  136. 'autocomplete_light', #Automagic autocomplete foreingkey form component
  137. 'activelink', #Detect if a link match actual page
  138. 'compat',
  139. 'hijack',
  140. 'coin',
  141. 'coin.members',
  142. 'coin.offers',
  143. 'coin.billing',
  144. 'coin.resources',
  145. 'coin.reverse_dns',
  146. 'coin.configuration',
  147. 'coin.isp_database',
  148. )
  149. EXTRA_INSTALLED_APPS = tuple()
  150. # A sample logging configuration. The only tangible logging
  151. # performed by this configuration is to send an email to
  152. # the site admins on every HTTP 500 error when DEBUG=False.
  153. # See http://docs.djangoproject.com/en/dev/topics/logging for
  154. # more details on how to customize your logging configuration.
  155. LOGGING = {
  156. 'version': 1,
  157. 'disable_existing_loggers': False,
  158. 'formatters': {
  159. },
  160. 'filters': {
  161. 'require_debug_false': {
  162. '()': 'django.utils.log.RequireDebugFalse'
  163. }
  164. },
  165. 'handlers': {
  166. 'mail_admins': {
  167. 'level': 'ERROR',
  168. 'filters': ['require_debug_false'],
  169. 'class': 'django.utils.log.AdminEmailHandler'
  170. },
  171. 'console': {
  172. 'class': 'logging.StreamHandler',
  173. },
  174. },
  175. 'loggers': {
  176. 'django.request': {
  177. 'handlers': ['mail_admins'],
  178. 'level': 'ERROR',
  179. 'propagate': True,
  180. },
  181. 'django': {
  182. 'handlers': ['console'],
  183. 'level': os.getenv('DJANGO_LOG_LEVEL', 'INFO'),
  184. },
  185. "coin.billing": {
  186. 'handlers': ['console'],
  187. 'level': 'INFO',
  188. }
  189. }
  190. }
  191. TEMPLATE_CONTEXT_PROCESSORS = (
  192. "django.contrib.auth.context_processors.auth",
  193. "django.core.context_processors.debug",
  194. "django.core.context_processors.i18n",
  195. "django.core.context_processors.media",
  196. "django.core.context_processors.static",
  197. "django.core.context_processors.tz",
  198. "django.core.context_processors.request",
  199. "coin.isp_database.context_processors.branding",
  200. "coin.context_processors.installed_apps",
  201. "django.contrib.messages.context_processors.messages")
  202. AUTH_USER_MODEL = 'members.Member'
  203. AUTHENTICATION_BACKENDS = (
  204. 'django.contrib.auth.backends.ModelBackend',
  205. )
  206. TEST_RUNNER = 'django.test.runner.DiscoverRunner'
  207. # Where admins are redirected to after hijacking a user
  208. HIJACK_LOGIN_REDIRECT_URL = '/'
  209. # Where admins are redirected to after releasing a user
  210. HIJACK_LOGOUT_REDIRECT_URL = '/admin/members/member/'
  211. # Needed for link in admin
  212. HIJACK_ALLOW_GET_REQUESTS = True
  213. GRAPHITE_SERVER = "http://localhost"
  214. # Configuration for outgoing emails
  215. #DEFAULT_FROM_EMAIL = "coin@example.com"
  216. #EMAIL_USE_TLS = True
  217. #EMAIL_HOST = "smtp.chezmoi.tld"
  218. # Do we use LDAP or not
  219. LDAP_ACTIVATE = False
  220. # Not setting them results in NameError
  221. LDAP_USER_BASE_DN = None
  222. VPN_CONF_BASE_DN = None
  223. # Allow member to edit their vpn
  224. MEMBER_CAN_EDIT_VPN_CONF = True
  225. # Membership configuration
  226. # Default cotisation in €, per year
  227. DEFAULT_MEMBERSHIP_FEE = 20
  228. # Link to a page with information on how to become a member or pay the
  229. # membership fee
  230. MEMBER_MEMBERSHIP_INFO_URL = ''
  231. # When should we remind a member about its membership ? List of deltas from
  232. # the anniversary date, can be a combination of positive (after anniversary)
  233. # and negative (before aniversary) af months, days and weeks.
  234. MEMBERSHIP_FEE_REMINDER_DATES = [
  235. {'months': -3}, # 3 months before
  236. {'months': -2}, # 2 months before
  237. {'months': -1}, # 1 month before
  238. {'days': 0}, # the day of anniversary
  239. {'months': +1}, # 1 month after
  240. ]
  241. # Customize template titles
  242. SITE_TITLE = "COIN - SI"
  243. SITE_HEADER = "COIN est un Outil pour un Internet Neutre"
  244. SITE_LOGO_URL = ''
  245. # Pattern used to display a unique reference for any subscription
  246. # Helpful for bank wire transfer identification
  247. SUBSCRIPTION_REFERENCE = 'REF-{subscription.offer.reference}-{subscription.pk}'
  248. # Template string to display the label the member should indicates for the bank
  249. # transfer
  250. MEMBERSHIP_REFERENCE = "ADH-{user.pk}"
  251. # Payment delay in days
  252. PAYMENT_DELAY = 30
  253. # Reset session if cookie older than 2h.
  254. SESSION_COOKIE_AGE = 7200
  255. # RSS/Atom feeds to display on dashboard
  256. # feed name (used in template), url, max entries to display
  257. # "isp" entry gets picked automatically in default index template
  258. FEEDS = (
  259. ('ffdn', 'http://www.ffdn.org/fr/rss.xml', 3),
  260. # ('isp', 'http://isp.example.com/feed/', 3),
  261. )
  262. # Allow user to edit their VPS Info
  263. MEMBER_CAN_EDIT_VPS_CONF = True
  264. # Allow user to edit their VPN Info
  265. MEMBER_CAN_EDIT_VPN_CONF = True
  266. # Account registration
  267. # Allow visitor to join the association by register on COIN
  268. REGISTRATION_OPEN = False
  269. # All account with unvalidated email will be deleted after X days
  270. ACCOUNT_ACTIVATION_DAYS = 7
  271. # Member can edit their own data
  272. MEMBER_CAN_EDIT_PROFILE = False
  273. # Allows to deactivate displays and calculations of balances.
  274. HANDLE_BALANCE = False
  275. # Add subscription comments in invoice items
  276. INVOICES_INCLUDE_CONFIG_COMMENTS = True
  277. ## maillist module
  278. # Command that push mailling-list subscribers to the lists server
  279. MAILLIST_SYNC_COMMAND = ''