settings.py 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411
  1. import core.settings_vars as sv
  2. import os
  3. from django.contrib.messages import constants as message_constants
  4. from django.utils.translation import gettext_lazy as _
  5. from pathlib import Path
  6. ########
  7. #
  8. # Django
  9. #
  10. ########
  11. # Build paths inside the project like this: BASE_DIR / 'subdir'.
  12. BASE_DIR = Path(__file__).resolve().parent.parent
  13. # SECURITY WARNING: keep the secret key used in production secret!
  14. SECRET_KEY = sv.SECRET_KEY
  15. # SECURITY WARNING: don't run with debug turned on in production!
  16. DEBUG = sv.DEBUG
  17. CSRF_TRUSTED_ORIGINS = sv.CSRF_TRUSTED_ORIGINS
  18. ALLOWED_HOSTS = sv.ALLOWED_HOSTS
  19. INTERNAL_IPS = sv.INTERNAL_IPS
  20. # Application definition
  21. INSTALLED_APPS = [
  22. 'design_template',
  23. 'jazzmin',
  24. 'django.contrib.admin',
  25. 'django.contrib.auth',
  26. 'django.contrib.contenttypes',
  27. 'django.contrib.sessions',
  28. 'django.contrib.messages',
  29. 'django.contrib.staticfiles',
  30. 'user.apps.UserConfig',
  31. 'sharix_admin.apps.ShariXAdminConfig',
  32. 'tickets.apps.TicketsConfig',
  33. 'dbsynce.apps.DbsyncedConfig',
  34. 'webservice_running.apps.WebserviceRunningConfig',
  35. 'django_tables2',
  36. 'schema_graph',
  37. "django.contrib.sites",
  38. "django.contrib.flatpages",
  39. "django_extensions",
  40. 'rest_framework',
  41. "rest_framework_api_key",
  42. 'rest_framework.authtoken',
  43. 'djoser',
  44. 'drf_yasg',
  45. 'django_spaghetti',
  46. 'debug_toolbar',
  47. 'ckeditor',
  48. 'fontawesomefree',
  49. 'landing',
  50. 'captcha',
  51. ]
  52. MIDDLEWARE = [
  53. 'django.middleware.security.SecurityMiddleware',
  54. 'django.contrib.sessions.middleware.SessionMiddleware',
  55. 'django.middleware.locale.LocaleMiddleware',
  56. 'django.middleware.common.CommonMiddleware',
  57. 'django.middleware.csrf.CsrfViewMiddleware',
  58. 'django.contrib.auth.middleware.AuthenticationMiddleware',
  59. 'django.contrib.messages.middleware.MessageMiddleware',
  60. 'django.middleware.clickjacking.XFrameOptionsMiddleware',
  61. "debug_toolbar.middleware.DebugToolbarMiddleware",
  62. ]
  63. ROOT_URLCONF = "core.urls"
  64. LOGIN_URL = "sharix_admin:auth_login"
  65. LOGIN_REDIRECT_URL = "sharix_admin:main"
  66. LOGOUT_REDIRECT_URL = "sharix_admin:auth_login"
  67. SESSION_EXPIRE_AT_BROWSER_CLOSE = False
  68. SESSION_SECURITY_WARN_AFTER = 5
  69. SESSION_SECURITY_EXPIRE_AFTER = 12
  70. TEMPLATES = [
  71. {
  72. "BACKEND": "django.template.backends.django.DjangoTemplates",
  73. "DIRS": [os.path.join(BASE_DIR, "templates")],
  74. "APP_DIRS": True,
  75. "OPTIONS": {
  76. "context_processors": [
  77. "django.template.context_processors.debug",
  78. "django.template.context_processors.request",
  79. "django.contrib.auth.context_processors.auth",
  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. "design_template.context_processors.get_name_system",
  85. "django.contrib.messages.context_processors.messages",
  86. ],
  87. },
  88. }
  89. ]
  90. WSGI_APPLICATION = 'core.wsgi.application'
  91. # Database
  92. # https://docs.djangoproject.com/en/4.0/ref/settings/#databases
  93. if sv.DB_NAME:
  94. DATABASES = {
  95. 'default': {
  96. 'ENGINE': 'django.db.backends.postgresql',
  97. 'NAME': sv.DB_NAME,
  98. 'USER': sv.DB_USER,
  99. 'PASSWORD': sv.DB_PASSWORD,
  100. 'HOST': sv.DB_HOST,
  101. 'PORT': sv.DB_PORT,
  102. }
  103. }
  104. else:
  105. DATABASES = {
  106. 'default': {
  107. 'ENGINE': 'django.db.backends.sqlite3',
  108. 'NAME': BASE_DIR / 'db.sqlite3',
  109. }
  110. }
  111. # Password validation
  112. # https://docs.djangoproject.com/en/4.0/ref/settings/#auth-password-validators
  113. AUTH_PASSWORD_VALIDATORS = [
  114. {
  115. 'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator',
  116. },
  117. {
  118. 'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator',
  119. },
  120. {
  121. 'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator',
  122. },
  123. {
  124. 'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator',
  125. },
  126. ]
  127. # Internationalization
  128. # https://docs.djangoproject.com/en/4.0/topics/i18n/
  129. LANGUAGE_CODE = 'ru'
  130. USE_TZ = True
  131. TIME_ZONE = 'Europe/Moscow'
  132. SITE_ID = 1
  133. # If you set this to False, Django will make some optimizations so as not
  134. # to load the internationalization machinery.
  135. USE_I18N = True
  136. LANGUAGES = [
  137. ('ru', _('Russian')),
  138. ('en', _('English')),
  139. ]
  140. # Static files (CSS, JavaScript, Images)
  141. # https://docs.djangoproject.com/en/4.0/howto/static-files/
  142. STATIC_URL = "/static/"
  143. STATIC_ROOT = os.path.join(BASE_DIR, "staticfiles")
  144. # Uploaded media
  145. MEDIA_URL = "/media/"
  146. MEDIA_ROOT = os.path.join(BASE_DIR, "media")
  147. # Without this, uploaded files > 4MB end up with perm 0600, unreadable by web server process
  148. FILE_UPLOAD_PERMISSIONS = 0o644
  149. # Override CSS class for the ERROR tag level to match Bootstrap class name
  150. MESSAGE_TAGS = {message_constants.ERROR: "danger"}
  151. # Default primary key field type
  152. # https://docs.djangoproject.com/en/4.0/ref/settings/#default-auto-field
  153. DEFAULT_AUTO_FIELD = 'django.db.models.BigAutoField'
  154. AUTH_USER_MODEL = 'user.ShariXUser'
  155. NAME_SYSTEM = sv.NAME_SYSTEM
  156. ########
  157. #
  158. # Jazzmin
  159. #
  160. ########
  161. JAZZMIN_SETTINGS = {
  162. # title of the window (Will default to current_admin_site.site_title if absent or None)
  163. "site_title": "ShariX Admin",
  164. # Title on the login screen (19 chars max) (defaults to current_admin_site.site_header if absent or None)
  165. "site_header": "ShariX Platform",
  166. # Title on the brand (19 chars max) (defaults to current_admin_site.site_header if absent or None)
  167. "site_brand": "ShariX Platform",
  168. # Logo to use for your site, must be present in static files, used for brand on top left
  169. "site_logo": "sharix_admin/img/logo.png",
  170. # Logo to use for your site, must be present in static files, used for login form logo (defaults to site_logo)
  171. "login_logo": None,
  172. # Logo to use for login form in dark themes (defaults to login_logo)
  173. "login_logo_dark": None,
  174. # CSS classes that are applied to the logo above
  175. "site_logo_classes": "img-circle",
  176. # Relative path to a favicon for your site, will default to site_logo if absent (ideally 32x32 px)
  177. "site_icon": None,
  178. # Welcome text on the login screen
  179. "welcome_sign": "Welcome to the ShariX Admin",
  180. # Copyright on the footer
  181. "copyright": "Acme Library Ltd",
  182. # List of model admins to search from the search bar, search bar omitted if excluded
  183. # If you want to use a single search field you dont need to use a list, you can use a simple string
  184. "search_model": ["sharix_admin.SharixUser"],
  185. # Field name on user model that contains avatar ImageField/URLField/Charfield or a callable that receives the user
  186. "user_avatar": "",
  187. ############
  188. # Top Menu #
  189. ############
  190. # Links to put along the top menu
  191. "topmenu_links": [
  192. # Url that gets reversed (Permissions can be added)
  193. {"name": "Главная", "url": "admin:index", "permissions": ["auth.view_user"]},
  194. # external url that opens in a new window (Permissions can be added)
  195. # {"name": "Support", "url": "https://github.com/farridav/django-jazzmin/issues", "new_window": True},
  196. # model admin to link to (Permissions checked against model)
  197. {"model": "sharix_admin.SharixUser"},
  198. # App with dropdown menu to all its models pages (Permissions checked against models)
  199. {"app": "tickets"},
  200. ],
  201. #############
  202. # User Menu #
  203. #############
  204. # Additional links to include in the user menu on the top right ("app" url type is not allowed)
  205. # "usermenu_links": [
  206. # {"name": "Support", "url": "https://github.com/farridav/django-jazzmin/issues", "new_window": True},
  207. # {"model": "sharix_admin.SharixUser"}
  208. # ],
  209. # #############
  210. # # Side Menu #
  211. # #############
  212. # # Whether to display the side menu
  213. # "show_sidebar": True,
  214. # # Whether to aut expand the menu
  215. # "navigation_expanded": True,
  216. # # Hide these apps when generating side menu e.g (auth)
  217. # "hide_apps": [],
  218. # # Hide these models when generating side menu (e.g auth.user)
  219. # "hide_models": [],
  220. # # List of apps (and/or models) to base side menu ordering off of (does not need to contain all apps/models)
  221. # #"order_with_respect_to": ["auth", "books", "books.author", "books.book"],
  222. # # Custom links to append to app groups, keyed on app name
  223. # "custom_links": {
  224. # "tickets": [{
  225. # "name": "Make Messages",
  226. # "url": "make_messages",
  227. # "icon": "fas fa-comments",
  228. # "permissions": ["tickets.view_book"]
  229. # }]
  230. # },
  231. # # Custom icons for side menu apps/models See https://fontawesome.com/icons?d=gallery&m=free&v=5.0.0,5.0.1,5.0.10,5.0.11,5.0.12,5.0.13,5.0.2,5.0.3,5.0.4,5.0.5,5.0.6,5.0.7,5.0.8,5.0.9,5.1.0,5.1.1,5.2.0,5.3.0,5.3.1,5.4.0,5.4.1,5.4.2,5.13.0,5.12.0,5.11.2,5.11.1,5.10.0,5.9.0,5.8.2,5.8.1,5.7.2,5.7.1,5.7.0,5.6.3,5.5.0,5.4.2
  232. # # for the full list of 5.13.0 free icon classes
  233. "icons": {
  234. "auth": "fas fa-users-cog",
  235. "auth.user": "fas fa-user",
  236. "auth.Group": "fas fa-users",
  237. "sharix_admin": "fas fa-users-cog",
  238. "sharix_admin.SharixUser": "fas fa-user",
  239. "tickets.Task": "fas fa-check",
  240. "tickets.TaskList": "fas fa-list",
  241. "tickets.Comment": "fas fa-comment",
  242. "tickets.Attachment": "fas fa-file",
  243. },
  244. # # Icons that are used when one is not manually specified
  245. # # "default_icon_parents": "fas fa-chevron-circle-right",
  246. # # "default_icon_children": "fas fa-circle",
  247. # #################
  248. # # Related Modal #
  249. # #################
  250. # # Use modals instead of popups
  251. # "related_modal_active": False,
  252. # #############
  253. # # UI Tweaks #
  254. # #############
  255. # # Relative paths to custom CSS/JS scripts (must be present in static files)
  256. "custom_css": None,
  257. "custom_js": None,
  258. # Whether to link font from fonts.googleapis.com (use custom_css to supply font otherwise)
  259. "use_google_fonts_cdn": True,
  260. # # Whether to show the UI customizer on the sidebar
  261. "show_ui_builder": True,
  262. ###############
  263. # Change view #
  264. ###############
  265. # Render out the change view as a single form, or in tabs, current options are
  266. # - single
  267. # - horizontal_tabs (default)
  268. # - vertical_tabs
  269. # - collapsible
  270. # - carousel
  271. # "changeform_format": "horizontal_tabs",
  272. # override change forms on a per modeladmin basis
  273. # "changeform_format_overrides": {"sharix_admin.SharixUser": "collapsible", "auth.group": "vertical_tabs"},
  274. # Add a language dropdown into the admin
  275. # "language_chooser": True,
  276. }
  277. JAZZMIN_UI_TWEAKS = {
  278. "navbar_small_text": True,
  279. "footer_small_text": True,
  280. "body_small_text": False,
  281. "brand_small_text": True,
  282. "brand_colour": "navbar-light",
  283. "accent": "accent-navy",
  284. "navbar": "navbar-navy navbar-dark",
  285. "no_navbar_border": False,
  286. "navbar_fixed": False,
  287. "layout_boxed": False,
  288. "footer_fixed": False,
  289. "sidebar_fixed": True,
  290. "sidebar": "sidebar-light-navy",
  291. "sidebar_nav_small_text": False,
  292. "sidebar_disable_expand": False,
  293. "sidebar_nav_child_indent": False,
  294. "sidebar_nav_compact_style": True,
  295. "sidebar_nav_legacy_style": False,
  296. "sidebar_nav_flat_style": False,
  297. "theme": "default",
  298. "dark_mode_theme": None,
  299. "button_classes": {
  300. "primary": "btn-outline-primary",
  301. "secondary": "btn-outline-secondary",
  302. "info": "btn-outline-info",
  303. "warning": "btn-outline-warning",
  304. "danger": "btn-outline-danger",
  305. "success": "btn-outline-success"
  306. },
  307. "actions_sticky_top": False
  308. }
  309. ########
  310. #
  311. # API
  312. #
  313. ########
  314. API_URL = sv.API_URL
  315. REST_FRAMEWORK = {
  316. # Use Django's standard `django.contrib.auth` permissions,
  317. # or allow read-only access for unauthenticated users.
  318. 'DEFAULT_RENDERER_CLASSES': [
  319. 'rest_framework.renderers.JSONRenderer',
  320. 'rest_framework.renderers.BrowsableAPIRenderer',
  321. ],
  322. 'DEFAULT_PERMISSION_CLASSES': [
  323. # 'rest_framework.permissions.AllowAny',
  324. # 'rest_framework.permissions.DjangoModelPermissionsOrAnonReadOnly'
  325. ],
  326. 'DEFAULT_AUTHENTICATION_CLASSES': (
  327. 'rest_framework.authentication.TokenAuthentication',
  328. 'rest_framework.authentication.BasicAuthentication',
  329. 'rest_framework.authentication.SessionAuthentication',
  330. ),
  331. }
  332. SPAGHETTI_SAUCE = {
  333. 'apps': ['auth', 'sharix_admin',
  334. 'tickets', 'admin',
  335. 'flatpages', 'sessions', 'sites', 'dbsynce'],
  336. 'show_fields': False,
  337. 'show_proxy': True,
  338. }
  339. GRAPH_MODELS = {
  340. 'all_applications': True,
  341. 'group_models': True,
  342. }
  343. # Email
  344. EMAIL_BACKEND = 'django.core.mail.backends.smtp.EmailBackend'
  345. EMAIL_HOST = sv.EMAIL_HOST
  346. EMAIL_PORT = sv.EMAIL_PORT
  347. EMAIL_USE_TLS = sv.EMAIL_USE_TLS
  348. EMAIL_HOST_USER = sv.EMAIL_HOST_USER
  349. EMAIL_HOST_PASSWORD = sv.EMAIL_HOST_PASSWORD
  350. DEFAULT_FROM_EMAIL = sv.DEFAULT_FROM_EMAIL