mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-02 03:57:52 +00:00
Migration Guide: https://chwt.app/v4/migration This PR imports all the work related to Captain into the EE codebase. Captain represents the AI-based features in Chatwoot and includes the following key components: - Assistant: An assistant has a persona, the product it would be trained on. At the moment, the data at which it is trained is from websites. Future integrations on Notion documents, PDF etc. This PR enables connecting an assistant to an inbox. The assistant would run the conversation every time before transferring it to an agent. - Copilot for Agents: When an agent is supporting a customer, we will be able to offer additional help to lookup some data or fetch information from integrations etc via copilot. - Conversation FAQ generator: When a conversation is resolved, the Captain integration would identify questions which were not in the knowledge base. - CRM memory: Learns from the conversations and identifies important information about the contact. --------- Co-authored-by: Vishnu Narayanan <vishnu@chatwoot.com> Co-authored-by: Sojan <sojan@pepalo.com> Co-authored-by: iamsivin <iamsivin@gmail.com> Co-authored-by: Sivin Varghese <64252451+iamsivin@users.noreply.github.com>
77 lines
2.9 KiB
Ruby
77 lines
2.9 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
|
|
|
|
# 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
|