Chatwoot/app/models/integrations/app.rb

79 lines
1.2 KiB
Ruby
Raw Normal View History

class Integrations::App
attr_accessor :params
def initialize(params)
@params = params
end
def id
params[:id]
end
def name
params[:name]
end
def description
params[:description]
end
def logo
params[:logo]
end
def fields
params[:fields]
end
def action
case params[:id]
when 'slack'
"#{params[:action]}&client_id=#{ENV['SLACK_CLIENT_ID']}&redirect_uri=#{self.class.slack_integration_url}"
else
params[:action]
end
end
def active?
case params[:id]
when 'slack'
ENV['SLACK_CLIENT_SECRET'].present?
else
true
end
end
def enabled?(account)
case params[:id]
when 'slack'
2020-09-08 05:54:08 +00:00
account.hooks.exists?(app_id: id)
else
true
end
end
def hooks
Current.account.hooks.where(app_id: id)
end
def self.slack_integration_url
"#{ENV['FRONTEND_URL']}/app/accounts/#{Current.account.id}/settings/integrations/slack"
end
class << self
def apps
Hashie::Mash.new(APPS_CONFIG)
end
def all
apps.values.each_with_object([]) do |app, result|
result << new(app)
end
end
def find(params)
all.detect { |app| app.id == params[:id] }
end
end
end