common.lib.config_definition
Default 4CAT Configuration Options
Possible options and their default values. Options are actually set in 4CAT"s
Database. Additional options can be defined in Data sources or Processors as
config
objects.
1""" 2Default 4CAT Configuration Options 3 4Possible options and their default values. Options are actually set in 4CAT"s 5Database. Additional options can be defined in Data sources or Processors as 6`config` objects. 7""" 8from common.lib.user_input import UserInput 9import json 10 11config_definition = { 12 "datasources._intro": { 13 "type": UserInput.OPTION_INFO, 14 "help": "Data sources enabled below will be offered to people on the 'Create Dataset' page. Additionally, " 15 "people can upload datasets for these by for example exporting them with " 16 "[Zeeschuimer](https://github.com/digitalmethodsinitiative/zeeschuimer) to this 4CAT instance.\n\n" 17 "Some data sources offer further settings which may be configured on other tabs." 18 }, 19 "datasources.enabled": { 20 "type": UserInput.OPTION_DATASOURCES, 21 "default": ["ninegag", "bsky", "douban", "douyin", "imgur", "upload", "instagram", "import_4cat", "linkedin", "media-import", 22 "telegram", "tiktok", "twitter", "tiktok-comments", "truthsocial", "gab"], 23 "help": "Data Sources", 24 "tooltip": "A list of enabled data sources that people can choose from when creating a dataset page." 25 }, 26 "datasources._intro2": { 27 "type": UserInput.OPTION_INFO, 28 "help": "*Warning:* changes take effect immediately. Datasets that would have expired under the new settings " 29 "will be deleted. You can use the 'Dataset bulk management' module in the control panel to manage the " 30 "expiration status of existing datasets." 31 }, 32 "datasources.expiration": { 33 "type": UserInput.OPTION_TEXT_JSON, 34 "default": {"fourchan": {"enabled": False, "allow_optout": False, "timeout": 0}, "eightchan": {"enabled": False, "allow_optout": False, "timeout": 0}, "eightkun": {"enabled": False, "allow_optout": False, "timeout": 0}, "ninegag": {"enabled": True, "allow_optout": False, "timeout": 0}, "bitchute": {"enabled": True, "allow_optout": False, "timeout": 0}, "bsky": {"enabled": True, "allow_optout": False, "timeout": 0}, "dmi-tcat": {"enabled": False, "allow_optout": False, "timeout": 0}, "dmi-tcatv2": {"enabled": False, "allow_optout": False, "timeout": 0}, "douban": {"enabled": True, "allow_optout": False, "timeout": 0}, "douyin": {"enabled": True, "allow_optout": False, "timeout": 0}, "import_4cat": {"enabled": True, "allow_optout": False, "timeout": 0},"gab": {"enabled": True, "allow_optout": False, "timeout": 0}, "imgur": {"enabled": True, "allow_optout": False, "timeout": 0}, "upload": {"enabled": True, "allow_optout": False, "timeout": 0}, "instagram": {"enabled": True, "allow_optout": False, "timeout": 0}, "linkedin": {"enabled": True, "allow_optout": False, "timeout": 0}, "media-import": {"enabled": True, "allow_optout": False, "timeout": 0}, "parler": {"enabled": True, "allow_optout": False, "timeout": 0}, "reddit": {"enabled": False, "allow_optout": False, "timeout": 0}, "telegram": {"enabled": True, "allow_optout": False, "timeout": 0}, "tiktok": {"enabled": True, "allow_optout": False, "timeout": 0}, "tiktok-urls": {"enabled": True, "allow_optout": False, "timeout": 0}, "truthsocial": {"enabled": True, "allow_optout": False, "timeout": 0}, "tumblr": {"enabled": False, "allow_optout": False, "timeout": 0}, "twitter": {"enabled": True, "allow_optout": False, "timeout": 0}, "twitterv2": {"enabled": False, "allow_optout": False, "timeout": 0}, "usenet": {"enabled": False, "allow_optout": False, "timeout": 0}, "vk": {"enabled": False, "allow_optout": False, "timeout": 0}}, 35 "help": "Data source-specific expiration", 36 "tooltip": "Allows setting expiration settings per datasource. Configured by proxy via the 'data sources' " 37 "setting.", 38 "indirect": True 39 }, 40 # Configure how the tool is to be named in its web interface. The backend will 41 # always refer to "4CAT" - the name of the software, and a "powered by 4CAT" 42 # notice may also show up in the web interface regardless of the value entered here. 43 "4cat.name": { 44 "type": UserInput.OPTION_TEXT, 45 "default": "4CAT", 46 "help": "Short tool name", 47 "tooltip": "Configure short name for the tool in its web interface. The backend will always refer to '4CAT' - " 48 "the name of the software, and a 'powered by 4CAT' notice may also show up in the web interface " 49 "regardless of the value entered here." 50 }, 51 "4cat.name_long": { 52 "type": UserInput.OPTION_TEXT, 53 "default": "4CAT: Capture and Analysis Toolkit", 54 "help": "Full tool name", 55 "tooltip": "Used in e.g. the interface header. The backend will always refer to '4CAT' - the name of the " 56 "software, and a 'powered by 4CAT' notice may also show up in the web interface regardless of the " 57 "value entered here." 58 }, 59 "4cat.about_this_server": { 60 "type": UserInput.OPTION_TEXT_LARGE, 61 "default": "", 62 "help": "Server information", 63 "tooltip": "Custom server information that is displayed on the 'About' page. Can for instance be used to show " 64 "information about who maintains the tool or what its intended purpose is." 65 }, 66 "4cat.crash_message": { 67 "type": UserInput.OPTION_TEXT_LARGE, 68 "default": "This processor has crashed; the crash has been logged. 4CAT will try again when it is restarted. " 69 "Contact your server administrator if this error persists. You can also report issues via 4CAT's " 70 "[GitHub repository](https://github.com/digitalmethodsinitiative/4cat/issues).", 71 "help": "Crash message", 72 "tooltip": "This message is shown to users in the interface when a processor crashes while processing their " 73 "dataset. It can contain Markdown markup." 74 }, 75 # privileges 76 "privileges.can_create_dataset": { 77 "type": UserInput.OPTION_TOGGLE, 78 "default": True, 79 "help": "Can create dataset", 80 "tooltip": "Controls whether users can view and use the 'Create dataset' page. Does NOT control whether " 81 "users can run processors (which also create datasets); this is a separate setting." 82 }, 83 "privileges.can_run_processors": { 84 "type": UserInput.OPTION_TOGGLE, 85 "default": True, 86 "help": "Can run processors", 87 "tooltip": "Controls whether processors can be run. There may be processor-specific settings or dependencies " 88 "that override this." 89 }, 90 "privileges.can_view_all_datasets": { 91 "type": UserInput.OPTION_TOGGLE, 92 "default": False, 93 "help": "Can view global dataset index", 94 "tooltip": "Controls whether users can see the global datasets overview, i.e. not just for their own user but " 95 "for all other users as well." 96 }, 97 "privileges.can_view_private_datasets": { 98 "type": UserInput.OPTION_TOGGLE, 99 "default": False, 100 "help": "Can view private datasets", 101 "tooltip": "Controls whether users can see the datasets made private by their owners." 102 }, 103 "privileges.can_create_api_token": { 104 "type": UserInput.OPTION_TOGGLE, 105 "default": True, 106 "help": "Can create API token", 107 "tooltip": "Controls whether users can create a token for authentication with 4CAT's Web API." 108 }, 109 "privileges.can_use_explorer": { 110 "type": UserInput.OPTION_TOGGLE, 111 "default": True, 112 "help": "Can use explorer", 113 "tooltip": "Controls whether users can use the Explorer feature to navigate datasets." 114 }, 115 "privileges.can_export_datasets": { 116 "type": UserInput.OPTION_TOGGLE, 117 "default": True, 118 "help": "Can export datasets", 119 "tooltip": "Allows users to export datasets they own to other 4CAT instances." 120 }, 121 "privileges.admin.can_manage_users": { 122 "type": UserInput.OPTION_TOGGLE, 123 "default": False, 124 "help": "Can manage users", 125 "tooltip": "Controls whether users can add, edit and delete other users via the Control Panel" 126 }, 127 "privileges.admin.can_manage_notifications": { 128 "type": UserInput.OPTION_TOGGLE, 129 "default": False, 130 "help": "Can manage notifications", 131 "tooltip": "Controls whether users can add, edit and delete notifications via the Control Panel" 132 }, 133 "privileges.admin.can_manage_settings": { 134 "type": UserInput.OPTION_TOGGLE, 135 "default": False, 136 "help": "Can manage settings", 137 "tooltip": "Controls whether users can manipulate 4CAT settings via the Control Panel" 138 }, 139 "privileges.admin.can_manipulate_all_datasets": { 140 "type": UserInput.OPTION_TOGGLE, 141 "default": False, 142 "help": "Can manipulate all datasets", 143 "tooltip": "Controls whether users can manipulate all datasets as if they were an owner, e.g. sharing it with " 144 "others, running processors, et cetera." 145 }, 146 "privileges.admin.can_restart": { 147 "type": UserInput.OPTION_TOGGLE, 148 "default": False, 149 "help": "Can restart/upgrade", 150 "tooltip": "Controls whether users can restart, upgrade, and manage extensions 4CAT via the Control Panel" 151 }, 152 "privileges.can_upgrade_to_dev": { 153 # this is NOT an admin privilege, because all admins automatically 154 # get all admin privileges! users still need the above privilege 155 # to actually use this, anyway 156 "type": UserInput.OPTION_TOGGLE, 157 "default": False, 158 "help": "Can upgrade to development branch", 159 "tooltip": "Controls whether users can upgrade 4CAT to a development branch of the code via the Control Panel. " 160 "This is an easy way to break 4CAT so it is recommended to not enable this unless you're really " 161 "sure of what you're doing." 162 }, 163 "privileges.admin.can_manage_tags": { 164 "type": UserInput.OPTION_TOGGLE, 165 "default": False, 166 "help": "Can manage user tags", 167 "tooltip": "Controls whether users can manipulate user tags via the Control Panel" 168 }, 169 "privileges.admin.can_view_status": { 170 "type": UserInput.OPTION_TOGGLE, 171 "default": False, 172 "help": "Can view worker status", 173 "tooltip": "Controls whether users can view worker status via the Control Panel" 174 }, 175 # The following option should be set to ensure that every analysis step can 176 # be traced to a specific version of 4CAT. This allows for reproducible 177 # research. The output of "git show" in PATH_ROOT will be used to determine 178 # the version of a processor file, if possible. 179 "4cat.github_url": { 180 "type": UserInput.OPTION_TEXT, 181 "default": "https://github.com/digitalmethodsinitiative/4cat", 182 "help": "Repository URL", 183 "tooltip": "URL to the github repository for this 4CAT instance", 184 "global": True 185 }, 186 "4cat.phone_home_url": { 187 "type": UserInput.OPTION_TEXT, 188 "default": "https://ping.4cat.nl", 189 "help": "Phone home URL", 190 "tooltip": "This URL is called once - when 4CAT is installed. If the installing user consents, information " 191 "is sent to this URL to help the 4CAT developers (the Digital Methods Initiative) keep track of how " 192 "much it is used. There should be no need to change this URL after installation.", 193 "global": True 194 }, 195 "4cat.phone_home_asked": { 196 "type": UserInput.OPTION_TOGGLE, 197 "default": True, 198 "help": "Shown phone home request?", 199 "tooltip": "Whether you've seen the 'phone home request'. Set to `False` to see the request again. There " 200 "should be no need to change this manually.", 201 "global": True 202 }, 203 "4cat.layout_hue": { 204 "type": UserInput.OPTION_HUE, 205 "default": 356, 206 "help": "Interface accent colour", 207 "saturation": 87, 208 "value": 81, 209 "min": 0, 210 "max": 360, 211 "coerce_type": int, 212 "global": True 213 }, 214 "4cat.layout_hue_secondary": { 215 "type": UserInput.OPTION_HUE, 216 "default": 86, 217 "help": "Interface secondary colour", 218 "saturation": 87, 219 "value": 90, 220 "min": 0, 221 "max": 360, 222 "coerce_type": int, 223 "global": True 224 }, 225 "4cat.allow_access_request": { 226 "type": UserInput.OPTION_TOGGLE, 227 "default": True, 228 "help": "Allow access requests", 229 "tooltip": "When enabled, users can request a 4CAT account via the login page if they do not have one, " 230 "provided e-mail settings are configured." 231 }, 232 "4cat.sphinx_host": { 233 "type": UserInput.OPTION_TEXT, 234 "default": "localhost", 235 "help": "Sphinx host", 236 "tooltip": "Sphinx is used for full-text search for collected datasources (e.g., 4chan, 8kun, 8chan) and requires additional setup (see 4CAT wiki on GitHub).", 237 "global": True 238 }, 239 "logging.slack.level": { 240 "type": UserInput.OPTION_CHOICE, 241 "default": "WARNING", 242 "options": {"DEBUG": "Debug", "INFO": "Info", "WARNING": "Warning", "ERROR": "Error", "CRITICAL": "Critical"}, 243 "help": "Slack alert level", 244 "tooltip": "Level of alerts (or higher) to be sent to Slack. Only alerts above this level are sent to the Slack webhook", 245 "global": True 246 }, 247 "logging.slack.webhook": { 248 "type": UserInput.OPTION_TEXT, 249 "default": "", 250 "help": "Slack webhook URL", 251 "tooltip": "Slack callback URL to use for alerts", 252 "global": True 253 }, 254 "mail.admin_email": { 255 "type": UserInput.OPTION_TEXT, 256 "default": "", 257 "help": "Admin e-mail", 258 "tooltip": "E-mail of admin, to send account requests etc to", 259 "global": True 260 }, 261 "mail.server": { 262 "type": UserInput.OPTION_TEXT, 263 "default": "", 264 "help": "SMTP server", 265 "tooltip": "SMTP server to connect to for sending e-mail alerts.", 266 "global": True 267 }, 268 "mail.port": { 269 "type": UserInput.OPTION_TEXT, 270 "default": 0, 271 "coerce_type": int, 272 "help": "SMTP port", 273 "tooltip": 'SMTP port to connect to for sending e-mail alerts. "0" defaults to "465" for SMTP_SSL or OS default for SMTP.', 274 "global": True 275 }, 276 "mail.ssl": { 277 "type": UserInput.OPTION_CHOICE, 278 "default": "ssl", 279 "options": {"ssl": "SSL", "tls": "TLS", "none": "None"}, 280 "help": "SMTP over SSL, TLS, or None", 281 "tooltip": "Security scheme to use to connect to e-mail server", 282 "global": True 283 }, 284 "mail.username": { 285 "type": UserInput.OPTION_TEXT, 286 "default": "", 287 "help": "SMTP Username", 288 "tooltip": "Only if your SMTP server requires login", 289 "global": True 290 }, 291 "mail.password": { 292 "type": UserInput.OPTION_TEXT, 293 "default": "", 294 "help": "SMTP Password", 295 "tooltip": "Only if your SMTP server requires login", 296 "global": True 297 }, 298 "mail.noreply": { 299 "type": UserInput.OPTION_TEXT, 300 "default": "noreply@localhost", 301 "help": "NoReply e-mail", 302 "global": True 303 }, 304 # Explorer settings 305 # The maximum allowed amount of rows (prevents timeouts and memory errors) 306 "explorer.max_posts": { 307 "type": UserInput.OPTION_TEXT, 308 "default": 100000, 309 "help": "Amount of posts", 310 "coerce_type": int, 311 "tooltip": "Amount of posts to show in Explorer. The maximum allowed amount of rows (prevents timeouts and " 312 "memory errors)" 313 }, 314 "explorer.posts_per_page": { 315 "type": UserInput.OPTION_TEXT, 316 "default": 50, 317 "help": "Posts per page", 318 "coerce_type": int, 319 "tooltip": "Posts to display per page" 320 }, 321 # Web tool settings 322 # These are used by the FlaskConfig class in config.py 323 # Flask may require a restart to update them 324 "flask.flask_app": { 325 "type": UserInput.OPTION_TEXT, 326 "default": "webtool/fourcat", 327 "help": "Flask App Name", 328 "tooltip": "", 329 "global": True 330 }, 331 "flask.server_name": { 332 "type": UserInput.OPTION_TEXT, 333 "default": "4cat.local:5000", 334 "help": "Host name", 335 "tooltip": "e.g., my4CAT.com, localhost, 127.0.0.1. Default is localhost; when running 4CAT in Docker this " 336 "setting is ignored as any domain/port binding should be handled outside of the Docker container" 337 "; the Docker container itself will serve on any domain name on the port configured in the .env " 338 "file.", 339 "global": True 340 }, 341 "flask.autologin.hostnames": { 342 "type": UserInput.OPTION_TEXT_JSON, 343 "default": [], 344 "help": "White-listed hostnames", 345 "tooltip": "A list of host names or IP addresses to automatically log in. Docker should include localhost and Server Name", 346 "global": True 347 }, 348 "flask.autologin.api": { 349 "type": UserInput.OPTION_TEXT_JSON, 350 "default": [], 351 "help": "White-list for API", 352 "tooltip": "A list of host names or IP addresses to allow access to API endpoints with no rate limiting. Docker should include localhost and Server Name", 353 "global": True 354 }, 355 "flask.https": { 356 "type": UserInput.OPTION_TOGGLE, 357 "default": False, 358 "help": "Use HTTPS", 359 "tooltip": "If your server is using 'https', set to True and 4CAT will use HTTPS links.", 360 "global": True 361 }, 362 "flask.proxy_override": { 363 "type": UserInput.OPTION_MULTI_SELECT, 364 "default": [], 365 "options": { 366 "x_for": "X-Forwarded-For", 367 "x_proto": "X-Forwarded-Proto", 368 "x_host": "X-Forwarded-Host", 369 "x_port": "X-Forwarded-Port", 370 "x_prefix": "X-Forwarded-Prefix" 371 }, 372 "help": "Use proxy headers for URL", 373 "tooltip": "These proxy headers will be taken into account when building URLs. For example, if " 374 "X-Forwarded-Proto is enabled, the URL scheme (http/https) of the built URL will be based on the " 375 "scheme defined by this header. Use when running 4CAT behind a reverse proxy. Requires a front-end " 376 "restart to take effect." 377 }, 378 "flask.autologin.name": { 379 "type": UserInput.OPTION_TEXT, 380 "default": "Automatic login", 381 "help": "Auto-login name", 382 "tooltip": "Username for whitelisted hosts (automatically logged in users see this name for themselves)", 383 }, 384 "flask.secret_key": { 385 "type": UserInput.OPTION_TEXT, 386 "default": "please change me... please...", 387 "help": "Secret key", 388 "tooltip": "Secret key for Flask, used for session cookies", 389 "global": True 390 }, 391 "flask.max_form_parts": { 392 "type": UserInput.OPTION_TEXT, 393 "default": 1000, 394 "help": "Max form parts per request", 395 "coerce_type": int, 396 "global": True, 397 "tooltip": "Affects approximate number of files that can be uploaded at once" 398 }, 399 "flask.tag_order": { 400 "type": UserInput.OPTION_TEXT_JSON, 401 "default": ["admin"], 402 "help": "Tag priority", 403 "tooltip": "User tag priority order. This can be manipulated from the 'User tags' panel instead of directly.", 404 "global": True, 405 "indirect": True 406 }, 407 "flask.proxy_secret": { 408 "type": UserInput.OPTION_TEXT, 409 "default": "", 410 "help": "Proxy secret", 411 "tooltip": "Secret value to authenticate proxy headers. If the value of the X-4CAT-Config-Via-Proxy header " 412 "matches this value, the X-4CAT-Config-Tag header can be used to enable a given configuration tag. " 413 "Leave empty to disable this functionality." 414 }, 415 # YouTube variables to use for processors 416 "api.youtube.name": { 417 "type": UserInput.OPTION_TEXT, 418 "default": "youtube", 419 "help": "YouTube API Service", 420 "tooltip": "YouTube API 'service name', e.g. youtube, googleapis, etc.", 421 "global": True 422 }, 423 "api.youtube.version": { 424 "type": UserInput.OPTION_TEXT, 425 "default": "v3", 426 "help": "YouTube API Version", 427 "tooltip": "e.g., ''v3'", 428 "global": True 429 }, 430 "api.youtube.key": { 431 "type": UserInput.OPTION_TEXT, 432 "default": "", 433 "help": "YouTube API Key", 434 "tooltip": "The developer key from your API console" 435 }, 436 # service manager 437 # this is a service that 4CAT can connect to to run e.g. ML models 438 # it is used by a number of processors 439 "dmi-service-manager.aa_DSM-intro-1": { 440 "type": UserInput.OPTION_INFO, 441 "help": "The [DMI Service Manager](https://github.com/digitalmethodsinitiative/dmi_service_manager#start-dmi-service-manager) is a support tool used to run some advanced processors. These processors generally require high CPU usage, a lot of RAM, or a dedicated GPU and thus do not fit within 4CAT's arcitecture. It is also possible for multiple 4CAT instances to use the same service manager. Please see the link for instructions on setting up your own instance of the DMI Service Manager.", 442 }, 443 "dmi-service-manager.ab_server_address": { 444 "type": UserInput.OPTION_TEXT, 445 "default": "", 446 "help": "DMI Service Manager server/URL", 447 "tooltip": "The URL of the DMI Service Manager server, e.g. http://localhost:5000", 448 "global": True 449 }, 450 "dmi-service-manager.ac_local_or_remote": { 451 "type": UserInput.OPTION_CHOICE, 452 "default": 0, 453 "help": "DMI Services Local or Remote", 454 "tooltip": "Services have local access to 4CAT files or must be transferred from remote via DMI Service Manager", 455 "options": { 456 "local": "Local", 457 "remote": "Remote", 458 }, 459 "global": True 460 }, 461 # UI settings 462 # this configures what the site looks like 463 "ui.homepage": { 464 "type": UserInput.OPTION_CHOICE, 465 "options": { 466 "about": "'About' page", 467 "create-dataset": "'Create dataset' page", 468 "datasets": "Dataset overview" 469 }, 470 "help": "4CAT home page", 471 "default": "about" 472 }, 473 "ui.inline_preview": { 474 "type": UserInput.OPTION_TOGGLE, 475 "help": "Show inline preview", 476 "default": False, 477 "tooltip": "Show main dataset preview directly on dataset pages, instead of behind a 'preview' button" 478 }, 479 "ui.offer_anonymisation": { 480 "type": UserInput.OPTION_TOGGLE, 481 "help": "Offer anonymisation options", 482 "default": True, 483 "tooltip": "Offer users the option to anonymise their datasets at the time of creation. It is strongly " 484 "recommended to leave this enabled." 485 }, 486 "ui.advertise_install": { 487 "type": UserInput.OPTION_TOGGLE, 488 "help": "Advertise local 4CAT", 489 "default": True, 490 "tooltip": "In the login form, remind users of the possibility to install their own 4CAT server." 491 }, 492 "ui.show_datasource": { 493 "type": UserInput.OPTION_TOGGLE, 494 "help": "Show data source", 495 "default": True, 496 "tooltip": "Show data source for each dataset. Can be useful to disable if only one data source is enabled." 497 }, 498 "ui.nav_pages": { 499 "type": UserInput.OPTION_MULTI_SELECT, 500 "help": "Pages in navigation", 501 "options": { 502 "data-policy": "Data Policy", 503 "citing": "How to cite", 504 }, 505 "default": [], 506 "tooltip": "These pages will be included in the navigation bar at the top of the interface." 507 }, 508 "ui.prefer_mapped_preview": { 509 "type": UserInput.OPTION_TOGGLE, 510 "help": "Prefer mapped preview", 511 "default": True, 512 "tooltip": "If a dataset is a JSON file but it can be mapped to a CSV file, show the CSV in the preview instead" 513 "of the underlying JSON." 514 }, 515 "ui.offer_hashing": { 516 "type": UserInput.OPTION_TOGGLE, 517 "default": True, 518 "help": "Offer pseudonymisation", 519 "tooltip": "Add a checkbox to the 'create dataset' forum to allow users to toggle pseudonymisation." 520 }, 521 "ui.offer_private": { 522 "type": UserInput.OPTION_TOGGLE, 523 "default": True, 524 "help": "Offer create as private", 525 "tooltip": "Add a checkbox to the 'create dataset' forum to allow users to make a dataset private." 526 }, 527 "ui.option_email": { 528 "type": UserInput.OPTION_CHOICE, 529 "options": { 530 "none": "No Emails", 531 "processor_only": "Processors only", 532 "datasources_only": "Create Dataset only", 533 "both": "Both datasets and processors" 534 }, 535 "default": "none", 536 "help": "Show email when complete option", 537 "tooltip": "If a mail server is set up, enabling this allow users to request emails when datasets and processors are completed." 538 }, 539} 540 541# These are used in the web interface for more readable names 542# Can't think of a better place to put them... 543categories = { 544 "4cat": "4CAT Tool settings", 545 "api": "API credentials", 546 "flask": "Flask settings", 547 "explorer": "Data Explorer", 548 "datasources": "Data sources", 549 "expire": "Dataset expiration settings", 550 "mail": "Mail settings & credentials", 551 "logging": "Logging", 552 "path": "File paths", 553 "privileges": "User privileges", 554 "dmi-service-manager": "DMI Service Manager", 555 "ui": "User interface", 556 "image-visuals": "Image visualization", 557}
config_definition =
{'datasources._intro': {'type': 'info', 'help': "Data sources enabled below will be offered to people on the 'Create Dataset' page. Additionally, people can upload datasets for these by for example exporting them with [Zeeschuimer](https://github.com/digitalmethodsinitiative/zeeschuimer) to this 4CAT instance.\n\nSome data sources offer further settings which may be configured on other tabs."}, 'datasources.enabled': {'type': 'datasources', 'default': ['ninegag', 'bsky', 'douban', 'douyin', 'imgur', 'upload', 'instagram', 'import_4cat', 'linkedin', 'media-import', 'telegram', 'tiktok', 'twitter', 'tiktok-comments', 'truthsocial', 'gab'], 'help': 'Data Sources', 'tooltip': 'A list of enabled data sources that people can choose from when creating a dataset page.'}, 'datasources._intro2': {'type': 'info', 'help': "*Warning:* changes take effect immediately. Datasets that would have expired under the new settings will be deleted. You can use the 'Dataset bulk management' module in the control panel to manage the expiration status of existing datasets."}, 'datasources.expiration': {'type': 'json', 'default': {'fourchan': {'enabled': False, 'allow_optout': False, 'timeout': 0}, 'eightchan': {'enabled': False, 'allow_optout': False, 'timeout': 0}, 'eightkun': {'enabled': False, 'allow_optout': False, 'timeout': 0}, 'ninegag': {'enabled': True, 'allow_optout': False, 'timeout': 0}, 'bitchute': {'enabled': True, 'allow_optout': False, 'timeout': 0}, 'bsky': {'enabled': True, 'allow_optout': False, 'timeout': 0}, 'dmi-tcat': {'enabled': False, 'allow_optout': False, 'timeout': 0}, 'dmi-tcatv2': {'enabled': False, 'allow_optout': False, 'timeout': 0}, 'douban': {'enabled': True, 'allow_optout': False, 'timeout': 0}, 'douyin': {'enabled': True, 'allow_optout': False, 'timeout': 0}, 'import_4cat': {'enabled': True, 'allow_optout': False, 'timeout': 0}, 'gab': {'enabled': True, 'allow_optout': False, 'timeout': 0}, 'imgur': {'enabled': True, 'allow_optout': False, 'timeout': 0}, 'upload': {'enabled': True, 'allow_optout': False, 'timeout': 0}, 'instagram': {'enabled': True, 'allow_optout': False, 'timeout': 0}, 'linkedin': {'enabled': True, 'allow_optout': False, 'timeout': 0}, 'media-import': {'enabled': True, 'allow_optout': False, 'timeout': 0}, 'parler': {'enabled': True, 'allow_optout': False, 'timeout': 0}, 'reddit': {'enabled': False, 'allow_optout': False, 'timeout': 0}, 'telegram': {'enabled': True, 'allow_optout': False, 'timeout': 0}, 'tiktok': {'enabled': True, 'allow_optout': False, 'timeout': 0}, 'tiktok-urls': {'enabled': True, 'allow_optout': False, 'timeout': 0}, 'truthsocial': {'enabled': True, 'allow_optout': False, 'timeout': 0}, 'tumblr': {'enabled': False, 'allow_optout': False, 'timeout': 0}, 'twitter': {'enabled': True, 'allow_optout': False, 'timeout': 0}, 'twitterv2': {'enabled': False, 'allow_optout': False, 'timeout': 0}, 'usenet': {'enabled': False, 'allow_optout': False, 'timeout': 0}, 'vk': {'enabled': False, 'allow_optout': False, 'timeout': 0}}, 'help': 'Data source-specific expiration', 'tooltip': "Allows setting expiration settings per datasource. Configured by proxy via the 'data sources' setting.", 'indirect': True}, '4cat.name': {'type': 'string', 'default': '4CAT', 'help': 'Short tool name', 'tooltip': "Configure short name for the tool in its web interface. The backend will always refer to '4CAT' - the name of the software, and a 'powered by 4CAT' notice may also show up in the web interface regardless of the value entered here."}, '4cat.name_long': {'type': 'string', 'default': '4CAT: Capture and Analysis Toolkit', 'help': 'Full tool name', 'tooltip': "Used in e.g. the interface header. The backend will always refer to '4CAT' - the name of the software, and a 'powered by 4CAT' notice may also show up in the web interface regardless of the value entered here."}, '4cat.about_this_server': {'type': 'textarea', 'default': '', 'help': 'Server information', 'tooltip': "Custom server information that is displayed on the 'About' page. Can for instance be used to show information about who maintains the tool or what its intended purpose is."}, '4cat.crash_message': {'type': 'textarea', 'default': "This processor has crashed; the crash has been logged. 4CAT will try again when it is restarted. Contact your server administrator if this error persists. You can also report issues via 4CAT's [GitHub repository](https://github.com/digitalmethodsinitiative/4cat/issues).", 'help': 'Crash message', 'tooltip': 'This message is shown to users in the interface when a processor crashes while processing their dataset. It can contain Markdown markup.'}, 'privileges.can_create_dataset': {'type': 'toggle', 'default': True, 'help': 'Can create dataset', 'tooltip': "Controls whether users can view and use the 'Create dataset' page. Does NOT control whether users can run processors (which also create datasets); this is a separate setting."}, 'privileges.can_run_processors': {'type': 'toggle', 'default': True, 'help': 'Can run processors', 'tooltip': 'Controls whether processors can be run. There may be processor-specific settings or dependencies that override this.'}, 'privileges.can_view_all_datasets': {'type': 'toggle', 'default': False, 'help': 'Can view global dataset index', 'tooltip': 'Controls whether users can see the global datasets overview, i.e. not just for their own user but for all other users as well.'}, 'privileges.can_view_private_datasets': {'type': 'toggle', 'default': False, 'help': 'Can view private datasets', 'tooltip': 'Controls whether users can see the datasets made private by their owners.'}, 'privileges.can_create_api_token': {'type': 'toggle', 'default': True, 'help': 'Can create API token', 'tooltip': "Controls whether users can create a token for authentication with 4CAT's Web API."}, 'privileges.can_use_explorer': {'type': 'toggle', 'default': True, 'help': 'Can use explorer', 'tooltip': 'Controls whether users can use the Explorer feature to navigate datasets.'}, 'privileges.can_export_datasets': {'type': 'toggle', 'default': True, 'help': 'Can export datasets', 'tooltip': 'Allows users to export datasets they own to other 4CAT instances.'}, 'privileges.admin.can_manage_users': {'type': 'toggle', 'default': False, 'help': 'Can manage users', 'tooltip': 'Controls whether users can add, edit and delete other users via the Control Panel'}, 'privileges.admin.can_manage_notifications': {'type': 'toggle', 'default': False, 'help': 'Can manage notifications', 'tooltip': 'Controls whether users can add, edit and delete notifications via the Control Panel'}, 'privileges.admin.can_manage_settings': {'type': 'toggle', 'default': False, 'help': 'Can manage settings', 'tooltip': 'Controls whether users can manipulate 4CAT settings via the Control Panel'}, 'privileges.admin.can_manipulate_all_datasets': {'type': 'toggle', 'default': False, 'help': 'Can manipulate all datasets', 'tooltip': 'Controls whether users can manipulate all datasets as if they were an owner, e.g. sharing it with others, running processors, et cetera.'}, 'privileges.admin.can_restart': {'type': 'toggle', 'default': False, 'help': 'Can restart/upgrade', 'tooltip': 'Controls whether users can restart, upgrade, and manage extensions 4CAT via the Control Panel'}, 'privileges.can_upgrade_to_dev': {'type': 'toggle', 'default': False, 'help': 'Can upgrade to development branch', 'tooltip': "Controls whether users can upgrade 4CAT to a development branch of the code via the Control Panel. This is an easy way to break 4CAT so it is recommended to not enable this unless you're really sure of what you're doing."}, 'privileges.admin.can_manage_tags': {'type': 'toggle', 'default': False, 'help': 'Can manage user tags', 'tooltip': 'Controls whether users can manipulate user tags via the Control Panel'}, 'privileges.admin.can_view_status': {'type': 'toggle', 'default': False, 'help': 'Can view worker status', 'tooltip': 'Controls whether users can view worker status via the Control Panel'}, '4cat.github_url': {'type': 'string', 'default': 'https://github.com/digitalmethodsinitiative/4cat', 'help': 'Repository URL', 'tooltip': 'URL to the github repository for this 4CAT instance', 'global': True}, '4cat.phone_home_url': {'type': 'string', 'default': 'https://ping.4cat.nl', 'help': 'Phone home URL', 'tooltip': 'This URL is called once - when 4CAT is installed. If the installing user consents, information is sent to this URL to help the 4CAT developers (the Digital Methods Initiative) keep track of how much it is used. There should be no need to change this URL after installation.', 'global': True}, '4cat.phone_home_asked': {'type': 'toggle', 'default': True, 'help': 'Shown phone home request?', 'tooltip': "Whether you've seen the 'phone home request'. Set to `False` to see the request again. There should be no need to change this manually.", 'global': True}, '4cat.layout_hue': {'type': 'hue', 'default': 356, 'help': 'Interface accent colour', 'saturation': 87, 'value': 81, 'min': 0, 'max': 360, 'coerce_type': <class 'int'>, 'global': True}, '4cat.layout_hue_secondary': {'type': 'hue', 'default': 86, 'help': 'Interface secondary colour', 'saturation': 87, 'value': 90, 'min': 0, 'max': 360, 'coerce_type': <class 'int'>, 'global': True}, '4cat.allow_access_request': {'type': 'toggle', 'default': True, 'help': 'Allow access requests', 'tooltip': 'When enabled, users can request a 4CAT account via the login page if they do not have one, provided e-mail settings are configured.'}, '4cat.sphinx_host': {'type': 'string', 'default': 'localhost', 'help': 'Sphinx host', 'tooltip': 'Sphinx is used for full-text search for collected datasources (e.g., 4chan, 8kun, 8chan) and requires additional setup (see 4CAT wiki on GitHub).', 'global': True}, 'logging.slack.level': {'type': 'choice', 'default': 'WARNING', 'options': {'DEBUG': 'Debug', 'INFO': 'Info', 'WARNING': 'Warning', 'ERROR': 'Error', 'CRITICAL': 'Critical'}, 'help': 'Slack alert level', 'tooltip': 'Level of alerts (or higher) to be sent to Slack. Only alerts above this level are sent to the Slack webhook', 'global': True}, 'logging.slack.webhook': {'type': 'string', 'default': '', 'help': 'Slack webhook URL', 'tooltip': 'Slack callback URL to use for alerts', 'global': True}, 'mail.admin_email': {'type': 'string', 'default': '', 'help': 'Admin e-mail', 'tooltip': 'E-mail of admin, to send account requests etc to', 'global': True}, 'mail.server': {'type': 'string', 'default': '', 'help': 'SMTP server', 'tooltip': 'SMTP server to connect to for sending e-mail alerts.', 'global': True}, 'mail.port': {'type': 'string', 'default': 0, 'coerce_type': <class 'int'>, 'help': 'SMTP port', 'tooltip': 'SMTP port to connect to for sending e-mail alerts. "0" defaults to "465" for SMTP_SSL or OS default for SMTP.', 'global': True}, 'mail.ssl': {'type': 'choice', 'default': 'ssl', 'options': {'ssl': 'SSL', 'tls': 'TLS', 'none': 'None'}, 'help': 'SMTP over SSL, TLS, or None', 'tooltip': 'Security scheme to use to connect to e-mail server', 'global': True}, 'mail.username': {'type': 'string', 'default': '', 'help': 'SMTP Username', 'tooltip': 'Only if your SMTP server requires login', 'global': True}, 'mail.password': {'type': 'string', 'default': '', 'help': 'SMTP Password', 'tooltip': 'Only if your SMTP server requires login', 'global': True}, 'mail.noreply': {'type': 'string', 'default': 'noreply@localhost', 'help': 'NoReply e-mail', 'global': True}, 'explorer.max_posts': {'type': 'string', 'default': 100000, 'help': 'Amount of posts', 'coerce_type': <class 'int'>, 'tooltip': 'Amount of posts to show in Explorer. The maximum allowed amount of rows (prevents timeouts and memory errors)'}, 'explorer.posts_per_page': {'type': 'string', 'default': 50, 'help': 'Posts per page', 'coerce_type': <class 'int'>, 'tooltip': 'Posts to display per page'}, 'flask.flask_app': {'type': 'string', 'default': 'webtool/fourcat', 'help': 'Flask App Name', 'tooltip': '', 'global': True}, 'flask.server_name': {'type': 'string', 'default': '4cat.local:5000', 'help': 'Host name', 'tooltip': 'e.g., my4CAT.com, localhost, 127.0.0.1. Default is localhost; when running 4CAT in Docker this setting is ignored as any domain/port binding should be handled outside of the Docker container; the Docker container itself will serve on any domain name on the port configured in the .env file.', 'global': True}, 'flask.autologin.hostnames': {'type': 'json', 'default': [], 'help': 'White-listed hostnames', 'tooltip': 'A list of host names or IP addresses to automatically log in. Docker should include localhost and Server Name', 'global': True}, 'flask.autologin.api': {'type': 'json', 'default': [], 'help': 'White-list for API', 'tooltip': 'A list of host names or IP addresses to allow access to API endpoints with no rate limiting. Docker should include localhost and Server Name', 'global': True}, 'flask.https': {'type': 'toggle', 'default': False, 'help': 'Use HTTPS', 'tooltip': "If your server is using 'https', set to True and 4CAT will use HTTPS links.", 'global': True}, 'flask.proxy_override': {'type': 'multi_select', 'default': [], 'options': {'x_for': 'X-Forwarded-For', 'x_proto': 'X-Forwarded-Proto', 'x_host': 'X-Forwarded-Host', 'x_port': 'X-Forwarded-Port', 'x_prefix': 'X-Forwarded-Prefix'}, 'help': 'Use proxy headers for URL', 'tooltip': 'These proxy headers will be taken into account when building URLs. For example, if X-Forwarded-Proto is enabled, the URL scheme (http/https) of the built URL will be based on the scheme defined by this header. Use when running 4CAT behind a reverse proxy. Requires a front-end restart to take effect.'}, 'flask.autologin.name': {'type': 'string', 'default': 'Automatic login', 'help': 'Auto-login name', 'tooltip': 'Username for whitelisted hosts (automatically logged in users see this name for themselves)'}, 'flask.secret_key': {'type': 'string', 'default': 'please change me... please...', 'help': 'Secret key', 'tooltip': 'Secret key for Flask, used for session cookies', 'global': True}, 'flask.max_form_parts': {'type': 'string', 'default': 1000, 'help': 'Max form parts per request', 'coerce_type': <class 'int'>, 'global': True, 'tooltip': 'Affects approximate number of files that can be uploaded at once'}, 'flask.tag_order': {'type': 'json', 'default': ['admin'], 'help': 'Tag priority', 'tooltip': "User tag priority order. This can be manipulated from the 'User tags' panel instead of directly.", 'global': True, 'indirect': True}, 'flask.proxy_secret': {'type': 'string', 'default': '', 'help': 'Proxy secret', 'tooltip': 'Secret value to authenticate proxy headers. If the value of the X-4CAT-Config-Via-Proxy header matches this value, the X-4CAT-Config-Tag header can be used to enable a given configuration tag. Leave empty to disable this functionality.'}, 'api.youtube.name': {'type': 'string', 'default': 'youtube', 'help': 'YouTube API Service', 'tooltip': "YouTube API 'service name', e.g. youtube, googleapis, etc.", 'global': True}, 'api.youtube.version': {'type': 'string', 'default': 'v3', 'help': 'YouTube API Version', 'tooltip': "e.g., ''v3'", 'global': True}, 'api.youtube.key': {'type': 'string', 'default': '', 'help': 'YouTube API Key', 'tooltip': 'The developer key from your API console'}, 'dmi-service-manager.aa_DSM-intro-1': {'type': 'info', 'help': "The [DMI Service Manager](https://github.com/digitalmethodsinitiative/dmi_service_manager#start-dmi-service-manager) is a support tool used to run some advanced processors. These processors generally require high CPU usage, a lot of RAM, or a dedicated GPU and thus do not fit within 4CAT's arcitecture. It is also possible for multiple 4CAT instances to use the same service manager. Please see the link for instructions on setting up your own instance of the DMI Service Manager."}, 'dmi-service-manager.ab_server_address': {'type': 'string', 'default': '', 'help': 'DMI Service Manager server/URL', 'tooltip': 'The URL of the DMI Service Manager server, e.g. http://localhost:5000', 'global': True}, 'dmi-service-manager.ac_local_or_remote': {'type': 'choice', 'default': 0, 'help': 'DMI Services Local or Remote', 'tooltip': 'Services have local access to 4CAT files or must be transferred from remote via DMI Service Manager', 'options': {'local': 'Local', 'remote': 'Remote'}, 'global': True}, 'ui.homepage': {'type': 'choice', 'options': {'about': "'About' page", 'create-dataset': "'Create dataset' page", 'datasets': 'Dataset overview'}, 'help': '4CAT home page', 'default': 'about'}, 'ui.inline_preview': {'type': 'toggle', 'help': 'Show inline preview', 'default': False, 'tooltip': "Show main dataset preview directly on dataset pages, instead of behind a 'preview' button"}, 'ui.offer_anonymisation': {'type': 'toggle', 'help': 'Offer anonymisation options', 'default': True, 'tooltip': 'Offer users the option to anonymise their datasets at the time of creation. It is strongly recommended to leave this enabled.'}, 'ui.advertise_install': {'type': 'toggle', 'help': 'Advertise local 4CAT', 'default': True, 'tooltip': 'In the login form, remind users of the possibility to install their own 4CAT server.'}, 'ui.show_datasource': {'type': 'toggle', 'help': 'Show data source', 'default': True, 'tooltip': 'Show data source for each dataset. Can be useful to disable if only one data source is enabled.'}, 'ui.nav_pages': {'type': 'multi_select', 'help': 'Pages in navigation', 'options': {'data-policy': 'Data Policy', 'citing': 'How to cite'}, 'default': [], 'tooltip': 'These pages will be included in the navigation bar at the top of the interface.'}, 'ui.prefer_mapped_preview': {'type': 'toggle', 'help': 'Prefer mapped preview', 'default': True, 'tooltip': 'If a dataset is a JSON file but it can be mapped to a CSV file, show the CSV in the preview insteadof the underlying JSON.'}, 'ui.offer_hashing': {'type': 'toggle', 'default': True, 'help': 'Offer pseudonymisation', 'tooltip': "Add a checkbox to the 'create dataset' forum to allow users to toggle pseudonymisation."}, 'ui.offer_private': {'type': 'toggle', 'default': True, 'help': 'Offer create as private', 'tooltip': "Add a checkbox to the 'create dataset' forum to allow users to make a dataset private."}, 'ui.option_email': {'type': 'choice', 'options': {'none': 'No Emails', 'processor_only': 'Processors only', 'datasources_only': 'Create Dataset only', 'both': 'Both datasets and processors'}, 'default': 'none', 'help': 'Show email when complete option', 'tooltip': 'If a mail server is set up, enabling this allow users to request emails when datasets and processors are completed.'}}
categories =
{'4cat': '4CAT Tool settings', 'api': 'API credentials', 'flask': 'Flask settings', 'explorer': 'Data Explorer', 'datasources': 'Data sources', 'expire': 'Dataset expiration settings', 'mail': 'Mail settings & credentials', 'logging': 'Logging', 'path': 'File paths', 'privileges': 'User privileges', 'dmi-service-manager': 'DMI Service Manager', 'ui': 'User interface', 'image-visuals': 'Image visualization'}