Compare commits
15
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
faac1486e9 | ||
|
|
8340bd615c | ||
|
|
75d3569f22 | ||
|
|
545453537f | ||
|
|
d75702c6b2 | ||
|
|
b76ec878f1 | ||
|
|
a954e1eaca | ||
|
|
bc5f1722e1 | ||
|
|
8f39e62570 | ||
|
|
7520ca7a99 | ||
|
|
35f4e63605 | ||
|
|
5773089865 | ||
|
|
d01c7d3fa7 | ||
|
|
959d2c0d8c | ||
|
|
622f29a0b7 |
+64
-203
@@ -1,9 +1,7 @@
|
|||||||
version: 2.1
|
version: 2.1
|
||||||
orbs:
|
orbs:
|
||||||
node: circleci/node@6.1.0
|
node: circleci/node@6.1.0
|
||||||
qlty-orb: qltysh/qlty-orb@0.0
|
|
||||||
|
|
||||||
# Shared defaults for setup steps
|
|
||||||
defaults: &defaults
|
defaults: &defaults
|
||||||
working_directory: ~/build
|
working_directory: ~/build
|
||||||
machine:
|
machine:
|
||||||
@@ -13,106 +11,10 @@ defaults: &defaults
|
|||||||
RAILS_LOG_TO_STDOUT: false
|
RAILS_LOG_TO_STDOUT: false
|
||||||
COVERAGE: true
|
COVERAGE: true
|
||||||
LOG_LEVEL: warn
|
LOG_LEVEL: warn
|
||||||
|
parallelism: 4
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
# Separate job for linting (no parallelism needed)
|
build:
|
||||||
lint:
|
|
||||||
<<: *defaults
|
|
||||||
steps:
|
|
||||||
- checkout
|
|
||||||
|
|
||||||
# Install minimal system dependencies for linting
|
|
||||||
- run:
|
|
||||||
name: Install System Dependencies
|
|
||||||
command: |
|
|
||||||
sudo apt-get update
|
|
||||||
DEBIAN_FRONTEND=noninteractive sudo apt-get install -y \
|
|
||||||
libpq-dev \
|
|
||||||
build-essential \
|
|
||||||
git \
|
|
||||||
curl \
|
|
||||||
libssl-dev \
|
|
||||||
zlib1g-dev \
|
|
||||||
libreadline-dev \
|
|
||||||
libyaml-dev \
|
|
||||||
openjdk-11-jdk \
|
|
||||||
jq \
|
|
||||||
software-properties-common \
|
|
||||||
ca-certificates \
|
|
||||||
imagemagick \
|
|
||||||
libxml2-dev \
|
|
||||||
libxslt1-dev \
|
|
||||||
file \
|
|
||||||
g++ \
|
|
||||||
gcc \
|
|
||||||
autoconf \
|
|
||||||
gnupg2 \
|
|
||||||
patch \
|
|
||||||
ruby-dev \
|
|
||||||
liblzma-dev \
|
|
||||||
libgmp-dev \
|
|
||||||
libncurses5-dev \
|
|
||||||
libffi-dev \
|
|
||||||
libgdbm6 \
|
|
||||||
libgdbm-dev \
|
|
||||||
libvips
|
|
||||||
|
|
||||||
- run:
|
|
||||||
name: Install RVM and Ruby 3.4.4
|
|
||||||
command: |
|
|
||||||
sudo apt-get install -y gpg
|
|
||||||
gpg --keyserver hkp://keyserver.ubuntu.com --recv-keys 409B6B1796C275462A1703113804BB82D39DC0E3 7D2BAF1CF37B13E2069D6956105BD0E739499BDB
|
|
||||||
\curl -sSL https://get.rvm.io | bash -s stable
|
|
||||||
echo 'source ~/.rvm/scripts/rvm' >> $BASH_ENV
|
|
||||||
source ~/.rvm/scripts/rvm
|
|
||||||
rvm install "3.4.4"
|
|
||||||
rvm use 3.4.4 --default
|
|
||||||
gem install bundler -v 2.5.16
|
|
||||||
|
|
||||||
- run:
|
|
||||||
name: Install Application Dependencies
|
|
||||||
command: |
|
|
||||||
source ~/.rvm/scripts/rvm
|
|
||||||
bundle install
|
|
||||||
|
|
||||||
- node/install:
|
|
||||||
node-version: '23.7'
|
|
||||||
- node/install-pnpm
|
|
||||||
- node/install-packages:
|
|
||||||
pkg-manager: pnpm
|
|
||||||
override-ci-command: pnpm i
|
|
||||||
|
|
||||||
# Swagger verification
|
|
||||||
- run:
|
|
||||||
name: Verify swagger API specification
|
|
||||||
command: |
|
|
||||||
bundle exec rake swagger:build
|
|
||||||
if [[ `git status swagger/swagger.json --porcelain` ]]
|
|
||||||
then
|
|
||||||
echo "ERROR: The swagger.json file is not in sync with the yaml specification. Run 'rake swagger:build' and commit 'swagger/swagger.json'."
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
mkdir -p ~/tmp
|
|
||||||
curl -L https://repo1.maven.org/maven2/org/openapitools/openapi-generator-cli/6.3.0/openapi-generator-cli-6.3.0.jar > ~/tmp/openapi-generator-cli-6.3.0.jar
|
|
||||||
java -jar ~/tmp/openapi-generator-cli-6.3.0.jar validate -i swagger/swagger.json
|
|
||||||
|
|
||||||
# Bundle audit
|
|
||||||
- run:
|
|
||||||
name: Bundle audit
|
|
||||||
command: bundle exec bundle audit update && bundle exec bundle audit check -v
|
|
||||||
|
|
||||||
# Rubocop linting
|
|
||||||
- run:
|
|
||||||
name: Rubocop
|
|
||||||
command: bundle exec rubocop --parallel
|
|
||||||
|
|
||||||
# ESLint linting
|
|
||||||
- run:
|
|
||||||
name: eslint
|
|
||||||
command: pnpm run eslint
|
|
||||||
|
|
||||||
# Separate job for frontend tests
|
|
||||||
frontend-tests:
|
|
||||||
<<: *defaults
|
<<: *defaults
|
||||||
steps:
|
steps:
|
||||||
- checkout
|
- checkout
|
||||||
@@ -122,38 +24,8 @@ jobs:
|
|||||||
- node/install-packages:
|
- node/install-packages:
|
||||||
pkg-manager: pnpm
|
pkg-manager: pnpm
|
||||||
override-ci-command: pnpm i
|
override-ci-command: pnpm i
|
||||||
|
- run: node --version
|
||||||
- run:
|
- run: pnpm --version
|
||||||
name: Run frontend tests (with coverage)
|
|
||||||
command: pnpm run test:coverage
|
|
||||||
|
|
||||||
- run:
|
|
||||||
name: Move coverage files if they exist
|
|
||||||
command: |
|
|
||||||
if [ -d "coverage" ]; then
|
|
||||||
mkdir -p ~/build/coverage
|
|
||||||
cp -r coverage ~/build/coverage/frontend || true
|
|
||||||
fi
|
|
||||||
when: always
|
|
||||||
|
|
||||||
- persist_to_workspace:
|
|
||||||
root: ~/build
|
|
||||||
paths:
|
|
||||||
- coverage
|
|
||||||
|
|
||||||
# Backend tests with parallelization
|
|
||||||
backend-tests:
|
|
||||||
<<: *defaults
|
|
||||||
parallelism: 16
|
|
||||||
steps:
|
|
||||||
- checkout
|
|
||||||
- node/install:
|
|
||||||
node-version: '23.7'
|
|
||||||
- node/install-pnpm
|
|
||||||
- node/install-packages:
|
|
||||||
pkg-manager: pnpm
|
|
||||||
override-ci-command: pnpm i
|
|
||||||
|
|
||||||
- run:
|
- run:
|
||||||
name: Add PostgreSQL repository and update
|
name: Add PostgreSQL repository and update
|
||||||
command: |
|
command: |
|
||||||
@@ -217,8 +89,29 @@ jobs:
|
|||||||
command: |
|
command: |
|
||||||
source ~/.rvm/scripts/rvm
|
source ~/.rvm/scripts/rvm
|
||||||
bundle install
|
bundle install
|
||||||
|
# pnpm install
|
||||||
|
|
||||||
# Configure environment and database
|
- run:
|
||||||
|
name: Download cc-test-reporter
|
||||||
|
command: |
|
||||||
|
mkdir -p ~/tmp
|
||||||
|
curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ~/tmp/cc-test-reporter
|
||||||
|
chmod +x ~/tmp/cc-test-reporter
|
||||||
|
|
||||||
|
# Swagger verification
|
||||||
|
- run:
|
||||||
|
name: Verify swagger API specification
|
||||||
|
command: |
|
||||||
|
bundle exec rake swagger:build
|
||||||
|
if [[ `git status swagger/swagger.json --porcelain` ]]
|
||||||
|
then
|
||||||
|
echo "ERROR: The swagger.json file is not in sync with the yaml specification. Run 'rake swagger:build' and commit 'swagger/swagger.json'."
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
curl -L https://repo1.maven.org/maven2/org/openapitools/openapi-generator-cli/6.3.0/openapi-generator-cli-6.3.0.jar > ~/tmp/openapi-generator-cli-6.3.0.jar
|
||||||
|
java -jar ~/tmp/openapi-generator-cli-6.3.0.jar validate -i swagger/swagger.json
|
||||||
|
|
||||||
|
# we remove the FRONTED_URL from the .env before running the tests
|
||||||
- run:
|
- run:
|
||||||
name: Database Setup and Configure Environment Variables
|
name: Database Setup and Configure Environment Variables
|
||||||
command: |
|
command: |
|
||||||
@@ -240,91 +133,59 @@ jobs:
|
|||||||
name: Run DB migrations
|
name: Run DB migrations
|
||||||
command: bundle exec rails db:chatwoot_prepare
|
command: bundle exec rails db:chatwoot_prepare
|
||||||
|
|
||||||
# Run backend tests (parallelized)
|
# Bundle audit
|
||||||
|
- run:
|
||||||
|
name: Bundle audit
|
||||||
|
command: bundle exec bundle audit update && bundle exec bundle audit check -v
|
||||||
|
|
||||||
|
# Rubocop linting
|
||||||
|
- run:
|
||||||
|
name: Rubocop
|
||||||
|
command: bundle exec rubocop
|
||||||
|
|
||||||
|
# ESLint linting
|
||||||
|
- run:
|
||||||
|
name: eslint
|
||||||
|
command: pnpm run eslint
|
||||||
|
|
||||||
|
- run:
|
||||||
|
name: Run frontend tests
|
||||||
|
command: |
|
||||||
|
mkdir -p ~/build/coverage/frontend
|
||||||
|
~/tmp/cc-test-reporter before-build
|
||||||
|
pnpm run test:coverage
|
||||||
|
|
||||||
|
- run:
|
||||||
|
name: Code Climate Test Coverage (Frontend)
|
||||||
|
command: |
|
||||||
|
~/tmp/cc-test-reporter format-coverage -t lcov -o "~/build/coverage/frontend/codeclimate.frontend_$CIRCLE_NODE_INDEX.json"
|
||||||
|
|
||||||
|
# Run backend tests
|
||||||
- run:
|
- run:
|
||||||
name: Run backend tests
|
name: Run backend tests
|
||||||
command: |
|
command: |
|
||||||
mkdir -p ~/tmp/test-results/rspec
|
mkdir -p ~/tmp/test-results/rspec
|
||||||
mkdir -p ~/tmp/test-artifacts
|
mkdir -p ~/tmp/test-artifacts
|
||||||
mkdir -p ~/build/coverage/backend
|
mkdir -p ~/build/coverage/backend
|
||||||
|
~/tmp/cc-test-reporter before-build
|
||||||
# Use round-robin distribution (same as GitHub Actions) for better test isolation
|
TESTFILES=$(circleci tests glob "spec/**/*_spec.rb" | circleci tests split --split-by=timings)
|
||||||
# This prevents tests with similar timing from being grouped on the same runner
|
bundle exec rspec --format progress \
|
||||||
SPEC_FILES=($(find spec -name '*_spec.rb' | sort))
|
|
||||||
TESTS=""
|
|
||||||
|
|
||||||
for i in "${!SPEC_FILES[@]}"; do
|
|
||||||
if [ $(( i % $CIRCLE_NODE_TOTAL )) -eq $CIRCLE_NODE_INDEX ]; then
|
|
||||||
TESTS="$TESTS ${SPEC_FILES[$i]}"
|
|
||||||
fi
|
|
||||||
done
|
|
||||||
|
|
||||||
bundle exec rspec -I ./spec --require coverage_helper --require spec_helper --format progress \
|
|
||||||
--format RspecJunitFormatter \
|
--format RspecJunitFormatter \
|
||||||
--out ~/tmp/test-results/rspec.xml \
|
--out ~/tmp/test-results/rspec.xml \
|
||||||
-- $TESTS
|
-- ${TESTFILES}
|
||||||
no_output_timeout: 30m
|
no_output_timeout: 30m
|
||||||
|
|
||||||
# Store test results for better splitting in future runs
|
- run:
|
||||||
- store_test_results:
|
name: Code Climate Test Coverage (Backend)
|
||||||
path: ~/tmp/test-results
|
command: |
|
||||||
|
~/tmp/cc-test-reporter format-coverage -t simplecov -o "~/build/coverage/backend/codeclimate.$CIRCLE_NODE_INDEX.json"
|
||||||
|
|
||||||
- run:
|
- run:
|
||||||
name: Move coverage files if they exist
|
name: List coverage directory contents
|
||||||
command: |
|
command: |
|
||||||
if [ -d "coverage" ]; then
|
ls -R ~/build/coverage
|
||||||
mkdir -p ~/build/coverage
|
|
||||||
cp -r coverage ~/build/coverage/backend || true
|
|
||||||
fi
|
|
||||||
when: always
|
|
||||||
|
|
||||||
- persist_to_workspace:
|
- persist_to_workspace:
|
||||||
root: ~/build
|
root: ~/build
|
||||||
paths:
|
paths:
|
||||||
- coverage
|
- coverage
|
||||||
|
|
||||||
# Collect coverage from all jobs
|
|
||||||
coverage:
|
|
||||||
<<: *defaults
|
|
||||||
steps:
|
|
||||||
- checkout
|
|
||||||
- attach_workspace:
|
|
||||||
at: ~/build
|
|
||||||
|
|
||||||
# Qlty coverage publish
|
|
||||||
- qlty-orb/coverage_publish:
|
|
||||||
files: |
|
|
||||||
coverage/frontend/lcov.info
|
|
||||||
|
|
||||||
- run:
|
|
||||||
name: List coverage directory contents
|
|
||||||
command: |
|
|
||||||
ls -R ~/build/coverage || echo "No coverage directory"
|
|
||||||
|
|
||||||
- store_artifacts:
|
|
||||||
path: coverage
|
|
||||||
destination: coverage
|
|
||||||
|
|
||||||
build:
|
|
||||||
<<: *defaults
|
|
||||||
steps:
|
|
||||||
- run:
|
|
||||||
name: Legacy build aggregator
|
|
||||||
command: |
|
|
||||||
echo "All main jobs passed; build job kept only for GitHub required check compatibility."
|
|
||||||
|
|
||||||
workflows:
|
|
||||||
version: 2
|
|
||||||
build:
|
|
||||||
jobs:
|
|
||||||
- lint
|
|
||||||
- frontend-tests
|
|
||||||
- backend-tests
|
|
||||||
- coverage:
|
|
||||||
requires:
|
|
||||||
- frontend-tests
|
|
||||||
- backend-tests
|
|
||||||
- build:
|
|
||||||
requires:
|
|
||||||
- lint
|
|
||||||
- coverage
|
|
||||||
|
|||||||
@@ -6,13 +6,6 @@
|
|||||||
# Use `rake secret` to generate this variable
|
# Use `rake secret` to generate this variable
|
||||||
SECRET_KEY_BASE=replace_with_lengthy_secure_hex
|
SECRET_KEY_BASE=replace_with_lengthy_secure_hex
|
||||||
|
|
||||||
# Active Record Encryption keys (required for MFA/2FA functionality)
|
|
||||||
# Generate these keys by running: rails db:encryption:init
|
|
||||||
# IMPORTANT: Use different keys for each environment (development, staging, production)
|
|
||||||
# ACTIVE_RECORD_ENCRYPTION_PRIMARY_KEY=
|
|
||||||
# ACTIVE_RECORD_ENCRYPTION_DETERMINISTIC_KEY=
|
|
||||||
# ACTIVE_RECORD_ENCRYPTION_KEY_DERIVATION_SALT=
|
|
||||||
|
|
||||||
# Replace with the URL you are planning to use for your app
|
# Replace with the URL you are planning to use for your app
|
||||||
FRONTEND_URL=http://0.0.0.0:3000
|
FRONTEND_URL=http://0.0.0.0:3000
|
||||||
# To use a dedicated URL for help center pages
|
# To use a dedicated URL for help center pages
|
||||||
@@ -105,7 +98,6 @@ MAILER_INBOUND_EMAIL_DOMAIN=
|
|||||||
# mandrill for Mandrill
|
# mandrill for Mandrill
|
||||||
# postmark for Postmark
|
# postmark for Postmark
|
||||||
# sendgrid for Sendgrid
|
# sendgrid for Sendgrid
|
||||||
# ses for Amazon SES
|
|
||||||
RAILS_INBOUND_EMAIL_SERVICE=
|
RAILS_INBOUND_EMAIL_SERVICE=
|
||||||
# Use one of the following based on the email ingress service
|
# Use one of the following based on the email ingress service
|
||||||
# Ref: https://edgeguides.rubyonrails.org/action_mailbox_basics.html
|
# Ref: https://edgeguides.rubyonrails.org/action_mailbox_basics.html
|
||||||
@@ -115,10 +107,6 @@ RAILS_INBOUND_EMAIL_PASSWORD=
|
|||||||
MAILGUN_INGRESS_SIGNING_KEY=
|
MAILGUN_INGRESS_SIGNING_KEY=
|
||||||
MANDRILL_INGRESS_API_KEY=
|
MANDRILL_INGRESS_API_KEY=
|
||||||
|
|
||||||
# SNS topic ARN for ActionMailbox (format: arn:aws:sns:region:account-id:topic-name)
|
|
||||||
# Configure only if the rails_inbound_email_service = ses
|
|
||||||
ACTION_MAILBOX_SES_SNS_TOPIC=
|
|
||||||
|
|
||||||
# Creating Your Inbound Webhook Instructions for Postmark and Sendgrid:
|
# Creating Your Inbound Webhook Instructions for Postmark and Sendgrid:
|
||||||
# Inbound webhook URL format:
|
# Inbound webhook URL format:
|
||||||
# https://actionmailbox:[YOUR_RAILS_INBOUND_EMAIL_PASSWORD]@[YOUR_CHATWOOT_DOMAIN.COM]/rails/action_mailbox/[RAILS_INBOUND_EMAIL_SERVICE]/inbound_emails
|
# https://actionmailbox:[YOUR_RAILS_INBOUND_EMAIL_PASSWORD]@[YOUR_CHATWOOT_DOMAIN.COM]/rails/action_mailbox/[RAILS_INBOUND_EMAIL_SERVICE]/inbound_emails
|
||||||
@@ -220,7 +208,6 @@ ANDROID_SHA256_CERT_FINGERPRINT=AC:73:8E:DE:EB:56:EA:CC:10:87:02:A7:65:37:7B:38:
|
|||||||
## https://github.com/DataDog/dd-trace-rb/blob/master/docs/GettingStarted.md#environment-variables
|
## https://github.com/DataDog/dd-trace-rb/blob/master/docs/GettingStarted.md#environment-variables
|
||||||
# DD_TRACE_AGENT_URL=
|
# DD_TRACE_AGENT_URL=
|
||||||
|
|
||||||
|
|
||||||
# MaxMindDB API key to download GeoLite2 City database
|
# MaxMindDB API key to download GeoLite2 City database
|
||||||
# IP_LOOKUP_API_KEY=
|
# IP_LOOKUP_API_KEY=
|
||||||
|
|
||||||
@@ -262,8 +249,6 @@ AZURE_APP_SECRET=
|
|||||||
## Change these values to fine tune performance
|
## Change these values to fine tune performance
|
||||||
# control the concurrency setting of sidekiq
|
# control the concurrency setting of sidekiq
|
||||||
# SIDEKIQ_CONCURRENCY=10
|
# SIDEKIQ_CONCURRENCY=10
|
||||||
# Enable verbose logging each time a job is dequeued in Sidekiq
|
|
||||||
# ENABLE_SIDEKIQ_DEQUEUE_LOGGER=false
|
|
||||||
|
|
||||||
|
|
||||||
# AI powered features
|
# AI powered features
|
||||||
|
|||||||
@@ -1,6 +1,4 @@
|
|||||||
name: Run Chatwoot CE spec
|
name: Run Chatwoot CE spec
|
||||||
permissions:
|
|
||||||
contents: read
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
@@ -10,58 +8,11 @@ on:
|
|||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
# Separate linting jobs for faster feedback
|
test:
|
||||||
lint-backend:
|
runs-on: ubuntu-22.04
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v4
|
|
||||||
- uses: ruby/setup-ruby@v1
|
|
||||||
with:
|
|
||||||
bundler-cache: true
|
|
||||||
- name: Run Rubocop
|
|
||||||
run: bundle exec rubocop --parallel
|
|
||||||
|
|
||||||
lint-frontend:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v4
|
|
||||||
- uses: pnpm/action-setup@v4
|
|
||||||
- uses: actions/setup-node@v4
|
|
||||||
with:
|
|
||||||
node-version: 23
|
|
||||||
cache: 'pnpm'
|
|
||||||
- name: Install pnpm dependencies
|
|
||||||
run: pnpm i
|
|
||||||
- name: Run ESLint
|
|
||||||
run: pnpm run eslint
|
|
||||||
|
|
||||||
# Frontend tests run in parallel with backend
|
|
||||||
frontend-tests:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v4
|
|
||||||
- uses: pnpm/action-setup@v4
|
|
||||||
- uses: actions/setup-node@v4
|
|
||||||
with:
|
|
||||||
node-version: 23
|
|
||||||
cache: 'pnpm'
|
|
||||||
- name: Install pnpm dependencies
|
|
||||||
run: pnpm i
|
|
||||||
- name: Run frontend tests
|
|
||||||
run: pnpm run test:coverage
|
|
||||||
|
|
||||||
# Backend tests with parallelization
|
|
||||||
backend-tests:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
strategy:
|
|
||||||
fail-fast: false
|
|
||||||
matrix:
|
|
||||||
ci_node_total: [16]
|
|
||||||
ci_node_index: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15]
|
|
||||||
|
|
||||||
services:
|
services:
|
||||||
postgres:
|
postgres:
|
||||||
image: pgvector/pgvector:pg16
|
image: pgvector/pgvector:pg15
|
||||||
env:
|
env:
|
||||||
POSTGRES_USER: postgres
|
POSTGRES_USER: postgres
|
||||||
POSTGRES_PASSWORD: ''
|
POSTGRES_PASSWORD: ''
|
||||||
@@ -69,6 +20,8 @@ jobs:
|
|||||||
POSTGRES_HOST_AUTH_METHOD: trust
|
POSTGRES_HOST_AUTH_METHOD: trust
|
||||||
ports:
|
ports:
|
||||||
- 5432:5432
|
- 5432:5432
|
||||||
|
# needed because the postgres container does not provide a healthcheck
|
||||||
|
# tmpfs makes DB faster by using RAM
|
||||||
options: >-
|
options: >-
|
||||||
--mount type=tmpfs,destination=/var/lib/postgresql/data
|
--mount type=tmpfs,destination=/var/lib/postgresql/data
|
||||||
--health-cmd pg_isready
|
--health-cmd pg_isready
|
||||||
@@ -76,7 +29,7 @@ jobs:
|
|||||||
--health-timeout 5s
|
--health-timeout 5s
|
||||||
--health-retries 5
|
--health-retries 5
|
||||||
redis:
|
redis:
|
||||||
image: redis:alpine
|
image: redis
|
||||||
ports:
|
ports:
|
||||||
- 6379:6379
|
- 6379:6379
|
||||||
options: --entrypoint redis-server
|
options: --entrypoint redis-server
|
||||||
@@ -90,7 +43,7 @@ jobs:
|
|||||||
|
|
||||||
- uses: ruby/setup-ruby@v1
|
- uses: ruby/setup-ruby@v1
|
||||||
with:
|
with:
|
||||||
bundler-cache: true
|
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
|
||||||
|
|
||||||
- uses: actions/setup-node@v4
|
- uses: actions/setup-node@v4
|
||||||
with:
|
with:
|
||||||
@@ -111,36 +64,19 @@ jobs:
|
|||||||
- name: Seed database
|
- name: Seed database
|
||||||
run: bundle exec rake db:schema:load
|
run: bundle exec rake db:schema:load
|
||||||
|
|
||||||
- name: Run backend tests (parallelized)
|
- name: Run frontend tests
|
||||||
|
run: pnpm run test:coverage
|
||||||
|
|
||||||
|
# Run rails tests
|
||||||
|
- name: Run backend tests
|
||||||
run: |
|
run: |
|
||||||
# Get all spec files and split them using round-robin distribution
|
bundle exec rspec --profile=10 --format documentation
|
||||||
# This ensures slow tests are distributed evenly across all nodes
|
|
||||||
SPEC_FILES=($(find spec -name '*_spec.rb' | sort))
|
|
||||||
TESTS=""
|
|
||||||
|
|
||||||
for i in "${!SPEC_FILES[@]}"; do
|
|
||||||
# Assign spec to this node if: index % total == node_index
|
|
||||||
if [ $(( i % ${{ matrix.ci_node_total }} )) -eq ${{ matrix.ci_node_index }} ]; then
|
|
||||||
TESTS="$TESTS ${SPEC_FILES[$i]}"
|
|
||||||
fi
|
|
||||||
done
|
|
||||||
|
|
||||||
if [ -n "$TESTS" ]; then
|
|
||||||
bundle exec rspec --profile=10 --format progress --format json --out tmp/rspec_results.json $TESTS
|
|
||||||
fi
|
|
||||||
env:
|
env:
|
||||||
NODE_OPTIONS: --openssl-legacy-provider
|
NODE_OPTIONS: --openssl-legacy-provider
|
||||||
|
|
||||||
- name: Upload test results
|
- name: Upload rails log folder
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
if: always()
|
if: always()
|
||||||
with:
|
with:
|
||||||
name: rspec-results-${{ matrix.ci_node_index }}
|
name: rails-log-folder
|
||||||
path: tmp/rspec_results.json
|
|
||||||
|
|
||||||
- name: Upload rails log folder
|
|
||||||
uses: actions/upload-artifact@v4
|
|
||||||
if: failure()
|
|
||||||
with:
|
|
||||||
name: rails-log-folder-${{ matrix.ci_node_index }}
|
|
||||||
path: log
|
path: log
|
||||||
|
|||||||
@@ -1,100 +0,0 @@
|
|||||||
name: Run MFA Tests
|
|
||||||
permissions:
|
|
||||||
contents: read
|
|
||||||
|
|
||||||
on:
|
|
||||||
pull_request:
|
|
||||||
|
|
||||||
# If two pushes happen within a short time in the same PR, cancel the run of the oldest push
|
|
||||||
concurrency:
|
|
||||||
group: pr-${{ github.workflow }}-${{ github.head_ref }}
|
|
||||||
cancel-in-progress: true
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
test:
|
|
||||||
runs-on: ubuntu-22.04
|
|
||||||
# Only run if MFA test keys are available
|
|
||||||
if: github.event_name == 'workflow_dispatch' || (github.repository == 'chatwoot/chatwoot' && github.actor != 'dependabot[bot]')
|
|
||||||
|
|
||||||
services:
|
|
||||||
postgres:
|
|
||||||
image: pgvector/pgvector:pg15
|
|
||||||
env:
|
|
||||||
POSTGRES_USER: postgres
|
|
||||||
POSTGRES_PASSWORD: ''
|
|
||||||
POSTGRES_DB: postgres
|
|
||||||
POSTGRES_HOST_AUTH_METHOD: trust
|
|
||||||
ports:
|
|
||||||
- 5432:5432
|
|
||||||
options: >-
|
|
||||||
--mount type=tmpfs,destination=/var/lib/postgresql/data
|
|
||||||
--health-cmd pg_isready
|
|
||||||
--health-interval 10s
|
|
||||||
--health-timeout 5s
|
|
||||||
--health-retries 5
|
|
||||||
redis:
|
|
||||||
image: redis
|
|
||||||
ports:
|
|
||||||
- 6379:6379
|
|
||||||
options: --entrypoint redis-server
|
|
||||||
|
|
||||||
env:
|
|
||||||
RAILS_ENV: test
|
|
||||||
POSTGRES_HOST: localhost
|
|
||||||
# Active Record encryption keys required for MFA - test keys only, not for production use
|
|
||||||
ACTIVE_RECORD_ENCRYPTION_PRIMARY_KEY: 'test_key_a6cde8f7b9c2d3e4f5a6b7c8d9e0f1a2b3c4d5e6f7a8b9c0d1e2f3a4b5c6d7'
|
|
||||||
ACTIVE_RECORD_ENCRYPTION_DETERMINISTIC_KEY: 'test_key_b7def9a8c0d3e4f5a6b7c8d9e0f1a2b3c4d5e6f7a8b9c0d1e2f3a4b5c6d8'
|
|
||||||
ACTIVE_RECORD_ENCRYPTION_KEY_DERIVATION_SALT: 'test_salt_c8efa0b9d1e4f5a6b7c8d9e0f1a2b3c4d5e6f7a8b9c0d1e2f3a4b5c6d9'
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v4
|
|
||||||
|
|
||||||
- uses: ruby/setup-ruby@v1
|
|
||||||
with:
|
|
||||||
bundler-cache: true
|
|
||||||
|
|
||||||
- name: Create database
|
|
||||||
run: bundle exec rake db:create
|
|
||||||
|
|
||||||
- name: Install pgvector extension
|
|
||||||
run: |
|
|
||||||
PGPASSWORD="" psql -h localhost -U postgres -d chatwoot_test -c "CREATE EXTENSION IF NOT EXISTS vector;"
|
|
||||||
|
|
||||||
- name: Seed database
|
|
||||||
run: bundle exec rake db:schema:load
|
|
||||||
|
|
||||||
- name: Run MFA-related backend tests
|
|
||||||
run: |
|
|
||||||
bundle exec rspec \
|
|
||||||
spec/services/mfa/token_service_spec.rb \
|
|
||||||
spec/services/mfa/authentication_service_spec.rb \
|
|
||||||
spec/requests/api/v1/profile/mfa_controller_spec.rb \
|
|
||||||
spec/controllers/devise_overrides/sessions_controller_spec.rb \
|
|
||||||
spec/models/application_record_external_credentials_encryption_spec.rb \
|
|
||||||
--profile=10 \
|
|
||||||
--format documentation
|
|
||||||
env:
|
|
||||||
NODE_OPTIONS: --openssl-legacy-provider
|
|
||||||
|
|
||||||
- name: Run MFA-related tests in user_spec
|
|
||||||
run: |
|
|
||||||
# Run specific MFA-related tests from user_spec
|
|
||||||
bundle exec rspec spec/models/user_spec.rb \
|
|
||||||
-e "two factor" \
|
|
||||||
-e "2FA" \
|
|
||||||
-e "MFA" \
|
|
||||||
-e "otp" \
|
|
||||||
-e "backup code" \
|
|
||||||
--profile=10 \
|
|
||||||
--format documentation
|
|
||||||
env:
|
|
||||||
NODE_OPTIONS: --openssl-legacy-provider
|
|
||||||
|
|
||||||
- name: Upload test logs
|
|
||||||
uses: actions/upload-artifact@v4
|
|
||||||
if: failure()
|
|
||||||
with:
|
|
||||||
name: mfa-test-logs
|
|
||||||
path: |
|
|
||||||
log/test.log
|
|
||||||
tmp/screenshots/
|
|
||||||
@@ -36,5 +36,5 @@ jobs:
|
|||||||
platforms: ${{ matrix.platform }}
|
platforms: ${{ matrix.platform }}
|
||||||
push: false
|
push: false
|
||||||
load: false
|
load: false
|
||||||
cache-from: type=gha,scope=${{ matrix.platform }}
|
cache-from: type=gha
|
||||||
cache-to: type=gha,mode=max,scope=${{ matrix.platform }}
|
cache-to: type=gha,mode=max
|
||||||
|
|||||||
@@ -95,9 +95,3 @@ yarn-debug.log*
|
|||||||
.claude/settings.local.json
|
.claude/settings.local.json
|
||||||
.cursor
|
.cursor
|
||||||
CLAUDE.local.md
|
CLAUDE.local.md
|
||||||
|
|
||||||
# Histoire deployment
|
|
||||||
.netlify
|
|
||||||
.histoire
|
|
||||||
.pnpm-store/*
|
|
||||||
local/
|
|
||||||
|
|||||||
+1
-1
@@ -39,7 +39,7 @@ exclude_patterns = [
|
|||||||
"**/target/**",
|
"**/target/**",
|
||||||
"**/templates/**",
|
"**/templates/**",
|
||||||
"**/testdata/**",
|
"**/testdata/**",
|
||||||
"**/vendor/**", "spec/", "**/specs/**/**", "**/spec/**/**", "db/*", "bin/**/*", "db/**/*", "config/**/*", "public/**/*", "vendor/**/*", "node_modules/**/*", "lib/tasks/auto_annotate_models.rake", "app/test-matchers.js", "docs/*", "**/*.md", "**/*.yml", "app/javascript/dashboard/i18n/locale", "**/*.stories.js", "stories/", "app/javascript/dashboard/components/widgets/conversation/advancedFilterItems/index.js", "app/javascript/shared/constants/countries.js", "app/javascript/dashboard/components/widgets/conversation/advancedFilterItems/languages.js", "app/javascript/dashboard/routes/dashboard/contacts/contactFilterItems/index.js", "app/javascript/dashboard/routes/dashboard/settings/automation/constants.js", "app/javascript/dashboard/components/widgets/FilterInput/FilterOperatorTypes.js", "app/javascript/dashboard/routes/dashboard/settings/reports/constants.js", "app/javascript/dashboard/store/storeFactory.js", "app/javascript/dashboard/i18n/index.js", "app/javascript/widget/i18n/index.js", "app/javascript/survey/i18n/index.js", "app/javascript/shared/constants/locales.js", "app/javascript/dashboard/helper/specs/macrosFixtures.js", "app/javascript/dashboard/routes/dashboard/settings/macros/constants.js", "**/fixtures/**", "**/*/fixtures.js",
|
"**/vendor/**", "spec/", "**/specs/**/**", "**/spec/**/**", "db/*", "bin/**/*", "db/**/*", "config/**/*", "public/**/*", "vendor/**/*", "node_modules/**/*", "lib/tasks/auto_annotate_models.rake", "app/test-matchers.js", "docs/*", "**/*.md", "**/*.yml", "app/javascript/dashboard/i18n/locale", "**/*.stories.js", "stories/", "app/javascript/dashboard/components/widgets/conversation/advancedFilterItems/index.js", "app/javascript/shared/constants/countries.js", "app/javascript/dashboard/components/widgets/conversation/advancedFilterItems/languages.js", "app/javascript/dashboard/routes/dashboard/contacts/contactFilterItems/index.js", "app/javascript/dashboard/routes/dashboard/settings/automation/constants.js", "app/javascript/dashboard/components/widgets/FilterInput/FilterOperatorTypes.js", "app/javascript/dashboard/routes/dashboard/settings/reports/constants.js", "app/javascript/dashboard/store/captain/storeFactory.js", "app/javascript/dashboard/i18n/index.js", "app/javascript/widget/i18n/index.js", "app/javascript/survey/i18n/index.js", "app/javascript/shared/constants/locales.js", "app/javascript/dashboard/helper/specs/macrosFixtures.js", "app/javascript/dashboard/routes/dashboard/settings/macros/constants.js", "**/fixtures/**", "**/*/fixtures.js",
|
||||||
]
|
]
|
||||||
|
|
||||||
test_patterns = [
|
test_patterns = [
|
||||||
|
|||||||
+3
-14
@@ -7,8 +7,6 @@ plugins:
|
|||||||
require:
|
require:
|
||||||
- ./rubocop/use_from_email.rb
|
- ./rubocop/use_from_email.rb
|
||||||
- ./rubocop/custom_cop_location.rb
|
- ./rubocop/custom_cop_location.rb
|
||||||
- ./rubocop/attachment_download.rb
|
|
||||||
- ./rubocop/one_class_per_file.rb
|
|
||||||
|
|
||||||
Layout/LineLength:
|
Layout/LineLength:
|
||||||
Max: 150
|
Max: 150
|
||||||
@@ -25,7 +23,7 @@ Metrics/MethodLength:
|
|||||||
- 'enterprise/lib/captain/agent.rb'
|
- 'enterprise/lib/captain/agent.rb'
|
||||||
|
|
||||||
RSpec/ExampleLength:
|
RSpec/ExampleLength:
|
||||||
Max: 50
|
Max: 25
|
||||||
|
|
||||||
Style/Documentation:
|
Style/Documentation:
|
||||||
Enabled: false
|
Enabled: false
|
||||||
@@ -42,12 +40,6 @@ Style/SymbolArray:
|
|||||||
Style/OpenStructUse:
|
Style/OpenStructUse:
|
||||||
Enabled: false
|
Enabled: false
|
||||||
|
|
||||||
Chatwoot/AttachmentDownload:
|
|
||||||
Enabled: true
|
|
||||||
Exclude:
|
|
||||||
- 'spec/**/*'
|
|
||||||
- 'test/**/*'
|
|
||||||
|
|
||||||
Style/OptionalBooleanParameter:
|
Style/OptionalBooleanParameter:
|
||||||
Exclude:
|
Exclude:
|
||||||
- 'app/services/email_templates/db_resolver_service.rb'
|
- 'app/services/email_templates/db_resolver_service.rb'
|
||||||
@@ -95,7 +87,7 @@ Metrics/ModuleLength:
|
|||||||
Rails/HelperInstanceVariable:
|
Rails/HelperInstanceVariable:
|
||||||
Exclude:
|
Exclude:
|
||||||
- enterprise/app/helpers/captain/chat_helper.rb
|
- enterprise/app/helpers/captain/chat_helper.rb
|
||||||
- enterprise/app/helpers/captain/chat_response_helper.rb
|
|
||||||
Rails/ApplicationController:
|
Rails/ApplicationController:
|
||||||
Exclude:
|
Exclude:
|
||||||
- 'app/controllers/api/v1/widget/messages_controller.rb'
|
- 'app/controllers/api/v1/widget/messages_controller.rb'
|
||||||
@@ -213,9 +205,6 @@ UseFromEmail:
|
|||||||
CustomCopLocation:
|
CustomCopLocation:
|
||||||
Enabled: true
|
Enabled: true
|
||||||
|
|
||||||
Style/OneClassPerFile:
|
|
||||||
Enabled: true
|
|
||||||
|
|
||||||
AllCops:
|
AllCops:
|
||||||
NewCops: enable
|
NewCops: enable
|
||||||
Exclude:
|
Exclude:
|
||||||
@@ -347,4 +336,4 @@ FactoryBot/RedundantFactoryOption:
|
|||||||
Enabled: false
|
Enabled: false
|
||||||
|
|
||||||
FactoryBot/FactoryAssociationWithStrategy:
|
FactoryBot/FactoryAssociationWithStrategy:
|
||||||
Enabled: false
|
Enabled: false
|
||||||
@@ -10,9 +10,6 @@
|
|||||||
- **Test Ruby**: `bundle exec rspec spec/path/to/file_spec.rb`
|
- **Test Ruby**: `bundle exec rspec spec/path/to/file_spec.rb`
|
||||||
- **Single Test**: `bundle exec rspec spec/path/to/file_spec.rb:LINE_NUMBER`
|
- **Single Test**: `bundle exec rspec spec/path/to/file_spec.rb:LINE_NUMBER`
|
||||||
- **Run Project**: `overmind start -f Procfile.dev`
|
- **Run Project**: `overmind start -f Procfile.dev`
|
||||||
- **Ruby Version**: Manage Ruby via `rbenv` and install the version listed in `.ruby-version` (e.g., `rbenv install $(cat .ruby-version)`)
|
|
||||||
- **rbenv setup**: Before running any `bundle` or `rspec` commands, init rbenv in your shell (`eval "$(rbenv init -)"`) so the correct Ruby/Bundler versions are used
|
|
||||||
- Always prefer `bundle exec` for Ruby CLI tasks (rspec, rake, rubocop, etc.)
|
|
||||||
|
|
||||||
## Code Style
|
## Code Style
|
||||||
|
|
||||||
@@ -40,20 +37,11 @@
|
|||||||
|
|
||||||
- MVP focus: Least code change, happy-path only
|
- MVP focus: Least code change, happy-path only
|
||||||
- No unnecessary defensive programming
|
- No unnecessary defensive programming
|
||||||
- Ship the happy path first: limit guards/fallbacks to what production has proven necessary, then iterate
|
|
||||||
- Prefer minimal, readable code over elaborate abstractions; clarity beats cleverness
|
|
||||||
- Break down complex tasks into small, testable units
|
- Break down complex tasks into small, testable units
|
||||||
- Iterate after confirmation
|
- Iterate after confirmation
|
||||||
- Avoid writing specs unless explicitly asked
|
- Avoid writing specs unless explicitly asked
|
||||||
- Remove dead/unreachable/unused code
|
- Remove dead/unreachable/unused code
|
||||||
- Don’t write multiple versions or backups for the same logic — pick the best approach and implement it
|
- Don’t write multiple versions or backups for the same logic — pick the best approach and implement it
|
||||||
- Prefer `with_modified_env` (from spec helpers) over stubbing `ENV` directly in specs
|
|
||||||
- Specs in parallel/reloading environments: prefer comparing `error.class.name` over constant class equality when asserting raised errors
|
|
||||||
|
|
||||||
## Commit Messages
|
|
||||||
|
|
||||||
- Prefer Conventional Commits: `type(scope): subject` (scope optional)
|
|
||||||
- Example: `feat(auth): add user authentication`
|
|
||||||
- Don't reference Claude in commit messages
|
- Don't reference Claude in commit messages
|
||||||
|
|
||||||
## Project-Specific
|
## Project-Specific
|
||||||
@@ -85,4 +73,3 @@ Practical checklist for any change impacting core logic or public APIs
|
|||||||
- Keep request/response contracts stable across OSS and Enterprise; update both sets of routes/controllers when introducing new APIs.
|
- Keep request/response contracts stable across OSS and Enterprise; update both sets of routes/controllers when introducing new APIs.
|
||||||
- When renaming/moving shared code, mirror the change in `enterprise/` to prevent drift.
|
- When renaming/moving shared code, mirror the change in `enterprise/` to prevent drift.
|
||||||
- Tests: Add Enterprise-specific specs under `spec/enterprise`, mirroring OSS spec layout where applicable.
|
- Tests: Add Enterprise-specific specs under `spec/enterprise`, mirroring OSS spec layout where applicable.
|
||||||
- When modifying existing OSS features for Enterprise-only behavior, add an Enterprise module (via `prepend_mod_with`/`include_mod_with`) instead of editing OSS files directly—especially for policies, controllers, and services. For Enterprise-exclusive features, place code directly under `enterprise/`.
|
|
||||||
|
|||||||
@@ -21,7 +21,6 @@ gem 'telephone_number'
|
|||||||
gem 'time_diff'
|
gem 'time_diff'
|
||||||
gem 'tzinfo-data'
|
gem 'tzinfo-data'
|
||||||
gem 'valid_email2'
|
gem 'valid_email2'
|
||||||
gem 'email-provider-info'
|
|
||||||
# compress javascript config.assets.js_compressor
|
# compress javascript config.assets.js_compressor
|
||||||
gem 'uglifier'
|
gem 'uglifier'
|
||||||
##-- used for single column multiple binary flags in notification settings/feature flagging --##
|
##-- used for single column multiple binary flags in notification settings/feature flagging --##
|
||||||
@@ -55,9 +54,6 @@ gem 'azure-storage-blob', git: 'https://github.com/chatwoot/azure-storage-ruby',
|
|||||||
gem 'google-cloud-storage', '>= 1.48.0', require: false
|
gem 'google-cloud-storage', '>= 1.48.0', require: false
|
||||||
gem 'image_processing'
|
gem 'image_processing'
|
||||||
|
|
||||||
##-- for actionmailbox --##
|
|
||||||
gem 'aws-actionmailbox-ses', '~> 0'
|
|
||||||
|
|
||||||
##-- gems for database --#
|
##-- gems for database --#
|
||||||
gem 'groupdate'
|
gem 'groupdate'
|
||||||
gem 'pg'
|
gem 'pg'
|
||||||
@@ -66,10 +62,6 @@ gem 'redis-namespace'
|
|||||||
# super fast record imports in bulk
|
# super fast record imports in bulk
|
||||||
gem 'activerecord-import'
|
gem 'activerecord-import'
|
||||||
|
|
||||||
gem 'searchkick'
|
|
||||||
gem 'opensearch-ruby'
|
|
||||||
gem 'faraday_middleware-aws-sigv4'
|
|
||||||
|
|
||||||
##--- gems for server & infra configuration ---##
|
##--- gems for server & infra configuration ---##
|
||||||
gem 'dotenv-rails', '>= 3.0.0'
|
gem 'dotenv-rails', '>= 3.0.0'
|
||||||
gem 'foreman'
|
gem 'foreman'
|
||||||
@@ -82,12 +74,9 @@ gem 'barnes'
|
|||||||
gem 'devise', '>= 4.9.4'
|
gem 'devise', '>= 4.9.4'
|
||||||
gem 'devise-secure_password', git: 'https://github.com/chatwoot/devise-secure_password', branch: 'chatwoot'
|
gem 'devise-secure_password', git: 'https://github.com/chatwoot/devise-secure_password', branch: 'chatwoot'
|
||||||
gem 'devise_token_auth', '>= 1.2.3'
|
gem 'devise_token_auth', '>= 1.2.3'
|
||||||
# two-factor authentication
|
|
||||||
gem 'devise-two-factor', '>= 5.0.0'
|
|
||||||
# authorization
|
# authorization
|
||||||
gem 'jwt'
|
gem 'jwt'
|
||||||
gem 'pundit'
|
gem 'pundit'
|
||||||
|
|
||||||
# super admin
|
# super admin
|
||||||
gem 'administrate', '>= 0.20.1'
|
gem 'administrate', '>= 0.20.1'
|
||||||
gem 'administrate-field-active_storage', '>= 1.0.3'
|
gem 'administrate-field-active_storage', '>= 1.0.3'
|
||||||
@@ -100,14 +89,14 @@ gem 'wisper', '2.0.0'
|
|||||||
##--- gems for channels ---##
|
##--- gems for channels ---##
|
||||||
gem 'facebook-messenger'
|
gem 'facebook-messenger'
|
||||||
gem 'line-bot-api'
|
gem 'line-bot-api'
|
||||||
gem 'twilio-ruby'
|
gem 'twilio-ruby', '~> 5.66'
|
||||||
# twitty will handle subscription of twitter account events
|
# twitty will handle subscription of twitter account events
|
||||||
# gem 'twitty', git: 'https://github.com/chatwoot/twitty'
|
# gem 'twitty', git: 'https://github.com/chatwoot/twitty'
|
||||||
gem 'twitty', '~> 0.1.5'
|
gem 'twitty', '~> 0.1.5'
|
||||||
# facebook client
|
# facebook client
|
||||||
gem 'koala'
|
gem 'koala'
|
||||||
# slack client
|
# slack client
|
||||||
gem 'slack-ruby-client', '~> 2.7.0'
|
gem 'slack-ruby-client', '~> 2.5.2'
|
||||||
# for dialogflow integrations
|
# for dialogflow integrations
|
||||||
gem 'google-cloud-dialogflow-v2', '>= 0.24.0'
|
gem 'google-cloud-dialogflow-v2', '>= 0.24.0'
|
||||||
gem 'grpc'
|
gem 'grpc'
|
||||||
@@ -162,7 +151,7 @@ gem 'working_hours'
|
|||||||
gem 'pg_search'
|
gem 'pg_search'
|
||||||
|
|
||||||
# Subscriptions, Billing
|
# Subscriptions, Billing
|
||||||
gem 'stripe', '~> 18.0'
|
gem 'stripe'
|
||||||
|
|
||||||
## - helper gems --##
|
## - helper gems --##
|
||||||
## to populate db with sample data
|
## to populate db with sample data
|
||||||
@@ -178,7 +167,6 @@ gem 'audited', '~> 5.4', '>= 5.4.1'
|
|||||||
|
|
||||||
# need for google auth
|
# need for google auth
|
||||||
gem 'omniauth', '>= 2.1.2'
|
gem 'omniauth', '>= 2.1.2'
|
||||||
gem 'omniauth-saml'
|
|
||||||
gem 'omniauth-google-oauth2', '>= 1.1.3'
|
gem 'omniauth-google-oauth2', '>= 1.1.3'
|
||||||
gem 'omniauth-rails_csrf_protection', '~> 1.0', '>= 1.0.2'
|
gem 'omniauth-rails_csrf_protection', '~> 1.0', '>= 1.0.2'
|
||||||
|
|
||||||
@@ -191,16 +179,11 @@ gem 'reverse_markdown'
|
|||||||
|
|
||||||
gem 'iso-639'
|
gem 'iso-639'
|
||||||
gem 'ruby-openai'
|
gem 'ruby-openai'
|
||||||
gem 'ai-agents', '>= 0.7.0'
|
gem 'ai-agents', '>= 0.4.3'
|
||||||
|
|
||||||
# TODO: Move this gem as a dependency of ai-agents
|
# TODO: Move this gem as a dependency of ai-agents
|
||||||
gem 'ruby_llm', '>= 1.8.2'
|
|
||||||
gem 'ruby_llm-schema'
|
gem 'ruby_llm-schema'
|
||||||
|
|
||||||
# OpenTelemetry for LLM observability
|
|
||||||
gem 'opentelemetry-sdk'
|
|
||||||
gem 'opentelemetry-exporter-otlp'
|
|
||||||
|
|
||||||
gem 'shopify_api'
|
gem 'shopify_api'
|
||||||
|
|
||||||
### Gems required only in specific deployment environments ###
|
### Gems required only in specific deployment environments ###
|
||||||
@@ -215,7 +198,7 @@ group :production do
|
|||||||
end
|
end
|
||||||
|
|
||||||
group :development do
|
group :development do
|
||||||
gem 'annotaterb'
|
gem 'annotate'
|
||||||
gem 'bullet'
|
gem 'bullet'
|
||||||
gem 'letter_opener'
|
gem 'letter_opener'
|
||||||
gem 'scss_lint', require: false
|
gem 'scss_lint', require: false
|
||||||
@@ -229,8 +212,6 @@ group :development do
|
|||||||
gem 'stackprof'
|
gem 'stackprof'
|
||||||
# Should install the associated chrome extension to view query logs
|
# Should install the associated chrome extension to view query logs
|
||||||
gem 'meta_request', '>= 0.8.3'
|
gem 'meta_request', '>= 0.8.3'
|
||||||
|
|
||||||
gem 'tidewave'
|
|
||||||
end
|
end
|
||||||
|
|
||||||
group :test do
|
group :test do
|
||||||
@@ -240,7 +221,6 @@ group :test do
|
|||||||
gem 'webmock'
|
gem 'webmock'
|
||||||
# test profiling
|
# test profiling
|
||||||
gem 'test-prof'
|
gem 'test-prof'
|
||||||
gem 'simplecov_json_formatter', require: false
|
|
||||||
end
|
end
|
||||||
|
|
||||||
group :development, :test do
|
group :development, :test do
|
||||||
@@ -265,7 +245,7 @@ group :development, :test do
|
|||||||
gem 'rubocop-factory_bot', require: false
|
gem 'rubocop-factory_bot', require: false
|
||||||
gem 'seed_dump'
|
gem 'seed_dump'
|
||||||
gem 'shoulda-matchers'
|
gem 'shoulda-matchers'
|
||||||
gem 'simplecov', '>= 0.21', require: false
|
gem 'simplecov', '0.17.1', require: false
|
||||||
gem 'spring'
|
gem 'spring'
|
||||||
gem 'spring-watcher-listen'
|
gem 'spring-watcher-listen'
|
||||||
end
|
end
|
||||||
|
|||||||
+45
-150
@@ -126,23 +126,19 @@ GEM
|
|||||||
jbuilder (~> 2)
|
jbuilder (~> 2)
|
||||||
rails (>= 4.2, < 7.2)
|
rails (>= 4.2, < 7.2)
|
||||||
selectize-rails (~> 0.6)
|
selectize-rails (~> 0.6)
|
||||||
ai-agents (0.7.0)
|
ai-agents (0.4.3)
|
||||||
ruby_llm (~> 1.8.2)
|
ruby_llm (~> 1.3)
|
||||||
annotaterb (4.20.0)
|
annotate (3.2.0)
|
||||||
activerecord (>= 6.0.0)
|
activerecord (>= 3.2, < 8.0)
|
||||||
activesupport (>= 6.0.0)
|
rake (>= 10.4, < 14.0)
|
||||||
ast (2.4.3)
|
ast (2.4.3)
|
||||||
attr_extras (7.1.0)
|
attr_extras (7.1.0)
|
||||||
audited (5.4.1)
|
audited (5.4.1)
|
||||||
activerecord (>= 5.0, < 7.7)
|
activerecord (>= 5.0, < 7.7)
|
||||||
activesupport (>= 5.0, < 7.7)
|
activesupport (>= 5.0, < 7.7)
|
||||||
aws-actionmailbox-ses (0.1.0)
|
|
||||||
actionmailbox (>= 7.1.0)
|
|
||||||
aws-sdk-s3 (~> 1, >= 1.123.0)
|
|
||||||
aws-sdk-sns (~> 1, >= 1.61.0)
|
|
||||||
aws-eventstream (1.2.0)
|
aws-eventstream (1.2.0)
|
||||||
aws-partitions (1.760.0)
|
aws-partitions (1.760.0)
|
||||||
aws-sdk-core (3.188.0)
|
aws-sdk-core (3.171.1)
|
||||||
aws-eventstream (~> 1, >= 1.0.2)
|
aws-eventstream (~> 1, >= 1.0.2)
|
||||||
aws-partitions (~> 1, >= 1.651.0)
|
aws-partitions (~> 1, >= 1.651.0)
|
||||||
aws-sigv4 (~> 1.5)
|
aws-sigv4 (~> 1.5)
|
||||||
@@ -150,13 +146,10 @@ GEM
|
|||||||
aws-sdk-kms (1.64.0)
|
aws-sdk-kms (1.64.0)
|
||||||
aws-sdk-core (~> 3, >= 3.165.0)
|
aws-sdk-core (~> 3, >= 3.165.0)
|
||||||
aws-sigv4 (~> 1.1)
|
aws-sigv4 (~> 1.1)
|
||||||
aws-sdk-s3 (1.126.0)
|
aws-sdk-s3 (1.122.0)
|
||||||
aws-sdk-core (~> 3, >= 3.174.0)
|
aws-sdk-core (~> 3, >= 3.165.0)
|
||||||
aws-sdk-kms (~> 1)
|
aws-sdk-kms (~> 1)
|
||||||
aws-sigv4 (~> 1.4)
|
aws-sigv4 (~> 1.4)
|
||||||
aws-sdk-sns (1.70.0)
|
|
||||||
aws-sdk-core (~> 3, >= 3.188.0)
|
|
||||||
aws-sigv4 (~> 1.1)
|
|
||||||
aws-sigv4 (1.5.2)
|
aws-sigv4 (1.5.2)
|
||||||
aws-eventstream (~> 1, >= 1.0.2)
|
aws-eventstream (~> 1, >= 1.0.2)
|
||||||
barnes (0.0.9)
|
barnes (0.0.9)
|
||||||
@@ -219,11 +212,6 @@ GEM
|
|||||||
railties (>= 4.1.0)
|
railties (>= 4.1.0)
|
||||||
responders
|
responders
|
||||||
warden (~> 1.2.3)
|
warden (~> 1.2.3)
|
||||||
devise-two-factor (6.1.0)
|
|
||||||
activesupport (>= 7.0, < 8.1)
|
|
||||||
devise (~> 4.0)
|
|
||||||
railties (>= 7.0, < 8.1)
|
|
||||||
rotp (~> 6.0)
|
|
||||||
devise_token_auth (1.2.5)
|
devise_token_auth (1.2.5)
|
||||||
bcrypt (~> 3.0)
|
bcrypt (~> 3.0)
|
||||||
devise (> 3.5.2, < 5)
|
devise (> 3.5.2, < 5)
|
||||||
@@ -231,7 +219,7 @@ GEM
|
|||||||
diff-lcs (1.5.1)
|
diff-lcs (1.5.1)
|
||||||
digest-crc (0.6.5)
|
digest-crc (0.6.5)
|
||||||
rake (>= 12.0.0, < 14.0.0)
|
rake (>= 12.0.0, < 14.0.0)
|
||||||
docile (1.4.1)
|
docile (1.4.0)
|
||||||
domain_name (0.5.20190701)
|
domain_name (0.5.20190701)
|
||||||
unf (>= 0.0.5, < 1.0.0)
|
unf (>= 0.0.5, < 1.0.0)
|
||||||
dotenv (3.1.2)
|
dotenv (3.1.2)
|
||||||
@@ -242,42 +230,12 @@ GEM
|
|||||||
addressable (~> 2.8)
|
addressable (~> 2.8)
|
||||||
drb (2.2.3)
|
drb (2.2.3)
|
||||||
dry-cli (1.1.0)
|
dry-cli (1.1.0)
|
||||||
dry-configurable (1.3.0)
|
|
||||||
dry-core (~> 1.1)
|
|
||||||
zeitwerk (~> 2.6)
|
|
||||||
dry-core (1.1.0)
|
|
||||||
concurrent-ruby (~> 1.0)
|
|
||||||
logger
|
|
||||||
zeitwerk (~> 2.6)
|
|
||||||
dry-inflector (1.2.0)
|
|
||||||
dry-initializer (3.2.0)
|
|
||||||
dry-logic (1.6.0)
|
|
||||||
bigdecimal
|
|
||||||
concurrent-ruby (~> 1.0)
|
|
||||||
dry-core (~> 1.1)
|
|
||||||
zeitwerk (~> 2.6)
|
|
||||||
dry-schema (1.14.1)
|
|
||||||
concurrent-ruby (~> 1.0)
|
|
||||||
dry-configurable (~> 1.0, >= 1.0.1)
|
|
||||||
dry-core (~> 1.1)
|
|
||||||
dry-initializer (~> 3.2)
|
|
||||||
dry-logic (~> 1.5)
|
|
||||||
dry-types (~> 1.8)
|
|
||||||
zeitwerk (~> 2.6)
|
|
||||||
dry-types (1.8.3)
|
|
||||||
bigdecimal (~> 3.0)
|
|
||||||
concurrent-ruby (~> 1.0)
|
|
||||||
dry-core (~> 1.0)
|
|
||||||
dry-inflector (~> 1.0)
|
|
||||||
dry-logic (~> 1.4)
|
|
||||||
zeitwerk (~> 2.6)
|
|
||||||
ecma-re-validator (0.4.0)
|
ecma-re-validator (0.4.0)
|
||||||
regexp_parser (~> 2.2)
|
regexp_parser (~> 2.2)
|
||||||
elastic-apm (4.6.2)
|
elastic-apm (4.6.2)
|
||||||
concurrent-ruby (~> 1.0)
|
concurrent-ruby (~> 1.0)
|
||||||
http (>= 3.0)
|
http (>= 3.0)
|
||||||
ruby2_keywords
|
ruby2_keywords
|
||||||
email-provider-info (0.0.1)
|
|
||||||
email_reply_trimmer (0.1.13)
|
email_reply_trimmer (0.1.13)
|
||||||
erubi (1.13.0)
|
erubi (1.13.0)
|
||||||
et-orbi (1.2.11)
|
et-orbi (1.2.11)
|
||||||
@@ -294,34 +252,22 @@ GEM
|
|||||||
railties (>= 5.0.0)
|
railties (>= 5.0.0)
|
||||||
faker (3.2.0)
|
faker (3.2.0)
|
||||||
i18n (>= 1.8.11, < 2)
|
i18n (>= 1.8.11, < 2)
|
||||||
faraday (2.13.1)
|
faraday (2.9.0)
|
||||||
faraday-net_http (>= 2.0, < 3.5)
|
faraday-net_http (>= 2.0, < 3.2)
|
||||||
json
|
|
||||||
logger
|
|
||||||
faraday-follow_redirects (0.3.0)
|
faraday-follow_redirects (0.3.0)
|
||||||
faraday (>= 1, < 3)
|
faraday (>= 1, < 3)
|
||||||
faraday-mashify (1.0.0)
|
faraday-mashify (0.1.1)
|
||||||
faraday (~> 2.0)
|
faraday (~> 2.0)
|
||||||
hashie
|
hashie
|
||||||
faraday-multipart (1.0.4)
|
faraday-multipart (1.0.4)
|
||||||
multipart-post (~> 2)
|
multipart-post (~> 2)
|
||||||
faraday-net_http (3.4.0)
|
faraday-net_http (3.1.0)
|
||||||
net-http (>= 0.5.0)
|
net-http
|
||||||
faraday-net_http_persistent (2.1.0)
|
faraday-net_http_persistent (2.1.0)
|
||||||
faraday (~> 2.5)
|
faraday (~> 2.5)
|
||||||
net-http-persistent (~> 4.0)
|
net-http-persistent (~> 4.0)
|
||||||
faraday-retry (2.2.1)
|
faraday-retry (2.2.1)
|
||||||
faraday (~> 2.0)
|
faraday (~> 2.0)
|
||||||
faraday_middleware-aws-sigv4 (1.0.1)
|
|
||||||
aws-sigv4 (~> 1.0)
|
|
||||||
faraday (>= 2.0, < 3)
|
|
||||||
fast-mcp (1.5.0)
|
|
||||||
addressable (~> 2.8)
|
|
||||||
base64
|
|
||||||
dry-schema (~> 1.14)
|
|
||||||
json (~> 2.0)
|
|
||||||
mime-types (~> 3.4)
|
|
||||||
rack (~> 3.1)
|
|
||||||
fcm (1.0.8)
|
fcm (1.0.8)
|
||||||
faraday (>= 1.0.0, < 3.0)
|
faraday (>= 1.0.0, < 3.0)
|
||||||
googleauth (~> 1)
|
googleauth (~> 1)
|
||||||
@@ -460,7 +406,7 @@ GEM
|
|||||||
rails-dom-testing (>= 1, < 3)
|
rails-dom-testing (>= 1, < 3)
|
||||||
railties (>= 4.2.0)
|
railties (>= 4.2.0)
|
||||||
thor (>= 0.14, < 2.0)
|
thor (>= 0.14, < 2.0)
|
||||||
json (2.13.2)
|
json (2.12.0)
|
||||||
json_refs (0.1.8)
|
json_refs (0.1.8)
|
||||||
hana
|
hana
|
||||||
json_schemer (0.2.24)
|
json_schemer (0.2.24)
|
||||||
@@ -475,7 +421,7 @@ GEM
|
|||||||
judoscale-sidekiq (1.8.2)
|
judoscale-sidekiq (1.8.2)
|
||||||
judoscale-ruby (= 1.8.2)
|
judoscale-ruby (= 1.8.2)
|
||||||
sidekiq (>= 5.0)
|
sidekiq (>= 5.0)
|
||||||
jwt (2.10.1)
|
jwt (2.8.1)
|
||||||
base64
|
base64
|
||||||
kaminari (1.2.2)
|
kaminari (1.2.2)
|
||||||
activesupport (>= 4.1.0)
|
activesupport (>= 4.1.0)
|
||||||
@@ -557,7 +503,7 @@ GEM
|
|||||||
mutex_m (0.3.0)
|
mutex_m (0.3.0)
|
||||||
neighbor (0.2.3)
|
neighbor (0.2.3)
|
||||||
activerecord (>= 5.2)
|
activerecord (>= 5.2)
|
||||||
net-http (0.6.0)
|
net-http (0.4.1)
|
||||||
uri
|
uri
|
||||||
net-http-persistent (4.0.2)
|
net-http-persistent (4.0.2)
|
||||||
connection_pool (~> 2.2)
|
connection_pool (~> 2.2)
|
||||||
@@ -602,9 +548,8 @@ GEM
|
|||||||
oj (3.16.10)
|
oj (3.16.10)
|
||||||
bigdecimal (>= 3.0)
|
bigdecimal (>= 3.0)
|
||||||
ostruct (>= 0.2)
|
ostruct (>= 0.2)
|
||||||
omniauth (2.1.4)
|
omniauth (2.1.2)
|
||||||
hashie (>= 3.4.6)
|
hashie (>= 3.4.6)
|
||||||
logger
|
|
||||||
rack (>= 2.2.3)
|
rack (>= 2.2.3)
|
||||||
rack-protection
|
rack-protection
|
||||||
omniauth-google-oauth2 (1.1.3)
|
omniauth-google-oauth2 (1.1.3)
|
||||||
@@ -618,32 +563,7 @@ GEM
|
|||||||
omniauth-rails_csrf_protection (1.0.2)
|
omniauth-rails_csrf_protection (1.0.2)
|
||||||
actionpack (>= 4.2)
|
actionpack (>= 4.2)
|
||||||
omniauth (~> 2.0)
|
omniauth (~> 2.0)
|
||||||
omniauth-saml (2.2.4)
|
|
||||||
omniauth (~> 2.1)
|
|
||||||
ruby-saml (~> 1.18)
|
|
||||||
opensearch-ruby (3.4.0)
|
|
||||||
faraday (>= 1.0, < 3)
|
|
||||||
multi_json (>= 1.0)
|
|
||||||
openssl (3.2.0)
|
openssl (3.2.0)
|
||||||
opentelemetry-api (1.7.0)
|
|
||||||
opentelemetry-common (0.23.0)
|
|
||||||
opentelemetry-api (~> 1.0)
|
|
||||||
opentelemetry-exporter-otlp (0.31.1)
|
|
||||||
google-protobuf (>= 3.18)
|
|
||||||
googleapis-common-protos-types (~> 1.3)
|
|
||||||
opentelemetry-api (~> 1.1)
|
|
||||||
opentelemetry-common (~> 0.20)
|
|
||||||
opentelemetry-sdk (~> 1.10)
|
|
||||||
opentelemetry-semantic_conventions
|
|
||||||
opentelemetry-registry (0.4.0)
|
|
||||||
opentelemetry-api (~> 1.1)
|
|
||||||
opentelemetry-sdk (1.10.0)
|
|
||||||
opentelemetry-api (~> 1.1)
|
|
||||||
opentelemetry-common (~> 0.20)
|
|
||||||
opentelemetry-registry (~> 0.2)
|
|
||||||
opentelemetry-semantic_conventions
|
|
||||||
opentelemetry-semantic_conventions (1.36.0)
|
|
||||||
opentelemetry-api (~> 1.0)
|
|
||||||
orm_adapter (0.5.0)
|
orm_adapter (0.5.0)
|
||||||
os (1.1.4)
|
os (1.1.4)
|
||||||
ostruct (0.6.1)
|
ostruct (0.6.1)
|
||||||
@@ -671,7 +591,7 @@ GEM
|
|||||||
activesupport (>= 3.0.0)
|
activesupport (>= 3.0.0)
|
||||||
raabro (1.4.0)
|
raabro (1.4.0)
|
||||||
racc (1.8.1)
|
racc (1.8.1)
|
||||||
rack (3.2.3)
|
rack (2.2.15)
|
||||||
rack-attack (6.7.0)
|
rack-attack (6.7.0)
|
||||||
rack (>= 1.0, < 4)
|
rack (>= 1.0, < 4)
|
||||||
rack-contrib (2.5.0)
|
rack-contrib (2.5.0)
|
||||||
@@ -680,20 +600,19 @@ GEM
|
|||||||
rack (>= 2.0.0)
|
rack (>= 2.0.0)
|
||||||
rack-mini-profiler (3.2.0)
|
rack-mini-profiler (3.2.0)
|
||||||
rack (>= 1.2.0)
|
rack (>= 1.2.0)
|
||||||
rack-protection (4.2.1)
|
rack-protection (3.2.0)
|
||||||
base64 (>= 0.1.0)
|
base64 (>= 0.1.0)
|
||||||
logger (>= 1.6.0)
|
rack (~> 2.2, >= 2.2.4)
|
||||||
rack (>= 3.0.0, < 4)
|
|
||||||
rack-proxy (0.7.7)
|
rack-proxy (0.7.7)
|
||||||
rack
|
rack
|
||||||
rack-session (2.1.1)
|
rack-session (1.0.2)
|
||||||
base64 (>= 0.1.0)
|
rack (< 3)
|
||||||
rack (>= 3.0.0)
|
|
||||||
rack-test (2.1.0)
|
rack-test (2.1.0)
|
||||||
rack (>= 1.3)
|
rack (>= 1.3)
|
||||||
rack-timeout (0.6.3)
|
rack-timeout (0.6.3)
|
||||||
rackup (2.2.1)
|
rackup (1.0.1)
|
||||||
rack (>= 3)
|
rack (< 3)
|
||||||
|
webrick
|
||||||
rails (7.1.5.2)
|
rails (7.1.5.2)
|
||||||
actioncable (= 7.1.5.2)
|
actioncable (= 7.1.5.2)
|
||||||
actionmailbox (= 7.1.5.2)
|
actionmailbox (= 7.1.5.2)
|
||||||
@@ -754,8 +673,7 @@ GEM
|
|||||||
retriable (3.1.2)
|
retriable (3.1.2)
|
||||||
reverse_markdown (2.1.1)
|
reverse_markdown (2.1.1)
|
||||||
nokogiri
|
nokogiri
|
||||||
rexml (3.4.4)
|
rexml (3.4.1)
|
||||||
rotp (6.3.0)
|
|
||||||
rspec-core (3.13.0)
|
rspec-core (3.13.0)
|
||||||
rspec-support (~> 3.13.0)
|
rspec-support (~> 3.13.0)
|
||||||
rspec-expectations (3.13.2)
|
rspec-expectations (3.13.2)
|
||||||
@@ -810,16 +728,13 @@ GEM
|
|||||||
faraday (>= 1)
|
faraday (>= 1)
|
||||||
faraday-multipart (>= 1)
|
faraday-multipart (>= 1)
|
||||||
ruby-progressbar (1.13.0)
|
ruby-progressbar (1.13.0)
|
||||||
ruby-saml (1.18.1)
|
|
||||||
nokogiri (>= 1.13.10)
|
|
||||||
rexml
|
|
||||||
ruby-vips (2.1.4)
|
ruby-vips (2.1.4)
|
||||||
ffi (~> 1.12)
|
ffi (~> 1.12)
|
||||||
ruby2_keywords (0.0.5)
|
ruby2_keywords (0.0.5)
|
||||||
ruby2ruby (2.5.0)
|
ruby2ruby (2.5.0)
|
||||||
ruby_parser (~> 3.1)
|
ruby_parser (~> 3.1)
|
||||||
sexp_processor (~> 4.6)
|
sexp_processor (~> 4.6)
|
||||||
ruby_llm (1.8.2)
|
ruby_llm (1.5.1)
|
||||||
base64
|
base64
|
||||||
event_stream_parser (~> 1)
|
event_stream_parser (~> 1)
|
||||||
faraday (>= 1.10.0)
|
faraday (>= 1.10.0)
|
||||||
@@ -827,9 +742,8 @@ GEM
|
|||||||
faraday-net_http (>= 1)
|
faraday-net_http (>= 1)
|
||||||
faraday-retry (>= 1)
|
faraday-retry (>= 1)
|
||||||
marcel (~> 1.0)
|
marcel (~> 1.0)
|
||||||
ruby_llm-schema (~> 0.2.1)
|
|
||||||
zeitwerk (~> 2)
|
zeitwerk (~> 2)
|
||||||
ruby_llm-schema (0.2.5)
|
ruby_llm-schema (0.1.0)
|
||||||
ruby_parser (3.20.0)
|
ruby_parser (3.20.0)
|
||||||
sexp_processor (~> 4.16)
|
sexp_processor (~> 4.16)
|
||||||
sass (3.7.4)
|
sass (3.7.4)
|
||||||
@@ -849,9 +763,6 @@ GEM
|
|||||||
parser
|
parser
|
||||||
scss_lint (0.60.0)
|
scss_lint (0.60.0)
|
||||||
sass (~> 3.5, >= 3.5.5)
|
sass (~> 3.5, >= 3.5.5)
|
||||||
searchkick (5.5.2)
|
|
||||||
activemodel (>= 7.1)
|
|
||||||
hashie
|
|
||||||
securerandom (0.4.1)
|
securerandom (0.4.1)
|
||||||
seed_dump (3.3.1)
|
seed_dump (3.3.1)
|
||||||
activerecord (>= 4)
|
activerecord (>= 4)
|
||||||
@@ -898,14 +809,13 @@ GEM
|
|||||||
faraday (>= 0.17.5, < 3.a)
|
faraday (>= 0.17.5, < 3.a)
|
||||||
jwt (>= 1.5, < 3.0)
|
jwt (>= 1.5, < 3.0)
|
||||||
multi_json (~> 1.10)
|
multi_json (~> 1.10)
|
||||||
simplecov (0.22.0)
|
simplecov (0.17.1)
|
||||||
docile (~> 1.1)
|
docile (~> 1.1)
|
||||||
simplecov-html (~> 0.11)
|
json (>= 1.8, < 3)
|
||||||
simplecov_json_formatter (~> 0.1)
|
simplecov-html (~> 0.10.0)
|
||||||
simplecov-html (0.13.2)
|
simplecov-html (0.10.2)
|
||||||
simplecov_json_formatter (0.1.4)
|
slack-ruby-client (2.5.2)
|
||||||
slack-ruby-client (2.7.0)
|
faraday (>= 2.0)
|
||||||
faraday (>= 2.0.1)
|
|
||||||
faraday-mashify
|
faraday-mashify
|
||||||
faraday-multipart
|
faraday-multipart
|
||||||
gli
|
gli
|
||||||
@@ -929,21 +839,17 @@ GEM
|
|||||||
squasher (0.7.2)
|
squasher (0.7.2)
|
||||||
stackprof (0.2.25)
|
stackprof (0.2.25)
|
||||||
statsd-ruby (1.5.0)
|
statsd-ruby (1.5.0)
|
||||||
stripe (18.0.1)
|
stripe (8.5.0)
|
||||||
telephone_number (1.4.20)
|
telephone_number (1.4.20)
|
||||||
test-prof (1.2.1)
|
test-prof (1.2.1)
|
||||||
thor (1.4.0)
|
thor (1.4.0)
|
||||||
tidewave (0.2.0)
|
|
||||||
fast-mcp (~> 1.5.0)
|
|
||||||
rack (>= 2.0)
|
|
||||||
rails (>= 7.1.0)
|
|
||||||
tilt (2.3.0)
|
tilt (2.3.0)
|
||||||
time_diff (0.3.0)
|
time_diff (0.3.0)
|
||||||
activesupport
|
activesupport
|
||||||
i18n
|
i18n
|
||||||
timeout (0.4.3)
|
timeout (0.4.3)
|
||||||
trailblazer-option (0.1.2)
|
trailblazer-option (0.1.2)
|
||||||
twilio-ruby (7.6.0)
|
twilio-ruby (5.77.0)
|
||||||
faraday (>= 0.9, < 3.0)
|
faraday (>= 0.9, < 3.0)
|
||||||
jwt (>= 1.5, < 3.0)
|
jwt (>= 1.5, < 3.0)
|
||||||
nokogiri (>= 1.6, < 2.0)
|
nokogiri (>= 1.6, < 2.0)
|
||||||
@@ -963,7 +869,7 @@ GEM
|
|||||||
unicode-emoji (~> 4.0, >= 4.0.4)
|
unicode-emoji (~> 4.0, >= 4.0.4)
|
||||||
unicode-emoji (4.0.4)
|
unicode-emoji (4.0.4)
|
||||||
uniform_notifier (1.17.0)
|
uniform_notifier (1.17.0)
|
||||||
uri (1.0.4)
|
uri (1.0.3)
|
||||||
uri_template (0.7.0)
|
uri_template (0.7.0)
|
||||||
valid_email2 (5.2.6)
|
valid_email2 (5.2.6)
|
||||||
activemodel (>= 3.2)
|
activemodel (>= 3.2)
|
||||||
@@ -990,6 +896,7 @@ GEM
|
|||||||
addressable (>= 2.8.0)
|
addressable (>= 2.8.0)
|
||||||
crack (>= 0.3.2)
|
crack (>= 0.3.2)
|
||||||
hashdiff (>= 0.4.0, < 2.0.0)
|
hashdiff (>= 0.4.0, < 2.0.0)
|
||||||
|
webrick (1.9.1)
|
||||||
websocket-driver (0.7.7)
|
websocket-driver (0.7.7)
|
||||||
base64
|
base64
|
||||||
websocket-extensions (>= 0.1.0)
|
websocket-extensions (>= 0.1.0)
|
||||||
@@ -1018,11 +925,10 @@ DEPENDENCIES
|
|||||||
administrate (>= 0.20.1)
|
administrate (>= 0.20.1)
|
||||||
administrate-field-active_storage (>= 1.0.3)
|
administrate-field-active_storage (>= 1.0.3)
|
||||||
administrate-field-belongs_to_search (>= 0.9.0)
|
administrate-field-belongs_to_search (>= 0.9.0)
|
||||||
ai-agents (>= 0.7.0)
|
ai-agents (>= 0.4.3)
|
||||||
annotaterb
|
annotate
|
||||||
attr_extras
|
attr_extras
|
||||||
audited (~> 5.4, >= 5.4.1)
|
audited (~> 5.4, >= 5.4.1)
|
||||||
aws-actionmailbox-ses (~> 0)
|
|
||||||
aws-sdk-s3
|
aws-sdk-s3
|
||||||
azure-storage-blob!
|
azure-storage-blob!
|
||||||
barnes
|
barnes
|
||||||
@@ -1040,17 +946,14 @@ DEPENDENCIES
|
|||||||
debug (~> 1.8)
|
debug (~> 1.8)
|
||||||
devise (>= 4.9.4)
|
devise (>= 4.9.4)
|
||||||
devise-secure_password!
|
devise-secure_password!
|
||||||
devise-two-factor (>= 5.0.0)
|
|
||||||
devise_token_auth (>= 1.2.3)
|
devise_token_auth (>= 1.2.3)
|
||||||
dotenv-rails (>= 3.0.0)
|
dotenv-rails (>= 3.0.0)
|
||||||
down
|
down
|
||||||
elastic-apm
|
elastic-apm
|
||||||
email-provider-info
|
|
||||||
email_reply_trimmer
|
email_reply_trimmer
|
||||||
facebook-messenger
|
facebook-messenger
|
||||||
factory_bot_rails (>= 6.4.3)
|
factory_bot_rails (>= 6.4.3)
|
||||||
faker
|
faker
|
||||||
faraday_middleware-aws-sigv4
|
|
||||||
fcm
|
fcm
|
||||||
flag_shih_tzu
|
flag_shih_tzu
|
||||||
foreman
|
foreman
|
||||||
@@ -1091,10 +994,6 @@ DEPENDENCIES
|
|||||||
omniauth-google-oauth2 (>= 1.1.3)
|
omniauth-google-oauth2 (>= 1.1.3)
|
||||||
omniauth-oauth2
|
omniauth-oauth2
|
||||||
omniauth-rails_csrf_protection (~> 1.0, >= 1.0.2)
|
omniauth-rails_csrf_protection (~> 1.0, >= 1.0.2)
|
||||||
omniauth-saml
|
|
||||||
opensearch-ruby
|
|
||||||
opentelemetry-exporter-otlp
|
|
||||||
opentelemetry-sdk
|
|
||||||
pg
|
pg
|
||||||
pg_search
|
pg_search
|
||||||
pgvector
|
pgvector
|
||||||
@@ -1120,11 +1019,9 @@ DEPENDENCIES
|
|||||||
rubocop-rails
|
rubocop-rails
|
||||||
rubocop-rspec
|
rubocop-rspec
|
||||||
ruby-openai
|
ruby-openai
|
||||||
ruby_llm (>= 1.8.2)
|
|
||||||
ruby_llm-schema
|
ruby_llm-schema
|
||||||
scout_apm
|
scout_apm
|
||||||
scss_lint
|
scss_lint
|
||||||
searchkick
|
|
||||||
seed_dump
|
seed_dump
|
||||||
sentry-rails (>= 5.19.0)
|
sentry-rails (>= 5.19.0)
|
||||||
sentry-ruby
|
sentry-ruby
|
||||||
@@ -1134,19 +1031,17 @@ DEPENDENCIES
|
|||||||
sidekiq (>= 7.3.1)
|
sidekiq (>= 7.3.1)
|
||||||
sidekiq-cron (>= 1.12.0)
|
sidekiq-cron (>= 1.12.0)
|
||||||
sidekiq_alive
|
sidekiq_alive
|
||||||
simplecov (>= 0.21)
|
simplecov (= 0.17.1)
|
||||||
simplecov_json_formatter
|
slack-ruby-client (~> 2.5.2)
|
||||||
slack-ruby-client (~> 2.7.0)
|
|
||||||
spring
|
spring
|
||||||
spring-watcher-listen
|
spring-watcher-listen
|
||||||
squasher
|
squasher
|
||||||
stackprof
|
stackprof
|
||||||
stripe (~> 18.0)
|
stripe
|
||||||
telephone_number
|
telephone_number
|
||||||
test-prof
|
test-prof
|
||||||
tidewave
|
|
||||||
time_diff
|
time_diff
|
||||||
twilio-ruby
|
twilio-ruby (~> 5.66)
|
||||||
twitty (~> 0.1.5)
|
twitty (~> 0.1.5)
|
||||||
tzinfo-data
|
tzinfo-data
|
||||||
uglifier
|
uglifier
|
||||||
|
|||||||
@@ -2,8 +2,5 @@
|
|||||||
# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
|
# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
|
||||||
|
|
||||||
require_relative 'config/application'
|
require_relative 'config/application'
|
||||||
# Load Enterprise Edition rake tasks if they exist
|
|
||||||
enterprise_tasks_path = Rails.root.join('enterprise/tasks_railtie.rb').to_s
|
|
||||||
require enterprise_tasks_path if File.exist?(enterprise_tasks_path)
|
|
||||||
|
|
||||||
Rails.application.load_tasks
|
Rails.application.load_tasks
|
||||||
|
|||||||
+1
-1
@@ -1 +1 @@
|
|||||||
4.8.0
|
4.4.0
|
||||||
|
|||||||
+1
-1
@@ -1 +1 @@
|
|||||||
3.4.3
|
3.4.2
|
||||||
|
|||||||
@@ -36,10 +36,6 @@
|
|||||||
"REDIS_OPENSSL_VERIFY_MODE":{
|
"REDIS_OPENSSL_VERIFY_MODE":{
|
||||||
"description": "OpenSSL verification mode for Redis connections. ref https://help.heroku.com/HC0F8CUS/redis-connection-issues",
|
"description": "OpenSSL verification mode for Redis connections. ref https://help.heroku.com/HC0F8CUS/redis-connection-issues",
|
||||||
"value": "none"
|
"value": "none"
|
||||||
},
|
|
||||||
"NODE_OPTIONS": {
|
|
||||||
"description": "Increase V8 heap for Vite build to avoid OOM",
|
|
||||||
"value": "--max-old-space-size=4096"
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"formation": {
|
"formation": {
|
||||||
|
|||||||
@@ -52,5 +52,3 @@ class AgentBuilder
|
|||||||
}.compact))
|
}.compact))
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
AgentBuilder.prepend_mod_with('AgentBuilder')
|
|
||||||
|
|||||||
@@ -103,5 +103,3 @@ class ContactInboxBuilder
|
|||||||
@inbox.email? || @inbox.sms? || @inbox.twilio? || @inbox.whatsapp?
|
@inbox.email? || @inbox.sms? || @inbox.twilio? || @inbox.whatsapp?
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
ContactInboxBuilder.prepend_mod_with('ContactInboxBuilder')
|
|
||||||
|
|||||||
@@ -1,54 +0,0 @@
|
|||||||
class Email::BaseBuilder
|
|
||||||
pattr_initialize [:inbox!]
|
|
||||||
|
|
||||||
private
|
|
||||||
|
|
||||||
def channel
|
|
||||||
@channel ||= inbox.channel
|
|
||||||
end
|
|
||||||
|
|
||||||
def account
|
|
||||||
@account ||= inbox.account
|
|
||||||
end
|
|
||||||
|
|
||||||
def conversation
|
|
||||||
@conversation ||= message.conversation
|
|
||||||
end
|
|
||||||
|
|
||||||
def custom_sender_name
|
|
||||||
message&.sender&.available_name || I18n.t('conversations.reply.email.header.notifications')
|
|
||||||
end
|
|
||||||
|
|
||||||
def sender_name(sender_email)
|
|
||||||
# Friendly: <agent_name> from <business_name>
|
|
||||||
# Professional: <business_name>
|
|
||||||
if inbox.friendly?
|
|
||||||
I18n.t(
|
|
||||||
'conversations.reply.email.header.friendly_name',
|
|
||||||
sender_name: custom_sender_name,
|
|
||||||
business_name: business_name,
|
|
||||||
from_email: sender_email
|
|
||||||
)
|
|
||||||
else
|
|
||||||
I18n.t(
|
|
||||||
'conversations.reply.email.header.professional_name',
|
|
||||||
business_name: business_name,
|
|
||||||
from_email: sender_email
|
|
||||||
)
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
def business_name
|
|
||||||
inbox.business_name || inbox.sanitized_name
|
|
||||||
end
|
|
||||||
|
|
||||||
def account_support_email
|
|
||||||
# Parse the email to ensure it's in the correct format, the user
|
|
||||||
# can save it in the format "Name <email@domain.com>"
|
|
||||||
parse_email(account.support_email)
|
|
||||||
end
|
|
||||||
|
|
||||||
def parse_email(email_string)
|
|
||||||
Mail::Address.new(email_string).address
|
|
||||||
end
|
|
||||||
end
|
|
||||||
@@ -1,51 +0,0 @@
|
|||||||
class Email::FromBuilder < Email::BaseBuilder
|
|
||||||
pattr_initialize [:inbox!, :message!]
|
|
||||||
|
|
||||||
def build
|
|
||||||
return sender_name(account_support_email) unless inbox.email?
|
|
||||||
|
|
||||||
from_email = case email_channel_type
|
|
||||||
when :standard_imap_smtp,
|
|
||||||
:google_oauth,
|
|
||||||
:microsoft_oauth,
|
|
||||||
:forwarding_own_smtp
|
|
||||||
channel.email
|
|
||||||
when :imap_chatwoot_smtp,
|
|
||||||
:forwarding_chatwoot_smtp
|
|
||||||
channel.verified_for_sending ? channel.email : account_support_email
|
|
||||||
else
|
|
||||||
account_support_email
|
|
||||||
end
|
|
||||||
|
|
||||||
sender_name(from_email)
|
|
||||||
end
|
|
||||||
|
|
||||||
private
|
|
||||||
|
|
||||||
def email_channel_type
|
|
||||||
return :google_oauth if channel.google?
|
|
||||||
return :microsoft_oauth if channel.microsoft?
|
|
||||||
return :standard_imap_smtp if imap_and_smtp_enabled?
|
|
||||||
return :imap_chatwoot_smtp if imap_enabled_without_smtp?
|
|
||||||
return :forwarding_own_smtp if forwarding_with_own_smtp?
|
|
||||||
return :forwarding_chatwoot_smtp if forwarding_without_smtp?
|
|
||||||
|
|
||||||
:unknown
|
|
||||||
end
|
|
||||||
|
|
||||||
def imap_and_smtp_enabled?
|
|
||||||
channel.imap_enabled && channel.smtp_enabled
|
|
||||||
end
|
|
||||||
|
|
||||||
def imap_enabled_without_smtp?
|
|
||||||
channel.imap_enabled && !channel.smtp_enabled
|
|
||||||
end
|
|
||||||
|
|
||||||
def forwarding_with_own_smtp?
|
|
||||||
!channel.imap_enabled && channel.smtp_enabled
|
|
||||||
end
|
|
||||||
|
|
||||||
def forwarding_without_smtp?
|
|
||||||
!channel.imap_enabled && !channel.smtp_enabled
|
|
||||||
end
|
|
||||||
end
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
class Email::ReplyToBuilder < Email::BaseBuilder
|
|
||||||
pattr_initialize [:inbox!, :message!]
|
|
||||||
|
|
||||||
def build
|
|
||||||
reply_to = if inbox.email?
|
|
||||||
channel.email
|
|
||||||
elsif inbound_email_enabled?
|
|
||||||
"reply+#{conversation.uuid}@#{account.inbound_email_domain}"
|
|
||||||
else
|
|
||||||
account_support_email
|
|
||||||
end
|
|
||||||
|
|
||||||
sender_name(reply_to)
|
|
||||||
end
|
|
||||||
|
|
||||||
private
|
|
||||||
|
|
||||||
def inbound_email_enabled?
|
|
||||||
account.feature_enabled?('inbound_emails') && account.inbound_email_domain.present?
|
|
||||||
end
|
|
||||||
end
|
|
||||||
@@ -1,8 +1,5 @@
|
|||||||
class Messages::MessageBuilder
|
class Messages::MessageBuilder
|
||||||
include ::FileTypeHelper
|
include ::FileTypeHelper
|
||||||
include ::EmailHelper
|
|
||||||
include ::DataHelper
|
|
||||||
|
|
||||||
attr_reader :message
|
attr_reader :message
|
||||||
|
|
||||||
def initialize(user, conversation, params)
|
def initialize(user, conversation, params)
|
||||||
@@ -10,7 +7,6 @@ class Messages::MessageBuilder
|
|||||||
@private = params[:private] || false
|
@private = params[:private] || false
|
||||||
@conversation = conversation
|
@conversation = conversation
|
||||||
@user = user
|
@user = user
|
||||||
@account = conversation.account
|
|
||||||
@message_type = params[:message_type] || 'outgoing'
|
@message_type = params[:message_type] || 'outgoing'
|
||||||
@attachments = params[:attachments]
|
@attachments = params[:attachments]
|
||||||
@automation_rule = content_attributes&.dig(:automation_rule_id)
|
@automation_rule = content_attributes&.dig(:automation_rule_id)
|
||||||
@@ -24,9 +20,6 @@ class Messages::MessageBuilder
|
|||||||
@message = @conversation.messages.build(message_params)
|
@message = @conversation.messages.build(message_params)
|
||||||
process_attachments
|
process_attachments
|
||||||
process_emails
|
process_emails
|
||||||
# When the message has no quoted content, it will just be rendered as a regular message
|
|
||||||
# The frontend is equipped to handle this case
|
|
||||||
process_email_content
|
|
||||||
@message.save!
|
@message.save!
|
||||||
@message
|
@message
|
||||||
end
|
end
|
||||||
@@ -41,12 +34,30 @@ class Messages::MessageBuilder
|
|||||||
params = convert_to_hash(@params)
|
params = convert_to_hash(@params)
|
||||||
content_attributes = params.fetch(:content_attributes, {})
|
content_attributes = params.fetch(:content_attributes, {})
|
||||||
|
|
||||||
return safe_parse_json(content_attributes) if content_attributes.is_a?(String)
|
return parse_json(content_attributes) if content_attributes.is_a?(String)
|
||||||
return content_attributes if content_attributes.is_a?(Hash)
|
return content_attributes if content_attributes.is_a?(Hash)
|
||||||
|
|
||||||
{}
|
{}
|
||||||
end
|
end
|
||||||
|
|
||||||
|
# Converts the given object to a hash.
|
||||||
|
# If it's an instance of ActionController::Parameters, converts it to an unsafe hash.
|
||||||
|
# Otherwise, returns the object as-is.
|
||||||
|
def convert_to_hash(obj)
|
||||||
|
return obj.to_unsafe_h if obj.instance_of?(ActionController::Parameters)
|
||||||
|
|
||||||
|
obj
|
||||||
|
end
|
||||||
|
|
||||||
|
# Attempts to parse a string as JSON.
|
||||||
|
# If successful, returns the parsed hash with symbolized names.
|
||||||
|
# If unsuccessful, returns nil.
|
||||||
|
def parse_json(content)
|
||||||
|
JSON.parse(content, symbolize_names: true)
|
||||||
|
rescue JSON::ParserError
|
||||||
|
{}
|
||||||
|
end
|
||||||
|
|
||||||
def process_attachments
|
def process_attachments
|
||||||
return if @attachments.blank?
|
return if @attachments.blank?
|
||||||
|
|
||||||
@@ -81,20 +92,18 @@ class Messages::MessageBuilder
|
|||||||
@message.content_attributes[:to_emails] = to_emails
|
@message.content_attributes[:to_emails] = to_emails
|
||||||
end
|
end
|
||||||
|
|
||||||
def process_email_content
|
|
||||||
return unless should_process_email_content?
|
|
||||||
|
|
||||||
@message.content_attributes ||= {}
|
|
||||||
email_attributes = build_email_attributes
|
|
||||||
@message.content_attributes[:email] = email_attributes
|
|
||||||
end
|
|
||||||
|
|
||||||
def process_email_string(email_string)
|
def process_email_string(email_string)
|
||||||
return [] if email_string.blank?
|
return [] if email_string.blank?
|
||||||
|
|
||||||
email_string.gsub(/\s+/, '').split(',')
|
email_string.gsub(/\s+/, '').split(',')
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def validate_email_addresses(all_emails)
|
||||||
|
all_emails&.each do |email|
|
||||||
|
raise StandardError, 'Invalid email address' unless email.match?(URI::MailTo::EMAIL_REGEXP)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
def message_type
|
def message_type
|
||||||
if @conversation.inbox.channel_type != 'Channel::Api' && @message_type == 'incoming'
|
if @conversation.inbox.channel_type != 'Channel::Api' && @message_type == 'incoming'
|
||||||
raise StandardError, 'Incoming messages are only allowed in Api inboxes'
|
raise StandardError, 'Incoming messages are only allowed in Api inboxes'
|
||||||
@@ -138,90 +147,10 @@ class Messages::MessageBuilder
|
|||||||
private: @private,
|
private: @private,
|
||||||
sender: sender,
|
sender: sender,
|
||||||
content_type: @params[:content_type],
|
content_type: @params[:content_type],
|
||||||
content_attributes: content_attributes.presence,
|
|
||||||
items: @items,
|
items: @items,
|
||||||
in_reply_to: @in_reply_to,
|
in_reply_to: @in_reply_to,
|
||||||
echo_id: @params[:echo_id],
|
echo_id: @params[:echo_id],
|
||||||
source_id: @params[:source_id]
|
source_id: @params[:source_id]
|
||||||
}.merge(external_created_at).merge(automation_rule_id).merge(campaign_id).merge(template_params)
|
}.merge(external_created_at).merge(automation_rule_id).merge(campaign_id).merge(template_params)
|
||||||
end
|
end
|
||||||
|
|
||||||
def email_inbox?
|
|
||||||
@conversation.inbox&.inbox_type == 'Email'
|
|
||||||
end
|
|
||||||
|
|
||||||
def should_process_email_content?
|
|
||||||
email_inbox? && !@private && @message.content.present?
|
|
||||||
end
|
|
||||||
|
|
||||||
def build_email_attributes
|
|
||||||
email_attributes = ensure_indifferent_access(@message.content_attributes[:email] || {})
|
|
||||||
normalized_content = normalize_email_body(@message.content)
|
|
||||||
|
|
||||||
# Process liquid templates in normalized content with code block protection
|
|
||||||
processed_content = process_liquid_in_email_body(normalized_content)
|
|
||||||
|
|
||||||
# Use custom HTML content if provided, otherwise generate from message content
|
|
||||||
email_attributes[:html_content] = if custom_email_content_provided?
|
|
||||||
build_custom_html_content
|
|
||||||
else
|
|
||||||
build_html_content(processed_content)
|
|
||||||
end
|
|
||||||
|
|
||||||
email_attributes[:text_content] = build_text_content(processed_content)
|
|
||||||
email_attributes
|
|
||||||
end
|
|
||||||
|
|
||||||
def build_html_content(normalized_content)
|
|
||||||
html_content = ensure_indifferent_access(@message.content_attributes.dig(:email, :html_content) || {})
|
|
||||||
rendered_html = render_email_html(normalized_content)
|
|
||||||
html_content[:full] = rendered_html
|
|
||||||
html_content[:reply] = rendered_html
|
|
||||||
html_content
|
|
||||||
end
|
|
||||||
|
|
||||||
def build_text_content(normalized_content)
|
|
||||||
text_content = ensure_indifferent_access(@message.content_attributes.dig(:email, :text_content) || {})
|
|
||||||
text_content[:full] = normalized_content
|
|
||||||
text_content[:reply] = normalized_content
|
|
||||||
text_content
|
|
||||||
end
|
|
||||||
|
|
||||||
def custom_email_content_provided?
|
|
||||||
@params[:email_html_content].present?
|
|
||||||
end
|
|
||||||
|
|
||||||
def build_custom_html_content
|
|
||||||
html_content = ensure_indifferent_access(@message.content_attributes.dig(:email, :html_content) || {})
|
|
||||||
|
|
||||||
html_content[:full] = @params[:email_html_content]
|
|
||||||
html_content[:reply] = @params[:email_html_content]
|
|
||||||
|
|
||||||
html_content
|
|
||||||
end
|
|
||||||
|
|
||||||
# Liquid processing methods for email content
|
|
||||||
def process_liquid_in_email_body(content)
|
|
||||||
return content if content.blank?
|
|
||||||
return content unless should_process_liquid?
|
|
||||||
|
|
||||||
# Protect code blocks from liquid processing
|
|
||||||
modified_content = modified_liquid_content(content)
|
|
||||||
template = Liquid::Template.parse(modified_content)
|
|
||||||
template.render(drops_with_sender)
|
|
||||||
rescue Liquid::Error
|
|
||||||
content
|
|
||||||
end
|
|
||||||
|
|
||||||
def should_process_liquid?
|
|
||||||
@message_type == 'outgoing' || @message_type == 'template'
|
|
||||||
end
|
|
||||||
|
|
||||||
def drops_with_sender
|
|
||||||
message_drops(@conversation).merge({
|
|
||||||
'agent' => UserDrop.new(sender)
|
|
||||||
})
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
|
|
||||||
Messages::MessageBuilder.prepend_mod_with('Messages::MessageBuilder')
|
|
||||||
|
|||||||
@@ -9,8 +9,6 @@ class Messages::Messenger::MessageBuilder
|
|||||||
attachment_obj.save!
|
attachment_obj.save!
|
||||||
attach_file(attachment_obj, attachment_params(attachment)[:remote_file_url]) if attachment_params(attachment)[:remote_file_url]
|
attach_file(attachment_obj, attachment_params(attachment)[:remote_file_url]) if attachment_params(attachment)[:remote_file_url]
|
||||||
fetch_story_link(attachment_obj) if attachment_obj.file_type == 'story_mention'
|
fetch_story_link(attachment_obj) if attachment_obj.file_type == 'story_mention'
|
||||||
fetch_ig_story_link(attachment_obj) if attachment_obj.file_type == 'ig_story'
|
|
||||||
fetch_ig_post_link(attachment_obj) if attachment_obj.file_type == 'ig_post'
|
|
||||||
update_attachment_file_type(attachment_obj)
|
update_attachment_file_type(attachment_obj)
|
||||||
end
|
end
|
||||||
|
|
||||||
@@ -29,7 +27,7 @@ class Messages::Messenger::MessageBuilder
|
|||||||
file_type = attachment['type'].to_sym
|
file_type = attachment['type'].to_sym
|
||||||
params = { file_type: file_type, account_id: @message.account_id }
|
params = { file_type: file_type, account_id: @message.account_id }
|
||||||
|
|
||||||
if [:image, :file, :audio, :video, :share, :story_mention, :ig_reel, :ig_post, :ig_story].include? file_type
|
if [:image, :file, :audio, :video, :share, :story_mention, :ig_reel].include? file_type
|
||||||
params.merge!(file_type_params(attachment))
|
params.merge!(file_type_params(attachment))
|
||||||
elsif file_type == :location
|
elsif file_type == :location
|
||||||
params.merge!(location_params(attachment))
|
params.merge!(location_params(attachment))
|
||||||
@@ -41,17 +39,9 @@ class Messages::Messenger::MessageBuilder
|
|||||||
end
|
end
|
||||||
|
|
||||||
def file_type_params(attachment)
|
def file_type_params(attachment)
|
||||||
# Handle different URL field names for different attachment types
|
|
||||||
url = case attachment['type'].to_sym
|
|
||||||
when :ig_story
|
|
||||||
attachment['payload']['story_media_url']
|
|
||||||
else
|
|
||||||
attachment['payload']['url']
|
|
||||||
end
|
|
||||||
|
|
||||||
{
|
{
|
||||||
external_url: url,
|
external_url: attachment['payload']['url'],
|
||||||
remote_file_url: url
|
remote_file_url: attachment['payload']['url']
|
||||||
}
|
}
|
||||||
end
|
end
|
||||||
|
|
||||||
@@ -78,21 +68,6 @@ class Messages::Messenger::MessageBuilder
|
|||||||
message.save!
|
message.save!
|
||||||
end
|
end
|
||||||
|
|
||||||
def fetch_ig_story_link(attachment)
|
|
||||||
message = attachment.message
|
|
||||||
# For ig_story, we don't have the same API call as story_mention, so we'll set it up similarly but with generic content
|
|
||||||
message.content_attributes[:image_type] = 'ig_story'
|
|
||||||
message.content = I18n.t('conversations.messages.instagram_shared_story_content')
|
|
||||||
message.save!
|
|
||||||
end
|
|
||||||
|
|
||||||
def fetch_ig_post_link(attachment)
|
|
||||||
message = attachment.message
|
|
||||||
message.content_attributes[:image_type] = 'ig_post'
|
|
||||||
message.content = I18n.t('conversations.messages.instagram_shared_post_content')
|
|
||||||
message.save!
|
|
||||||
end
|
|
||||||
|
|
||||||
# This is a placeholder method to be overridden by child classes
|
# This is a placeholder method to be overridden by child classes
|
||||||
def get_story_object_from_source_id(_source_id)
|
def get_story_object_from_source_id(_source_id)
|
||||||
{}
|
{}
|
||||||
@@ -101,6 +76,6 @@ class Messages::Messenger::MessageBuilder
|
|||||||
private
|
private
|
||||||
|
|
||||||
def unsupported_file_type?(attachment_type)
|
def unsupported_file_type?(attachment_type)
|
||||||
[:template, :unsupported_type, :ephemeral].include? attachment_type.to_sym
|
[:template, :unsupported_type].include? attachment_type.to_sym
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -10,28 +10,10 @@ class V2::Reports::BaseSummaryBuilder
|
|||||||
|
|
||||||
def load_data
|
def load_data
|
||||||
@conversations_count = fetch_conversations_count
|
@conversations_count = fetch_conversations_count
|
||||||
load_reporting_events_data
|
@resolved_count = fetch_resolved_count
|
||||||
end
|
@avg_resolution_time = fetch_average_time('conversation_resolved')
|
||||||
|
@avg_first_response_time = fetch_average_time('first_response')
|
||||||
def load_reporting_events_data
|
@avg_reply_time = fetch_average_time('reply_time')
|
||||||
# Extract the column name for indexing (e.g., 'conversations.team_id' -> 'team_id')
|
|
||||||
index_key = group_by_key.to_s.split('.').last
|
|
||||||
|
|
||||||
results = reporting_events
|
|
||||||
.select(
|
|
||||||
"#{group_by_key} as #{index_key}",
|
|
||||||
"COUNT(CASE WHEN name = 'conversation_resolved' THEN 1 END) as resolved_count",
|
|
||||||
"AVG(CASE WHEN name = 'conversation_resolved' THEN #{average_value_key} END) as avg_resolution_time",
|
|
||||||
"AVG(CASE WHEN name = 'first_response' THEN #{average_value_key} END) as avg_first_response_time",
|
|
||||||
"AVG(CASE WHEN name = 'reply_time' THEN #{average_value_key} END) as avg_reply_time"
|
|
||||||
)
|
|
||||||
.group(group_by_key)
|
|
||||||
.index_by { |record| record.public_send(index_key) }
|
|
||||||
|
|
||||||
@resolved_count = results.transform_values(&:resolved_count)
|
|
||||||
@avg_resolution_time = results.transform_values(&:avg_resolution_time)
|
|
||||||
@avg_first_response_time = results.transform_values(&:avg_first_response_time)
|
|
||||||
@avg_reply_time = results.transform_values(&:avg_reply_time)
|
|
||||||
end
|
end
|
||||||
|
|
||||||
def reporting_events
|
def reporting_events
|
||||||
@@ -42,6 +24,14 @@ class V2::Reports::BaseSummaryBuilder
|
|||||||
# Override this method
|
# Override this method
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def fetch_average_time(event_name)
|
||||||
|
get_grouped_average(reporting_events.where(name: event_name))
|
||||||
|
end
|
||||||
|
|
||||||
|
def fetch_resolved_count
|
||||||
|
reporting_events.where(name: 'conversation_resolved').group(group_by_key).count
|
||||||
|
end
|
||||||
|
|
||||||
def group_by_key
|
def group_by_key
|
||||||
# Override this method
|
# Override this method
|
||||||
end
|
end
|
||||||
@@ -50,6 +40,10 @@ class V2::Reports::BaseSummaryBuilder
|
|||||||
# Override this method
|
# Override this method
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def get_grouped_average(events)
|
||||||
|
events.group(group_by_key).average(average_value_key)
|
||||||
|
end
|
||||||
|
|
||||||
def average_value_key
|
def average_value_key
|
||||||
ActiveModel::Type::Boolean.new.cast(params[:business_hours]).present? ? :value_in_business_hours : :value
|
ActiveModel::Type::Boolean.new.cast(params[:business_hours]).present? ? :value_in_business_hours : :value
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -13,7 +13,10 @@ class V2::Reports::InboxSummaryBuilder < V2::Reports::BaseSummaryBuilder
|
|||||||
|
|
||||||
def load_data
|
def load_data
|
||||||
@conversations_count = fetch_conversations_count
|
@conversations_count = fetch_conversations_count
|
||||||
load_reporting_events_data
|
@resolved_count = fetch_resolved_count
|
||||||
|
@avg_resolution_time = fetch_average_time('conversation_resolved')
|
||||||
|
@avg_first_response_time = fetch_average_time('first_response')
|
||||||
|
@avg_reply_time = fetch_average_time('reply_time')
|
||||||
end
|
end
|
||||||
|
|
||||||
def fetch_conversations_count
|
def fetch_conversations_count
|
||||||
|
|||||||
@@ -28,7 +28,7 @@ class V2::Reports::LabelSummaryBuilder < V2::Reports::BaseSummaryBuilder
|
|||||||
|
|
||||||
{
|
{
|
||||||
conversation_counts: fetch_conversation_counts(conversation_filter),
|
conversation_counts: fetch_conversation_counts(conversation_filter),
|
||||||
resolved_counts: fetch_resolved_counts,
|
resolved_counts: fetch_resolved_counts(conversation_filter),
|
||||||
resolution_metrics: fetch_metrics(conversation_filter, 'conversation_resolved', use_business_hours),
|
resolution_metrics: fetch_metrics(conversation_filter, 'conversation_resolved', use_business_hours),
|
||||||
first_response_metrics: fetch_metrics(conversation_filter, 'first_response', use_business_hours),
|
first_response_metrics: fetch_metrics(conversation_filter, 'first_response', use_business_hours),
|
||||||
reply_metrics: fetch_metrics(conversation_filter, 'reply_time', use_business_hours)
|
reply_metrics: fetch_metrics(conversation_filter, 'reply_time', use_business_hours)
|
||||||
@@ -62,21 +62,10 @@ class V2::Reports::LabelSummaryBuilder < V2::Reports::BaseSummaryBuilder
|
|||||||
fetch_counts(conversation_filter)
|
fetch_counts(conversation_filter)
|
||||||
end
|
end
|
||||||
|
|
||||||
def fetch_resolved_counts
|
def fetch_resolved_counts(conversation_filter)
|
||||||
# Count resolution events, not conversations currently in resolved status
|
# since the base query is ActsAsTaggableOn,
|
||||||
# Filter by reporting_event.created_at, not conversation.created_at
|
# the status :resolved won't automatically be converted to integer status
|
||||||
reporting_event_filter = { name: 'conversation_resolved', account_id: account.id }
|
fetch_counts(conversation_filter.merge(status: Conversation.statuses[:resolved]))
|
||||||
reporting_event_filter[:created_at] = range if range.present?
|
|
||||||
|
|
||||||
ReportingEvent
|
|
||||||
.joins(conversation: { taggings: :tag })
|
|
||||||
.where(
|
|
||||||
reporting_event_filter.merge(
|
|
||||||
taggings: { taggable_type: 'Conversation', context: 'labels' }
|
|
||||||
)
|
|
||||||
)
|
|
||||||
.group('tags.name')
|
|
||||||
.count
|
|
||||||
end
|
end
|
||||||
|
|
||||||
def fetch_counts(conversation_filter)
|
def fetch_counts(conversation_filter)
|
||||||
@@ -95,7 +84,9 @@ class V2::Reports::LabelSummaryBuilder < V2::Reports::BaseSummaryBuilder
|
|||||||
|
|
||||||
def fetch_metrics(conversation_filter, event_name, use_business_hours)
|
def fetch_metrics(conversation_filter, event_name, use_business_hours)
|
||||||
ReportingEvent
|
ReportingEvent
|
||||||
.joins(conversation: { taggings: :tag })
|
.joins('INNER JOIN conversations ON reporting_events.conversation_id = conversations.id')
|
||||||
|
.joins('INNER JOIN taggings ON taggings.taggable_id = conversations.id')
|
||||||
|
.joins('INNER JOIN tags ON taggings.tag_id = tags.id')
|
||||||
.where(
|
.where(
|
||||||
conversations: conversation_filter,
|
conversations: conversation_filter,
|
||||||
name: event_name,
|
name: event_name,
|
||||||
|
|||||||
@@ -38,34 +38,27 @@ class V2::Reports::Timeseries::CountReportBuilder < V2::Reports::Timeseries::Bas
|
|||||||
end
|
end
|
||||||
|
|
||||||
def scope_for_resolutions_count
|
def scope_for_resolutions_count
|
||||||
scope.reporting_events.where(
|
scope.reporting_events.joins(:conversation).select(:conversation_id).where(
|
||||||
name: :conversation_resolved,
|
name: :conversation_resolved,
|
||||||
account_id: account.id,
|
conversations: { status: :resolved }, created_at: range
|
||||||
created_at: range
|
).distinct
|
||||||
)
|
|
||||||
end
|
end
|
||||||
|
|
||||||
def scope_for_bot_resolutions_count
|
def scope_for_bot_resolutions_count
|
||||||
scope.reporting_events.where(
|
scope.reporting_events.joins(:conversation).select(:conversation_id).where(
|
||||||
name: :conversation_bot_resolved,
|
name: :conversation_bot_resolved,
|
||||||
account_id: account.id,
|
conversations: { status: :resolved }, created_at: range
|
||||||
created_at: range
|
).distinct
|
||||||
)
|
|
||||||
end
|
end
|
||||||
|
|
||||||
def scope_for_bot_handoffs_count
|
def scope_for_bot_handoffs_count
|
||||||
scope.reporting_events.joins(:conversation).select(:conversation_id).where(
|
scope.reporting_events.joins(:conversation).select(:conversation_id).where(
|
||||||
name: :conversation_bot_handoff,
|
name: :conversation_bot_handoff,
|
||||||
account_id: account.id,
|
|
||||||
created_at: range
|
created_at: range
|
||||||
).distinct
|
).distinct
|
||||||
end
|
end
|
||||||
|
|
||||||
def grouped_count
|
def grouped_count
|
||||||
# IMPORTANT: time_zone parameter affects both data grouping AND output timestamps
|
|
||||||
# It converts timestamps to the target timezone before grouping, which means
|
|
||||||
# the same event can fall into different day buckets depending on timezone
|
|
||||||
# Example: 2024-01-15 00:00 UTC becomes 2024-01-14 16:00 PST (falls on different day)
|
|
||||||
@grouped_values = object_scope.group_by_period(
|
@grouped_values = object_scope.group_by_period(
|
||||||
group_by,
|
group_by,
|
||||||
:created_at,
|
:created_at,
|
||||||
|
|||||||
@@ -1,74 +0,0 @@
|
|||||||
class YearInReviewBuilder
|
|
||||||
attr_reader :account, :user_id, :year
|
|
||||||
|
|
||||||
def initialize(account:, user_id:, year:)
|
|
||||||
@account = account
|
|
||||||
@user_id = user_id
|
|
||||||
@year = year
|
|
||||||
end
|
|
||||||
|
|
||||||
def build
|
|
||||||
{
|
|
||||||
year: year,
|
|
||||||
total_conversations: total_conversations_count,
|
|
||||||
busiest_day: busiest_day_data,
|
|
||||||
support_personality: support_personality_data
|
|
||||||
}
|
|
||||||
end
|
|
||||||
|
|
||||||
private
|
|
||||||
|
|
||||||
def year_range
|
|
||||||
@year_range ||= begin
|
|
||||||
start_time = Time.zone.local(year, 1, 1).beginning_of_day
|
|
||||||
end_time = Time.zone.local(year, 12, 31).end_of_day
|
|
||||||
start_time..end_time
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
def total_conversations_count
|
|
||||||
account.conversations
|
|
||||||
.where(assignee_id: user_id, created_at: year_range)
|
|
||||||
.count
|
|
||||||
end
|
|
||||||
|
|
||||||
def busiest_day_data
|
|
||||||
daily_counts = account.conversations
|
|
||||||
.where(assignee_id: user_id, created_at: year_range)
|
|
||||||
.group_by_day(:created_at, range: year_range, time_zone: Time.zone)
|
|
||||||
.count
|
|
||||||
|
|
||||||
return nil if daily_counts.empty?
|
|
||||||
|
|
||||||
busiest_date, count = daily_counts.max_by { |_date, cnt| cnt }
|
|
||||||
|
|
||||||
return nil if count.zero?
|
|
||||||
|
|
||||||
{
|
|
||||||
date: busiest_date.strftime('%b %d'),
|
|
||||||
count: count
|
|
||||||
}
|
|
||||||
end
|
|
||||||
|
|
||||||
def support_personality_data
|
|
||||||
response_time = average_response_time
|
|
||||||
|
|
||||||
return { avg_response_time_seconds: 0 } if response_time.nil?
|
|
||||||
|
|
||||||
{
|
|
||||||
avg_response_time_seconds: response_time.to_i
|
|
||||||
}
|
|
||||||
end
|
|
||||||
|
|
||||||
def average_response_time
|
|
||||||
avg_time = account.reporting_events
|
|
||||||
.where(
|
|
||||||
name: 'first_response',
|
|
||||||
user_id: user_id,
|
|
||||||
created_at: year_range
|
|
||||||
)
|
|
||||||
.average(:value)
|
|
||||||
|
|
||||||
avg_time&.to_f
|
|
||||||
end
|
|
||||||
end
|
|
||||||
@@ -4,7 +4,7 @@ class Api::V1::Accounts::AgentBotsController < Api::V1::Accounts::BaseController
|
|||||||
before_action :agent_bot, except: [:index, :create]
|
before_action :agent_bot, except: [:index, :create]
|
||||||
|
|
||||||
def index
|
def index
|
||||||
@agent_bots = AgentBot.accessible_to(Current.account)
|
@agent_bots = AgentBot.where(account_id: [nil, Current.account.id])
|
||||||
end
|
end
|
||||||
|
|
||||||
def show; end
|
def show; end
|
||||||
@@ -37,7 +37,7 @@ class Api::V1::Accounts::AgentBotsController < Api::V1::Accounts::BaseController
|
|||||||
private
|
private
|
||||||
|
|
||||||
def agent_bot
|
def agent_bot
|
||||||
@agent_bot = AgentBot.accessible_to(Current.account).find(params[:id]) if params[:action] == 'show'
|
@agent_bot = AgentBot.where(account_id: [nil, Current.account.id]).find(params[:id]) if params[:action] == 'show'
|
||||||
@agent_bot ||= Current.account.agent_bots.find(params[:id])
|
@agent_bot ||= Current.account.agent_bots.find(params[:id])
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|||||||
@@ -22,10 +22,9 @@ class Api::V1::Accounts::ArticlesController < Api::V1::Accounts::BaseController
|
|||||||
def edit; end
|
def edit; end
|
||||||
|
|
||||||
def create
|
def create
|
||||||
params_with_defaults = article_params
|
@article = @portal.articles.create!(article_params)
|
||||||
params_with_defaults[:status] ||= :draft
|
|
||||||
@article = @portal.articles.create!(params_with_defaults)
|
|
||||||
@article.associate_root_article(article_params[:associated_article_id])
|
@article.associate_root_article(article_params[:associated_article_id])
|
||||||
|
@article.draft!
|
||||||
render json: { error: @article.errors.messages }, status: :unprocessable_entity and return unless @article.valid?
|
render json: { error: @article.errors.messages }, status: :unprocessable_entity and return unless @article.valid?
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|||||||
@@ -1,12 +1,13 @@
|
|||||||
class Api::V1::Accounts::BulkActionsController < Api::V1::Accounts::BaseController
|
class Api::V1::Accounts::BulkActionsController < Api::V1::Accounts::BaseController
|
||||||
|
before_action :type_matches?
|
||||||
|
|
||||||
def create
|
def create
|
||||||
case normalized_type
|
if type_matches?
|
||||||
when 'Conversation'
|
::BulkActionsJob.perform_later(
|
||||||
enqueue_conversation_job
|
account: @current_account,
|
||||||
head :ok
|
user: current_user,
|
||||||
when 'Contact'
|
params: permitted_params
|
||||||
check_authorization_for_contact_action
|
)
|
||||||
enqueue_contact_job
|
|
||||||
head :ok
|
head :ok
|
||||||
else
|
else
|
||||||
render json: { success: false }, status: :unprocessable_entity
|
render json: { success: false }, status: :unprocessable_entity
|
||||||
@@ -15,54 +16,11 @@ class Api::V1::Accounts::BulkActionsController < Api::V1::Accounts::BaseControll
|
|||||||
|
|
||||||
private
|
private
|
||||||
|
|
||||||
def normalized_type
|
def type_matches?
|
||||||
params[:type].to_s.camelize
|
['Conversation'].include?(params[:type])
|
||||||
end
|
end
|
||||||
|
|
||||||
def enqueue_conversation_job
|
def permitted_params
|
||||||
::BulkActionsJob.perform_later(
|
params.permit(:type, :snoozed_until, ids: [], fields: [:status, :assignee_id, :team_id], labels: [add: [], remove: []])
|
||||||
account: @current_account,
|
|
||||||
user: current_user,
|
|
||||||
params: conversation_params
|
|
||||||
)
|
|
||||||
end
|
|
||||||
|
|
||||||
def enqueue_contact_job
|
|
||||||
Contacts::BulkActionJob.perform_later(
|
|
||||||
@current_account.id,
|
|
||||||
current_user.id,
|
|
||||||
contact_params
|
|
||||||
)
|
|
||||||
end
|
|
||||||
|
|
||||||
def delete_contact_action?
|
|
||||||
params[:action_name] == 'delete'
|
|
||||||
end
|
|
||||||
|
|
||||||
def check_authorization_for_contact_action
|
|
||||||
authorize(Contact, :destroy?) if delete_contact_action?
|
|
||||||
end
|
|
||||||
|
|
||||||
def conversation_params
|
|
||||||
# TODO: Align conversation payloads with the `{ action_name, action_attributes }`
|
|
||||||
# and then remove this method in favor of a common params method.
|
|
||||||
base = params.permit(
|
|
||||||
:snoozed_until,
|
|
||||||
fields: [:status, :assignee_id, :team_id]
|
|
||||||
)
|
|
||||||
append_common_bulk_attributes(base)
|
|
||||||
end
|
|
||||||
|
|
||||||
def contact_params
|
|
||||||
# TODO: remove this method in favor of a common params method.
|
|
||||||
# once legacy conversation payloads are migrated.
|
|
||||||
append_common_bulk_attributes({})
|
|
||||||
end
|
|
||||||
|
|
||||||
def append_common_bulk_attributes(base_params)
|
|
||||||
# NOTE: Conversation payloads historically diverged per action. Going forward we
|
|
||||||
# want all objects to share a common contract: `{ action_name, action_attributes }`
|
|
||||||
common = params.permit(:type, :action_name, ids: [], labels: [add: [], remove: []])
|
|
||||||
base_params.merge(common)
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -17,8 +17,8 @@ class Api::V1::Accounts::ContactsController < Api::V1::Accounts::BaseController
|
|||||||
before_action :set_include_contact_inboxes, only: [:index, :active, :search, :filter, :show, :update]
|
before_action :set_include_contact_inboxes, only: [:index, :active, :search, :filter, :show, :update]
|
||||||
|
|
||||||
def index
|
def index
|
||||||
|
@contacts_count = resolved_contacts.count
|
||||||
@contacts = fetch_contacts(resolved_contacts)
|
@contacts = fetch_contacts(resolved_contacts)
|
||||||
@contacts_count = @contacts.total_count
|
|
||||||
end
|
end
|
||||||
|
|
||||||
def search
|
def search
|
||||||
@@ -29,8 +29,8 @@ class Api::V1::Accounts::ContactsController < Api::V1::Accounts::BaseController
|
|||||||
OR contacts.additional_attributes->>\'company_name\' ILIKE :search',
|
OR contacts.additional_attributes->>\'company_name\' ILIKE :search',
|
||||||
search: "%#{params[:q].strip}%"
|
search: "%#{params[:q].strip}%"
|
||||||
)
|
)
|
||||||
|
@contacts_count = contacts.count
|
||||||
@contacts = fetch_contacts(contacts)
|
@contacts = fetch_contacts(contacts)
|
||||||
@contacts_count = @contacts.total_count
|
|
||||||
end
|
end
|
||||||
|
|
||||||
def import
|
def import
|
||||||
@@ -55,8 +55,8 @@ class Api::V1::Accounts::ContactsController < Api::V1::Accounts::BaseController
|
|||||||
def active
|
def active
|
||||||
contacts = Current.account.contacts.where(id: ::OnlineStatusTracker
|
contacts = Current.account.contacts.where(id: ::OnlineStatusTracker
|
||||||
.get_available_contact_ids(Current.account.id))
|
.get_available_contact_ids(Current.account.id))
|
||||||
|
@contacts_count = contacts.count
|
||||||
@contacts = fetch_contacts(contacts)
|
@contacts = fetch_contacts(contacts)
|
||||||
@contacts_count = @contacts.total_count
|
|
||||||
end
|
end
|
||||||
|
|
||||||
def show; end
|
def show; end
|
||||||
@@ -133,14 +133,13 @@ class Api::V1::Accounts::ContactsController < Api::V1::Accounts::BaseController
|
|||||||
end
|
end
|
||||||
|
|
||||||
def fetch_contacts(contacts)
|
def fetch_contacts(contacts)
|
||||||
# Build includes hash to avoid separate query when contact_inboxes are needed
|
contacts_with_avatar = filtrate(contacts)
|
||||||
includes_hash = { avatar_attachment: [:blob] }
|
.includes([{ avatar_attachment: [:blob] }])
|
||||||
includes_hash[:contact_inboxes] = { inbox: :channel } if @include_contact_inboxes
|
.page(@current_page).per(RESULTS_PER_PAGE)
|
||||||
|
|
||||||
filtrate(contacts)
|
return contacts_with_avatar.includes([{ contact_inboxes: [:inbox] }]) if @include_contact_inboxes
|
||||||
.includes(includes_hash)
|
|
||||||
.page(@current_page)
|
contacts_with_avatar
|
||||||
.per(RESULTS_PER_PAGE)
|
|
||||||
end
|
end
|
||||||
|
|
||||||
def build_contact_inbox
|
def build_contact_inbox
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
class Api::V1::Accounts::Conversations::AssignmentsController < Api::V1::Accounts::Conversations::BaseController
|
class Api::V1::Accounts::Conversations::AssignmentsController < Api::V1::Accounts::Conversations::BaseController
|
||||||
# assigns agent/team to a conversation
|
# assigns agent/team to a conversation
|
||||||
def create
|
def create
|
||||||
if params.key?(:assignee_id) || agent_bot_assignment?
|
if params.key?(:assignee_id)
|
||||||
set_agent
|
set_agent
|
||||||
elsif params.key?(:team_id)
|
elsif params.key?(:team_id)
|
||||||
set_team
|
set_team
|
||||||
@@ -13,23 +13,17 @@ class Api::V1::Accounts::Conversations::AssignmentsController < Api::V1::Account
|
|||||||
private
|
private
|
||||||
|
|
||||||
def set_agent
|
def set_agent
|
||||||
resource = Conversations::AssignmentService.new(
|
@agent = Current.account.users.find_by(id: params[:assignee_id])
|
||||||
conversation: @conversation,
|
@conversation.assignee = @agent
|
||||||
assignee_id: params[:assignee_id],
|
@conversation.save!
|
||||||
assignee_type: params[:assignee_type]
|
render_agent
|
||||||
).perform
|
|
||||||
|
|
||||||
render_agent(resource)
|
|
||||||
end
|
end
|
||||||
|
|
||||||
def render_agent(resource)
|
def render_agent
|
||||||
case resource
|
if @agent.nil?
|
||||||
when User
|
|
||||||
render partial: 'api/v1/models/agent', formats: [:json], locals: { resource: resource }
|
|
||||||
when AgentBot
|
|
||||||
render partial: 'api/v1/models/agent_bot_slim', formats: [:json], locals: { resource: resource }
|
|
||||||
else
|
|
||||||
render json: nil
|
render json: nil
|
||||||
|
else
|
||||||
|
render partial: 'api/v1/models/agent', formats: [:json], locals: { resource: @agent }
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
@@ -38,8 +32,4 @@ class Api::V1::Accounts::Conversations::AssignmentsController < Api::V1::Account
|
|||||||
@conversation.update!(team: @team)
|
@conversation.update!(team: @team)
|
||||||
render json: @team
|
render json: @team
|
||||||
end
|
end
|
||||||
|
|
||||||
def agent_bot_assignment?
|
|
||||||
params[:assignee_type].to_s == 'AgentBot'
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -5,6 +5,6 @@ class Api::V1::Accounts::Conversations::BaseController < Api::V1::Accounts::Base
|
|||||||
|
|
||||||
def conversation
|
def conversation
|
||||||
@conversation ||= Current.account.conversations.find_by!(display_id: params[:conversation_id])
|
@conversation ||= Current.account.conversations.find_by!(display_id: params[:conversation_id])
|
||||||
authorize @conversation, :show?
|
authorize @conversation.inbox, :show?
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -160,7 +160,7 @@ class Api::V1::Accounts::ConversationsController < Api::V1::Accounts::BaseContro
|
|||||||
|
|
||||||
def conversation
|
def conversation
|
||||||
@conversation ||= Current.account.conversations.find_by!(display_id: params[:id])
|
@conversation ||= Current.account.conversations.find_by!(display_id: params[:id])
|
||||||
authorize @conversation, :show?
|
authorize @conversation.inbox, :show?
|
||||||
end
|
end
|
||||||
|
|
||||||
def inbox
|
def inbox
|
||||||
|
|||||||
@@ -1,160 +0,0 @@
|
|||||||
class Api::V1::Accounts::InboxCsatTemplatesController < Api::V1::Accounts::BaseController
|
|
||||||
DEFAULT_BUTTON_TEXT = 'Please rate us'.freeze
|
|
||||||
DEFAULT_LANGUAGE = 'en'.freeze
|
|
||||||
|
|
||||||
before_action :fetch_inbox
|
|
||||||
before_action :validate_whatsapp_channel
|
|
||||||
|
|
||||||
def show
|
|
||||||
template = @inbox.csat_config&.dig('template')
|
|
||||||
return render json: { template_exists: false } unless template
|
|
||||||
|
|
||||||
template_name = template['name'] || Whatsapp::CsatTemplateNameService.csat_template_name(@inbox.id)
|
|
||||||
status_result = @inbox.channel.provider_service.get_template_status(template_name)
|
|
||||||
|
|
||||||
render_template_status_response(status_result, template_name)
|
|
||||||
rescue StandardError => e
|
|
||||||
Rails.logger.error "Error fetching CSAT template status: #{e.message}"
|
|
||||||
render json: { error: e.message }, status: :internal_server_error
|
|
||||||
end
|
|
||||||
|
|
||||||
def create
|
|
||||||
template_params = extract_template_params
|
|
||||||
return render_missing_message_error if template_params[:message].blank?
|
|
||||||
|
|
||||||
# Delete existing template even though we are using a new one.
|
|
||||||
# We don't want too many templates in the business portfolio, but the create operation shouldn't fail if deletion fails.
|
|
||||||
delete_existing_template_if_needed
|
|
||||||
|
|
||||||
result = create_template_via_provider(template_params)
|
|
||||||
render_template_creation_result(result)
|
|
||||||
rescue ActionController::ParameterMissing
|
|
||||||
render json: { error: 'Template parameters are required' }, status: :unprocessable_entity
|
|
||||||
rescue StandardError => e
|
|
||||||
Rails.logger.error "Error creating CSAT template: #{e.message}"
|
|
||||||
render json: { error: 'Template creation failed' }, status: :internal_server_error
|
|
||||||
end
|
|
||||||
|
|
||||||
private
|
|
||||||
|
|
||||||
def fetch_inbox
|
|
||||||
@inbox = Current.account.inboxes.find(params[:inbox_id])
|
|
||||||
authorize @inbox, :show?
|
|
||||||
end
|
|
||||||
|
|
||||||
def validate_whatsapp_channel
|
|
||||||
return if @inbox.whatsapp?
|
|
||||||
|
|
||||||
render json: { error: 'CSAT template operations only available for WhatsApp channels' },
|
|
||||||
status: :bad_request
|
|
||||||
end
|
|
||||||
|
|
||||||
def extract_template_params
|
|
||||||
params.require(:template).permit(:message, :button_text, :language)
|
|
||||||
end
|
|
||||||
|
|
||||||
def render_missing_message_error
|
|
||||||
render json: { error: 'Message is required' }, status: :unprocessable_entity
|
|
||||||
end
|
|
||||||
|
|
||||||
def create_template_via_provider(template_params)
|
|
||||||
template_config = {
|
|
||||||
message: template_params[:message],
|
|
||||||
button_text: template_params[:button_text] || DEFAULT_BUTTON_TEXT,
|
|
||||||
base_url: ENV.fetch('FRONTEND_URL', 'http://localhost:3000'),
|
|
||||||
language: template_params[:language] || DEFAULT_LANGUAGE,
|
|
||||||
template_name: Whatsapp::CsatTemplateNameService.csat_template_name(@inbox.id)
|
|
||||||
}
|
|
||||||
|
|
||||||
@inbox.channel.provider_service.create_csat_template(template_config)
|
|
||||||
end
|
|
||||||
|
|
||||||
def render_template_creation_result(result)
|
|
||||||
if result[:success]
|
|
||||||
render_successful_template_creation(result)
|
|
||||||
else
|
|
||||||
render_failed_template_creation(result)
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
def render_successful_template_creation(result)
|
|
||||||
render json: {
|
|
||||||
template: {
|
|
||||||
name: result[:template_name],
|
|
||||||
template_id: result[:template_id],
|
|
||||||
status: 'PENDING',
|
|
||||||
language: result[:language] || DEFAULT_LANGUAGE
|
|
||||||
}
|
|
||||||
}, status: :created
|
|
||||||
end
|
|
||||||
|
|
||||||
def render_failed_template_creation(result)
|
|
||||||
whatsapp_error = parse_whatsapp_error(result[:response_body])
|
|
||||||
error_message = whatsapp_error[:user_message] || result[:error]
|
|
||||||
|
|
||||||
render json: {
|
|
||||||
error: error_message,
|
|
||||||
details: whatsapp_error[:technical_details]
|
|
||||||
}, status: :unprocessable_entity
|
|
||||||
end
|
|
||||||
|
|
||||||
def delete_existing_template_if_needed
|
|
||||||
template = @inbox.csat_config&.dig('template')
|
|
||||||
return true if template.blank?
|
|
||||||
|
|
||||||
template_name = template['name']
|
|
||||||
return true if template_name.blank?
|
|
||||||
|
|
||||||
template_status = @inbox.channel.provider_service.get_template_status(template_name)
|
|
||||||
return true unless template_status[:success]
|
|
||||||
|
|
||||||
deletion_result = @inbox.channel.provider_service.delete_csat_template(template_name)
|
|
||||||
if deletion_result[:success]
|
|
||||||
Rails.logger.info "Deleted existing CSAT template '#{template_name}' for inbox #{@inbox.id}"
|
|
||||||
true
|
|
||||||
else
|
|
||||||
Rails.logger.warn "Failed to delete existing CSAT template '#{template_name}' for inbox #{@inbox.id}: #{deletion_result[:response_body]}"
|
|
||||||
false
|
|
||||||
end
|
|
||||||
rescue StandardError => e
|
|
||||||
Rails.logger.error "Error during template deletion for inbox #{@inbox.id}: #{e.message}"
|
|
||||||
false
|
|
||||||
end
|
|
||||||
|
|
||||||
def render_template_status_response(status_result, template_name)
|
|
||||||
if status_result[:success]
|
|
||||||
render json: {
|
|
||||||
template_exists: true,
|
|
||||||
template_name: template_name,
|
|
||||||
status: status_result[:template][:status],
|
|
||||||
template_id: status_result[:template][:id]
|
|
||||||
}
|
|
||||||
else
|
|
||||||
render json: {
|
|
||||||
template_exists: false,
|
|
||||||
error: 'Template not found'
|
|
||||||
}
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
def parse_whatsapp_error(response_body)
|
|
||||||
return { user_message: nil, technical_details: nil } if response_body.blank?
|
|
||||||
|
|
||||||
begin
|
|
||||||
error_data = JSON.parse(response_body)
|
|
||||||
whatsapp_error = error_data['error'] || {}
|
|
||||||
|
|
||||||
user_message = whatsapp_error['error_user_msg'] || whatsapp_error['message']
|
|
||||||
technical_details = {
|
|
||||||
code: whatsapp_error['code'],
|
|
||||||
subcode: whatsapp_error['error_subcode'],
|
|
||||||
type: whatsapp_error['type'],
|
|
||||||
title: whatsapp_error['error_user_title']
|
|
||||||
}.compact
|
|
||||||
|
|
||||||
{ user_message: user_message, technical_details: technical_details }
|
|
||||||
rescue JSON::ParserError
|
|
||||||
{ user_message: nil, technical_details: response_body }
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
|
||||||
@@ -4,8 +4,7 @@ class Api::V1::Accounts::InboxesController < Api::V1::Accounts::BaseController
|
|||||||
before_action :fetch_agent_bot, only: [:set_agent_bot]
|
before_action :fetch_agent_bot, only: [:set_agent_bot]
|
||||||
before_action :validate_limit, only: [:create]
|
before_action :validate_limit, only: [:create]
|
||||||
# we are already handling the authorization in fetch inbox
|
# we are already handling the authorization in fetch inbox
|
||||||
before_action :check_authorization, except: [:show, :health]
|
before_action :check_authorization, except: [:show]
|
||||||
before_action :validate_whatsapp_cloud_channel, only: [:health]
|
|
||||||
|
|
||||||
def index
|
def index
|
||||||
@inboxes = policy_scope(Current.account.inboxes.order_by_name.includes(:channel, { avatar_attachment: [:blob] }))
|
@inboxes = policy_scope(Current.account.inboxes.order_by_name.includes(:channel, { avatar_attachment: [:blob] }))
|
||||||
@@ -71,22 +70,16 @@ class Api::V1::Accounts::InboxesController < Api::V1::Accounts::BaseController
|
|||||||
end
|
end
|
||||||
|
|
||||||
def sync_templates
|
def sync_templates
|
||||||
return render status: :unprocessable_entity, json: { error: 'Template sync is only available for WhatsApp channels' } unless whatsapp_channel?
|
unless @inbox.channel.is_a?(Channel::Whatsapp)
|
||||||
|
return render status: :unprocessable_entity, json: { error: 'Template sync is only available for WhatsApp channels' }
|
||||||
|
end
|
||||||
|
|
||||||
trigger_template_sync
|
Channels::Whatsapp::TemplatesSyncJob.perform_later(@inbox.channel)
|
||||||
render status: :ok, json: { message: 'Template sync initiated successfully' }
|
render status: :ok, json: { message: 'Template sync initiated successfully' }
|
||||||
rescue StandardError => e
|
rescue StandardError => e
|
||||||
render status: :internal_server_error, json: { error: e.message }
|
render status: :internal_server_error, json: { error: e.message }
|
||||||
end
|
end
|
||||||
|
|
||||||
def health
|
|
||||||
health_data = Whatsapp::HealthService.new(@inbox.channel).fetch_health_status
|
|
||||||
render json: health_data
|
|
||||||
rescue StandardError => e
|
|
||||||
Rails.logger.error "[INBOX HEALTH] Error fetching health data: #{e.message}"
|
|
||||||
render json: { error: e.message }, status: :unprocessable_entity
|
|
||||||
end
|
|
||||||
|
|
||||||
private
|
private
|
||||||
|
|
||||||
def fetch_inbox
|
def fetch_inbox
|
||||||
@@ -98,12 +91,6 @@ class Api::V1::Accounts::InboxesController < Api::V1::Accounts::BaseController
|
|||||||
@agent_bot = AgentBot.find(params[:agent_bot]) if params[:agent_bot]
|
@agent_bot = AgentBot.find(params[:agent_bot]) if params[:agent_bot]
|
||||||
end
|
end
|
||||||
|
|
||||||
def validate_whatsapp_cloud_channel
|
|
||||||
return if @inbox.channel.is_a?(Channel::Whatsapp) && @inbox.channel.provider == 'whatsapp_cloud'
|
|
||||||
|
|
||||||
render json: { error: 'Health data only available for WhatsApp Cloud API channels' }, status: :bad_request
|
|
||||||
end
|
|
||||||
|
|
||||||
def create_channel
|
def create_channel
|
||||||
return unless allowed_channel_types.include?(permitted_params[:channel][:type])
|
return unless allowed_channel_types.include?(permitted_params[:channel][:type])
|
||||||
|
|
||||||
@@ -152,37 +139,31 @@ class Api::V1::Accounts::InboxesController < Api::V1::Accounts::BaseController
|
|||||||
end
|
end
|
||||||
|
|
||||||
def format_csat_config(config)
|
def format_csat_config(config)
|
||||||
formatted = {
|
{
|
||||||
'display_type' => config['display_type'] || 'emoji',
|
display_type: config['display_type'] || 'emoji',
|
||||||
'message' => config['message'] || '',
|
message: config['message'] || '',
|
||||||
:survey_rules => {
|
survey_rules: {
|
||||||
'operator' => config.dig('survey_rules', 'operator') || 'contains',
|
operator: config.dig('survey_rules', 'operator') || 'contains',
|
||||||
'values' => config.dig('survey_rules', 'values') || []
|
values: config.dig('survey_rules', 'values') || []
|
||||||
},
|
}
|
||||||
'button_text' => config['button_text'] || 'Please rate us',
|
|
||||||
'language' => config['language'] || 'en'
|
|
||||||
}
|
}
|
||||||
format_template_config(config, formatted)
|
|
||||||
formatted
|
|
||||||
end
|
|
||||||
|
|
||||||
def format_template_config(config, formatted)
|
|
||||||
formatted['template'] = config['template'] if config['template'].present?
|
|
||||||
end
|
end
|
||||||
|
|
||||||
def inbox_attributes
|
def inbox_attributes
|
||||||
[:name, :avatar, :greeting_enabled, :greeting_message, :enable_email_collect, :csat_survey_enabled,
|
[:name, :avatar, :greeting_enabled, :greeting_message, :enable_email_collect, :csat_survey_enabled,
|
||||||
:enable_auto_assignment, :working_hours_enabled, :out_of_office_message, :timezone, :allow_messages_after_resolved,
|
:enable_auto_assignment, :working_hours_enabled, :out_of_office_message, :timezone, :allow_messages_after_resolved,
|
||||||
:lock_to_single_conversation, :portal_id, :sender_name_type, :business_name,
|
:lock_to_single_conversation, :portal_id, :sender_name_type, :business_name,
|
||||||
{ csat_config: [:display_type, :message, :button_text, :language,
|
{ csat_config: [:display_type, :message, { survey_rules: [:operator, { values: [] }] }] }]
|
||||||
{ survey_rules: [:operator, { values: [] }],
|
|
||||||
template: [:name, :template_id, :created_at, :language] }] }]
|
|
||||||
end
|
end
|
||||||
|
|
||||||
def permitted_params(channel_attributes = [])
|
def permitted_params(channel_attributes = [])
|
||||||
# We will remove this line after fixing https://linear.app/chatwoot/issue/CW-1567/null-value-passed-as-null-string-to-backend
|
# We will remove this line after fixing https://linear.app/chatwoot/issue/CW-1567/null-value-passed-as-null-string-to-backend
|
||||||
params.each { |k, v| params[k] = params[k] == 'null' ? nil : v }
|
params.each { |k, v| params[k] = params[k] == 'null' ? nil : v }
|
||||||
params.permit(*inbox_attributes, channel: [:type, *channel_attributes])
|
|
||||||
|
params.permit(
|
||||||
|
*inbox_attributes,
|
||||||
|
channel: [:type, *channel_attributes]
|
||||||
|
)
|
||||||
end
|
end
|
||||||
|
|
||||||
def channel_type_from_params
|
def channel_type_from_params
|
||||||
@@ -198,18 +179,10 @@ class Api::V1::Accounts::InboxesController < Api::V1::Accounts::BaseController
|
|||||||
end
|
end
|
||||||
|
|
||||||
def get_channel_attributes(channel_type)
|
def get_channel_attributes(channel_type)
|
||||||
channel_type.constantize.const_defined?(:EDITABLE_ATTRS) ? channel_type.constantize::EDITABLE_ATTRS.presence : []
|
if channel_type.constantize.const_defined?(:EDITABLE_ATTRS)
|
||||||
end
|
channel_type.constantize::EDITABLE_ATTRS.presence
|
||||||
|
else
|
||||||
def whatsapp_channel?
|
[]
|
||||||
@inbox.whatsapp? || (@inbox.twilio? && @inbox.channel.whatsapp?)
|
|
||||||
end
|
|
||||||
|
|
||||||
def trigger_template_sync
|
|
||||||
if @inbox.whatsapp?
|
|
||||||
Channels::Whatsapp::TemplatesSyncJob.perform_later(@inbox.channel)
|
|
||||||
elsif @inbox.twilio? && @inbox.channel.whatsapp?
|
|
||||||
Channels::Twilio::TemplatesSyncJob.perform_later(@inbox.channel)
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -22,7 +22,7 @@ class Api::V1::Accounts::Integrations::DyteController < Api::V1::Accounts::BaseC
|
|||||||
private
|
private
|
||||||
|
|
||||||
def authorize_request
|
def authorize_request
|
||||||
authorize @conversation, :show?
|
authorize @conversation.inbox, :show?
|
||||||
end
|
end
|
||||||
|
|
||||||
def render_response(response)
|
def render_response(response)
|
||||||
|
|||||||
@@ -85,8 +85,7 @@ class Api::V1::Accounts::PortalsController < Api::V1::Accounts::BaseController
|
|||||||
|
|
||||||
def live_chat_widget_params
|
def live_chat_widget_params
|
||||||
permitted_params = params.permit(:inbox_id)
|
permitted_params = params.permit(:inbox_id)
|
||||||
return {} unless permitted_params.key?(:inbox_id)
|
return {} if permitted_params[:inbox_id].blank?
|
||||||
return { channel_web_widget_id: nil } if permitted_params[:inbox_id].blank?
|
|
||||||
|
|
||||||
inbox = Inbox.find(permitted_params[:inbox_id])
|
inbox = Inbox.find(permitted_params[:inbox_id])
|
||||||
return {} unless inbox.web_widget?
|
return {} unless inbox.web_widget?
|
||||||
|
|||||||
@@ -1,15 +0,0 @@
|
|||||||
class Api::V1::Accounts::Tiktok::AuthorizationsController < Api::V1::Accounts::OauthAuthorizationController
|
|
||||||
include Tiktok::IntegrationHelper
|
|
||||||
|
|
||||||
def create
|
|
||||||
redirect_url = Tiktok::AuthClient.authorize_url(
|
|
||||||
state: generate_tiktok_token(Current.account.id)
|
|
||||||
)
|
|
||||||
|
|
||||||
if redirect_url
|
|
||||||
render json: { success: true, url: redirect_url }
|
|
||||||
else
|
|
||||||
render json: { success: false }, status: :unprocessable_entity
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
|
||||||
@@ -23,7 +23,7 @@ class Api::V1::Accounts::WebhooksController < Api::V1::Accounts::BaseController
|
|||||||
private
|
private
|
||||||
|
|
||||||
def webhook_params
|
def webhook_params
|
||||||
params.require(:webhook).permit(:inbox_id, :name, :url, subscriptions: [])
|
params.require(:webhook).permit(:inbox_id, :url, subscriptions: [])
|
||||||
end
|
end
|
||||||
|
|
||||||
def fetch_webhook
|
def fetch_webhook
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
class Api::V1::Accounts::Whatsapp::AuthorizationsController < Api::V1::Accounts::BaseController
|
class Api::V1::Accounts::Whatsapp::AuthorizationsController < Api::V1::Accounts::BaseController
|
||||||
|
before_action :validate_feature_enabled!
|
||||||
before_action :fetch_and_validate_inbox, if: -> { params[:inbox_id].present? }
|
before_action :fetch_and_validate_inbox, if: -> { params[:inbox_id].present? }
|
||||||
|
|
||||||
# POST /api/v1/accounts/:account_id/whatsapp/authorization
|
# POST /api/v1/accounts/:account_id/whatsapp/authorization
|
||||||
@@ -64,6 +65,15 @@ class Api::V1::Accounts::Whatsapp::AuthorizationsController < Api::V1::Accounts:
|
|||||||
}, status: :unprocessable_entity
|
}, status: :unprocessable_entity
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def validate_feature_enabled!
|
||||||
|
return if Current.account.feature_whatsapp_embedded_signup?
|
||||||
|
|
||||||
|
render json: {
|
||||||
|
success: false,
|
||||||
|
error: 'WhatsApp embedded signup is not enabled for this account'
|
||||||
|
}, status: :forbidden
|
||||||
|
end
|
||||||
|
|
||||||
def validate_embedded_signup_params!
|
def validate_embedded_signup_params!
|
||||||
missing_params = []
|
missing_params = []
|
||||||
missing_params << 'code' if params[:code].blank?
|
missing_params << 'code' if params[:code].blank?
|
||||||
|
|||||||
@@ -92,8 +92,7 @@ class Api::V1::AccountsController < Api::BaseController
|
|||||||
end
|
end
|
||||||
|
|
||||||
def settings_params
|
def settings_params
|
||||||
params.permit(:auto_resolve_after, :auto_resolve_message, :auto_resolve_ignore_waiting, :audio_transcriptions, :auto_resolve_label,
|
params.permit(:auto_resolve_after, :auto_resolve_message, :auto_resolve_ignore_waiting, :audio_transcriptions, :auto_resolve_label)
|
||||||
conversation_required_attributes: [])
|
|
||||||
end
|
end
|
||||||
|
|
||||||
def check_signup_enabled
|
def check_signup_enabled
|
||||||
|
|||||||
@@ -1,68 +0,0 @@
|
|||||||
class Api::V1::Profile::MfaController < Api::BaseController
|
|
||||||
before_action :check_mfa_feature_available
|
|
||||||
before_action :check_mfa_enabled, only: [:destroy, :backup_codes]
|
|
||||||
before_action :check_mfa_disabled, only: [:create, :verify]
|
|
||||||
before_action :validate_otp, only: [:verify, :backup_codes, :destroy]
|
|
||||||
before_action :validate_password, only: [:destroy]
|
|
||||||
|
|
||||||
def show; end
|
|
||||||
|
|
||||||
def create
|
|
||||||
mfa_service.enable_two_factor!
|
|
||||||
end
|
|
||||||
|
|
||||||
def verify
|
|
||||||
@backup_codes = mfa_service.verify_and_activate!
|
|
||||||
end
|
|
||||||
|
|
||||||
def destroy
|
|
||||||
mfa_service.disable_two_factor!
|
|
||||||
end
|
|
||||||
|
|
||||||
def backup_codes
|
|
||||||
@backup_codes = mfa_service.generate_backup_codes!
|
|
||||||
end
|
|
||||||
|
|
||||||
private
|
|
||||||
|
|
||||||
def mfa_service
|
|
||||||
@mfa_service ||= Mfa::ManagementService.new(user: current_user)
|
|
||||||
end
|
|
||||||
|
|
||||||
def check_mfa_enabled
|
|
||||||
render_could_not_create_error(I18n.t('errors.mfa.not_enabled')) unless current_user.mfa_enabled?
|
|
||||||
end
|
|
||||||
|
|
||||||
def check_mfa_feature_available
|
|
||||||
return if Chatwoot.mfa_enabled?
|
|
||||||
|
|
||||||
render json: {
|
|
||||||
error: I18n.t('errors.mfa.feature_unavailable')
|
|
||||||
}, status: :forbidden
|
|
||||||
end
|
|
||||||
|
|
||||||
def check_mfa_disabled
|
|
||||||
render_could_not_create_error(I18n.t('errors.mfa.already_enabled')) if current_user.mfa_enabled?
|
|
||||||
end
|
|
||||||
|
|
||||||
def validate_otp
|
|
||||||
authenticated = Mfa::AuthenticationService.new(
|
|
||||||
user: current_user,
|
|
||||||
otp_code: mfa_params[:otp_code]
|
|
||||||
).authenticate
|
|
||||||
|
|
||||||
return if authenticated
|
|
||||||
|
|
||||||
render_could_not_create_error(I18n.t('errors.mfa.invalid_code'))
|
|
||||||
end
|
|
||||||
|
|
||||||
def validate_password
|
|
||||||
return if current_user.valid_password?(mfa_params[:password])
|
|
||||||
|
|
||||||
render_could_not_create_error(I18n.t('errors.mfa.invalid_credentials'))
|
|
||||||
end
|
|
||||||
|
|
||||||
def mfa_params
|
|
||||||
params.permit(:otp_code, :password)
|
|
||||||
end
|
|
||||||
end
|
|
||||||
@@ -9,13 +9,7 @@ class Api::V1::Widget::ConfigsController < Api::V1::Widget::BaseController
|
|||||||
private
|
private
|
||||||
|
|
||||||
def set_global_config
|
def set_global_config
|
||||||
@global_config = GlobalConfig.get(
|
@global_config = GlobalConfig.get('LOGO_THUMBNAIL', 'BRAND_NAME', 'WIDGET_BRAND_URL')
|
||||||
'LOGO_THUMBNAIL',
|
|
||||||
'BRAND_NAME',
|
|
||||||
'WIDGET_BRAND_URL',
|
|
||||||
'MAXIMUM_FILE_UPLOAD_SIZE',
|
|
||||||
'INSTALLATION_NAME'
|
|
||||||
)
|
|
||||||
end
|
end
|
||||||
|
|
||||||
def set_contact
|
def set_contact
|
||||||
|
|||||||
@@ -1,26 +0,0 @@
|
|||||||
class Api::V2::Accounts::YearInReviewsController < Api::V1::Accounts::BaseController
|
|
||||||
def show
|
|
||||||
year = params[:year] || 2025
|
|
||||||
cache_key = "year_in_review_#{Current.account.id}_#{year}"
|
|
||||||
|
|
||||||
cached_data = Current.user.ui_settings&.dig(cache_key)
|
|
||||||
|
|
||||||
if cached_data.present?
|
|
||||||
render json: cached_data
|
|
||||||
else
|
|
||||||
builder = YearInReviewBuilder.new(
|
|
||||||
account: Current.account,
|
|
||||||
user_id: Current.user.id,
|
|
||||||
year: year
|
|
||||||
)
|
|
||||||
|
|
||||||
data = builder.build
|
|
||||||
|
|
||||||
ui_settings = Current.user.ui_settings || {}
|
|
||||||
ui_settings[cache_key] = data
|
|
||||||
Current.user.update(ui_settings: ui_settings)
|
|
||||||
|
|
||||||
render json: data
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
|
||||||
@@ -14,7 +14,6 @@ module AccessTokenAuthHelper
|
|||||||
ensure_access_token
|
ensure_access_token
|
||||||
render_unauthorized('Invalid Access Token') && return if @access_token.blank?
|
render_unauthorized('Invalid Access Token') && return if @access_token.blank?
|
||||||
|
|
||||||
# NOTE: This ensures that current_user is set and available for the rest of the controller actions
|
|
||||||
@resource = @access_token.owner
|
@resource = @access_token.owner
|
||||||
Current.user = @resource if allowed_current_user_type?(@resource)
|
Current.user = @resource if allowed_current_user_type?(@resource)
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -25,9 +25,6 @@ module EnsureCurrentAccountHelper
|
|||||||
end
|
end
|
||||||
|
|
||||||
def account_accessible_for_bot?(account)
|
def account_accessible_for_bot?(account)
|
||||||
return if @resource.account_id == account.id
|
render_unauthorized('Bot is not authorized to access this account') unless @resource.agent_bot_inboxes.find_by(account_id: account.id)
|
||||||
return if @resource.agent_bot_inboxes.find_by(account_id: account.id)
|
|
||||||
|
|
||||||
render_unauthorized('Bot is not authorized to access this account')
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -4,28 +4,17 @@ module SwitchLocale
|
|||||||
private
|
private
|
||||||
|
|
||||||
def switch_locale(&)
|
def switch_locale(&)
|
||||||
# Priority is for locale set in query string (mostly for widget/from js sdk)
|
# priority is for locale set in query string (mostly for widget/from js sdk)
|
||||||
locale ||= params[:locale]
|
locale ||= params[:locale]
|
||||||
|
|
||||||
# Use the user's locale if available
|
|
||||||
locale ||= locale_from_user
|
|
||||||
|
|
||||||
# Use the locale from a custom domain if applicable
|
|
||||||
locale ||= locale_from_custom_domain
|
locale ||= locale_from_custom_domain
|
||||||
|
|
||||||
# if locale is not set in account, let's use DEFAULT_LOCALE env variable
|
# if locale is not set in account, let's use DEFAULT_LOCALE env variable
|
||||||
locale ||= ENV.fetch('DEFAULT_LOCALE', nil)
|
locale ||= ENV.fetch('DEFAULT_LOCALE', nil)
|
||||||
|
|
||||||
set_locale(locale, &)
|
set_locale(locale, &)
|
||||||
end
|
end
|
||||||
|
|
||||||
def switch_locale_using_account_locale(&)
|
def switch_locale_using_account_locale(&)
|
||||||
# Get the locale from the user first
|
locale = locale_from_account(@current_account)
|
||||||
locale = locale_from_user
|
|
||||||
|
|
||||||
# Fallback to the account's locale if the user's locale is not set
|
|
||||||
locale ||= locale_from_account(@current_account)
|
|
||||||
|
|
||||||
set_locale(locale, &)
|
set_locale(locale, &)
|
||||||
end
|
end
|
||||||
|
|
||||||
@@ -43,12 +32,6 @@ module SwitchLocale
|
|||||||
@portal.default_locale
|
@portal.default_locale
|
||||||
end
|
end
|
||||||
|
|
||||||
def locale_from_user
|
|
||||||
return unless @user
|
|
||||||
|
|
||||||
@user.ui_settings&.dig('locale')
|
|
||||||
end
|
|
||||||
|
|
||||||
def set_locale(locale, &)
|
def set_locale(locale, &)
|
||||||
safe_locale = validate_and_get_locale(locale)
|
safe_locale = validate_and_get_locale(locale)
|
||||||
# Ensure locale won't bleed into other requests
|
# Ensure locale won't bleed into other requests
|
||||||
|
|||||||
@@ -1,31 +1,6 @@
|
|||||||
class DashboardController < ActionController::Base
|
class DashboardController < ActionController::Base
|
||||||
include SwitchLocale
|
include SwitchLocale
|
||||||
|
|
||||||
GLOBAL_CONFIG_KEYS = %w[
|
|
||||||
LOGO
|
|
||||||
LOGO_DARK
|
|
||||||
LOGO_THUMBNAIL
|
|
||||||
INSTALLATION_NAME
|
|
||||||
WIDGET_BRAND_URL
|
|
||||||
TERMS_URL
|
|
||||||
BRAND_URL
|
|
||||||
BRAND_NAME
|
|
||||||
PRIVACY_URL
|
|
||||||
DISPLAY_MANIFEST
|
|
||||||
CREATE_NEW_ACCOUNT_FROM_DASHBOARD
|
|
||||||
CHATWOOT_INBOX_TOKEN
|
|
||||||
API_CHANNEL_NAME
|
|
||||||
API_CHANNEL_THUMBNAIL
|
|
||||||
ANALYTICS_TOKEN
|
|
||||||
DIRECT_UPLOADS_ENABLED
|
|
||||||
MAXIMUM_FILE_UPLOAD_SIZE
|
|
||||||
HCAPTCHA_SITE_KEY
|
|
||||||
LOGOUT_REDIRECT_LINK
|
|
||||||
DISABLE_USER_PROFILE_UPDATE
|
|
||||||
DEPLOYMENT_ENV
|
|
||||||
INSTALLATION_PRICING_PLAN
|
|
||||||
].freeze
|
|
||||||
|
|
||||||
before_action :set_application_pack
|
before_action :set_application_pack
|
||||||
before_action :set_global_config
|
before_action :set_global_config
|
||||||
before_action :set_dashboard_scripts
|
before_action :set_dashboard_scripts
|
||||||
@@ -44,7 +19,25 @@ class DashboardController < ActionController::Base
|
|||||||
end
|
end
|
||||||
|
|
||||||
def set_global_config
|
def set_global_config
|
||||||
@global_config = GlobalConfig.get(*GLOBAL_CONFIG_KEYS).merge(app_config)
|
@global_config = GlobalConfig.get(
|
||||||
|
'LOGO', 'LOGO_DARK', 'LOGO_THUMBNAIL',
|
||||||
|
'INSTALLATION_NAME',
|
||||||
|
'WIDGET_BRAND_URL', 'TERMS_URL',
|
||||||
|
'BRAND_URL', 'BRAND_NAME',
|
||||||
|
'PRIVACY_URL',
|
||||||
|
'DISPLAY_MANIFEST',
|
||||||
|
'CREATE_NEW_ACCOUNT_FROM_DASHBOARD',
|
||||||
|
'CHATWOOT_INBOX_TOKEN',
|
||||||
|
'API_CHANNEL_NAME',
|
||||||
|
'API_CHANNEL_THUMBNAIL',
|
||||||
|
'ANALYTICS_TOKEN',
|
||||||
|
'DIRECT_UPLOADS_ENABLED',
|
||||||
|
'HCAPTCHA_SITE_KEY',
|
||||||
|
'LOGOUT_REDIRECT_LINK',
|
||||||
|
'DISABLE_USER_PROFILE_UPDATE',
|
||||||
|
'DEPLOYMENT_ENV',
|
||||||
|
'INSTALLATION_PRICING_PLAN'
|
||||||
|
).merge(app_config)
|
||||||
end
|
end
|
||||||
|
|
||||||
def set_dashboard_scripts
|
def set_dashboard_scripts
|
||||||
@@ -73,24 +66,15 @@ class DashboardController < ActionController::Base
|
|||||||
ENABLE_ACCOUNT_SIGNUP: GlobalConfigService.load('ENABLE_ACCOUNT_SIGNUP', 'false'),
|
ENABLE_ACCOUNT_SIGNUP: GlobalConfigService.load('ENABLE_ACCOUNT_SIGNUP', 'false'),
|
||||||
FB_APP_ID: GlobalConfigService.load('FB_APP_ID', ''),
|
FB_APP_ID: GlobalConfigService.load('FB_APP_ID', ''),
|
||||||
INSTAGRAM_APP_ID: GlobalConfigService.load('INSTAGRAM_APP_ID', ''),
|
INSTAGRAM_APP_ID: GlobalConfigService.load('INSTAGRAM_APP_ID', ''),
|
||||||
TIKTOK_APP_ID: GlobalConfigService.load('TIKTOK_APP_ID', ''),
|
FACEBOOK_API_VERSION: GlobalConfigService.load('FACEBOOK_API_VERSION', 'v17.0'),
|
||||||
FACEBOOK_API_VERSION: GlobalConfigService.load('FACEBOOK_API_VERSION', 'v18.0'),
|
|
||||||
WHATSAPP_APP_ID: GlobalConfigService.load('WHATSAPP_APP_ID', ''),
|
WHATSAPP_APP_ID: GlobalConfigService.load('WHATSAPP_APP_ID', ''),
|
||||||
WHATSAPP_CONFIGURATION_ID: GlobalConfigService.load('WHATSAPP_CONFIGURATION_ID', ''),
|
WHATSAPP_CONFIGURATION_ID: GlobalConfigService.load('WHATSAPP_CONFIGURATION_ID', ''),
|
||||||
IS_ENTERPRISE: ChatwootApp.enterprise?,
|
IS_ENTERPRISE: ChatwootApp.enterprise?,
|
||||||
AZURE_APP_ID: GlobalConfigService.load('AZURE_APP_ID', ''),
|
AZURE_APP_ID: GlobalConfigService.load('AZURE_APP_ID', ''),
|
||||||
GIT_SHA: GIT_HASH,
|
GIT_SHA: GIT_HASH
|
||||||
ALLOWED_LOGIN_METHODS: allowed_login_methods
|
|
||||||
}
|
}
|
||||||
end
|
end
|
||||||
|
|
||||||
def allowed_login_methods
|
|
||||||
methods = ['email']
|
|
||||||
methods << 'google_oauth' if GlobalConfigService.load('ENABLE_GOOGLE_OAUTH_LOGIN', 'true').to_s != 'false'
|
|
||||||
methods << 'saml' if ChatwootHub.pricing_plan != 'community' && GlobalConfigService.load('ENABLE_SAML_SSO_LOGIN', 'true').to_s != 'false'
|
|
||||||
methods
|
|
||||||
end
|
|
||||||
|
|
||||||
def set_application_pack
|
def set_application_pack
|
||||||
@application_pack = if request.path.include?('/auth') || request.path.include?('/login')
|
@application_pack = if request.path.include?('/auth') || request.path.include?('/login')
|
||||||
'v3app'
|
'v3app'
|
||||||
|
|||||||
@@ -19,19 +19,6 @@ class DeviseOverrides::OmniauthCallbacksController < DeviseTokenAuth::OmniauthCa
|
|||||||
redirect_to login_page_url(email: encoded_email, sso_auth_token: @resource.generate_sso_auth_token)
|
redirect_to login_page_url(email: encoded_email, sso_auth_token: @resource.generate_sso_auth_token)
|
||||||
end
|
end
|
||||||
|
|
||||||
def sign_in_user_on_mobile
|
|
||||||
@resource.skip_confirmation! if confirmable_enabled?
|
|
||||||
|
|
||||||
# once the resource is found and verified
|
|
||||||
# we can just send them to the login page again with the SSO params
|
|
||||||
# that will log them in
|
|
||||||
encoded_email = ERB::Util.url_encode(@resource.email)
|
|
||||||
params = { email: encoded_email, sso_auth_token: @resource.generate_sso_auth_token }.to_query
|
|
||||||
|
|
||||||
mobile_deep_link_base = GlobalConfigService.load('MOBILE_DEEP_LINK_BASE', 'chatwootapp')
|
|
||||||
redirect_to "#{mobile_deep_link_base}://auth/saml?#{params}", allow_other_host: true
|
|
||||||
end
|
|
||||||
|
|
||||||
def sign_up_user
|
def sign_up_user
|
||||||
return redirect_to login_page_url(error: 'no-account-found') unless account_signup_allowed?
|
return redirect_to login_page_url(error: 'no-account-found') unless account_signup_allowed?
|
||||||
return redirect_to login_page_url(error: 'business-account-only') unless validate_signup_email_is_business_domain?
|
return redirect_to login_page_url(error: 'business-account-only') unless validate_signup_email_is_business_domain?
|
||||||
@@ -60,8 +47,10 @@ class DeviseOverrides::OmniauthCallbacksController < DeviseTokenAuth::OmniauthCa
|
|||||||
end
|
end
|
||||||
|
|
||||||
def get_resource_from_auth_hash # rubocop:disable Naming/AccessorMethodName
|
def get_resource_from_auth_hash # rubocop:disable Naming/AccessorMethodName
|
||||||
email = auth_hash.dig('info', 'email')
|
# find the user with their email instead of UID and token
|
||||||
@resource = resource_class.from_email(email)
|
@resource = resource_class.where(
|
||||||
|
email: auth_hash['info']['email']
|
||||||
|
).first
|
||||||
end
|
end
|
||||||
|
|
||||||
def validate_signup_email_is_business_domain?
|
def validate_signup_email_is_business_domain?
|
||||||
@@ -86,5 +75,3 @@ class DeviseOverrides::OmniauthCallbacksController < DeviseTokenAuth::OmniauthCa
|
|||||||
'user'
|
'user'
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
DeviseOverrides::OmniauthCallbacksController.prepend_mod_with('DeviseOverrides::OmniauthCallbacksController')
|
|
||||||
|
|||||||
@@ -44,5 +44,3 @@ class DeviseOverrides::PasswordsController < Devise::PasswordsController
|
|||||||
}, status: status
|
}, status: status
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
DeviseOverrides::PasswordsController.prepend_mod_with('DeviseOverrides::PasswordsController')
|
|
||||||
|
|||||||
@@ -9,14 +9,14 @@ class DeviseOverrides::SessionsController < DeviseTokenAuth::SessionsController
|
|||||||
end
|
end
|
||||||
|
|
||||||
def create
|
def create
|
||||||
return handle_mfa_verification if mfa_verification_request?
|
# Authenticate user via the temporary sso auth token
|
||||||
return handle_sso_authentication if sso_authentication_request?
|
if params[:sso_auth_token].present? && @resource.present?
|
||||||
|
authenticate_resource_with_sso_token
|
||||||
user = find_user_for_authentication
|
yield @resource if block_given?
|
||||||
return handle_mfa_required(user) if user&.mfa_enabled?
|
render_create_success
|
||||||
|
else
|
||||||
# Only proceed with standard authentication if no MFA is required
|
super
|
||||||
super
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
def render_create_success
|
def render_create_success
|
||||||
@@ -25,31 +25,6 @@ class DeviseOverrides::SessionsController < DeviseTokenAuth::SessionsController
|
|||||||
|
|
||||||
private
|
private
|
||||||
|
|
||||||
def find_user_for_authentication
|
|
||||||
return nil unless params[:email].present? && params[:password].present?
|
|
||||||
|
|
||||||
normalized_email = params[:email].strip.downcase
|
|
||||||
user = User.from_email(normalized_email)
|
|
||||||
return nil unless user&.valid_password?(params[:password])
|
|
||||||
return nil unless user.active_for_authentication?
|
|
||||||
|
|
||||||
user
|
|
||||||
end
|
|
||||||
|
|
||||||
def mfa_verification_request?
|
|
||||||
params[:mfa_token].present?
|
|
||||||
end
|
|
||||||
|
|
||||||
def sso_authentication_request?
|
|
||||||
params[:sso_auth_token].present? && @resource.present?
|
|
||||||
end
|
|
||||||
|
|
||||||
def handle_sso_authentication
|
|
||||||
authenticate_resource_with_sso_token
|
|
||||||
yield @resource if block_given?
|
|
||||||
render_create_success
|
|
||||||
end
|
|
||||||
|
|
||||||
def login_page_url(error: nil)
|
def login_page_url(error: nil)
|
||||||
frontend_url = ENV.fetch('FRONTEND_URL', nil)
|
frontend_url = ENV.fetch('FRONTEND_URL', nil)
|
||||||
|
|
||||||
@@ -71,41 +46,6 @@ class DeviseOverrides::SessionsController < DeviseTokenAuth::SessionsController
|
|||||||
user = User.from_email(params[:email])
|
user = User.from_email(params[:email])
|
||||||
@resource = user if user&.valid_sso_auth_token?(params[:sso_auth_token])
|
@resource = user if user&.valid_sso_auth_token?(params[:sso_auth_token])
|
||||||
end
|
end
|
||||||
|
|
||||||
def handle_mfa_required(user)
|
|
||||||
render json: {
|
|
||||||
mfa_required: true,
|
|
||||||
mfa_token: Mfa::TokenService.new(user: user).generate_token
|
|
||||||
}, status: :partial_content
|
|
||||||
end
|
|
||||||
|
|
||||||
def handle_mfa_verification
|
|
||||||
user = Mfa::TokenService.new(token: params[:mfa_token]).verify_token
|
|
||||||
return render_mfa_error('errors.mfa.invalid_token', :unauthorized) unless user
|
|
||||||
|
|
||||||
authenticated = Mfa::AuthenticationService.new(
|
|
||||||
user: user,
|
|
||||||
otp_code: params[:otp_code],
|
|
||||||
backup_code: params[:backup_code]
|
|
||||||
).authenticate
|
|
||||||
|
|
||||||
return render_mfa_error('errors.mfa.invalid_code') unless authenticated
|
|
||||||
|
|
||||||
sign_in_mfa_user(user)
|
|
||||||
end
|
|
||||||
|
|
||||||
def sign_in_mfa_user(user)
|
|
||||||
@resource = user
|
|
||||||
@token = @resource.create_token
|
|
||||||
@resource.save!
|
|
||||||
|
|
||||||
sign_in(:user, @resource, store: false, bypass: false)
|
|
||||||
render_create_success
|
|
||||||
end
|
|
||||||
|
|
||||||
def render_mfa_error(message_key, status = :bad_request)
|
|
||||||
render json: { error: I18n.t(message_key) }, status: status
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
|
|
||||||
DeviseOverrides::SessionsController.prepend_mod_with('DeviseOverrides::SessionsController')
|
DeviseOverrides::SessionsController.prepend_mod_with('DeviseOverrides::SessionsController')
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ class Public::Api::V1::Inboxes::ConversationsController < Public::Api::V1::Inbox
|
|||||||
before_action :set_conversation, only: [:toggle_typing, :update_last_seen, :show, :toggle_status]
|
before_action :set_conversation, only: [:toggle_typing, :update_last_seen, :show, :toggle_status]
|
||||||
|
|
||||||
def index
|
def index
|
||||||
@conversations = @contact_inbox.hmac_verified? ? @contact_inbox.contact.conversations : @contact_inbox.conversations
|
@conversations = @contact_inbox.hmac_verified? ? @contact.conversations : @contact_inbox.conversations
|
||||||
end
|
end
|
||||||
|
|
||||||
def show; end
|
def show; end
|
||||||
|
|||||||
@@ -58,6 +58,6 @@ class Public::Api::V1::Portals::BaseController < PublicController
|
|||||||
end
|
end
|
||||||
|
|
||||||
def set_global_config
|
def set_global_config
|
||||||
@global_config = GlobalConfig.get('LOGO_THUMBNAIL', 'BRAND_NAME', 'BRAND_URL', 'INSTALLATION_NAME')
|
@global_config = GlobalConfig.get('LOGO_THUMBNAIL', 'BRAND_NAME', 'BRAND_URL')
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -15,20 +15,14 @@ class SuperAdmin::AppConfigsController < SuperAdmin::ApplicationController
|
|||||||
end
|
end
|
||||||
|
|
||||||
def create
|
def create
|
||||||
errors = []
|
|
||||||
params['app_config'].each do |key, value|
|
params['app_config'].each do |key, value|
|
||||||
next unless @allowed_configs.include?(key)
|
next unless @allowed_configs.include?(key)
|
||||||
|
|
||||||
i = InstallationConfig.where(name: key).first_or_create(value: value, locked: false)
|
i = InstallationConfig.where(name: key).first_or_create(value: value, locked: false)
|
||||||
i.value = value
|
i.value = value
|
||||||
errors.concat(i.errors.full_messages) unless i.save
|
i.save!
|
||||||
end
|
|
||||||
|
|
||||||
if errors.any?
|
|
||||||
redirect_to super_admin_app_config_path(config: @config), alert: errors.join(', ')
|
|
||||||
else
|
|
||||||
redirect_to super_admin_settings_path, notice: "App Configs - #{@config.titleize} updated successfully"
|
|
||||||
end
|
end
|
||||||
|
redirect_to super_admin_settings_path, notice: "App Configs - #{@config.titleize} updated successfully"
|
||||||
end
|
end
|
||||||
|
|
||||||
private
|
private
|
||||||
@@ -46,16 +40,12 @@ class SuperAdmin::AppConfigsController < SuperAdmin::ApplicationController
|
|||||||
'linear' => %w[LINEAR_CLIENT_ID LINEAR_CLIENT_SECRET],
|
'linear' => %w[LINEAR_CLIENT_ID LINEAR_CLIENT_SECRET],
|
||||||
'slack' => %w[SLACK_CLIENT_ID SLACK_CLIENT_SECRET],
|
'slack' => %w[SLACK_CLIENT_ID SLACK_CLIENT_SECRET],
|
||||||
'instagram' => %w[INSTAGRAM_APP_ID INSTAGRAM_APP_SECRET INSTAGRAM_VERIFY_TOKEN INSTAGRAM_API_VERSION ENABLE_INSTAGRAM_CHANNEL_HUMAN_AGENT],
|
'instagram' => %w[INSTAGRAM_APP_ID INSTAGRAM_APP_SECRET INSTAGRAM_VERIFY_TOKEN INSTAGRAM_API_VERSION ENABLE_INSTAGRAM_CHANNEL_HUMAN_AGENT],
|
||||||
'tiktok' => %w[TIKTOK_APP_ID TIKTOK_APP_SECRET],
|
|
||||||
'whatsapp_embedded' => %w[WHATSAPP_APP_ID WHATSAPP_APP_SECRET WHATSAPP_CONFIGURATION_ID WHATSAPP_API_VERSION],
|
'whatsapp_embedded' => %w[WHATSAPP_APP_ID WHATSAPP_APP_SECRET WHATSAPP_CONFIGURATION_ID WHATSAPP_API_VERSION],
|
||||||
'notion' => %w[NOTION_CLIENT_ID NOTION_CLIENT_SECRET],
|
'notion' => %w[NOTION_CLIENT_ID NOTION_CLIENT_SECRET],
|
||||||
'google' => %w[GOOGLE_OAUTH_CLIENT_ID GOOGLE_OAUTH_CLIENT_SECRET GOOGLE_OAUTH_REDIRECT_URI ENABLE_GOOGLE_OAUTH_LOGIN]
|
'google' => %w[GOOGLE_OAUTH_CLIENT_ID GOOGLE_OAUTH_CLIENT_SECRET GOOGLE_OAUTH_REDIRECT_URI]
|
||||||
}
|
}
|
||||||
|
|
||||||
@allowed_configs = mapping.fetch(
|
@allowed_configs = mapping.fetch(@config, %w[ENABLE_ACCOUNT_SIGNUP FIREBASE_PROJECT_ID FIREBASE_CREDENTIALS])
|
||||||
@config,
|
|
||||||
%w[ENABLE_ACCOUNT_SIGNUP FIREBASE_PROJECT_ID FIREBASE_CREDENTIALS WEBHOOK_TIMEOUT MAXIMUM_FILE_UPLOAD_SIZE]
|
|
||||||
)
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|||||||
@@ -1,41 +1,11 @@
|
|||||||
class SuperAdmin::DashboardController < SuperAdmin::ApplicationController
|
class SuperAdmin::DashboardController < SuperAdmin::ApplicationController
|
||||||
include ActionView::Helpers::NumberHelper
|
include ActionView::Helpers::NumberHelper
|
||||||
|
|
||||||
ALLOWED_CHART_DAYS = [7, 30].freeze
|
|
||||||
|
|
||||||
def index
|
def index
|
||||||
@chart_days = parse_chart_days
|
@data = Conversation.unscoped.group_by_day(:created_at, range: 30.days.ago..2.seconds.ago).count.to_a
|
||||||
@data = conversations_by_day
|
@accounts_count = number_with_delimiter(Account.count)
|
||||||
@accounts_count = format_count(Account.count)
|
@users_count = number_with_delimiter(User.count)
|
||||||
@users_count = format_count(User.count)
|
@inboxes_count = number_with_delimiter(Inbox.count)
|
||||||
@inboxes_count = format_count(Inbox.count)
|
@conversations_count = number_with_delimiter(Conversation.count)
|
||||||
@conversations_count = format_count(recent_conversations.count)
|
|
||||||
end
|
|
||||||
|
|
||||||
private
|
|
||||||
|
|
||||||
def parse_chart_days
|
|
||||||
days = params[:chart_period].to_i
|
|
||||||
ALLOWED_CHART_DAYS.include?(days) ? days : 7
|
|
||||||
end
|
|
||||||
|
|
||||||
def chart_date_range
|
|
||||||
(@chart_days - 1).days.ago.beginning_of_day..Time.current
|
|
||||||
end
|
|
||||||
|
|
||||||
def last_30_days
|
|
||||||
29.days.ago.beginning_of_day..Time.current
|
|
||||||
end
|
|
||||||
|
|
||||||
def recent_conversations
|
|
||||||
Conversation.unscoped.where(created_at: last_30_days)
|
|
||||||
end
|
|
||||||
|
|
||||||
def conversations_by_day
|
|
||||||
Conversation.unscoped.group_by_day(:created_at, range: chart_date_range, default_value: 0).count.to_a
|
|
||||||
end
|
|
||||||
|
|
||||||
def format_count(count)
|
|
||||||
number_with_delimiter(count)
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -13,11 +13,11 @@ class SuperAdmin::UsersController < SuperAdmin::ApplicationController
|
|||||||
redirect_to new_super_admin_user_path, notice: notice
|
redirect_to new_super_admin_user_path, notice: notice
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
#
|
||||||
def update
|
# def update
|
||||||
requested_resource.skip_reconfirmation! if resource_params[:confirmed_at].present?
|
# super
|
||||||
super
|
# send_foo_updated_email(requested_resource)
|
||||||
end
|
# end
|
||||||
|
|
||||||
# Override this method to specify custom lookup behavior.
|
# Override this method to specify custom lookup behavior.
|
||||||
# This will be used to set the resource for the `show`, `edit`, and `update`
|
# This will be used to set the resource for the `show`, `edit`, and `update`
|
||||||
|
|||||||
@@ -5,6 +5,6 @@ class Survey::ResponsesController < ActionController::Base
|
|||||||
private
|
private
|
||||||
|
|
||||||
def set_global_config
|
def set_global_config
|
||||||
@global_config = GlobalConfig.get('LOGO_THUMBNAIL', 'BRAND_NAME', 'WIDGET_BRAND_URL', 'INSTALLATION_NAME')
|
@global_config = GlobalConfig.get('LOGO_THUMBNAIL', 'BRAND_NAME', 'WIDGET_BRAND_URL')
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -1,144 +0,0 @@
|
|||||||
class Tiktok::CallbacksController < ApplicationController
|
|
||||||
include Tiktok::IntegrationHelper
|
|
||||||
|
|
||||||
def show
|
|
||||||
return handle_authorization_error if params[:error].present?
|
|
||||||
return handle_ungranted_scopes_error unless all_scopes_granted?
|
|
||||||
|
|
||||||
process_successful_authorization
|
|
||||||
rescue StandardError => e
|
|
||||||
handle_error(e)
|
|
||||||
end
|
|
||||||
|
|
||||||
private
|
|
||||||
|
|
||||||
def all_scopes_granted?
|
|
||||||
granted_scopes = short_term_access_token[:scope].to_s.split(',')
|
|
||||||
(Tiktok::AuthClient::REQUIRED_SCOPES - granted_scopes).blank?
|
|
||||||
end
|
|
||||||
|
|
||||||
def process_successful_authorization
|
|
||||||
inbox, already_exists = find_or_create_inbox
|
|
||||||
|
|
||||||
if already_exists
|
|
||||||
redirect_to app_tiktok_inbox_settings_url(account_id: account_id, inbox_id: inbox.id)
|
|
||||||
else
|
|
||||||
redirect_to app_tiktok_inbox_agents_url(account_id: account_id, inbox_id: inbox.id)
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
def handle_error(error)
|
|
||||||
Rails.logger.error("TikTok Channel creation Error: #{error.message}")
|
|
||||||
ChatwootExceptionTracker.new(error).capture_exception
|
|
||||||
|
|
||||||
redirect_to_error_page(error_type: error.class.name, code: 500, error_message: error.message)
|
|
||||||
end
|
|
||||||
|
|
||||||
# Handles the case when a user denies permissions or cancels the authorization flow
|
|
||||||
def handle_authorization_error
|
|
||||||
redirect_to_error_page(
|
|
||||||
error_type: params[:error] || 'access_denied',
|
|
||||||
code: params[:error_code],
|
|
||||||
error_message: params[:error_description] || 'User cancelled the Authorization'
|
|
||||||
)
|
|
||||||
end
|
|
||||||
|
|
||||||
# Handles the case when a user partially accepted the required scopes
|
|
||||||
def handle_ungranted_scopes_error
|
|
||||||
redirect_to_error_page(
|
|
||||||
error_type: 'ungranted_scopes',
|
|
||||||
code: 400,
|
|
||||||
error_message: 'User did not grant all the required scopes'
|
|
||||||
)
|
|
||||||
end
|
|
||||||
|
|
||||||
# Centralized method to redirect to error page with appropriate parameters
|
|
||||||
# This ensures consistent error handling across different error scenarios
|
|
||||||
# Frontend will handle the error page based on the error_type
|
|
||||||
def redirect_to_error_page(error_type:, code:, error_message:)
|
|
||||||
redirect_to app_new_tiktok_inbox_url(
|
|
||||||
account_id: account_id,
|
|
||||||
error_type: error_type,
|
|
||||||
code: code,
|
|
||||||
error_message: error_message
|
|
||||||
)
|
|
||||||
end
|
|
||||||
|
|
||||||
def find_or_create_inbox
|
|
||||||
business_details = tiktok_client.business_account_details
|
|
||||||
channel_tiktok = find_channel
|
|
||||||
channel_exists = channel_tiktok.present?
|
|
||||||
|
|
||||||
if channel_tiktok
|
|
||||||
update_channel(channel_tiktok, business_details)
|
|
||||||
else
|
|
||||||
channel_tiktok = create_channel_with_inbox(business_details)
|
|
||||||
end
|
|
||||||
|
|
||||||
# reauthorized will also update cache keys for the associated inbox
|
|
||||||
channel_tiktok.reauthorized!
|
|
||||||
|
|
||||||
set_avatar(channel_tiktok.inbox, business_details[:profile_image]) if business_details[:profile_image].present?
|
|
||||||
|
|
||||||
[channel_tiktok.inbox, channel_exists]
|
|
||||||
end
|
|
||||||
|
|
||||||
def create_channel_with_inbox(business_details)
|
|
||||||
ActiveRecord::Base.transaction do
|
|
||||||
channel_tiktok = Channel::Tiktok.create!(
|
|
||||||
account: account,
|
|
||||||
business_id: short_term_access_token[:business_id],
|
|
||||||
access_token: short_term_access_token[:access_token],
|
|
||||||
refresh_token: short_term_access_token[:refresh_token],
|
|
||||||
expires_at: short_term_access_token[:expires_at],
|
|
||||||
refresh_token_expires_at: short_term_access_token[:refresh_token_expires_at]
|
|
||||||
)
|
|
||||||
|
|
||||||
account.inboxes.create!(
|
|
||||||
account: account,
|
|
||||||
channel: channel_tiktok,
|
|
||||||
name: business_details[:display_name].presence || business_details[:username]
|
|
||||||
)
|
|
||||||
|
|
||||||
channel_tiktok
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
def find_channel
|
|
||||||
Channel::Tiktok.find_by(business_id: short_term_access_token[:business_id], account: account)
|
|
||||||
end
|
|
||||||
|
|
||||||
def update_channel(channel_tiktok, business_details)
|
|
||||||
channel_tiktok.update!(
|
|
||||||
access_token: short_term_access_token[:access_token],
|
|
||||||
refresh_token: short_term_access_token[:refresh_token],
|
|
||||||
expires_at: short_term_access_token[:expires_at],
|
|
||||||
refresh_token_expires_at: short_term_access_token[:refresh_token_expires_at]
|
|
||||||
)
|
|
||||||
|
|
||||||
channel_tiktok.inbox.update!(name: business_details[:display_name].presence || business_details[:username])
|
|
||||||
end
|
|
||||||
|
|
||||||
def set_avatar(inbox, avatar_url)
|
|
||||||
Avatar::AvatarFromUrlJob.perform_later(inbox, avatar_url)
|
|
||||||
end
|
|
||||||
|
|
||||||
def account_id
|
|
||||||
@account_id ||= verify_tiktok_token(params[:state])
|
|
||||||
end
|
|
||||||
|
|
||||||
def account
|
|
||||||
@account ||= Account.find(account_id)
|
|
||||||
end
|
|
||||||
|
|
||||||
def short_term_access_token
|
|
||||||
@short_term_access_token ||= Tiktok::AuthClient.obtain_short_term_access_token(params[:code])
|
|
||||||
end
|
|
||||||
|
|
||||||
def tiktok_client
|
|
||||||
@tiktok_client ||= Tiktok::Client.new(
|
|
||||||
business_id: short_term_access_token[:business_id],
|
|
||||||
access_token: short_term_access_token[:access_token]
|
|
||||||
)
|
|
||||||
end
|
|
||||||
end
|
|
||||||
@@ -1,53 +0,0 @@
|
|||||||
class Webhooks::TiktokController < ActionController::API
|
|
||||||
before_action :verify_signature!
|
|
||||||
|
|
||||||
def events
|
|
||||||
event = JSON.parse(request_payload)
|
|
||||||
if echo_event?
|
|
||||||
# Add delay to prevent race condition where echo arrives before send message API completes
|
|
||||||
# This avoids duplicate messages when echo comes early during API processing
|
|
||||||
::Webhooks::TiktokEventsJob.set(wait: 2.seconds).perform_later(event)
|
|
||||||
else
|
|
||||||
::Webhooks::TiktokEventsJob.perform_later(event)
|
|
||||||
end
|
|
||||||
|
|
||||||
head :ok
|
|
||||||
end
|
|
||||||
|
|
||||||
private
|
|
||||||
|
|
||||||
def request_payload
|
|
||||||
@request_payload ||= request.body.read
|
|
||||||
end
|
|
||||||
|
|
||||||
def verify_signature!
|
|
||||||
signature_header = request.headers['Tiktok-Signature']
|
|
||||||
client_secret = GlobalConfigService.load('TIKTOK_APP_SECRET', nil)
|
|
||||||
received_timestamp, received_signature = extract_signature_parts(signature_header)
|
|
||||||
|
|
||||||
return head :unauthorized unless client_secret && received_timestamp && received_signature
|
|
||||||
|
|
||||||
signature_payload = "#{received_timestamp}.#{request_payload}"
|
|
||||||
computed_signature = OpenSSL::HMAC.hexdigest('SHA256', client_secret, signature_payload)
|
|
||||||
|
|
||||||
return head :unauthorized unless ActiveSupport::SecurityUtils.secure_compare(computed_signature, received_signature)
|
|
||||||
|
|
||||||
# Check timestamp delay (acceptable delay: 5 seconds)
|
|
||||||
current_timestamp = Time.current.to_i
|
|
||||||
delay = current_timestamp - received_timestamp
|
|
||||||
|
|
||||||
return head :unauthorized if delay > 5
|
|
||||||
end
|
|
||||||
|
|
||||||
def extract_signature_parts(signature_header)
|
|
||||||
return [nil, nil] if signature_header.blank?
|
|
||||||
|
|
||||||
keys = signature_header.split(',')
|
|
||||||
signature_parts = keys.map { |part| part.split('=') }.to_h
|
|
||||||
[signature_parts['t']&.to_i, signature_parts['s']]
|
|
||||||
end
|
|
||||||
|
|
||||||
def echo_event?
|
|
||||||
params[:event] == 'im_send_msg'
|
|
||||||
end
|
|
||||||
end
|
|
||||||
@@ -14,14 +14,7 @@ class WidgetsController < ActionController::Base
|
|||||||
private
|
private
|
||||||
|
|
||||||
def set_global_config
|
def set_global_config
|
||||||
@global_config = GlobalConfig.get(
|
@global_config = GlobalConfig.get('LOGO_THUMBNAIL', 'BRAND_NAME', 'WIDGET_BRAND_URL', 'DIRECT_UPLOADS_ENABLED')
|
||||||
'LOGO_THUMBNAIL',
|
|
||||||
'BRAND_NAME',
|
|
||||||
'WIDGET_BRAND_URL',
|
|
||||||
'DIRECT_UPLOADS_ENABLED',
|
|
||||||
'MAXIMUM_FILE_UPLOAD_SIZE',
|
|
||||||
'INSTALLATION_NAME'
|
|
||||||
)
|
|
||||||
end
|
end
|
||||||
|
|
||||||
def set_web_widget
|
def set_web_widget
|
||||||
@@ -77,12 +70,7 @@ class WidgetsController < ActionController::Base
|
|||||||
end
|
end
|
||||||
|
|
||||||
def allow_iframe_requests
|
def allow_iframe_requests
|
||||||
if @web_widget.allowed_domains.blank?
|
response.headers.delete('X-Frame-Options')
|
||||||
response.headers.delete('X-Frame-Options')
|
|
||||||
else
|
|
||||||
domains = @web_widget.allowed_domains.split(',').map(&:strip).join(' ')
|
|
||||||
response.headers['Content-Security-Policy'] = "frame-ancestors #{domains}"
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|||||||
@@ -31,8 +31,8 @@ class AccountDashboard < Administrate::BaseDashboard
|
|||||||
updated_at: Field::DateTime,
|
updated_at: Field::DateTime,
|
||||||
users: CountField,
|
users: CountField,
|
||||||
conversations: CountField,
|
conversations: CountField,
|
||||||
locale: LocaleField,
|
locale: Field::Select.with_options(collection: LANGUAGES_CONFIG.map { |_x, y| y[:iso_639_1_code] }),
|
||||||
status: StatusField,
|
status: Field::Select.with_options(collection: [%w[Active active], %w[Suspended suspended]]),
|
||||||
account_users: Field::HasMany,
|
account_users: Field::HasMany,
|
||||||
custom_attributes: Field::String
|
custom_attributes: Field::String
|
||||||
}.merge(enterprise_attribute_types).freeze
|
}.merge(enterprise_attribute_types).freeze
|
||||||
@@ -45,9 +45,10 @@ class AccountDashboard < Administrate::BaseDashboard
|
|||||||
COLLECTION_ATTRIBUTES = %i[
|
COLLECTION_ATTRIBUTES = %i[
|
||||||
id
|
id
|
||||||
name
|
name
|
||||||
status
|
|
||||||
users
|
|
||||||
locale
|
locale
|
||||||
|
users
|
||||||
|
conversations
|
||||||
|
status
|
||||||
].freeze
|
].freeze
|
||||||
|
|
||||||
# SHOW_PAGE_ATTRIBUTES
|
# SHOW_PAGE_ATTRIBUTES
|
||||||
|
|||||||
@@ -59,11 +59,11 @@ class UserDashboard < Administrate::BaseDashboard
|
|||||||
SHOW_PAGE_ATTRIBUTES = %i[
|
SHOW_PAGE_ATTRIBUTES = %i[
|
||||||
id
|
id
|
||||||
avatar_url
|
avatar_url
|
||||||
|
unconfirmed_email
|
||||||
name
|
name
|
||||||
type
|
type
|
||||||
display_name
|
display_name
|
||||||
email
|
email
|
||||||
unconfirmed_email
|
|
||||||
created_at
|
created_at
|
||||||
updated_at
|
updated_at
|
||||||
confirmed_at
|
confirmed_at
|
||||||
|
|||||||
@@ -1,12 +0,0 @@
|
|||||||
require 'administrate/field/base'
|
|
||||||
|
|
||||||
class LocaleField < Administrate::Field::Base
|
|
||||||
def to_s
|
|
||||||
language = LANGUAGES_CONFIG.find { |_key, val| val[:iso_639_1_code] == data }
|
|
||||||
language ? language[1][:name] : data
|
|
||||||
end
|
|
||||||
|
|
||||||
def selectable_options
|
|
||||||
LANGUAGES_CONFIG.map { |_key, val| [val[:name], val[:iso_639_1_code]] }
|
|
||||||
end
|
|
||||||
end
|
|
||||||
@@ -1,15 +0,0 @@
|
|||||||
require 'administrate/field/base'
|
|
||||||
|
|
||||||
class StatusField < Administrate::Field::Base
|
|
||||||
def to_s
|
|
||||||
data.to_s.capitalize
|
|
||||||
end
|
|
||||||
|
|
||||||
def active?
|
|
||||||
data.to_s == 'active'
|
|
||||||
end
|
|
||||||
|
|
||||||
def selectable_options
|
|
||||||
[%w[Active active], %w[Suspended suspended]]
|
|
||||||
end
|
|
||||||
end
|
|
||||||
@@ -6,54 +6,19 @@ class EmailChannelFinder
|
|||||||
end
|
end
|
||||||
|
|
||||||
def perform
|
def perform
|
||||||
channel_from_primary_recipients || channel_from_bcc_recipients
|
channel = nil
|
||||||
end
|
|
||||||
|
|
||||||
private
|
recipient_mails.each do |email|
|
||||||
|
normalized_email = normalize_email_with_plus_addressing(email)
|
||||||
|
channel = Channel::Email.find_by('lower(email) = ? OR lower(forward_to_email) = ?', normalized_email, normalized_email)
|
||||||
|
|
||||||
def channel_from_primary_recipients
|
break if channel.present?
|
||||||
primary_recipient_emails.each do |email|
|
|
||||||
channel = channel_from_email(email)
|
|
||||||
return channel if channel.present?
|
|
||||||
end
|
end
|
||||||
|
channel
|
||||||
nil
|
|
||||||
end
|
end
|
||||||
|
|
||||||
def channel_from_bcc_recipients
|
def recipient_mails
|
||||||
bcc_recipient_emails.each do |email|
|
recipient_addresses = @email_object.to.to_a + @email_object.cc.to_a + @email_object.bcc.to_a + [@email_object['X-Original-To'].try(:value)]
|
||||||
channel = channel_from_email(email)
|
recipient_addresses.flatten.compact
|
||||||
|
|
||||||
# Skip if BCC processing is disabled for this account
|
|
||||||
next if channel && !allow_bcc_processing?(channel.account_id)
|
|
||||||
|
|
||||||
return channel if channel.present?
|
|
||||||
end
|
|
||||||
|
|
||||||
nil
|
|
||||||
end
|
|
||||||
|
|
||||||
def primary_recipient_emails
|
|
||||||
(@email_object.to.to_a + @email_object.cc.to_a + [@email_object['X-Original-To'].try(:value)]).flatten.compact
|
|
||||||
end
|
|
||||||
|
|
||||||
def bcc_recipient_emails
|
|
||||||
@email_object.bcc.to_a.flatten.compact
|
|
||||||
end
|
|
||||||
|
|
||||||
def channel_from_email(email)
|
|
||||||
normalized_email = normalize_email_with_plus_addressing(email)
|
|
||||||
Channel::Email.find_by('lower(email) = ? OR lower(forward_to_email) = ?', normalized_email, normalized_email)
|
|
||||||
end
|
|
||||||
|
|
||||||
def bcc_processing_skipped_accounts
|
|
||||||
config_value = GlobalConfigService.load('SKIP_INCOMING_BCC_PROCESSING', '')
|
|
||||||
return [] if config_value.blank?
|
|
||||||
|
|
||||||
config_value.split(',').map(&:to_i)
|
|
||||||
end
|
|
||||||
|
|
||||||
def allow_bcc_processing?(account_id)
|
|
||||||
bcc_processing_skipped_accounts.exclude?(account_id)
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -1,24 +0,0 @@
|
|||||||
# Provides utility methods for data transformation, hash manipulation, and JSON parsing.
|
|
||||||
# This module contains helper methods for converting between different data types,
|
|
||||||
# normalizing hashes, and safely handling JSON operations.
|
|
||||||
module DataHelper
|
|
||||||
# Ensures a hash supports indifferent access (string or symbol keys).
|
|
||||||
# Returns an empty hash if the input is blank.
|
|
||||||
def ensure_indifferent_access(hash)
|
|
||||||
return {} if hash.blank?
|
|
||||||
|
|
||||||
hash.respond_to?(:with_indifferent_access) ? hash.with_indifferent_access : hash
|
|
||||||
end
|
|
||||||
|
|
||||||
def convert_to_hash(obj)
|
|
||||||
return obj.to_unsafe_h if obj.instance_of?(ActionController::Parameters)
|
|
||||||
|
|
||||||
obj
|
|
||||||
end
|
|
||||||
|
|
||||||
def safe_parse_json(content)
|
|
||||||
JSON.parse(content, symbolize_names: true)
|
|
||||||
rescue JSON::ParserError
|
|
||||||
{}
|
|
||||||
end
|
|
||||||
end
|
|
||||||
@@ -4,19 +4,6 @@ module EmailHelper
|
|||||||
domain.split('.').first
|
domain.split('.').first
|
||||||
end
|
end
|
||||||
|
|
||||||
def render_email_html(content)
|
|
||||||
return '' if content.blank?
|
|
||||||
|
|
||||||
ChatwootMarkdownRenderer.new(content).render_message.to_s
|
|
||||||
end
|
|
||||||
|
|
||||||
# Raise a standard error if any email address is invalid
|
|
||||||
def validate_email_addresses(emails_to_test)
|
|
||||||
emails_to_test&.each do |email|
|
|
||||||
raise StandardError, 'Invalid email address' unless email.match?(URI::MailTo::EMAIL_REGEXP)
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
# ref: https://www.rfc-editor.org/rfc/rfc5233.html
|
# ref: https://www.rfc-editor.org/rfc/rfc5233.html
|
||||||
# This is not a mandatory requirement for email addresses, but it is a common practice.
|
# This is not a mandatory requirement for email addresses, but it is a common practice.
|
||||||
# john+test@xyc.com is the same as john@xyc.com
|
# john+test@xyc.com is the same as john@xyc.com
|
||||||
@@ -34,10 +21,6 @@ module EmailHelper
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
def normalize_email_body(content)
|
|
||||||
content.to_s.gsub("\r\n", "\n")
|
|
||||||
end
|
|
||||||
|
|
||||||
def modified_liquid_content(email)
|
def modified_liquid_content(email)
|
||||||
# This regex is used to match the code blocks in the content
|
# This regex is used to match the code blocks in the content
|
||||||
# We don't want to process liquid in code blocks
|
# We don't want to process liquid in code blocks
|
||||||
@@ -46,10 +29,7 @@ module EmailHelper
|
|||||||
|
|
||||||
def message_drops(conversation)
|
def message_drops(conversation)
|
||||||
{
|
{
|
||||||
'contact' => ContactDrop.new(conversation.contact),
|
'contact' => ContactDrop.new(conversation.contact)
|
||||||
'conversation' => ConversationDrop.new(conversation),
|
|
||||||
'inbox' => InboxDrop.new(conversation.inbox),
|
|
||||||
'account' => AccountDrop.new(conversation.account)
|
|
||||||
}
|
}
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
module PortalHelper
|
module PortalHelper
|
||||||
include UrlHelper
|
|
||||||
def set_og_image_url(portal_name, title)
|
def set_og_image_url(portal_name, title)
|
||||||
cdn_url = GlobalConfig.get('OG_IMAGE_CDN_URL')['OG_IMAGE_CDN_URL']
|
cdn_url = GlobalConfig.get('OG_IMAGE_CDN_URL')['OG_IMAGE_CDN_URL']
|
||||||
return if cdn_url.blank?
|
return if cdn_url.blank?
|
||||||
@@ -75,17 +74,6 @@ module PortalHelper
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
def generate_portal_brand_url(brand_url, referer)
|
|
||||||
url = URI.parse(brand_url.to_s)
|
|
||||||
query_params = Rack::Utils.parse_query(url.query)
|
|
||||||
query_params['utm_medium'] = 'helpcenter'
|
|
||||||
query_params['utm_campaign'] = 'branding'
|
|
||||||
query_params['utm_source'] = URI.parse(referer).host if url_valid?(referer)
|
|
||||||
|
|
||||||
url.query = query_params.to_query
|
|
||||||
url.to_s
|
|
||||||
end
|
|
||||||
|
|
||||||
def render_category_content(content)
|
def render_category_content(content)
|
||||||
ChatwootMarkdownRenderer.new(content).render_markdown_to_plain_text
|
ChatwootMarkdownRenderer.new(content).render_markdown_to_plain_text
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -53,13 +53,13 @@ module ReportHelper
|
|||||||
end
|
end
|
||||||
|
|
||||||
def resolutions
|
def resolutions
|
||||||
scope.reporting_events.where(account_id: account.id, name: :conversation_resolved,
|
scope.reporting_events.joins(:conversation).select(:conversation_id).where(account_id: account.id, name: :conversation_resolved,
|
||||||
created_at: range)
|
conversations: { status: :resolved }, created_at: range).distinct
|
||||||
end
|
end
|
||||||
|
|
||||||
def bot_resolutions
|
def bot_resolutions
|
||||||
scope.reporting_events.where(account_id: account.id, name: :conversation_bot_resolved,
|
scope.reporting_events.joins(:conversation).select(:conversation_id).where(account_id: account.id, name: :conversation_bot_resolved,
|
||||||
created_at: range)
|
conversations: { status: :resolved }, created_at: range).distinct
|
||||||
end
|
end
|
||||||
|
|
||||||
def bot_handoffs
|
def bot_handoffs
|
||||||
|
|||||||
@@ -9,13 +9,6 @@ captain:
|
|||||||
icon: 'icon-captain'
|
icon: 'icon-captain'
|
||||||
config_key: 'captain'
|
config_key: 'captain'
|
||||||
enterprise: true
|
enterprise: true
|
||||||
saml:
|
|
||||||
name: 'SAML SSO'
|
|
||||||
description: 'Configuration for controlling SAML Single Sign-On availability'
|
|
||||||
enabled: <%= ChatwootApp.enterprise? %>
|
|
||||||
icon: 'icon-lock-line'
|
|
||||||
config_key: 'saml'
|
|
||||||
enterprise: true
|
|
||||||
custom_branding:
|
custom_branding:
|
||||||
name: 'Custom Branding'
|
name: 'Custom Branding'
|
||||||
description: 'Apply your own branding to this installation.'
|
description: 'Apply your own branding to this installation.'
|
||||||
@@ -78,12 +71,6 @@ instagram:
|
|||||||
enabled: true
|
enabled: true
|
||||||
icon: 'icon-instagram'
|
icon: 'icon-instagram'
|
||||||
config_key: 'instagram'
|
config_key: 'instagram'
|
||||||
tiktok:
|
|
||||||
name: 'TikTok'
|
|
||||||
description: 'Stay connected with your customers on TikTok'
|
|
||||||
enabled: true
|
|
||||||
icon: 'icon-tiktok'
|
|
||||||
config_key: 'tiktok'
|
|
||||||
whatsapp:
|
whatsapp:
|
||||||
name: 'WhatsApp'
|
name: 'WhatsApp'
|
||||||
description: 'Manage your WhatsApp business interactions from Chatwoot.'
|
description: 'Manage your WhatsApp business interactions from Chatwoot.'
|
||||||
|
|||||||
@@ -9,7 +9,7 @@ module SuperAdmin::NavigationHelper
|
|||||||
end
|
end
|
||||||
|
|
||||||
# Add general at the beginning
|
# Add general at the beginning
|
||||||
general_feature = [['general', { 'config_key' => 'general', 'name' => 'General', 'icon' => 'icon-gear' }]]
|
general_feature = [['general', { 'config_key' => 'general', 'name' => 'General' }]]
|
||||||
|
|
||||||
general_feature + features.to_a
|
general_feature + features.to_a
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -1,47 +0,0 @@
|
|||||||
module Tiktok::IntegrationHelper
|
|
||||||
# Generates a signed JWT token for Tiktok integration
|
|
||||||
#
|
|
||||||
# @param account_id [Integer] The account ID to encode in the token
|
|
||||||
# @return [String, nil] The encoded JWT token or nil if client secret is missing
|
|
||||||
def generate_tiktok_token(account_id)
|
|
||||||
return if client_secret.blank?
|
|
||||||
|
|
||||||
JWT.encode(token_payload(account_id), client_secret, 'HS256')
|
|
||||||
rescue StandardError => e
|
|
||||||
Rails.logger.error("Failed to generate TikTok token: #{e.message}")
|
|
||||||
nil
|
|
||||||
end
|
|
||||||
|
|
||||||
# Verifies and decodes a Tiktok JWT token
|
|
||||||
#
|
|
||||||
# @param token [String] The JWT token to verify
|
|
||||||
# @return [Integer, nil] The account ID from the token or nil if invalid
|
|
||||||
def verify_tiktok_token(token)
|
|
||||||
return if token.blank? || client_secret.blank?
|
|
||||||
|
|
||||||
decode_token(token, client_secret)
|
|
||||||
end
|
|
||||||
|
|
||||||
private
|
|
||||||
|
|
||||||
def client_secret
|
|
||||||
@client_secret ||= GlobalConfigService.load('TIKTOK_APP_SECRET', nil)
|
|
||||||
end
|
|
||||||
|
|
||||||
def token_payload(account_id)
|
|
||||||
{
|
|
||||||
sub: account_id,
|
|
||||||
iat: Time.current.to_i
|
|
||||||
}
|
|
||||||
end
|
|
||||||
|
|
||||||
def decode_token(token, secret)
|
|
||||||
JWT.decode(token, secret, true, {
|
|
||||||
algorithm: 'HS256',
|
|
||||||
verify_expiration: true
|
|
||||||
}).first['sub']
|
|
||||||
rescue StandardError => e
|
|
||||||
Rails.logger.error("Unexpected error verifying Tiktok token: #{e.message}")
|
|
||||||
nil
|
|
||||||
end
|
|
||||||
end
|
|
||||||
@@ -1,5 +1,6 @@
|
|||||||
<script>
|
<script>
|
||||||
import { mapGetters } from 'vuex';
|
import { mapGetters } from 'vuex';
|
||||||
|
import AddAccountModal from './components/app/AddAccountModal.vue';
|
||||||
import LoadingState from './components/widgets/LoadingState.vue';
|
import LoadingState from './components/widgets/LoadingState.vue';
|
||||||
import NetworkNotification from './components/NetworkNotification.vue';
|
import NetworkNotification from './components/NetworkNotification.vue';
|
||||||
import UpdateBanner from './components/app/UpdateBanner.vue';
|
import UpdateBanner from './components/app/UpdateBanner.vue';
|
||||||
@@ -18,12 +19,12 @@ import {
|
|||||||
verifyServiceWorkerExistence,
|
verifyServiceWorkerExistence,
|
||||||
} from './helper/pushHelper';
|
} from './helper/pushHelper';
|
||||||
import ReconnectService from 'dashboard/helper/ReconnectService';
|
import ReconnectService from 'dashboard/helper/ReconnectService';
|
||||||
import { useUISettings } from 'dashboard/composables/useUISettings';
|
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'App',
|
name: 'App',
|
||||||
|
|
||||||
components: {
|
components: {
|
||||||
|
AddAccountModal,
|
||||||
LoadingState,
|
LoadingState,
|
||||||
NetworkNotification,
|
NetworkNotification,
|
||||||
UpdateBanner,
|
UpdateBanner,
|
||||||
@@ -37,18 +38,17 @@ export default {
|
|||||||
const { accountId } = useAccount();
|
const { accountId } = useAccount();
|
||||||
// Use the font size composable (it automatically sets up the watcher)
|
// Use the font size composable (it automatically sets up the watcher)
|
||||||
const { currentFontSize } = useFontSize();
|
const { currentFontSize } = useFontSize();
|
||||||
const { uiSettings } = useUISettings();
|
|
||||||
|
|
||||||
return {
|
return {
|
||||||
router,
|
router,
|
||||||
store,
|
store,
|
||||||
currentAccountId: accountId,
|
currentAccountId: accountId,
|
||||||
currentFontSize,
|
currentFontSize,
|
||||||
uiSettings,
|
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
|
showAddAccountModal: false,
|
||||||
latestChatwootVersion: null,
|
latestChatwootVersion: null,
|
||||||
reconnectService: null,
|
reconnectService: null,
|
||||||
};
|
};
|
||||||
@@ -61,12 +61,21 @@ export default {
|
|||||||
authUIFlags: 'getAuthUIFlags',
|
authUIFlags: 'getAuthUIFlags',
|
||||||
accountUIFlags: 'accounts/getUIFlags',
|
accountUIFlags: 'accounts/getUIFlags',
|
||||||
}),
|
}),
|
||||||
|
hasAccounts() {
|
||||||
|
const { accounts = [] } = this.currentUser || {};
|
||||||
|
return accounts.length > 0;
|
||||||
|
},
|
||||||
hideOnOnboardingView() {
|
hideOnOnboardingView() {
|
||||||
return !isOnOnboardingView(this.$route);
|
return !isOnOnboardingView(this.$route);
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
watch: {
|
watch: {
|
||||||
|
currentUser() {
|
||||||
|
if (!this.hasAccounts) {
|
||||||
|
this.showAddAccountModal = true;
|
||||||
|
}
|
||||||
|
},
|
||||||
currentAccountId: {
|
currentAccountId: {
|
||||||
immediate: true,
|
immediate: true,
|
||||||
handler() {
|
handler() {
|
||||||
@@ -79,10 +88,7 @@ export default {
|
|||||||
mounted() {
|
mounted() {
|
||||||
this.initializeColorTheme();
|
this.initializeColorTheme();
|
||||||
this.listenToThemeChanges();
|
this.listenToThemeChanges();
|
||||||
// If user locale is set, use it; otherwise use account locale
|
this.setLocale(window.chatwootConfig.selectedLocale);
|
||||||
this.setLocale(
|
|
||||||
this.uiSettings?.locale || window.chatwootConfig.selectedLocale
|
|
||||||
);
|
|
||||||
},
|
},
|
||||||
unmounted() {
|
unmounted() {
|
||||||
if (this.reconnectService) {
|
if (this.reconnectService) {
|
||||||
@@ -108,8 +114,7 @@ export default {
|
|||||||
const { locale, latest_chatwoot_version: latestChatwootVersion } =
|
const { locale, latest_chatwoot_version: latestChatwootVersion } =
|
||||||
this.getAccount(this.currentAccountId);
|
this.getAccount(this.currentAccountId);
|
||||||
const { pubsub_token: pubsubToken } = this.currentUser || {};
|
const { pubsub_token: pubsubToken } = this.currentUser || {};
|
||||||
// If user locale is set, use it; otherwise use account locale
|
this.setLocale(locale);
|
||||||
this.setLocale(this.uiSettings?.locale || locale);
|
|
||||||
this.latestChatwootVersion = latestChatwootVersion;
|
this.latestChatwootVersion = latestChatwootVersion;
|
||||||
vueActionCable.init(this.store, pubsubToken);
|
vueActionCable.init(this.store, pubsubToken);
|
||||||
this.reconnectService = new ReconnectService(this.store, this.router);
|
this.reconnectService = new ReconnectService(this.store, this.router);
|
||||||
@@ -144,6 +149,7 @@ export default {
|
|||||||
<component :is="Component" />
|
<component :is="Component" />
|
||||||
</transition>
|
</transition>
|
||||||
</router-view>
|
</router-view>
|
||||||
|
<AddAccountModal :show="showAddAccountModal" :has-accounts="hasAccounts" />
|
||||||
<WootSnackbarBox />
|
<WootSnackbarBox />
|
||||||
<NetworkNotification />
|
<NetworkNotification />
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -1,43 +0,0 @@
|
|||||||
/* global axios */
|
|
||||||
|
|
||||||
import ApiClient from './ApiClient';
|
|
||||||
|
|
||||||
class AgentCapacityPolicies extends ApiClient {
|
|
||||||
constructor() {
|
|
||||||
super('agent_capacity_policies', { accountScoped: true });
|
|
||||||
}
|
|
||||||
|
|
||||||
getUsers(policyId) {
|
|
||||||
return axios.get(`${this.url}/${policyId}/users`);
|
|
||||||
}
|
|
||||||
|
|
||||||
addUser(policyId, userData) {
|
|
||||||
return axios.post(`${this.url}/${policyId}/users`, {
|
|
||||||
user_id: userData.id,
|
|
||||||
capacity: userData.capacity,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
removeUser(policyId, userId) {
|
|
||||||
return axios.delete(`${this.url}/${policyId}/users/${userId}`);
|
|
||||||
}
|
|
||||||
|
|
||||||
createInboxLimit(policyId, limitData) {
|
|
||||||
return axios.post(`${this.url}/${policyId}/inbox_limits`, {
|
|
||||||
inbox_id: limitData.inboxId,
|
|
||||||
conversation_limit: limitData.conversationLimit,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
updateInboxLimit(policyId, limitId, limitData) {
|
|
||||||
return axios.put(`${this.url}/${policyId}/inbox_limits/${limitId}`, {
|
|
||||||
conversation_limit: limitData.conversationLimit,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
deleteInboxLimit(policyId, limitId) {
|
|
||||||
return axios.delete(`${this.url}/${policyId}/inbox_limits/${limitId}`);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
export default new AgentCapacityPolicies();
|
|
||||||
@@ -1,36 +0,0 @@
|
|||||||
/* global axios */
|
|
||||||
|
|
||||||
import ApiClient from './ApiClient';
|
|
||||||
|
|
||||||
class AssignmentPolicies extends ApiClient {
|
|
||||||
constructor() {
|
|
||||||
super('assignment_policies', { accountScoped: true });
|
|
||||||
}
|
|
||||||
|
|
||||||
getInboxes(policyId) {
|
|
||||||
return axios.get(`${this.url}/${policyId}/inboxes`);
|
|
||||||
}
|
|
||||||
|
|
||||||
setInboxPolicy(inboxId, policyId) {
|
|
||||||
return axios.post(
|
|
||||||
`/api/v1/accounts/${this.accountIdFromRoute}/inboxes/${inboxId}/assignment_policy`,
|
|
||||||
{
|
|
||||||
assignment_policy_id: policyId,
|
|
||||||
}
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
getInboxPolicy(inboxId) {
|
|
||||||
return axios.get(
|
|
||||||
`/api/v1/accounts/${this.accountIdFromRoute}/inboxes/${inboxId}/assignment_policy`
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
removeInboxPolicy(inboxId) {
|
|
||||||
return axios.delete(
|
|
||||||
`/api/v1/accounts/${this.accountIdFromRoute}/inboxes/${inboxId}/assignment_policy`
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
export default new AssignmentPolicies();
|
|
||||||
@@ -1,36 +0,0 @@
|
|||||||
/* global axios */
|
|
||||||
import ApiClient from '../ApiClient';
|
|
||||||
|
|
||||||
class CaptainCustomTools extends ApiClient {
|
|
||||||
constructor() {
|
|
||||||
super('captain/custom_tools', { accountScoped: true });
|
|
||||||
}
|
|
||||||
|
|
||||||
get({ page = 1, searchKey } = {}) {
|
|
||||||
return axios.get(this.url, {
|
|
||||||
params: { page, searchKey },
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
show(id) {
|
|
||||||
return axios.get(`${this.url}/${id}`);
|
|
||||||
}
|
|
||||||
|
|
||||||
create(data = {}) {
|
|
||||||
return axios.post(this.url, {
|
|
||||||
custom_tool: data,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
update(id, data = {}) {
|
|
||||||
return axios.put(`${this.url}/${id}`, {
|
|
||||||
custom_tool: data,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
delete(id) {
|
|
||||||
return axios.delete(`${this.url}/${id}`);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
export default new CaptainCustomTools();
|
|
||||||
@@ -6,11 +6,11 @@ class CaptainResponses extends ApiClient {
|
|||||||
super('captain/assistant_responses', { accountScoped: true });
|
super('captain/assistant_responses', { accountScoped: true });
|
||||||
}
|
}
|
||||||
|
|
||||||
get({ page = 1, search, assistantId, documentId, status } = {}) {
|
get({ page = 1, searchKey, assistantId, documentId, status } = {}) {
|
||||||
return axios.get(this.url, {
|
return axios.get(this.url, {
|
||||||
params: {
|
params: {
|
||||||
page,
|
page,
|
||||||
search,
|
searchKey,
|
||||||
assistant_id: assistantId,
|
assistant_id: assistantId,
|
||||||
document_id: documentId,
|
document_id: documentId,
|
||||||
status,
|
status,
|
||||||
|
|||||||
@@ -1,16 +0,0 @@
|
|||||||
import axios from 'axios';
|
|
||||||
import ApiClient from './ApiClient';
|
|
||||||
import { CHANGELOG_API_URL } from 'shared/constants/links';
|
|
||||||
|
|
||||||
class ChangelogApi extends ApiClient {
|
|
||||||
constructor() {
|
|
||||||
super('changelog', { apiVersion: 'v1' });
|
|
||||||
}
|
|
||||||
|
|
||||||
// eslint-disable-next-line class-methods-use-this
|
|
||||||
fetchFromHub() {
|
|
||||||
return axios.get(CHANGELOG_API_URL);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
export default new ChangelogApi();
|
|
||||||
@@ -1,14 +0,0 @@
|
|||||||
/* global axios */
|
|
||||||
import ApiClient from '../ApiClient';
|
|
||||||
|
|
||||||
class TiktokChannel extends ApiClient {
|
|
||||||
constructor() {
|
|
||||||
super('tiktok', { accountScoped: true });
|
|
||||||
}
|
|
||||||
|
|
||||||
generateAuthorization(payload) {
|
|
||||||
return axios.post(`${this.url}/authorization`, payload);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
export default new TiktokChannel();
|
|
||||||
@@ -1,37 +0,0 @@
|
|||||||
/* global axios */
|
|
||||||
import ApiClient from './ApiClient';
|
|
||||||
|
|
||||||
export const buildCompanyParams = (page, sort) => {
|
|
||||||
let params = `page=${page}`;
|
|
||||||
if (sort) {
|
|
||||||
params = `${params}&sort=${sort}`;
|
|
||||||
}
|
|
||||||
return params;
|
|
||||||
};
|
|
||||||
|
|
||||||
export const buildSearchParams = (query, page, sort) => {
|
|
||||||
let params = `q=${encodeURIComponent(query)}&page=${page}`;
|
|
||||||
if (sort) {
|
|
||||||
params = `${params}&sort=${sort}`;
|
|
||||||
}
|
|
||||||
return params;
|
|
||||||
};
|
|
||||||
|
|
||||||
class CompanyAPI extends ApiClient {
|
|
||||||
constructor() {
|
|
||||||
super('companies', { accountScoped: true });
|
|
||||||
}
|
|
||||||
|
|
||||||
get(params = {}) {
|
|
||||||
const { page = 1, sort = 'name' } = params;
|
|
||||||
const requestURL = `${this.url}?${buildCompanyParams(page, sort)}`;
|
|
||||||
return axios.get(requestURL);
|
|
||||||
}
|
|
||||||
|
|
||||||
search(query = '', page = 1, sort = 'name') {
|
|
||||||
const requestURL = `${this.url}/search?${buildSearchParams(query, page, sort)}`;
|
|
||||||
return axios.get(requestURL);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
export default new CompanyAPI();
|
|
||||||
@@ -47,12 +47,6 @@ class ContactAPI extends ApiClient {
|
|||||||
return axios.get(`${this.url}/${contactId}/labels`);
|
return axios.get(`${this.url}/${contactId}/labels`);
|
||||||
}
|
}
|
||||||
|
|
||||||
initiateCall(contactId, inboxId) {
|
|
||||||
return axios.post(`${this.url}/${contactId}/call`, {
|
|
||||||
inbox_id: inboxId,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
updateContactLabels(contactId, labels) {
|
updateContactLabels(contactId, labels) {
|
||||||
return axios.post(`${this.url}/${contactId}/labels`, { labels });
|
return axios.post(`${this.url}/${contactId}/labels`, { labels });
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -23,10 +23,6 @@ class EnterpriseAccountAPI extends ApiClient {
|
|||||||
action_type: action,
|
action_type: action,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
createTopupCheckout(credits) {
|
|
||||||
return axios.post(`${this.url}topup_checkout`, { credits });
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export default new EnterpriseAccountAPI();
|
export default new EnterpriseAccountAPI();
|
||||||
|
|||||||
@@ -11,8 +11,6 @@ describe('#enterpriseAccountAPI', () => {
|
|||||||
expect(accountAPI).toHaveProperty('delete');
|
expect(accountAPI).toHaveProperty('delete');
|
||||||
expect(accountAPI).toHaveProperty('checkout');
|
expect(accountAPI).toHaveProperty('checkout');
|
||||||
expect(accountAPI).toHaveProperty('toggleDeletion');
|
expect(accountAPI).toHaveProperty('toggleDeletion');
|
||||||
expect(accountAPI).toHaveProperty('createTopupCheckout');
|
|
||||||
expect(accountAPI).toHaveProperty('getLimits');
|
|
||||||
});
|
});
|
||||||
|
|
||||||
describe('API calls', () => {
|
describe('API calls', () => {
|
||||||
@@ -61,29 +59,5 @@ describe('#enterpriseAccountAPI', () => {
|
|||||||
{ action_type: 'undelete' }
|
{ action_type: 'undelete' }
|
||||||
);
|
);
|
||||||
});
|
});
|
||||||
|
|
||||||
it('#createTopupCheckout with credits', () => {
|
|
||||||
accountAPI.createTopupCheckout(1000);
|
|
||||||
expect(axiosMock.post).toHaveBeenCalledWith(
|
|
||||||
'/enterprise/api/v1/topup_checkout',
|
|
||||||
{ credits: 1000 }
|
|
||||||
);
|
|
||||||
});
|
|
||||||
|
|
||||||
it('#createTopupCheckout with different credit amounts', () => {
|
|
||||||
const creditAmounts = [1000, 2500, 6000, 12000];
|
|
||||||
creditAmounts.forEach(credits => {
|
|
||||||
accountAPI.createTopupCheckout(credits);
|
|
||||||
expect(axiosMock.post).toHaveBeenCalledWith(
|
|
||||||
'/enterprise/api/v1/topup_checkout',
|
|
||||||
{ credits }
|
|
||||||
);
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
it('#getLimits', () => {
|
|
||||||
accountAPI.getLimits();
|
|
||||||
expect(axiosMock.get).toHaveBeenCalledWith('/enterprise/api/v1/limits');
|
|
||||||
});
|
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -63,9 +63,10 @@ class ConversationApi extends ApiClient {
|
|||||||
}
|
}
|
||||||
|
|
||||||
assignAgent({ conversationId, agentId }) {
|
assignAgent({ conversationId, agentId }) {
|
||||||
return axios.post(`${this.url}/${conversationId}/assignments`, {
|
return axios.post(
|
||||||
assignee_id: agentId,
|
`${this.url}/${conversationId}/assignments?assignee_id=${agentId}`,
|
||||||
});
|
{}
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
assignTeam({ conversationId, teamId }) {
|
assignTeam({ conversationId, teamId }) {
|
||||||
|
|||||||
@@ -1,14 +0,0 @@
|
|||||||
/* global axios */
|
|
||||||
import ApiClient from './ApiClient';
|
|
||||||
|
|
||||||
class InboxHealthAPI extends ApiClient {
|
|
||||||
constructor() {
|
|
||||||
super('inboxes', { accountScoped: true });
|
|
||||||
}
|
|
||||||
|
|
||||||
getHealthStatus(inboxId) {
|
|
||||||
return axios.get(`${this.url}/${inboxId}/health`);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
export default new InboxHealthAPI();
|
|
||||||
@@ -57,12 +57,6 @@ class OpenAIAPI extends ApiClient {
|
|||||||
content,
|
content,
|
||||||
};
|
};
|
||||||
|
|
||||||
// Always include conversation_display_id when available for session tracking
|
|
||||||
if (conversationId) {
|
|
||||||
data.conversation_display_id = conversationId;
|
|
||||||
}
|
|
||||||
|
|
||||||
// For conversation-level events, only send conversation_display_id
|
|
||||||
if (this.conversation_events.includes(type)) {
|
if (this.conversation_events.includes(type)) {
|
||||||
data = {
|
data = {
|
||||||
conversation_display_id: conversationId,
|
conversation_display_id: conversationId,
|
||||||
|
|||||||
@@ -1,28 +0,0 @@
|
|||||||
/* global axios */
|
|
||||||
import ApiClient from './ApiClient';
|
|
||||||
|
|
||||||
class MfaAPI extends ApiClient {
|
|
||||||
constructor() {
|
|
||||||
super('profile/mfa', { accountScoped: false });
|
|
||||||
}
|
|
||||||
|
|
||||||
enable() {
|
|
||||||
return axios.post(`${this.url}`);
|
|
||||||
}
|
|
||||||
|
|
||||||
verify(otpCode) {
|
|
||||||
return axios.post(`${this.url}/verify`, { otp_code: otpCode });
|
|
||||||
}
|
|
||||||
|
|
||||||
disable(password, otpCode) {
|
|
||||||
return axios.delete(this.url, {
|
|
||||||
data: { password, otp_code: otpCode },
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
regenerateBackupCodes(otpCode) {
|
|
||||||
return axios.post(`${this.url}/backup_codes`, { otp_code: otpCode });
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
export default new MfaAPI();
|
|
||||||
@@ -1,26 +0,0 @@
|
|||||||
/* global axios */
|
|
||||||
import ApiClient from './ApiClient';
|
|
||||||
|
|
||||||
class SamlSettingsAPI extends ApiClient {
|
|
||||||
constructor() {
|
|
||||||
super('saml_settings', { accountScoped: true });
|
|
||||||
}
|
|
||||||
|
|
||||||
get() {
|
|
||||||
return axios.get(this.url);
|
|
||||||
}
|
|
||||||
|
|
||||||
create(data) {
|
|
||||||
return axios.post(this.url, { saml_settings: data });
|
|
||||||
}
|
|
||||||
|
|
||||||
update(data) {
|
|
||||||
return axios.put(this.url, { saml_settings: data });
|
|
||||||
}
|
|
||||||
|
|
||||||
delete() {
|
|
||||||
return axios.delete(this.url);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
export default new SamlSettingsAPI();
|
|
||||||
@@ -1,98 +0,0 @@
|
|||||||
import agentCapacityPolicies from '../agentCapacityPolicies';
|
|
||||||
import ApiClient from '../ApiClient';
|
|
||||||
|
|
||||||
describe('#AgentCapacityPoliciesAPI', () => {
|
|
||||||
it('creates correct instance', () => {
|
|
||||||
expect(agentCapacityPolicies).toBeInstanceOf(ApiClient);
|
|
||||||
expect(agentCapacityPolicies).toHaveProperty('get');
|
|
||||||
expect(agentCapacityPolicies).toHaveProperty('show');
|
|
||||||
expect(agentCapacityPolicies).toHaveProperty('create');
|
|
||||||
expect(agentCapacityPolicies).toHaveProperty('update');
|
|
||||||
expect(agentCapacityPolicies).toHaveProperty('delete');
|
|
||||||
expect(agentCapacityPolicies).toHaveProperty('getUsers');
|
|
||||||
expect(agentCapacityPolicies).toHaveProperty('addUser');
|
|
||||||
expect(agentCapacityPolicies).toHaveProperty('removeUser');
|
|
||||||
expect(agentCapacityPolicies).toHaveProperty('createInboxLimit');
|
|
||||||
expect(agentCapacityPolicies).toHaveProperty('updateInboxLimit');
|
|
||||||
expect(agentCapacityPolicies).toHaveProperty('deleteInboxLimit');
|
|
||||||
});
|
|
||||||
|
|
||||||
describe('API calls', () => {
|
|
||||||
const originalAxios = window.axios;
|
|
||||||
const axiosMock = {
|
|
||||||
get: vi.fn(() => Promise.resolve()),
|
|
||||||
post: vi.fn(() => Promise.resolve()),
|
|
||||||
put: vi.fn(() => Promise.resolve()),
|
|
||||||
delete: vi.fn(() => Promise.resolve()),
|
|
||||||
};
|
|
||||||
|
|
||||||
beforeEach(() => {
|
|
||||||
window.axios = axiosMock;
|
|
||||||
// Mock accountIdFromRoute
|
|
||||||
Object.defineProperty(agentCapacityPolicies, 'accountIdFromRoute', {
|
|
||||||
get: () => '1',
|
|
||||||
configurable: true,
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
afterEach(() => {
|
|
||||||
window.axios = originalAxios;
|
|
||||||
});
|
|
||||||
|
|
||||||
it('#getUsers', () => {
|
|
||||||
agentCapacityPolicies.getUsers(123);
|
|
||||||
expect(axiosMock.get).toHaveBeenCalledWith(
|
|
||||||
'/api/v1/accounts/1/agent_capacity_policies/123/users'
|
|
||||||
);
|
|
||||||
});
|
|
||||||
|
|
||||||
it('#addUser', () => {
|
|
||||||
const userData = { id: 456, capacity: 20 };
|
|
||||||
agentCapacityPolicies.addUser(123, userData);
|
|
||||||
expect(axiosMock.post).toHaveBeenCalledWith(
|
|
||||||
'/api/v1/accounts/1/agent_capacity_policies/123/users',
|
|
||||||
{
|
|
||||||
user_id: 456,
|
|
||||||
capacity: 20,
|
|
||||||
}
|
|
||||||
);
|
|
||||||
});
|
|
||||||
|
|
||||||
it('#removeUser', () => {
|
|
||||||
agentCapacityPolicies.removeUser(123, 456);
|
|
||||||
expect(axiosMock.delete).toHaveBeenCalledWith(
|
|
||||||
'/api/v1/accounts/1/agent_capacity_policies/123/users/456'
|
|
||||||
);
|
|
||||||
});
|
|
||||||
|
|
||||||
it('#createInboxLimit', () => {
|
|
||||||
const limitData = { inboxId: 1, conversationLimit: 10 };
|
|
||||||
agentCapacityPolicies.createInboxLimit(123, limitData);
|
|
||||||
expect(axiosMock.post).toHaveBeenCalledWith(
|
|
||||||
'/api/v1/accounts/1/agent_capacity_policies/123/inbox_limits',
|
|
||||||
{
|
|
||||||
inbox_id: 1,
|
|
||||||
conversation_limit: 10,
|
|
||||||
}
|
|
||||||
);
|
|
||||||
});
|
|
||||||
|
|
||||||
it('#updateInboxLimit', () => {
|
|
||||||
const limitData = { conversationLimit: 15 };
|
|
||||||
agentCapacityPolicies.updateInboxLimit(123, 789, limitData);
|
|
||||||
expect(axiosMock.put).toHaveBeenCalledWith(
|
|
||||||
'/api/v1/accounts/1/agent_capacity_policies/123/inbox_limits/789',
|
|
||||||
{
|
|
||||||
conversation_limit: 15,
|
|
||||||
}
|
|
||||||
);
|
|
||||||
});
|
|
||||||
|
|
||||||
it('#deleteInboxLimit', () => {
|
|
||||||
agentCapacityPolicies.deleteInboxLimit(123, 789);
|
|
||||||
expect(axiosMock.delete).toHaveBeenCalledWith(
|
|
||||||
'/api/v1/accounts/1/agent_capacity_policies/123/inbox_limits/789'
|
|
||||||
);
|
|
||||||
});
|
|
||||||
});
|
|
||||||
});
|
|
||||||
@@ -1,70 +0,0 @@
|
|||||||
import assignmentPolicies from '../assignmentPolicies';
|
|
||||||
import ApiClient from '../ApiClient';
|
|
||||||
|
|
||||||
describe('#AssignmentPoliciesAPI', () => {
|
|
||||||
it('creates correct instance', () => {
|
|
||||||
expect(assignmentPolicies).toBeInstanceOf(ApiClient);
|
|
||||||
expect(assignmentPolicies).toHaveProperty('get');
|
|
||||||
expect(assignmentPolicies).toHaveProperty('show');
|
|
||||||
expect(assignmentPolicies).toHaveProperty('create');
|
|
||||||
expect(assignmentPolicies).toHaveProperty('update');
|
|
||||||
expect(assignmentPolicies).toHaveProperty('delete');
|
|
||||||
expect(assignmentPolicies).toHaveProperty('getInboxes');
|
|
||||||
expect(assignmentPolicies).toHaveProperty('setInboxPolicy');
|
|
||||||
expect(assignmentPolicies).toHaveProperty('getInboxPolicy');
|
|
||||||
expect(assignmentPolicies).toHaveProperty('removeInboxPolicy');
|
|
||||||
});
|
|
||||||
|
|
||||||
describe('API calls', () => {
|
|
||||||
const originalAxios = window.axios;
|
|
||||||
const axiosMock = {
|
|
||||||
get: vi.fn(() => Promise.resolve()),
|
|
||||||
post: vi.fn(() => Promise.resolve()),
|
|
||||||
delete: vi.fn(() => Promise.resolve()),
|
|
||||||
};
|
|
||||||
|
|
||||||
beforeEach(() => {
|
|
||||||
window.axios = axiosMock;
|
|
||||||
// Mock accountIdFromRoute
|
|
||||||
Object.defineProperty(assignmentPolicies, 'accountIdFromRoute', {
|
|
||||||
get: () => '1',
|
|
||||||
configurable: true,
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
afterEach(() => {
|
|
||||||
window.axios = originalAxios;
|
|
||||||
});
|
|
||||||
|
|
||||||
it('#getInboxes', () => {
|
|
||||||
assignmentPolicies.getInboxes(123);
|
|
||||||
expect(axiosMock.get).toHaveBeenCalledWith(
|
|
||||||
'/api/v1/accounts/1/assignment_policies/123/inboxes'
|
|
||||||
);
|
|
||||||
});
|
|
||||||
|
|
||||||
it('#setInboxPolicy', () => {
|
|
||||||
assignmentPolicies.setInboxPolicy(456, 123);
|
|
||||||
expect(axiosMock.post).toHaveBeenCalledWith(
|
|
||||||
'/api/v1/accounts/1/inboxes/456/assignment_policy',
|
|
||||||
{
|
|
||||||
assignment_policy_id: 123,
|
|
||||||
}
|
|
||||||
);
|
|
||||||
});
|
|
||||||
|
|
||||||
it('#getInboxPolicy', () => {
|
|
||||||
assignmentPolicies.getInboxPolicy(456);
|
|
||||||
expect(axiosMock.get).toHaveBeenCalledWith(
|
|
||||||
'/api/v1/accounts/1/inboxes/456/assignment_policy'
|
|
||||||
);
|
|
||||||
});
|
|
||||||
|
|
||||||
it('#removeInboxPolicy', () => {
|
|
||||||
assignmentPolicies.removeInboxPolicy(456);
|
|
||||||
expect(axiosMock.delete).toHaveBeenCalledWith(
|
|
||||||
'/api/v1/accounts/1/inboxes/456/assignment_policy'
|
|
||||||
);
|
|
||||||
});
|
|
||||||
});
|
|
||||||
});
|
|
||||||
@@ -1,142 +0,0 @@
|
|||||||
import companyAPI, {
|
|
||||||
buildCompanyParams,
|
|
||||||
buildSearchParams,
|
|
||||||
} from '../companies';
|
|
||||||
import ApiClient from '../ApiClient';
|
|
||||||
|
|
||||||
describe('#CompanyAPI', () => {
|
|
||||||
it('creates correct instance', () => {
|
|
||||||
expect(companyAPI).toBeInstanceOf(ApiClient);
|
|
||||||
expect(companyAPI).toHaveProperty('get');
|
|
||||||
expect(companyAPI).toHaveProperty('show');
|
|
||||||
expect(companyAPI).toHaveProperty('create');
|
|
||||||
expect(companyAPI).toHaveProperty('update');
|
|
||||||
expect(companyAPI).toHaveProperty('delete');
|
|
||||||
expect(companyAPI).toHaveProperty('search');
|
|
||||||
});
|
|
||||||
|
|
||||||
describe('API calls', () => {
|
|
||||||
const originalAxios = window.axios;
|
|
||||||
const axiosMock = {
|
|
||||||
post: vi.fn(() => Promise.resolve()),
|
|
||||||
get: vi.fn(() => Promise.resolve()),
|
|
||||||
patch: vi.fn(() => Promise.resolve()),
|
|
||||||
delete: vi.fn(() => Promise.resolve()),
|
|
||||||
};
|
|
||||||
|
|
||||||
beforeEach(() => {
|
|
||||||
window.axios = axiosMock;
|
|
||||||
});
|
|
||||||
|
|
||||||
afterEach(() => {
|
|
||||||
window.axios = originalAxios;
|
|
||||||
});
|
|
||||||
|
|
||||||
it('#get with default params', () => {
|
|
||||||
companyAPI.get({});
|
|
||||||
expect(axiosMock.get).toHaveBeenCalledWith(
|
|
||||||
'/api/v1/companies?page=1&sort=name'
|
|
||||||
);
|
|
||||||
});
|
|
||||||
|
|
||||||
it('#get with page and sort params', () => {
|
|
||||||
companyAPI.get({ page: 2, sort: 'domain' });
|
|
||||||
expect(axiosMock.get).toHaveBeenCalledWith(
|
|
||||||
'/api/v1/companies?page=2&sort=domain'
|
|
||||||
);
|
|
||||||
});
|
|
||||||
|
|
||||||
it('#get with descending sort', () => {
|
|
||||||
companyAPI.get({ page: 1, sort: '-created_at' });
|
|
||||||
expect(axiosMock.get).toHaveBeenCalledWith(
|
|
||||||
'/api/v1/companies?page=1&sort=-created_at'
|
|
||||||
);
|
|
||||||
});
|
|
||||||
|
|
||||||
it('#search with query', () => {
|
|
||||||
companyAPI.search('acme', 1, 'name');
|
|
||||||
expect(axiosMock.get).toHaveBeenCalledWith(
|
|
||||||
'/api/v1/companies/search?q=acme&page=1&sort=name'
|
|
||||||
);
|
|
||||||
});
|
|
||||||
|
|
||||||
it('#search with special characters in query', () => {
|
|
||||||
companyAPI.search('acme & co', 2, 'domain');
|
|
||||||
expect(axiosMock.get).toHaveBeenCalledWith(
|
|
||||||
'/api/v1/companies/search?q=acme%20%26%20co&page=2&sort=domain'
|
|
||||||
);
|
|
||||||
});
|
|
||||||
|
|
||||||
it('#search with descending sort', () => {
|
|
||||||
companyAPI.search('test', 1, '-created_at');
|
|
||||||
expect(axiosMock.get).toHaveBeenCalledWith(
|
|
||||||
'/api/v1/companies/search?q=test&page=1&sort=-created_at'
|
|
||||||
);
|
|
||||||
});
|
|
||||||
|
|
||||||
it('#search with empty query', () => {
|
|
||||||
companyAPI.search('', 1, 'name');
|
|
||||||
expect(axiosMock.get).toHaveBeenCalledWith(
|
|
||||||
'/api/v1/companies/search?q=&page=1&sort=name'
|
|
||||||
);
|
|
||||||
});
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
describe('#buildCompanyParams', () => {
|
|
||||||
it('returns correct string with page only', () => {
|
|
||||||
expect(buildCompanyParams(1)).toBe('page=1');
|
|
||||||
});
|
|
||||||
|
|
||||||
it('returns correct string with page and sort', () => {
|
|
||||||
expect(buildCompanyParams(1, 'name')).toBe('page=1&sort=name');
|
|
||||||
});
|
|
||||||
|
|
||||||
it('returns correct string with different page', () => {
|
|
||||||
expect(buildCompanyParams(3, 'domain')).toBe('page=3&sort=domain');
|
|
||||||
});
|
|
||||||
|
|
||||||
it('returns correct string with descending sort', () => {
|
|
||||||
expect(buildCompanyParams(1, '-created_at')).toBe(
|
|
||||||
'page=1&sort=-created_at'
|
|
||||||
);
|
|
||||||
});
|
|
||||||
|
|
||||||
it('returns correct string without sort parameter', () => {
|
|
||||||
expect(buildCompanyParams(2, '')).toBe('page=2');
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
describe('#buildSearchParams', () => {
|
|
||||||
it('returns correct string with all parameters', () => {
|
|
||||||
expect(buildSearchParams('acme', 1, 'name')).toBe(
|
|
||||||
'q=acme&page=1&sort=name'
|
|
||||||
);
|
|
||||||
});
|
|
||||||
|
|
||||||
it('returns correct string with special characters', () => {
|
|
||||||
expect(buildSearchParams('acme & co', 2, 'domain')).toBe(
|
|
||||||
'q=acme%20%26%20co&page=2&sort=domain'
|
|
||||||
);
|
|
||||||
});
|
|
||||||
|
|
||||||
it('returns correct string with empty query', () => {
|
|
||||||
expect(buildSearchParams('', 1, 'name')).toBe('q=&page=1&sort=name');
|
|
||||||
});
|
|
||||||
|
|
||||||
it('returns correct string without sort parameter', () => {
|
|
||||||
expect(buildSearchParams('test', 1, '')).toBe('q=test&page=1');
|
|
||||||
});
|
|
||||||
|
|
||||||
it('returns correct string with descending sort', () => {
|
|
||||||
expect(buildSearchParams('company', 3, '-created_at')).toBe(
|
|
||||||
'q=company&page=3&sort=-created_at'
|
|
||||||
);
|
|
||||||
});
|
|
||||||
|
|
||||||
it('encodes special characters correctly', () => {
|
|
||||||
expect(buildSearchParams('test@example.com', 1, 'name')).toBe(
|
|
||||||
'q=test%40example.com&page=1&sort=name'
|
|
||||||
);
|
|
||||||
});
|
|
||||||
});
|
|
||||||
@@ -92,10 +92,8 @@ describe('#ConversationAPI', () => {
|
|||||||
it('#assignAgent', () => {
|
it('#assignAgent', () => {
|
||||||
conversationAPI.assignAgent({ conversationId: 12, agentId: 34 });
|
conversationAPI.assignAgent({ conversationId: 12, agentId: 34 });
|
||||||
expect(axiosMock.post).toHaveBeenCalledWith(
|
expect(axiosMock.post).toHaveBeenCalledWith(
|
||||||
`/api/v1/conversations/12/assignments`,
|
`/api/v1/conversations/12/assignments?assignee_id=34`,
|
||||||
{
|
{}
|
||||||
assignee_id: 34,
|
|
||||||
}
|
|
||||||
);
|
);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|||||||
@@ -1,35 +0,0 @@
|
|||||||
import ApiClient from '../ApiClient';
|
|
||||||
import tiktokClient from '../channel/tiktokClient';
|
|
||||||
|
|
||||||
describe('#TiktokClient', () => {
|
|
||||||
it('creates correct instance', () => {
|
|
||||||
expect(tiktokClient).toBeInstanceOf(ApiClient);
|
|
||||||
expect(tiktokClient).toHaveProperty('generateAuthorization');
|
|
||||||
});
|
|
||||||
|
|
||||||
describe('#generateAuthorization', () => {
|
|
||||||
const originalAxios = window.axios;
|
|
||||||
const originalPathname = window.location.pathname;
|
|
||||||
const axiosMock = {
|
|
||||||
post: vi.fn(() => Promise.resolve()),
|
|
||||||
};
|
|
||||||
|
|
||||||
beforeEach(() => {
|
|
||||||
window.axios = axiosMock;
|
|
||||||
window.history.pushState({}, '', '/app/accounts/1/settings');
|
|
||||||
});
|
|
||||||
|
|
||||||
afterEach(() => {
|
|
||||||
window.axios = originalAxios;
|
|
||||||
window.history.pushState({}, '', originalPathname);
|
|
||||||
});
|
|
||||||
|
|
||||||
it('posts to the authorization endpoint', () => {
|
|
||||||
tiktokClient.generateAuthorization({ state: 'test-state' });
|
|
||||||
expect(axiosMock.post).toHaveBeenCalledWith(
|
|
||||||
'/api/v1/accounts/1/tiktok/authorization',
|
|
||||||
{ state: 'test-state' }
|
|
||||||
);
|
|
||||||
});
|
|
||||||
});
|
|
||||||
});
|
|
||||||
@@ -1,16 +0,0 @@
|
|||||||
/* global axios */
|
|
||||||
import ApiClient from './ApiClient';
|
|
||||||
|
|
||||||
class YearInReviewAPI extends ApiClient {
|
|
||||||
constructor() {
|
|
||||||
super('year_in_review', { accountScoped: true, apiVersion: 'v2' });
|
|
||||||
}
|
|
||||||
|
|
||||||
get(year) {
|
|
||||||
return axios.get(`${this.url}`, {
|
|
||||||
params: { year },
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
export default new YearInReviewAPI();
|
|
||||||
-116
@@ -1,116 +0,0 @@
|
|||||||
<script setup>
|
|
||||||
import AgentCapacityPolicyCard from './AgentCapacityPolicyCard.vue';
|
|
||||||
|
|
||||||
const mockUsers = [
|
|
||||||
{
|
|
||||||
id: 1,
|
|
||||||
name: 'John Smith',
|
|
||||||
email: 'john.smith@example.com',
|
|
||||||
avatarUrl: 'https://i.pravatar.cc/150?img=1',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: 2,
|
|
||||||
name: 'Sarah Johnson',
|
|
||||||
email: 'sarah.johnson@example.com',
|
|
||||||
avatarUrl: 'https://i.pravatar.cc/150?img=2',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: 3,
|
|
||||||
name: 'Mike Chen',
|
|
||||||
email: 'mike.chen@example.com',
|
|
||||||
avatarUrl: 'https://i.pravatar.cc/150?img=3',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: 4,
|
|
||||||
name: 'Emily Davis',
|
|
||||||
email: 'emily.davis@example.com',
|
|
||||||
avatarUrl: 'https://i.pravatar.cc/150?img=4',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: 5,
|
|
||||||
name: 'Alex Rodriguez',
|
|
||||||
email: 'alex.rodriguez@example.com',
|
|
||||||
avatarUrl: 'https://i.pravatar.cc/150?img=5',
|
|
||||||
},
|
|
||||||
];
|
|
||||||
|
|
||||||
const withCount = policy => ({
|
|
||||||
...policy,
|
|
||||||
assignedAgentCount: policy.users.length,
|
|
||||||
});
|
|
||||||
|
|
||||||
const policyA = withCount({
|
|
||||||
id: 1,
|
|
||||||
name: 'High Volume Support',
|
|
||||||
description:
|
|
||||||
'Capacity-based policy for handling high conversation volumes with experienced agents',
|
|
||||||
users: [mockUsers[0], mockUsers[1], mockUsers[2]],
|
|
||||||
isFetchingUsers: false,
|
|
||||||
});
|
|
||||||
|
|
||||||
const policyB = withCount({
|
|
||||||
id: 2,
|
|
||||||
name: 'Specialized Team',
|
|
||||||
description: 'Custom capacity limits for specialized support team members',
|
|
||||||
users: [mockUsers[3], mockUsers[4]],
|
|
||||||
isFetchingUsers: false,
|
|
||||||
});
|
|
||||||
|
|
||||||
const emptyPolicy = withCount({
|
|
||||||
id: 3,
|
|
||||||
name: 'New Policy',
|
|
||||||
description: 'Recently created policy with no assigned agents yet',
|
|
||||||
users: [],
|
|
||||||
isFetchingUsers: false,
|
|
||||||
});
|
|
||||||
|
|
||||||
const loadingPolicy = withCount({
|
|
||||||
id: 4,
|
|
||||||
name: 'Loading Policy',
|
|
||||||
description: 'Policy currently loading agent information',
|
|
||||||
users: [],
|
|
||||||
isFetchingUsers: true,
|
|
||||||
});
|
|
||||||
|
|
||||||
const onEdit = id => console.log('Edit policy:', id);
|
|
||||||
const onDelete = id => console.log('Delete policy:', id);
|
|
||||||
const onFetchUsers = id => console.log('Fetch users for policy:', id);
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<template>
|
|
||||||
<Story
|
|
||||||
title="Components/AgentManagementPolicy/AgentCapacityPolicyCard"
|
|
||||||
:layout="{ type: 'grid', width: '1200px' }"
|
|
||||||
>
|
|
||||||
<Variant title="Multiple Cards (Various States)">
|
|
||||||
<div class="p-4 bg-n-background">
|
|
||||||
<div class="grid grid-cols-1 gap-4">
|
|
||||||
<AgentCapacityPolicyCard
|
|
||||||
v-bind="policyA"
|
|
||||||
@edit="onEdit"
|
|
||||||
@delete="onDelete"
|
|
||||||
@fetch-users="onFetchUsers"
|
|
||||||
/>
|
|
||||||
<AgentCapacityPolicyCard
|
|
||||||
v-bind="policyB"
|
|
||||||
@edit="onEdit"
|
|
||||||
@delete="onDelete"
|
|
||||||
@fetch-users="onFetchUsers"
|
|
||||||
/>
|
|
||||||
<AgentCapacityPolicyCard
|
|
||||||
v-bind="emptyPolicy"
|
|
||||||
@edit="onEdit"
|
|
||||||
@delete="onDelete"
|
|
||||||
@fetch-users="onFetchUsers"
|
|
||||||
/>
|
|
||||||
<AgentCapacityPolicyCard
|
|
||||||
v-bind="loadingPolicy"
|
|
||||||
@edit="onEdit"
|
|
||||||
@delete="onDelete"
|
|
||||||
@fetch-users="onFetchUsers"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</Variant>
|
|
||||||
</Story>
|
|
||||||
</template>
|
|
||||||
-86
@@ -1,86 +0,0 @@
|
|||||||
<script setup>
|
|
||||||
import { computed } from 'vue';
|
|
||||||
import { useI18n } from 'vue-i18n';
|
|
||||||
|
|
||||||
import Button from 'dashboard/components-next/button/Button.vue';
|
|
||||||
import CardLayout from 'dashboard/components-next/CardLayout.vue';
|
|
||||||
import CardPopover from '../components/CardPopover.vue';
|
|
||||||
|
|
||||||
const props = defineProps({
|
|
||||||
id: { type: Number, required: true },
|
|
||||||
name: { type: String, default: '' },
|
|
||||||
description: { type: String, default: '' },
|
|
||||||
assignedAgentCount: { type: Number, default: 0 },
|
|
||||||
users: { type: Array, default: () => [] },
|
|
||||||
isFetchingUsers: { type: Boolean, default: false },
|
|
||||||
});
|
|
||||||
|
|
||||||
const emit = defineEmits(['edit', 'delete', 'fetchUsers']);
|
|
||||||
|
|
||||||
const { t } = useI18n();
|
|
||||||
|
|
||||||
const users = computed(() => {
|
|
||||||
return props.users.map(user => {
|
|
||||||
return {
|
|
||||||
name: user.name,
|
|
||||||
key: user.id,
|
|
||||||
email: user.email,
|
|
||||||
avatarUrl: user.avatarUrl,
|
|
||||||
};
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
const handleEdit = () => {
|
|
||||||
emit('edit', props.id);
|
|
||||||
};
|
|
||||||
|
|
||||||
const handleDelete = () => {
|
|
||||||
emit('delete', props.id);
|
|
||||||
};
|
|
||||||
|
|
||||||
const handleFetchUsers = () => {
|
|
||||||
if (props.users?.length > 0) return;
|
|
||||||
emit('fetchUsers', props.id);
|
|
||||||
};
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<template>
|
|
||||||
<CardLayout class="[&>div]:px-5">
|
|
||||||
<div class="flex flex-col gap-2 relative justify-between w-full">
|
|
||||||
<div class="flex items-center gap-3 justify-between w-full">
|
|
||||||
<div class="flex items-center gap-3">
|
|
||||||
<h3 class="text-base font-medium text-n-slate-12 line-clamp-1">
|
|
||||||
{{ name }}
|
|
||||||
</h3>
|
|
||||||
<CardPopover
|
|
||||||
:title="
|
|
||||||
t('ASSIGNMENT_POLICY.AGENT_CAPACITY_POLICY.INDEX.CARD.POPOVER')
|
|
||||||
"
|
|
||||||
icon="i-lucide-users-round"
|
|
||||||
:count="assignedAgentCount"
|
|
||||||
:items="users"
|
|
||||||
:is-fetching="isFetchingUsers"
|
|
||||||
@fetch="handleFetchUsers"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
<div class="flex items-center gap-2">
|
|
||||||
<Button
|
|
||||||
:label="
|
|
||||||
t('ASSIGNMENT_POLICY.AGENT_CAPACITY_POLICY.INDEX.CARD.EDIT')
|
|
||||||
"
|
|
||||||
sm
|
|
||||||
slate
|
|
||||||
link
|
|
||||||
class="px-2"
|
|
||||||
@click="handleEdit"
|
|
||||||
/>
|
|
||||||
<div class="w-px h-2.5 bg-n-slate-5" />
|
|
||||||
<Button icon="i-lucide-trash" sm slate ghost @click="handleDelete" />
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<p class="text-n-slate-11 text-sm line-clamp-1 mb-0 py-1">
|
|
||||||
{{ description }}
|
|
||||||
</p>
|
|
||||||
</div>
|
|
||||||
</CardLayout>
|
|
||||||
</template>
|
|
||||||
-63
@@ -1,63 +0,0 @@
|
|||||||
<script setup>
|
|
||||||
import AssignmentCard from './AssignmentCard.vue';
|
|
||||||
|
|
||||||
const agentAssignments = [
|
|
||||||
{
|
|
||||||
id: 1,
|
|
||||||
title: 'Assignment policy',
|
|
||||||
description: 'Manage how conversations get assigned in inboxes.',
|
|
||||||
features: [
|
|
||||||
{
|
|
||||||
icon: 'i-lucide-circle-fading-arrow-up',
|
|
||||||
label: 'Assign by conversations evenly or by available capacity',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
icon: 'i-lucide-scale',
|
|
||||||
label: 'Add fair distribution rules to avoid overloading any agent',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
icon: 'i-lucide-inbox',
|
|
||||||
label: 'Add inboxes to a policy - one policy per inbox',
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: 2,
|
|
||||||
title: 'Agent capacity policy',
|
|
||||||
description: 'Manage workload for agents.',
|
|
||||||
features: [
|
|
||||||
{
|
|
||||||
icon: 'i-lucide-glass-water',
|
|
||||||
label: 'Define maximum conversations per inbox',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
icon: 'i-lucide-circle-minus',
|
|
||||||
label: 'Create exceptions based on labels and time',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
icon: 'i-lucide-users-round',
|
|
||||||
label: 'Add agents to a policy - one policy per agent',
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
];
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<template>
|
|
||||||
<Story
|
|
||||||
title="Components/AgentManagementPolicy/AssignmentCard"
|
|
||||||
:layout="{ type: 'grid', width: '1000px' }"
|
|
||||||
>
|
|
||||||
<Variant title="Assignment Card">
|
|
||||||
<div class="px-4 py-4 bg-n-background flex gap-6 justify-between">
|
|
||||||
<AssignmentCard
|
|
||||||
v-for="(item, index) in agentAssignments"
|
|
||||||
:key="index"
|
|
||||||
:title="item.title"
|
|
||||||
:description="item.description"
|
|
||||||
:features="item.features"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
</Variant>
|
|
||||||
</Story>
|
|
||||||
</template>
|
|
||||||
-49
@@ -1,49 +0,0 @@
|
|||||||
<script setup>
|
|
||||||
import Icon from 'dashboard/components-next/icon/Icon.vue';
|
|
||||||
import Button from 'dashboard/components-next/button/Button.vue';
|
|
||||||
import CardLayout from 'dashboard/components-next/CardLayout.vue';
|
|
||||||
|
|
||||||
defineProps({
|
|
||||||
title: { type: String, default: '' },
|
|
||||||
description: { type: String, default: '' },
|
|
||||||
features: { type: Array, default: () => [] },
|
|
||||||
});
|
|
||||||
|
|
||||||
const emit = defineEmits(['click']);
|
|
||||||
|
|
||||||
const handleClick = () => {
|
|
||||||
emit('click');
|
|
||||||
};
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<template>
|
|
||||||
<CardLayout class="[&>div]:px-5 cursor-pointer" @click="handleClick">
|
|
||||||
<div class="flex flex-col items-start gap-2">
|
|
||||||
<div class="flex justify-between w-full items-center">
|
|
||||||
<h3 class="text-n-slate-12 text-base font-medium">{{ title }}</h3>
|
|
||||||
<Button
|
|
||||||
xs
|
|
||||||
slate
|
|
||||||
ghost
|
|
||||||
icon="i-lucide-chevron-right"
|
|
||||||
@click.stop="handleClick"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
<p class="text-n-slate-11 text-sm mb-0">{{ description }}</p>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<ul class="flex flex-col items-start gap-3 mt-3">
|
|
||||||
<li
|
|
||||||
v-for="feature in features"
|
|
||||||
:key="feature.id"
|
|
||||||
class="flex items-center gap-3 text-sm"
|
|
||||||
>
|
|
||||||
<Icon
|
|
||||||
:icon="feature.icon"
|
|
||||||
class="text-n-slate-11 size-4 flex-shrink-0"
|
|
||||||
/>
|
|
||||||
{{ feature.label }}
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</CardLayout>
|
|
||||||
</template>
|
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user