You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

88 lines
2.6 KiB

8 years ago
8 years ago
8 years ago
7 years ago
7 years ago
8 years ago
  1. require_relative 'boot'
  2. require 'rails/all'
  3. # Require the gems listed in Gemfile, including any gems
  4. # you've limited to :test, :development, or :production.
  5. Bundler.require(*Rails.groups)
  6. require_relative '../app/lib/exceptions'
  7. require_relative '../lib/paperclip/gif_transcoder'
  8. require_relative '../lib/paperclip/video_transcoder'
  9. require_relative '../lib/mastodon/version'
  10. Dotenv::Railtie.load
  11. require_relative '../lib/mastodon/redis_config'
  12. module Mastodon
  13. class Application < Rails::Application
  14. # Settings in config/environments/* take precedence over those specified here.
  15. # Application configuration should go into files in config/initializers
  16. # -- all .rb files in that directory are automatically loaded.
  17. # Set Time.zone default to the specified zone and make Active Record auto-convert to this zone.
  18. # Run "rake -D time" for a list of tasks for finding time zone names. Default is UTC.
  19. # config.time_zone = 'Central Time (US & Canada)'
  20. # The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded.
  21. # config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s]
  22. config.i18n.available_locales = [
  23. :en,
  24. :ar,
  25. :bg,
  26. :ca,
  27. :de,
  28. :eo,
  29. :es,
  30. :fa,
  31. :fi,
  32. :fr,
  33. :he,
  34. :hr,
  35. :hu,
  36. :id,
  37. :io,
  38. :it,
  39. :ja,
  40. :nl,
  41. :no,
  42. :oc,
  43. :pl,
  44. :pt,
  45. :'pt-BR',
  46. :ru,
  47. :th,
  48. :tr,
  49. :uk,
  50. :'zh-CN',
  51. :'zh-HK',
  52. :'zh-TW',
  53. ]
  54. config.i18n.default_locale = :en
  55. # config.paths.add File.join('app', 'api'), glob: File.join('**', '*.rb')
  56. # config.autoload_paths += Dir[Rails.root.join('app', 'api', '*')]
  57. config.active_job.queue_adapter = :sidekiq
  58. config.middleware.insert_before 0, Rack::Cors do
  59. allow do
  60. origins '*'
  61. resource '/@:username', headers: :any, methods: [:get], credentials: false
  62. resource '/api/*', headers: :any, methods: [:post, :put, :delete, :get, :patch, :options], credentials: false, expose: ['Link', 'X-RateLimit-Reset', 'X-RateLimit-Limit', 'X-RateLimit-Remaining', 'X-Request-Id']
  63. resource '/oauth/token', headers: :any, methods: [:post], credentials: false
  64. end
  65. end
  66. config.middleware.use Rack::Attack
  67. config.middleware.use Rack::Deflater
  68. config.to_prepare do
  69. Doorkeeper::AuthorizationsController.layout 'public'
  70. Doorkeeper::AuthorizedApplicationsController.layout 'admin'
  71. Doorkeeper::Application.send :include, ApplicationExtension
  72. end
  73. end
  74. end