Last active
March 4, 2025 07:09
-
-
Save y8/ff2eec8a6f6511e0ff097db969530984 to your computer and use it in GitHub Desktop.
Mastodon v4.3+ patch to set custom char limit using `MAX_POST_CHARS` env variable
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Example how you can "patch" Matodon running in docker swarm by exploiting "config mounts" | |
# to avoid mounting files from local system | |
services: | |
web: | |
# original configuration | |
# ... | |
configs: | |
- source: mastodon-remove-char-limit | |
target: /mastodon/config/initializers/4_char_limit.rb | |
sidekiq: | |
# original configuration | |
# ... | |
configs: | |
- source: mastodon-remove-char-limit | |
target: /mastodon/config/initializers/4_char_limit.rb | |
configs: | |
mastodon-remove-char-limit: | |
# Replace `./mastodon_4_3_char_limit.rb` with path to file on your system, where you are running "docker service" command | |
file: ./mastodon_4_3_char_limit.rb |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Example how you can "patch" Matodon running in docker container | |
services: | |
web: | |
# original configuration | |
# ... | |
volumes: | |
# Mount patch inside container. Replace `/opt/mastodon/mastodon_4_3_char_limit.rb` with path to file on local system. | |
- /opt/mastodon/mastodon_4_3_char_limit.rb:/mastodon/config/initializers/4_char_limit.rb | |
- ./public/system:/mastodon/public/system | |
sidekiq: | |
# original configuration | |
# ... | |
volumes: | |
# Mount patch inside container. Replace `/opt/mastodon/mastodon_4_3_char_limit.rb` with path to file on local system. | |
- /opt/mastodon/mastodon_4_3_char_limit.rb:/mastodon/config/initializers/4_char_limit.rb | |
- ./public/system:/mastodon/public/system | |
# ... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# License: 0BSD | |
# | |
# Patch for Mastodon v4.3+ | |
# Redefine StatusLengthValidator::MAX_CHARS to allow setting char limit from | |
# MAX_POST_CHARS environment variable. | |
# | |
# 1. Add this file to `config/initializers/` | |
# 2. Set `MAX_POST_CHARS` environment to the desired value | |
# 3. Restart app. | |
# | |
# This "patch" will survive upgrades, as long as location of `MAX_CHARS` constant | |
# is the same. | |
Rails.application.config.after_initialize do | |
if defined?(StatusLengthValidator) | |
# Uncomment this line if you don't like `already initialized constant` warning | |
# StatusLengthValidator.send(:remove_const, :MAX_CHARS) if StatusLengthValidator.const_defined?(:MAX_CHARS) | |
StatusLengthValidator.const_set :MAX_CHARS, ENV.fetch("MAX_POST_CHARS", 500).to_i | |
end | |
end | |
# © 2025 by yopp (@[email protected]) | |
# | |
# Permission to use, copy, modify, and/or distribute this software for any | |
# purpose with or without fee is hereby granted. | |
# | |
# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH | |
# REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY | |
# AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, | |
# INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM | |
# LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR | |
# OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE | |
# OF THIS SOFTWARE |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment