-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathsettings.py
executable file
·1772 lines (1676 loc) · 59.4 KB
/
settings.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
# # Django settings for OMERO.web project. # #
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
#
#
# Copyright (c) 2008-2016 University of Dundee.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
# Author: Aleksandra Tarkowska <A(dot)Tarkowska(at)dundee(dot)ac(dot)uk>, 2008.
#
# Version: 1.0
#
import os.path
import sys
import logging
import omero
import omero.config
import omero.clients
import tempfile
import re
import json
import random
import string
import portalocker
from omero.util.concurrency import get_event
from omeroweb.utils import (
LeaveUnset,
check_timezone,
identity,
parse_boolean,
leave_none_unset,
leave_none_unset_int,
sort_properties_to_tuple,
str_slash,
)
from omeroweb.connector import Server
logger = logging.getLogger(__name__)
# LOGS
# NEVER DEPLOY a site into production with DEBUG turned on.
# Debuging mode.
# A boolean that turns on/off debug mode.
# handler404 and handler500 works only when False
if "OMERO_HOME" in os.environ:
logger.warn("OMERO_HOME usage is ignored in OMERO.web")
OMERODIR = os.environ.get("OMERODIR")
if not OMERODIR:
raise Exception("ERROR: OMERODIR not set")
# Logging
LOGDIR = os.path.join(OMERODIR, "var", "log").replace("\\", "/")
if not os.path.isdir(LOGDIR):
try:
os.makedirs(LOGDIR)
except Exception:
exctype, value = sys.exc_info()[:2]
raise exctype(value)
# DEBUG: Never deploy a site into production with DEBUG turned on.
# Logging levels: logging.DEBUG, logging.INFO, logging.WARNING, logging.ERROR
# logging.CRITICAL
# FORMAT: 2010-01-01 00:00:00,000 INFO [omeroweb.webadmin.webadmin_utils]
# (proc.1308 ) getGuestConnection:20 Open connection is not available
STANDARD_LOGFORMAT = (
"%(asctime)s %(levelname)5.5s [%(name)40.40s]"
" (proc.%(process)5.5d) %(funcName)s():%(lineno)d %(message)s"
)
FULL_REQUEST_LOGFORMAT = (
"%(asctime)s %(levelname)5.5s [%(name)40.40s]"
" (proc.%(process)5.5d) %(funcName)s():%(lineno)d"
" HTTP %(status_code)d %(request)s"
)
LOGGING_CLASS = "concurrent_log_handler.ConcurrentRotatingFileHandler"
LOGSIZE = 500000000
LOGGING = {
"version": 1,
"disable_existing_loggers": False,
"formatters": {
"standard": {"format": STANDARD_LOGFORMAT},
"full_request": {"format": FULL_REQUEST_LOGFORMAT},
},
"filters": {
"require_debug_false": {
"()": "django.utils.log.RequireDebugFalse",
},
"require_debug_true": {
"()": "django.utils.log.RequireDebugTrue",
},
},
"handlers": {
"default": {
"level": "DEBUG",
"class": LOGGING_CLASS,
"filename": os.path.join(LOGDIR, "OMEROweb.log").replace("\\", "/"),
"maxBytes": LOGSIZE,
"backupCount": 10,
"formatter": "standard",
},
"request_handler": {
"level": "DEBUG",
"class": LOGGING_CLASS,
"filename": os.path.join(LOGDIR, "OMEROweb.log").replace("\\", "/"),
"maxBytes": LOGSIZE,
"backupCount": 10,
"filters": ["require_debug_false"],
"formatter": "full_request",
},
"console": {
"level": "INFO",
"filters": ["require_debug_true"],
"class": "logging.StreamHandler",
"formatter": "standard",
},
"mail_admins": {
"level": "ERROR",
"filters": ["require_debug_false"],
"class": "django.utils.log.AdminEmailHandler",
},
},
"loggers": {
"django.request": { # Stop SQL debug from logging to main logger
"handlers": ["default", "request_handler", "mail_admins"],
"level": "DEBUG",
"propagate": False,
},
"django": {"handlers": ["console"], "level": "DEBUG", "propagate": True},
"": {"handlers": ["default"], "level": "DEBUG", "propagate": True},
},
}
CONFIG_XML = os.path.join(OMERODIR, "etc", "grid", "config.xml")
count = 10
event = get_event("websettings")
while True:
try:
CUSTOM_SETTINGS = dict()
if os.path.exists(CONFIG_XML):
CONFIG_XML = omero.config.ConfigXml(CONFIG_XML, read_only=True)
CUSTOM_SETTINGS = CONFIG_XML.as_map()
CONFIG_XML.close()
break
except portalocker.LockException:
# logger.error("Exception while loading configuration retrying...",
# exc_info=True)
exctype, value = sys.exc_info()[:2]
count -= 1
if not count:
raise exctype(value)
else:
event.wait(1) # Wait a total of 10 seconds
except Exception:
# logger.error("Exception while loading configuration...",
# exc_info=True)
exctype, value = sys.exc_info()[:2]
raise exctype(value)
del event
del count
del get_event
WSGI = "wsgi"
WSGITCP = "wsgi-tcp"
WSGI_TYPES = (WSGI, WSGITCP)
DEVELOPMENT = "development"
DEFAULT_SERVER_TYPE = WSGITCP
ALL_SERVER_TYPES = (WSGI, WSGITCP, DEVELOPMENT)
DEFAULT_SESSION_ENGINE = "django.contrib.sessions.backends.file"
SESSION_ENGINE_VALUES = (
"omeroweb.filesessionstore",
"django.contrib.sessions.backends.db",
"django.contrib.sessions.backends.file",
"django.contrib.sessions.backends.cache",
"django.contrib.sessions.backends.cached_db",
)
def parse_paths(s):
return [os.path.normpath(path) for path in json.loads(s)]
def check_server_type(s):
if s not in ALL_SERVER_TYPES:
raise ValueError(
"Unknown server type: %s. Valid values are: %s" % (s, ALL_SERVER_TYPES)
)
return s
def check_session_engine(s):
if s not in SESSION_ENGINE_VALUES:
raise ValueError(
"Unknown session engine: %s. Valid values are: %s"
% (s, SESSION_ENGINE_VALUES)
)
return s
CUSTOM_HOST = CUSTOM_SETTINGS.get("Ice.Default.Host", "localhost")
CUSTOM_HOST = CUSTOM_SETTINGS.get("omero.master.host", CUSTOM_HOST)
# DO NOT EDIT!
INTERNAL_SETTINGS_MAPPING = {
"omero.qa.feedback": ["FEEDBACK_URL", "http://qa.openmicroscopy.org.uk", str, None],
"omero.web.upgrades.url": ["UPGRADES_URL", None, leave_none_unset, None],
"omero.web.check_version": ["CHECK_VERSION", "true", parse_boolean, None],
# Allowed hosts:
# https://docs.djangoproject.com/en/1.8/ref/settings/#allowed-hosts
"omero.web.allowed_hosts": ["ALLOWED_HOSTS", '["*"]', json.loads, None],
# Do not show WARNING (1_8.W001): The standalone TEMPLATE_* settings
# were deprecated in Django 1.8 and the TEMPLATES dictionary takes
# precedence. You must put the values of the following settings
# into your default TEMPLATES dict:
# TEMPLATE_DIRS, TEMPLATE_CONTEXT_PROCESSORS.
"omero.web.system_checks": [
"SILENCED_SYSTEM_CHECKS",
'["1_8.W001"]',
json.loads,
None,
],
# Internal email notification for omero.web.admins,
# loaded from config.xml directly
"omero.mail.from": [
"SERVER_EMAIL",
None,
identity,
(
"The email address that error messages come from, such as those"
" sent to :property:`omero.web.admins`. Requires EMAIL properties"
" below."
),
],
"omero.mail.host": [
"EMAIL_HOST",
None,
identity,
"The SMTP server host to use for sending email.",
],
"omero.mail.password": [
"EMAIL_HOST_PASSWORD",
None,
identity,
"Password to use for the SMTP server.",
],
"omero.mail.username": [
"EMAIL_HOST_USER",
None,
identity,
"Username to use for the SMTP server.",
],
"omero.mail.port": ["EMAIL_PORT", 25, identity, "Port to use for the SMTP server."],
"omero.web.admins.email_subject_prefix": [
"EMAIL_SUBJECT_PREFIX",
"[OMERO.web - admin notification]",
str,
"Subject-line prefix for email messages",
],
"omero.mail.smtp.starttls.enable": [
"EMAIL_USE_TLS",
"false",
parse_boolean,
(
"Whether to use a TLS (secure) connection when talking to the SMTP"
" server."
),
],
}
CUSTOM_SETTINGS_MAPPINGS = {
# Deployment configuration
"omero.web.debug": [
"DEBUG",
"false",
parse_boolean,
(
"A boolean that turns on/off debug mode. "
"Use debug mode only in development, not in production, as it logs "
"sensitive and confidential information in plaintext."
),
],
"omero.web.secret_key": [
"SECRET_KEY",
None,
leave_none_unset,
("A boolean that sets SECRET_KEY for a particular Django " "installation."),
],
"omero.web.admins": [
"ADMINS",
"[]",
json.loads,
(
"A list of people who get code error notifications whenever the "
"application identifies a broken link or raises an unhandled "
"exception that results in an internal server error. This gives "
"the administrators immediate notification of any errors, "
"see :doc:`/sysadmins/mail`. "
'Example:``\'[["Full Name", "email address"]]\'``.'
),
],
"omero.web.application_server": [
"APPLICATION_SERVER",
DEFAULT_SERVER_TYPE,
check_server_type,
(
"OMERO.web is configured to run in Gunicorn as a generic WSGI (TCP)"
"application by default. Available options: ``wsgi-tcp`` "
"(Gunicorn, default), ``wsgi`` (Advanced users only, e.g. manual "
"Apache configuration with ``mod_wsgi``)."
),
],
"omero.web.application_server.host": [
"APPLICATION_SERVER_HOST",
"127.0.0.1",
str,
"The front-end webserver e.g. NGINX can be set up to run on a "
"different host from OMERO.web. The property ensures that OMERO.web "
"is accessible on an external IP. It requires copying all the "
"OMERO.web static files to the separate NGINX server.",
],
"omero.web.application_server.port": [
"APPLICATION_SERVER_PORT",
4080,
int,
"Upstream application port",
],
"omero.web.application_server.max_requests": [
"APPLICATION_SERVER_MAX_REQUESTS",
0,
int,
("The maximum number of requests a worker will process before " "restarting."),
],
"omero.web.middleware": [
"MIDDLEWARE_CLASSES_LIST",
(
"["
'{"index": 1, '
'"class": "django.middleware.common.BrokenLinkEmailsMiddleware"},'
'{"index": 2, '
'"class": "django.middleware.common.CommonMiddleware"},'
'{"index": 3, '
'"class": "django.contrib.sessions.middleware.SessionMiddleware"},'
'{"index": 4, '
'"class": "django.middleware.csrf.CsrfViewMiddleware"},'
'{"index": 5, '
'"class": "django.contrib.messages.middleware.MessageMiddleware"},'
'{"index": 6, '
'"class": "django.middleware.clickjacking.XFrameOptionsMiddleware"}'
"]"
),
json.loads,
(
"Warning: Only system administrators should use this feature. "
"List of Django middleware classes in the form "
'[{"class": "class.name", "index": FLOAT}]. '
"See :djangodoc:`Django middleware <topics/http/middleware/>`."
" Classes will be ordered by increasing index"
),
],
"omero.web.prefix": [
"FORCE_SCRIPT_NAME",
None,
leave_none_unset,
(
"Used as the value of the SCRIPT_NAME environment variable in any"
" HTTP request."
),
],
"omero.web.use_x_forwarded_host": [
"USE_X_FORWARDED_HOST",
"false",
parse_boolean,
(
"Specifies whether to use the X-Forwarded-Host header in preference "
"to the Host header. This should only be enabled if a proxy which "
"sets this header is in use."
),
],
"omero.web.static_url": [
"STATIC_URL",
"/static/",
str_slash,
(
"URL to use when referring to static files. Example: ``'/static/'``"
" or ``'http://static.example.com/'``. Used as the base path for"
" asset definitions (the Media class) and the staticfiles app. It"
" must end in a slash if set to a non-empty value."
),
],
"omero.web.static_root": [
"STATIC_ROOT",
os.path.join(OMERODIR, "var", "static"),
os.path.normpath,
(
"The absolute path to the directory where collectstatic will"
" collect static files for deployment. If the staticfiles contrib"
" app is enabled (default) the collectstatic management command"
" will collect static files into this directory."
),
],
"omero.web.session_engine": [
"SESSION_ENGINE",
DEFAULT_SESSION_ENGINE,
check_session_engine,
(
"Controls where Django stores session data. See :djangodoc:"
"`Configuring the session engine for more details <ref/settings"
"/#session-engine>`."
"Allowed values are: ``omeroweb.filesessionstore`` (deprecated), "
"``django.contrib.sessions.backends.db``, "
"``django.contrib.sessions.backends.file``, "
"``django.contrib.sessions.backends.cache`` or "
"``django.contrib.sessions.backends.cached_db``."
),
],
"omero.web.session_expire_at_browser_close": [
"SESSION_EXPIRE_AT_BROWSER_CLOSE",
"true",
parse_boolean,
(
"A boolean that determines whether to expire the session when the "
"user closes their browser. See :djangodoc:`Django Browser-length "
"sessions vs. persistent sessions documentation <topics/http/"
"sessions/#browser-length-vs-persistent-sessions>` for more "
"details."
),
],
"omero.web.caches": [
"CACHES",
('{"default": {"BACKEND":' ' "django.core.cache.backends.dummy.DummyCache"}}'),
json.loads,
(
"OMERO.web offers alternative session backends to automatically"
" delete stale data using the cache session store backend, see "
":djangodoc:`Django cached session documentation <topics/http/"
"sessions/#using-cached-sessions>` for more details."
),
],
"omero.web.secure": [
"SECURE",
"false",
parse_boolean,
("Force all backend OMERO.server connections to use SSL."),
],
"omero.web.session_cookie_age": [
"SESSION_COOKIE_AGE",
86400,
int,
"The age of session cookies, in seconds.",
],
"omero.web.session_cookie_domain": [
"SESSION_COOKIE_DOMAIN",
None,
leave_none_unset,
"The domain to use for session cookies",
],
"omero.web.session_cookie_name": [
"SESSION_COOKIE_NAME",
None,
leave_none_unset,
"The name to use for session cookies",
],
"omero.web.session_cookie_path": [
"SESSION_COOKIE_PATH",
None,
leave_none_unset,
"The path to use for session cookies",
],
"omero.web.session_cookie_secure": [
"SESSION_COOKIE_SECURE",
"false",
parse_boolean,
(
"Restrict session cookies to HTTPS only, you are strongly "
"recommended to set this to ``true`` in production."
),
],
"omero.web.csrf_cookie_secure": [
"CSRF_COOKIE_SECURE",
"false",
parse_boolean,
(
"Restrict CSRF cookies to HTTPS only, you are strongly "
"recommended to set this to ``true`` in production."
),
],
"omero.web.csrf_cookie_httponly": [
"CSRF_COOKIE_HTTPONLY",
"false",
parse_boolean,
(
"Prevent CSRF cookie from being accessed in JavaScript. "
"Currently disabled as it breaks background JavaScript POSTs in "
"OMERO.web."
),
],
"omero.web.csrf_cookie_samesite": [
"CSRF_COOKIE_SAMESITE",
"Lax",
str,
(
"The value of the SameSite flag on the CSRF cookie. "
"This flag prevents the cookie from being sent in cross-site "
"requests thus preventing CSRF attacks and making some methods of "
"CSRF session cookie impossible."
),
],
"omero.web.csrf_trusted_origins": [
"CSRF_TRUSTED_ORIGINS",
"[]",
json.loads,
(
"A list of hosts which are trusted origins for unsafe requests. "
"When starting with '.', all subdomains are included. "
"""Example ``'[".example.com", "another.example.net"]'``. """
"For more details see :djangodoc:`CSRF trusted origins <ref/"
"settings/#csrf-trusted-origins>`."
),
],
"omero.web.session_cookie_samesite": [
"SESSION_COOKIE_SAMESITE",
"Lax",
str,
(
"The value of the SameSite flag on the session cookie. This flag "
"prevents the cookie from being sent in cross-site requests thus "
"preventing CSRF attacks and making some methods of stealing "
"session cookie impossible."
),
],
"omero.web.logdir": ["LOGDIR", LOGDIR, str, "A path to the custom log directory."],
"omero.web.secure_proxy_ssl_header": [
"SECURE_PROXY_SSL_HEADER",
"[]",
json.loads,
(
"A tuple representing a HTTP header/value combination that "
"signifies a request is secure. Example "
'``\'["HTTP_X_FORWARDED_PROTO_OMERO_WEB", "https"]\'``. '
"For more details see :djangodoc:`secure proxy ssl header <ref/"
"settings/#secure-proxy-ssl-header>`."
),
],
"omero.web.wsgi_args": [
"WSGI_ARGS",
None,
leave_none_unset,
(
"A string representing Gunicorn additional arguments. "
"Check Gunicorn Documentation "
"https://docs.gunicorn.org/en/latest/settings.html"
),
],
"omero.web.wsgi_workers": [
"WSGI_WORKERS",
5,
int,
(
"The number of worker processes for handling requests. "
"Check Gunicorn Documentation "
"https://docs.gunicorn.org/en/stable/settings.html#workers"
),
],
"omero.web.wsgi_timeout": [
"WSGI_TIMEOUT",
60,
int,
(
"Workers silent for more than this many seconds are killed "
"and restarted. Check Gunicorn Documentation "
"https://docs.gunicorn.org/en/stable/settings.html#timeout"
),
],
"omero.web.session_serializer": [
"SESSION_SERIALIZER",
"django.contrib.sessions.serializers.PickleSerializer",
str,
(
"You can use this setting to customize the session "
"serialization format. See :djangodoc:`Django session "
"serialization documentation <topics/http/sessions/"
"#session-serialization>` for more details."
),
],
# Public user
"omero.web.public.enabled": [
"PUBLIC_ENABLED",
"false",
parse_boolean,
"Enable and disable the OMERO.web public user functionality.",
],
"omero.web.public.url_filter": [
"PUBLIC_URL_FILTER",
r"(?#This regular expression matches nothing)a^",
re.compile,
(
"Set a regular expression that matches URLs the public user is "
"allowed to access. If this is not set, no URLs will be "
"publicly available."
),
],
"omero.web.public.get_only": [
"PUBLIC_GET_ONLY",
"true",
parse_boolean,
"Restrict public users to GET requests only",
],
"omero.web.public.server_id": [
"PUBLIC_SERVER_ID",
1,
int,
"Server to authenticate against.",
],
"omero.web.public.user": [
"PUBLIC_USER",
None,
leave_none_unset,
"Username to use during authentication.",
],
"omero.web.public.password": [
"PUBLIC_PASSWORD",
None,
leave_none_unset,
"Password to use during authentication.",
],
"omero.web.public.cache.enabled": [
"PUBLIC_CACHE_ENABLED",
"false",
parse_boolean,
None,
],
"omero.web.public.cache.key": [
"PUBLIC_CACHE_KEY",
"omero.web.public.cache.key",
str,
None,
],
"omero.web.public.cache.timeout": ["PUBLIC_CACHE_TIMEOUT", 60 * 60 * 24, int, None],
# Social media integration
"omero.web.sharing.twitter": [
"SHARING_TWITTER",
"{}",
json.loads,
(
"Dictionary of `server-name: @twitter-site-username`, where "
"server-name matches a name from `omero.web.server_list`. "
'For example: ``\'{"omero": "@openmicroscopy"}\'``'
),
],
"omero.web.sharing.opengraph": [
"SHARING_OPENGRAPH",
"{}",
json.loads,
(
"Dictionary of `server-name: site-name`, where "
"server-name matches a name from `omero.web.server_list`. "
'For example: ``\'{"omero": "Open Microscopy"}\'``'
),
],
# Application configuration
"omero.web.server_list": [
"SERVER_LIST",
'[["%s", 4064, "omero"]]' % CUSTOM_HOST,
json.loads,
"A list of servers the Web client can connect to.",
],
"omero.web.ping_interval": [
"PING_INTERVAL",
60000,
int,
"Timeout interval between ping invocations in seconds",
],
"omero.web.chunk_size": [
"CHUNK_SIZE",
1048576,
int,
"Size, in bytes, of the “chunk”",
],
"omero.web.maximum_multifile_download_size": [
"MAXIMUM_MULTIFILE_DOWNLOAD_ZIP_SIZE",
1024**3,
int,
"Prevent multiple files with total aggregate size greater than this "
"value in bytes from being downloaded as a zip archive.",
],
"omero.web.max_table_download_rows": [
"MAX_TABLE_DOWNLOAD_ROWS",
10000,
int,
"Prevent download of OMERO.tables exceeding this number of rows "
"in a single request.",
],
"omero.web.max_table_slice_size": [
"MAX_TABLE_SLICE_SIZE",
1_000_000,
int,
"Maximum number of cells that can be retrieved in a single call "
"to the table slicing endpoint.",
],
# VIEWER
"omero.web.viewer.view": [
"VIEWER_VIEW",
"omeroweb.webclient.views.image_viewer",
str,
(
"Django view which handles display of, or redirection to, the "
"desired full image viewer."
),
],
# OPEN WITH
"omero.web.open_with": [
"OPEN_WITH",
(
'[["Image viewer", "webgateway", {"supported_objects": ["image"],'
'"script_url": "webclient/javascript/ome.openwith_viewer.js"}]]'
),
json.loads,
(
"A list of viewers that can be used to display selected Images "
"or other objects. Each viewer is defined as "
'``["Name", "url", options]``. Url is reverse(url). '
"Selected objects are added to the url as ?image=:1&image=2"
"Objects supported must be specified in options with "
'e.g. ``{"supported_objects":["images"]}`` '
"to enable viewer for one or more images."
),
],
# PIPELINE 1.3.20
# Pipeline is an asset packaging library for Django, providing both CSS
# and JavaScript concatenation and compression, built-in JavaScript
# template support, and optional data-URI image and font embedding.
"omero.web.pipeline_js_compressor": [
"PIPELINE_JS_COMPRESSOR",
None,
identity,
(
"Compressor class to be applied to JavaScript files. If empty or "
"None, JavaScript files won't be compressed."
),
],
"omero.web.pipeline_css_compressor": [
"PIPELINE_CSS_COMPRESSOR",
None,
identity,
(
"Compressor class to be applied to CSS files. If empty or None,"
" CSS files won't be compressed."
),
],
"omero.web.pipeline_staticfile_storage": [
"STATICFILES_STORAGE",
"pipeline.storage.PipelineStorage",
str,
(
"The file storage engine to use when collecting static files with"
" the collectstatic management command. See `the documentation "
"<https://django-pipeline.readthedocs.org/en/latest/storages.html>`_"
" for more details."
),
],
# Customisation
"omero.web.login_logo": [
"LOGIN_LOGO",
None,
leave_none_unset,
(
"Customize webclient login page with your own logo. Logo images "
"should ideally be 150 pixels high or less and will appear above "
"the OMERO logo. You will need to host the image somewhere else "
"and link to it with the OMERO logo."
),
],
"omero.web.login_view": [
"LOGIN_VIEW",
"weblogin",
str,
(
"The Django view name used for login. Use this to provide an "
"alternative login workflow."
),
],
"omero.web.login_incorrect_credentials_text": [
"LOGIN_INCORRECT_CREDENTIALS_TEXT",
"Connection not available, please check your user name and password.",
str,
(
"The error message shown to users who enter an incorrect username "
"or password."
),
],
"omero.web.top_logo": [
"TOP_LOGO",
"",
str,
(
"Customize the webclient top bar logo. The recommended image height "
"is 23 pixels and it must be hosted outside of OMERO.web."
),
],
"omero.web.top_logo_link": [
"TOP_LOGO_LINK",
"",
str,
("The target location of the webclient top logo, default unlinked."),
],
"omero.web.user_dropdown": [
"USER_DROPDOWN",
"true",
parse_boolean,
(
"Whether or not to include a user dropdown in the base template."
" Particularly useful when used in combination with the OMERO.web"
" public user where logging in may not make sense."
),
],
"omero.web.feedback.comment.enabled": [
"FEEDBACK_COMMENT_ENABLED",
"true",
parse_boolean,
(
"Enable the feedback form for comments. "
"These comments are sent to the URL in ``omero.qa.feedback`` "
"(OME team by default)."
),
],
"omero.web.feedback.error.enabled": [
"FEEDBACK_ERROR_ENABLED",
"true",
parse_boolean,
(
"Enable the feedback form for errors. "
"These errors are sent to the URL in ``omero.qa.feedback`` "
"(OME team by default)."
),
],
"omero.web.show_forgot_password": [
"SHOW_FORGOT_PASSWORD",
"true",
parse_boolean,
(
"Allows to hide 'Forgot password' from the login view"
" - useful for LDAP/ActiveDir installations"
),
],
"omero.web.favicon_url": [
"FAVICON_URL",
"webgateway/img/ome.ico",
str,
("Favicon URL, specifies the path relative to django's static file dirs."),
],
"omero.web.staticfile_dirs": [
"STATICFILES_DIRS",
"[]",
json.loads,
(
"Defines the additional locations the staticfiles app will traverse"
" if the FileSystemFinder finder is enabled, e.g. if you use the"
" collectstatic or findstatic management command or use the static"
" file serving view."
),
],
"omero.web.template_dirs": [
"TEMPLATE_DIRS",
"[]",
json.loads,
(
"List of locations of the template source files, in search order. "
"Note that these paths should use Unix-style forward slashes."
),
],
"omero.web.index_template": [
"INDEX_TEMPLATE",
None,
identity,
(
"Define template used as an index page ``http://your_host/omero/``."
"If None user is automatically redirected to the login page."
"For example use 'webclient/index.html'. "
),
],
"omero.web.base_include_template": [
"BASE_INCLUDE_TEMPLATE",
None,
identity,
("Template to be included in every page, at the end of the <body>"),
],
"omero.web.login_redirect": [
"LOGIN_REDIRECT",
"{}",
json.loads,
(
"Redirect to the given location after logging in. It only supports "
"arguments for :djangodoc:`Django reverse function"
" <ref/urlresolvers/#reverse>`. "
'For example: ``\'{"redirect": ["webindex"], "viewname":'
' "load_template", "args":["userdata"], "query_string":'
' {"experimenter": -1}}\'``'
),
],
"omero.web.redirect_allowed_hosts": [
"REDIRECT_ALLOWED_HOSTS",
"[]",
json.loads,
(
"If you wish to allow redirects to an external site, "
"the domains must be listed here. "
'For example ["openmicroscopy.org"].'
),
],
"omero.web.login.show_client_downloads": [
"SHOW_CLIENT_DOWNLOADS",
"true",
parse_boolean,
("Whether to link to official client downloads on the login page"),
],
"omero.web.login.client_downloads_base": [
"CLIENT_DOWNLOAD_GITHUB_REPO",
"ome/omero-insight",
str,
("GitHub repository containing the Desktop client downloads"),
],
"omero.web.apps": [
"ADDITIONAL_APPS",
"[]",
json.loads,
(
"Add additional Django applications. For example, see"
" :doc:`/developers/Web/CreateApp`"
),
],
"omero.web.root_application": [
"OMEROWEB_ROOT_APPLICATION",
"",
str,
(
"Override the root application label that handles ``/``. "
"**Warning** you must ensure the application's URLs do not conflict "
"with other applications. "
"omero-gallery is an example of an application that can be used for "
"this (set to ``gallery``)"
),
],
"omero.web.databases": ["DATABASES", "{}", json.loads, None],
"omero.web.page_size": [
"PAGE",
200,
int,
(
"Number of images displayed within a dataset or 'orphaned'"
" container to prevent from loading them all at once."
),
],
"omero.web.thumbnails_batch": [
"THUMBNAILS_BATCH",
50,
int,
(
"Number of thumbnails retrieved to prevent from loading them"
" all at once. Make sure the size is not too big, otherwise"
" you may exceed limit request line, see"
" https://docs.gunicorn.org/en/latest/settings.html"
"?highlight=limit_request_line"
),
],
"omero.web.search.default_user": [
"SEARCH_DEFAULT_USER",
0,
int,
(
"ID of the user to pre-select in search form. "
"A value of 0 pre-selects the logged-in user. "
"A value of -1 pre-selects All Users if "
"the search is across all groups or All Members "
"if the search is within a specific group."