defaults.py 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363
  1. """
  2. Misago default settings
  3. This fille sets everything Misago needs to run.
  4. If you want to add custom app, middleware or path, please update setting vallue
  5. defined in this file instead of copying setting from here to your settings.py.
  6. Yes:
  7. #yourproject/settings.py
  8. INSTALLED_APPS += (
  9. 'myawesomeapp',
  10. )
  11. No:
  12. #yourproject/settings.py
  13. INSTALLED_APPS = (
  14. 'django.contrib.admin',
  15. 'django.contrib.auth',
  16. 'misago.core',
  17. 'misago.conf',
  18. ...
  19. 'myawesomeapp',
  20. )
  21. """
  22. # Default JS debug to false
  23. # This setting used exclusively by test runner and isn't part of public API
  24. _MISAGO_JS_DEBUG = False
  25. # Application definition
  26. INSTALLED_APPS = (
  27. # Load Misago's locale/templates/static files
  28. 'misago',
  29. # Keep misago.users above django.contrib.auth
  30. # so our management commands take precedence over theirs
  31. 'misago.users',
  32. # Django and 3rd party apps
  33. 'django.contrib.admin',
  34. 'django.contrib.auth',
  35. 'django.contrib.contenttypes',
  36. 'django.contrib.sessions',
  37. 'django.contrib.messages',
  38. 'django.contrib.staticfiles',
  39. 'django.contrib.humanize',
  40. 'debug_toolbar',
  41. 'crispy_forms',
  42. 'mptt',
  43. 'rest_framework',
  44. # Misago apps
  45. 'misago.admin',
  46. 'misago.acl',
  47. 'misago.core',
  48. 'misago.conf',
  49. 'misago.markup',
  50. 'misago.legal',
  51. 'misago.categories',
  52. 'misago.threads',
  53. 'misago.readtracker',
  54. 'misago.search',
  55. 'misago.faker',
  56. # Utility for moving data from Misago 0.5
  57. 'misago.datamover',
  58. )
  59. MIDDLEWARE_CLASSES = (
  60. 'debug_toolbar.middleware.DebugToolbarMiddleware',
  61. 'misago.users.middleware.RealIPMiddleware',
  62. 'misago.core.middleware.frontendcontext.FrontendContextMiddleware',
  63. 'django.contrib.sessions.middleware.SessionMiddleware',
  64. 'django.middleware.common.CommonMiddleware',
  65. 'django.middleware.csrf.CsrfViewMiddleware',
  66. 'django.contrib.auth.middleware.AuthenticationMiddleware',
  67. 'django.contrib.auth.middleware.SessionAuthenticationMiddleware',
  68. 'misago.users.middleware.UserMiddleware',
  69. 'django.contrib.messages.middleware.MessageMiddleware',
  70. 'django.middleware.clickjacking.XFrameOptionsMiddleware',
  71. 'misago.core.middleware.exceptionhandler.ExceptionHandlerMiddleware',
  72. 'misago.users.middleware.OnlineTrackerMiddleware',
  73. 'misago.admin.middleware.AdminAuthMiddleware',
  74. 'misago.threads.middleware.UnreadThreadsCountMiddleware',
  75. 'misago.core.middleware.threadstore.ThreadStoreMiddleware',
  76. )
  77. DEFAULT_CONTEXT_PROCESSORS = (
  78. 'django.contrib.auth.context_processors.auth',
  79. 'django.template.context_processors.debug',
  80. 'django.template.context_processors.i18n',
  81. 'django.template.context_processors.media',
  82. 'django.template.context_processors.static',
  83. 'django.template.context_processors.tz',
  84. 'django.contrib.messages.context_processors.messages',
  85. 'misago.core.context_processors.site_address',
  86. 'misago.conf.context_processors.settings',
  87. 'misago.users.context_processors.user_links',
  88. 'misago.legal.context_processors.legal_links',
  89. # Data preloaders
  90. 'misago.conf.context_processors.preload_settings_json',
  91. 'misago.core.context_processors.current_link',
  92. 'misago.markup.context_processors.preload_api_url',
  93. 'misago.threads.context_processors.preload_threads_urls',
  94. 'misago.users.context_processors.preload_user_json',
  95. # Note: keep frontend_context processor last for previous processors
  96. # to be able to add data to request.frontend_context
  97. 'misago.core.context_processors.frontend_context',
  98. )
  99. MISAGO_ACL_EXTENSIONS = (
  100. 'misago.users.permissions.account',
  101. 'misago.users.permissions.profiles',
  102. 'misago.users.permissions.moderation',
  103. 'misago.users.permissions.delete',
  104. 'misago.categories.permissions',
  105. 'misago.threads.permissions.attachments',
  106. 'misago.threads.permissions.polls',
  107. 'misago.threads.permissions.threads',
  108. 'misago.threads.permissions.privatethreads',
  109. 'misago.search.permissions',
  110. )
  111. MISAGO_MARKUP_EXTENSIONS = ()
  112. MISAGO_POSTING_MIDDLEWARES = (
  113. # Always keep FloodProtectionMiddleware middleware first one
  114. 'misago.threads.api.postingendpoint.floodprotection.FloodProtectionMiddleware',
  115. 'misago.threads.api.postingendpoint.category.CategoryMiddleware',
  116. 'misago.threads.api.postingendpoint.privatethread.PrivateThreadMiddleware',
  117. 'misago.threads.api.postingendpoint.reply.ReplyMiddleware',
  118. 'misago.threads.api.postingendpoint.attachments.AttachmentsMiddleware',
  119. 'misago.threads.api.postingendpoint.participants.ParticipantsMiddleware',
  120. 'misago.threads.api.postingendpoint.pin.PinMiddleware',
  121. 'misago.threads.api.postingendpoint.close.CloseMiddleware',
  122. 'misago.threads.api.postingendpoint.hide.HideMiddleware',
  123. 'misago.threads.api.postingendpoint.protect.ProtectMiddleware',
  124. 'misago.threads.api.postingendpoint.recordedit.RecordEditMiddleware',
  125. 'misago.threads.api.postingendpoint.updatestats.UpdateStatsMiddleware',
  126. 'misago.threads.api.postingendpoint.mentions.MentionsMiddleware',
  127. 'misago.threads.api.postingendpoint.subscribe.SubscribeMiddleware',
  128. 'misago.threads.api.postingendpoint.syncprivatethreads.SyncPrivateThreadsMiddleware',
  129. # Always keep SaveChangesMiddleware middleware after all state-changing middlewares
  130. 'misago.threads.api.postingendpoint.savechanges.SaveChangesMiddleware',
  131. # Those middlewares are last because they don't change app state
  132. 'misago.threads.api.postingendpoint.emailnotification.EmailNotificationMiddleware',
  133. )
  134. MISAGO_THREAD_TYPES = (
  135. 'misago.threads.threadtypes.thread.Thread',
  136. 'misago.threads.threadtypes.privatethread.PrivateThread',
  137. )
  138. MISAGO_SEARCH_EXTENSIONS = (
  139. 'misago.threads.search.SearchThreads',
  140. 'misago.users.search.SearchUsers',
  141. )
  142. # Internationalization
  143. USE_I18N = True
  144. USE_L10N = True
  145. USE_TZ = True
  146. TIME_ZONE = 'UTC'
  147. # Misago specific date formats
  148. # https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date
  149. MISAGO_COMPACT_DATE_FORMAT_DAY_MONTH = 'j M'
  150. MISAGO_COMPACT_DATE_FORMAT_DAY_MONTH_YEAR = 'M \'y'
  151. # Use Misago CSRF Failure Page
  152. CSRF_FAILURE_VIEW = 'misago.core.errorpages.csrf_failure'
  153. # Use Misago authentication
  154. AUTH_USER_MODEL = 'misago_users.User'
  155. AUTHENTICATION_BACKENDS = (
  156. 'misago.users.authbackends.MisagoBackend',
  157. )
  158. MISAGO_NEW_REGISTRATIONS_VALIDATORS = (
  159. 'misago.users.validators.validate_gmail_email',
  160. 'misago.users.validators.validate_with_sfs',
  161. )
  162. MISAGO_USE_STOP_FORUM_SPAM = True
  163. MISAGO_STOP_FORUM_SPAM_MIN_CONFIDENCE = 80
  164. # How many e-mails should be sent in single step.
  165. # This is used for conserving memory usage when mailing many users at same time
  166. MISAGO_MAILER_BATCH_SIZE = 20
  167. # Auth paths
  168. MISAGO_LOGIN_API_URL = 'auth'
  169. LOGIN_REDIRECT_URL = 'misago:index'
  170. LOGIN_URL = 'misago:login'
  171. LOGOUT_URL = 'misago:logout'
  172. # Misago Admin Path
  173. # Omit starting and trailing slashes
  174. # To disable Misago admin, empty this value
  175. MISAGO_ADMIN_PATH = 'admincp'
  176. # Admin urls namespaces that Misago's AdminAuthMiddleware should protect
  177. MISAGO_ADMIN_NAMESPACES = (
  178. 'admin',
  179. 'misago:admin',
  180. )
  181. # How long (in minutes) since previous request to admin namespace should
  182. # admin session last.
  183. MISAGO_ADMIN_SESSION_EXPIRATION = 60
  184. # Display threads on forum index
  185. # Change this to false to display categories list instead
  186. MISAGO_THREADS_ON_INDEX = True
  187. # Max age of notifications in days
  188. # Notifications older than this are deleted
  189. # On very active forums its better to keep this smaller
  190. MISAGO_NOTIFICATIONS_MAX_AGE = 40
  191. # Fail-safe limits in case forum is raided by spambot
  192. # No user may exceed those limits, however you may disable
  193. # them by changing them to 0
  194. MISAGO_DIALY_POST_LIMIT = 600
  195. MISAGO_HOURLY_POST_LIMIT = 100
  196. # Function used for generating individual avatar for user
  197. MISAGO_DYNAMIC_AVATAR_DRAWER = 'misago.users.avatars.dynamic.draw_default'
  198. # Path to directory containing avatar galleries
  199. # Those galleries can be loaded by running loadavatargallery command
  200. MISAGO_AVATAR_GALLERY = None
  201. # Save user avatars for sizes
  202. # Keep sizes ordered from greatest to smallest
  203. # Max size also controls min size of uploaded image as well as crop size
  204. MISAGO_AVATARS_SIZES = (400, 200, 150, 100, 64, 50, 30)
  205. # Path to blank avatar
  206. MISAGO_BLANK_AVATAR = 'blank-avatar.png'
  207. # Number of threads displayed on single page
  208. MISAGO_THREADS_PER_PAGE = 25
  209. MISAGO_THREADS_TAIL = 15
  210. # Number of posts displayed on single thread page
  211. MISAGO_POSTS_PER_PAGE = 18
  212. MISAGO_POSTS_TAIL = 6
  213. # Number of events displayed on single thread page
  214. # If there's more events than specified, oldest events will be trimmed
  215. MISAGO_EVENTS_PER_PAGE = 20
  216. # Number of attachments possible to assign to single post
  217. MISAGO_POST_ATTACHMENTS_LIMIT = 16
  218. # Max allowed size of image before Misago will generate thumbnail for it
  219. MISAGO_ATTACHMENT_IMAGE_SIZE_LIMIT = (500, 500)
  220. # Length of secret used for attachments url tokens and filenames
  221. MISAGO_ATTACHMENT_SECRET_LENGTH = 64
  222. # How old (in minutes) should attachments unassociated with any be before they'll
  223. # automatically deleted by "clearattachments" task
  224. MISAGO_ATTACHMENT_ORPHANED_EXPIRE = 24 * 60
  225. # Names of files served when user requests file that doesn't exist or is unavailable
  226. # Those files will be sought within STATIC_ROOT directory
  227. MISAGO_404_IMAGE = 'misago/img/error-404.png'
  228. MISAGO_403_IMAGE = 'misago/img/error-403.png'
  229. # Controls max age in days of items that Misago has to process to make rankings
  230. # Used for active posters and most liked users lists
  231. # If your forum runs out of memory when trying to generate users rankings list
  232. # or you want those to be more dynamic, give this setting lower value
  233. # You don't have to be overzelous with this as user rankings are cached for 24h
  234. MISAGO_RANKING_LENGTH = 30
  235. # Controls max number of items displayed on ranked lists
  236. MISAGO_RANKING_SIZE = 50
  237. # Controls number of users displayed on single page
  238. MISAGO_USERS_PER_PAGE = 12
  239. # Controls amount of data used by readtracking system
  240. # Items older than number of days specified below are considered read
  241. # Depending on amount of new content being posted on your forum you may want
  242. # To decrease or increase this number to fine-tune readtracker performance
  243. MISAGO_READTRACKER_CUTOFF = 40
  244. # Default forms templates
  245. CRISPY_TEMPLATE_PACK = 'bootstrap3'
  246. # Rest Framework Configuration
  247. REST_FRAMEWORK = {
  248. 'DEFAULT_PERMISSION_CLASSES': (
  249. 'misago.core.rest_permissions.IsAuthenticatedOrReadOnly',
  250. ),
  251. 'DEFAULT_RENDERER_CLASSES': (
  252. 'rest_framework.renderers.JSONRenderer',
  253. ),
  254. 'EXCEPTION_HANDLER': 'misago.core.exceptionhandler.handle_api_exception',
  255. 'UNAUTHENTICATED_USER': 'misago.users.models.AnonymousUser',
  256. 'URL_FORMAT_OVERRIDE': None,
  257. }
  258. # Register Misago debug panels
  259. DEBUG_TOOLBAR_PANELS = (
  260. 'debug_toolbar.panels.versions.VersionsPanel',
  261. 'debug_toolbar.panels.timer.TimerPanel',
  262. 'debug_toolbar.panels.settings.SettingsPanel',
  263. 'debug_toolbar.panels.headers.HeadersPanel',
  264. 'debug_toolbar.panels.request.RequestPanel',
  265. 'debug_toolbar.panels.sql.SQLPanel',
  266. 'misago.acl.panels.MisagoACLPanel',
  267. 'debug_toolbar.panels.staticfiles.StaticFilesPanel',
  268. 'debug_toolbar.panels.templates.TemplatesPanel',
  269. 'debug_toolbar.panels.cache.CachePanel',
  270. 'debug_toolbar.panels.signals.SignalsPanel',
  271. 'debug_toolbar.panels.logging.LoggingPanel',
  272. )
  273. # Show debug toolbar for localhost
  274. INTERNAL_IPS = ['127.0.0.1']