2019-08-14 09:48:44 +00:00
|
|
|
Rails.application.routes.draw do
|
2019-10-20 08:47:26 +00:00
|
|
|
# AUTH STARTS
|
2019-08-14 09:48:44 +00:00
|
|
|
match 'auth/:provider/callback', to: 'home#callback', via: [:get, :post]
|
2020-02-02 17:22:38 +00:00
|
|
|
mount_devise_token_auth_for 'User', at: 'auth', controllers: {
|
|
|
|
confirmations: 'devise_overrides/confirmations',
|
|
|
|
passwords: 'devise_overrides/passwords',
|
|
|
|
sessions: 'devise_overrides/sessions',
|
|
|
|
token_validations: 'devise_overrides/token_validations'
|
|
|
|
}, via: [:get, :post]
|
2019-08-14 09:48:44 +00:00
|
|
|
|
2019-10-20 08:47:26 +00:00
|
|
|
root to: 'dashboard#index'
|
2019-08-25 14:29:28 +00:00
|
|
|
|
2019-10-20 08:47:26 +00:00
|
|
|
get '/app', to: 'dashboard#index'
|
|
|
|
get '/app/*params', to: 'dashboard#index'
|
2020-02-11 08:57:38 +00:00
|
|
|
get '/app/settings/inboxes/new/twitter', to: 'dashboard#index', as: 'app_new_twitter_inbox'
|
|
|
|
get '/app/settings/inboxes/new/:inbox_id/agents', to: 'dashboard#index', as: 'app_twitter_inbox_agents'
|
2019-08-25 14:29:28 +00:00
|
|
|
|
2020-01-09 07:36:40 +00:00
|
|
|
resource :widget, only: [:show]
|
2019-10-29 07:20:54 +00:00
|
|
|
|
2019-12-23 06:46:46 +00:00
|
|
|
namespace :api, defaults: { format: 'json' } do
|
2019-08-14 09:48:44 +00:00
|
|
|
namespace :v1 do
|
|
|
|
resources :callbacks, only: [] do
|
|
|
|
collection do
|
|
|
|
post :register_facebook_page
|
|
|
|
get :register_facebook_page
|
|
|
|
post :get_facebook_pages
|
|
|
|
post :reauthorize_page
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
namespace :widget do
|
2020-01-09 07:36:40 +00:00
|
|
|
resources :messages, only: [:index, :create, :update]
|
2019-12-28 16:26:42 +00:00
|
|
|
resources :inboxes, only: [:create, :update]
|
2020-01-21 14:11:58 +00:00
|
|
|
resources :inbox_members, only: [:index]
|
2019-08-14 09:48:44 +00:00
|
|
|
end
|
|
|
|
|
2019-12-24 07:57:25 +00:00
|
|
|
namespace :actions do
|
|
|
|
resource :contact_merge, only: [:create]
|
|
|
|
end
|
|
|
|
|
2020-02-26 04:14:24 +00:00
|
|
|
namespace :account do
|
2020-02-14 17:49:17 +00:00
|
|
|
resources :webhooks, except: [:show]
|
|
|
|
end
|
|
|
|
|
2019-12-10 04:59:35 +00:00
|
|
|
resource :profile, only: [:show, :update]
|
2019-08-14 09:48:44 +00:00
|
|
|
resources :accounts, only: [:create]
|
2020-02-19 09:10:03 +00:00
|
|
|
resources :inboxes, only: [:index, :destroy, :update]
|
2019-08-14 09:48:44 +00:00
|
|
|
resources :agents, except: [:show, :edit, :new]
|
2020-02-02 10:59:18 +00:00
|
|
|
resources :labels, only: [:index] do
|
|
|
|
collection do
|
|
|
|
get :most_used
|
|
|
|
end
|
|
|
|
end
|
2019-08-14 09:48:44 +00:00
|
|
|
resources :canned_responses, except: [:show, :edit, :new]
|
|
|
|
resources :inbox_members, only: [:create, :show], param: :inbox_id
|
2019-10-20 08:47:26 +00:00
|
|
|
resources :facebook_indicators, only: [] do
|
2019-08-14 09:48:44 +00:00
|
|
|
collection do
|
|
|
|
post :mark_seen
|
|
|
|
post :typing_on
|
|
|
|
post :typing_off
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
resources :reports, only: [] do
|
|
|
|
collection do
|
|
|
|
get :account
|
|
|
|
get :agent
|
|
|
|
end
|
|
|
|
member do
|
|
|
|
get :account_summary
|
|
|
|
get :agent_summary
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
resources :conversations, only: [:index, :show] do
|
2020-03-08 16:38:25 +00:00
|
|
|
scope module: :conversations do
|
|
|
|
resources :messages, only: [:index, :create]
|
2019-08-14 09:48:44 +00:00
|
|
|
resources :assignments, only: [:create]
|
|
|
|
resources :labels, only: [:create, :index]
|
|
|
|
end
|
|
|
|
member do
|
|
|
|
post :toggle_status
|
|
|
|
post :update_last_seen
|
|
|
|
end
|
|
|
|
end
|
2019-11-24 13:39:17 +00:00
|
|
|
|
2020-01-13 05:47:03 +00:00
|
|
|
resources :contacts, only: [:index, :show, :update, :create] do
|
|
|
|
scope module: :contacts do
|
|
|
|
resources :conversations, only: [:index]
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-11-24 13:39:17 +00:00
|
|
|
# this block is only required if subscription via chargebee is enabled
|
2020-02-17 02:21:45 +00:00
|
|
|
resources :subscriptions, only: [:index] do
|
|
|
|
collection do
|
|
|
|
get :summary
|
2019-11-24 13:39:17 +00:00
|
|
|
end
|
2020-02-17 02:21:45 +00:00
|
|
|
end
|
2019-12-23 06:46:46 +00:00
|
|
|
|
2020-02-17 02:21:45 +00:00
|
|
|
resources :webhooks, only: [] do
|
|
|
|
collection do
|
|
|
|
post :chargebee
|
2019-11-24 13:39:17 +00:00
|
|
|
end
|
|
|
|
end
|
2020-02-29 15:11:09 +00:00
|
|
|
|
|
|
|
namespace :user do
|
|
|
|
resource :notification_settings, only: [:show, :update]
|
|
|
|
end
|
2019-08-14 09:48:44 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-02-11 08:57:38 +00:00
|
|
|
namespace :twitter do
|
|
|
|
resource :authorization, only: [:create]
|
|
|
|
resource :callback, only: [:show]
|
|
|
|
end
|
|
|
|
|
2019-12-23 06:46:46 +00:00
|
|
|
# Used in mailer templates
|
|
|
|
resource :app, only: [:index] do
|
2019-08-14 09:48:44 +00:00
|
|
|
resources :conversations, only: [:show]
|
|
|
|
end
|
|
|
|
|
|
|
|
mount Facebook::Messenger::Server, at: 'bot'
|
2020-02-02 19:09:00 +00:00
|
|
|
get 'webhooks/twitter', to: 'api/v1/webhooks#twitter_crc'
|
|
|
|
post 'webhooks/twitter', to: 'api/v1/webhooks#twitter_events'
|
|
|
|
|
2019-08-14 09:48:44 +00:00
|
|
|
post '/webhooks/telegram/:account_id/:inbox_id' => 'home#telegram'
|
2019-11-01 07:23:01 +00:00
|
|
|
|
|
|
|
# Routes for testing
|
|
|
|
resources :widget_tests, only: [:index] unless Rails.env.production?
|
2020-01-05 17:56:22 +00:00
|
|
|
|
|
|
|
# ----------------------------------------------------------------------
|
|
|
|
# Internal Monitoring Routes
|
|
|
|
require 'sidekiq/web'
|
|
|
|
|
|
|
|
scope :monitoring do
|
|
|
|
# Sidekiq should use basic auth in production environment
|
|
|
|
if Rails.env.production?
|
|
|
|
Sidekiq::Web.use Rack::Auth::Basic do |username, password|
|
|
|
|
ENV['SIDEKIQ_AUTH_USERNAME'] &&
|
|
|
|
ENV['SIDEKIQ_AUTH_PASSWORD'] &&
|
|
|
|
ActiveSupport::SecurityUtils.secure_compare(::Digest::SHA256.hexdigest(username),
|
|
|
|
::Digest::SHA256.hexdigest(ENV['SIDEKIQ_AUTH_USERNAME'])) &&
|
|
|
|
ActiveSupport::SecurityUtils.secure_compare(::Digest::SHA256.hexdigest(password),
|
|
|
|
::Digest::SHA256.hexdigest(ENV['SIDEKIQ_AUTH_PASSWORD']))
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
mount Sidekiq::Web, at: '/sidekiq'
|
|
|
|
end
|
|
|
|
# ----------------------------------------------------------------------
|
2020-02-23 07:24:29 +00:00
|
|
|
|
|
|
|
# Routes for swagger docs
|
|
|
|
get '/swagger/*path', to: 'swagger#respond'
|
|
|
|
get '/swagger', to: 'swagger#respond'
|
2019-08-14 09:48:44 +00:00
|
|
|
end
|