Forked mumble-django project from https://bitbucket.org/Svedrin/mumble-django
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

293 lines
11 KiB

  1. # -*- coding: utf-8 -*-
  2. # kate: space-indent on; indent-width 4; replace-tabs on;
  3. # Django settings for mumble_django project.
  4. """
  5. * Copyright © 2009-2010, Michael "Svedrin" Ziegler <diese-addy@funzt-halt.net>
  6. *
  7. * Mumble-Django is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation; either version 2 of the License, or
  10. * (at your option) any later version.
  11. *
  12. * This package is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. """
  17. #################################################################
  18. #################################################################
  19. ## ##
  20. ## The slice to use for communication over ZeroC Ice. ##
  21. ## This must be set to the path to the Murmur.ice file that ##
  22. ## resides in your Murmur directory. ##
  23. ## Not used on recent Murmur versions, because the slice file ##
  24. ## can be retrieved from Murmur directly. ##
  25. SLICE = '/usr/share/slice/Murmur.ice' ##
  26. ## ##
  27. ## The include dir to pass to Ice. Set this to a path in which ##
  28. ## $SLICEDIR/Ice/SliceChecksumDict.ice exists. ##
  29. ## Not used on recent Ice versions, because the SLICEDIR can ##
  30. ## be retrieved from Ice directly. ##
  31. SLICEDIR = '/usr/share/Ice/slice' ##
  32. ## ##
  33. #################################################################
  34. ## ##
  35. ## The path inside the VirtualHost that M-D lives in: ##
  36. ## ##
  37. MUMBLE_DJANGO_URL = '/' ##
  38. #MUMBLE_DJANGO_URL = '/mumble-django/' ##
  39. ## ##
  40. ## Make sure you use a trailing slash! ##
  41. ## ##
  42. #################################################################
  43. ## ##
  44. ## Mumble-Django will try to auto-detect this value if it ##
  45. ## isn't set, which is the default. However, if this should ##
  46. ## not work as expected, set this to the path where you ##
  47. ## extracted Mumble-Django. ##
  48. ## ##
  49. ## Default: Auto Detection ##
  50. MUMBLE_DJANGO_ROOT = None ##
  51. ## Examples: ##
  52. #MUMBLE_DJANGO_ROOT = '/srv/mumble-django' ##
  53. #MUMBLE_DJANGO_ROOT = 'c:/web/mumble-django' ##
  54. ## ##
  55. #################################################################
  56. ## ##
  57. ## For a basic installation, this is all you need to edit in ##
  58. ## this file, the rest will be handled automatically! ##
  59. ## ##
  60. #################################################################
  61. #################################################################
  62. # Show debug information on errors?
  63. # If you want to file a bug report, please enable this option.
  64. DEBUG = True
  65. # These IPs will be delivered the debug templates if DEBUG == True.
  66. INTERNAL_IPS = ['127.0.0.1']
  67. # Local time zone for this installation. Choices can be found here:
  68. # http://en.wikipedia.org/wiki/List_of_tz_zones_by_name
  69. # although not all choices may be available on all operating systems.
  70. # If running in a Windows environment this must be set to the same as your
  71. # system time zone.
  72. TIME_ZONE = 'Europe/Berlin'
  73. # Language code for this installation. All choices can be found here:
  74. # http://www.i18nguy.com/unicode/language-identifiers.html
  75. LANGUAGE_CODE = 'en-us'
  76. # The Theme to use. None for the builtin theme.
  77. THEME = None
  78. # URL Template for constructing Gravatars.
  79. GRAVATAR_URL = 'http://www.gravatar.com/avatar/%(hash)s.jpg?d=monsterid&s=%(size)d'
  80. # Automatically set the Gravatar as the user's avatar when creating new users?
  81. USE_GRAVATAR = True
  82. # The default connection string to set for newly created instances.
  83. # Ice:
  84. DEFAULT_CONN = 'Meta:tcp -h 127.0.0.1 -p 6502'
  85. # DBus:
  86. #DEFAULT_CONN = 'net.sourceforge.mumble.murmur'
  87. # Default email address to send mails from.
  88. DEFAULT_FROM_EMAIL = "webmaster@localhost"
  89. # Length of the account activation period, in days.
  90. ACCOUNT_ACTIVATION_DAYS = 30
  91. # Should subchannels be shown, even if there are no players in them?
  92. SHOW_EMPTY_SUBCHANS = False
  93. # Protect the registration form for private servers?
  94. # If set to True, people will need to enter the server password in order to create accounts,
  95. # and will not be able to link existing accounts.
  96. PROTECTED_MODE = False
  97. # Account linking allows users who registered their accounts through Mumble instead of using
  98. # Mumble-Django, to tell MD that this account belongs to them. Then they can use MD to change
  99. # their passwords.
  100. # This will of course require them to enter the password that belongs to the Murmur account,
  101. # and the accounts will only be linked if the password is correct.
  102. # By default, this is enabled only for non-admin accounts, because if an admin account gets
  103. # stolen they could easily take over the server. (So make sure the password can't be easily
  104. # guessed, use at least over 9000 letters, blah blah.)
  105. # This feature is only available if PROTECTED_MODE is not active.
  106. ALLOW_ACCOUNT_LINKING = True # Allow linking in general?
  107. ALLOW_ACCOUNT_LINKING_ADMINS = False # Allow linking for Admin accounts?
  108. # Warning and Critical levels for the Munin plugin. These will be multiplied with the
  109. # server instance's slot count to calculate the real levels.
  110. MUNIN_WARNING = 0.80
  111. MUNIN_CRITICAL = 0.95
  112. # The graph title.
  113. MUNIN_TITLE = 'Mumble Users'
  114. # see <http://munin.projects.linpro.no/wiki/graph_category_list> for a list of valid categories.
  115. MUNIN_CATEGORY = 'mumble'
  116. # Set to True if you do not wish offline servers to appear in the server list.
  117. HIDE_OFFLINE_SERVERS=False
  118. # True to display users above channels in the channel viewer.
  119. USERS_ABOVE_CHANNELS=False
  120. ###################################################################
  121. ## ##
  122. ## The following settings normally do not require changes, and ##
  123. ## you should only change them if you know what you're doing. ##
  124. ## ##
  125. ###################################################################
  126. from os.path import join, dirname, abspath, exists
  127. if not MUMBLE_DJANGO_ROOT or not exists( MUMBLE_DJANGO_ROOT ):
  128. MUMBLE_DJANGO_ROOT = dirname(dirname(abspath(__file__)))
  129. BASE_DIR = MUMBLE_DJANGO_ROOT
  130. # Default mumble port. If your server runs under this port, it will not be
  131. # included in the links in the Channel Viewer.
  132. MUMBLE_DEFAULT_PORT = 64738
  133. if not MUMBLE_DJANGO_URL:
  134. MUMBLE_DJANGO_URL = '/'
  135. elif MUMBLE_DJANGO_URL[-1] != '/':
  136. MUMBLE_DJANGO_URL = MUMBLE_DJANGO_URL + '/'
  137. # Database settings for Mumble-Django's database. These do NOT need to point
  138. # to Murmur's database, Mumble-Django should use its own!
  139. DATABASES = {
  140. 'default': {
  141. 'ENGINE': 'django.db.backends.sqlite3',
  142. 'NAME': join( MUMBLE_DJANGO_ROOT, 'db', 'mumble-django.db3' ),
  143. 'USER': '',
  144. 'PASSWORD': '',
  145. 'HOST': '',
  146. 'PORT': '',
  147. }
  148. }
  149. # Email settings. only change if the defaults don't work
  150. #EMAIL_HOST = "localhost"
  151. #EMAIL_PORT = 25
  152. #EMAIL_HOST_USER = ""
  153. #EMAIL_HOST_PASSWORD = ""
  154. #EMAIL_USE_TLS = True
  155. TEMPLATE_DEBUG = DEBUG
  156. SITE_ID = 1
  157. # If you set this to False, Django will make some optimizations so as not
  158. # to load the internationalization machinery.
  159. USE_I18N = True
  160. USE_L10N = True
  161. STATIC_URL = MUMBLE_DJANGO_URL + 'static/'
  162. STATICFILES_DIRS = (
  163. join( MUMBLE_DJANGO_ROOT, 'htdocs' ),
  164. )
  165. ## URL to static files of the currently active theme
  166. THEME_URL = '%sstatic/themes/%s/' % ( MUMBLE_DJANGO_URL, THEME )
  167. # URL to the login view
  168. LOGIN_URL = MUMBLE_DJANGO_URL + 'accounts/login/'
  169. LOGIN_REDIRECT_URL = MUMBLE_DJANGO_URL + 'accounts/profile/'
  170. # Automatically generate a .secret.txt file containing the SECRET_KEY.
  171. # Shamelessly stolen from ByteFlow: <http://www.byteflow.su>
  172. try:
  173. SECRET_KEY
  174. except NameError:
  175. SECRET_FILE = join(MUMBLE_DJANGO_ROOT, '.secret.txt')
  176. try:
  177. SECRET_KEY = open(SECRET_FILE).read().strip()
  178. except IOError:
  179. try:
  180. from random import choice
  181. SECRET_KEY = ''.join([choice('abcdefghijklmnopqrstuvwxyz0123456789!@#$%^&*(-_=+)') for i in range(50)])
  182. secret = file(SECRET_FILE, 'w')
  183. secret.write(SECRET_KEY)
  184. secret.close()
  185. except IOError:
  186. Exception('Please create a %s file with random characters to generate your secret key!' % SECRET_FILE)
  187. MIDDLEWARE_CLASSES = (
  188. 'django.middleware.common.CommonMiddleware',
  189. 'django.contrib.sessions.middleware.SessionMiddleware',
  190. 'django.middleware.csrf.CsrfViewMiddleware',
  191. 'django.middleware.locale.LocaleMiddleware',
  192. 'django.contrib.auth.middleware.AuthenticationMiddleware',
  193. 'django.contrib.messages.middleware.MessageMiddleware'
  194. )
  195. ROOT_URLCONF = 'urls'
  196. if THEME:
  197. TEMPLATE_DIRS = [ join( MUMBLE_DJANGO_ROOT, 'themes', THEME ) ]
  198. else:
  199. TEMPLATE_DIRS = []
  200. TEMPLATE_DIRS.extend((
  201. # Put strings here, like "/home/html/django_templates" or "C:/www/django/templates".
  202. # Always use forward slashes, even on Windows.
  203. # Don't forget to use absolute paths, not relative paths.
  204. join( MUMBLE_DJANGO_ROOT, 'pyweb', 'templates' ),
  205. ))
  206. TEMPLATE_CONTEXT_PROCESSORS = [
  207. "django.contrib.auth.context_processors.auth",
  208. "django.core.context_processors.debug",
  209. "django.core.context_processors.i18n",
  210. "django.core.context_processors.media",
  211. 'processors.installed_apps',
  212. 'processors.mumble_version',
  213. 'processors.mumble_media_prefix',
  214. ]
  215. if THEME:
  216. TEMPLATE_CONTEXT_PROCESSORS.append('processors.theme_url')
  217. #TEST_RUNNER = 'mumble.testrunner.run_tests'
  218. #TEST_MURMUR_LAB_DIR = join( dirname(MUMBLE_DJANGO_ROOT), 'murmur' )
  219. #TEST_MURMUR_FILES_DIR = join( MUMBLE_DJANGO_ROOT, 'testdata' )
  220. CONVERSIONSQL_ROOT = join( MUMBLE_DJANGO_ROOT, "pyweb", "mumble", "conversionsql" )
  221. INSTALLED_APPS = [
  222. 'django.contrib.auth',
  223. 'django.contrib.admin',
  224. 'django.contrib.admindocs',
  225. 'django.contrib.contenttypes',
  226. 'django.contrib.messages',
  227. 'django.contrib.staticfiles',
  228. 'django.contrib.sessions',
  229. 'django.contrib.sites',
  230. 'mumble',
  231. ]
  232. def modprobe( name ):
  233. """ Try to import the named module, and if that works add it to INSTALLED_APPS. """
  234. try:
  235. __import__( name )
  236. except ImportError:
  237. pass
  238. else:
  239. INSTALLED_APPS.append( name )
  240. # Check if rosetta is available.
  241. # http://code.google.com/p/django-rosetta
  242. modprobe( "rosetta" )
  243. # Check if django_extensions is available.
  244. modprobe( "django_extensions" )
  245. modprobe( 'registration' )