mirror of
https://github.com/lingble/chatwoot.git
synced 2025-10-30 02:32:29 +00:00
- Refactor HandleStripeEventService to better manage features by plan - Add constants for features available in each plan tier (Startup, Business, Enterprise) - Add channel_instagram to Startup plan features - Improve downgrade handling to properly disable higher-tier features - Clean up and optimize tests for maintainability - Add comprehensive test coverage for plan upgrades and downgrades --------- Co-authored-by: Muhsin Keloth <muhsinkeramam@gmail.com>
79 lines
3.0 KiB
Ruby
79 lines
3.0 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require_relative 'boot'
|
|
|
|
require 'rails/all'
|
|
|
|
# Require the gems listed in Gemfile, including any gems
|
|
# you've limited to :test, :development, or :production.
|
|
Bundler.require(*Rails.groups)
|
|
|
|
## Load the specific APM agent
|
|
# We rely on DOTENV to load the environment variables
|
|
# We need these environment variables to load the specific APM agent
|
|
Dotenv::Rails.load
|
|
require 'ddtrace' if ENV.fetch('DD_TRACE_AGENT_URL', false).present?
|
|
require 'elastic-apm' if ENV.fetch('ELASTIC_APM_SECRET_TOKEN', false).present?
|
|
require 'scout_apm' if ENV.fetch('SCOUT_KEY', false).present?
|
|
|
|
if ENV.fetch('NEW_RELIC_LICENSE_KEY', false).present?
|
|
require 'newrelic-sidekiq-metrics'
|
|
require 'newrelic_rpm'
|
|
end
|
|
|
|
if ENV.fetch('SENTRY_DSN', false).present?
|
|
require 'sentry-ruby'
|
|
require 'sentry-rails'
|
|
require 'sentry-sidekiq'
|
|
end
|
|
|
|
# heroku autoscaling
|
|
if ENV.fetch('JUDOSCALE_URL', false).present?
|
|
require 'judoscale-rails'
|
|
require 'judoscale-sidekiq'
|
|
end
|
|
|
|
module Chatwoot
|
|
class Application < Rails::Application
|
|
# Initialize configuration defaults for originally generated Rails version.
|
|
config.load_defaults 7.0
|
|
|
|
config.eager_load_paths << Rails.root.join('lib')
|
|
config.eager_load_paths << Rails.root.join('enterprise/lib')
|
|
config.eager_load_paths << Rails.root.join('enterprise/listeners')
|
|
# rubocop:disable Rails/FilePath
|
|
config.eager_load_paths += Dir["#{Rails.root}/enterprise/app/**"]
|
|
# rubocop:enable Rails/FilePath
|
|
# Add enterprise views to the view paths
|
|
config.paths['app/views'].unshift('enterprise/app/views')
|
|
|
|
# Settings in config/environments/* take precedence over those specified here.
|
|
# Application configuration can go into files in config/initializers
|
|
# -- all .rb files in that directory are automatically loaded after loading
|
|
# the framework and any gems in your application.
|
|
config.generators.javascripts = false
|
|
config.generators.stylesheets = false
|
|
|
|
# Custom chatwoot configurations
|
|
config.x = config_for(:app).with_indifferent_access
|
|
|
|
# https://stackoverflow.com/questions/72970170/upgrading-to-rails-6-1-6-1-causes-psychdisallowedclass-tried-to-load-unspecif
|
|
# https://discuss.rubyonrails.org/t/cve-2022-32224-possible-rce-escalation-bug-with-serialized-columns-in-active-record/81017
|
|
# FIX ME : fixes breakage of installation config. we need to migrate.
|
|
config.active_record.yaml_column_permitted_classes = [ActiveSupport::HashWithIndifferentAccess]
|
|
end
|
|
|
|
def self.config
|
|
@config ||= Rails.configuration.x
|
|
end
|
|
|
|
def self.redis_ssl_verify_mode
|
|
# Introduced this method to fix the issue in heroku where redis connections fail for redis 6
|
|
# ref: https://github.com/chatwoot/chatwoot/issues/2420
|
|
#
|
|
# unless the redis verify mode is explicitly specified as none, we will fall back to the default 'verify peer'
|
|
# ref: https://www.rubydoc.info/stdlib/openssl/OpenSSL/SSL/SSLContext#DEFAULT_PARAMS-constant
|
|
ENV['REDIS_OPENSSL_VERIFY_MODE'] == 'none' ? OpenSSL::SSL::VERIFY_NONE : OpenSSL::SSL::VERIFY_PEER
|
|
end
|
|
end
|