Compare commits
1
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
f4a77dabd9 |
+62
-245
@@ -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,147 +11,21 @@ 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: '24.13'
|
|
||||||
- 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
|
||||||
- node/install:
|
- node/install:
|
||||||
node-version: '24.13'
|
node-version: '23.7'
|
||||||
- node/install-pnpm
|
- node/install-pnpm
|
||||||
- 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: '24.13'
|
|
||||||
- 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: |
|
||||||
@@ -201,15 +73,15 @@ jobs:
|
|||||||
libvips
|
libvips
|
||||||
|
|
||||||
- run:
|
- run:
|
||||||
name: Install RVM and Ruby 3.4.4
|
name: Install RVM and Ruby 3.3.3
|
||||||
command: |
|
command: |
|
||||||
sudo apt-get install -y gpg
|
sudo apt-get install -y gpg
|
||||||
gpg --keyserver hkp://keyserver.ubuntu.com --recv-keys 409B6B1796C275462A1703113804BB82D39DC0E3 7D2BAF1CF37B13E2069D6956105BD0E739499BDB
|
gpg --keyserver hkp://keyserver.ubuntu.com --recv-keys 409B6B1796C275462A1703113804BB82D39DC0E3 7D2BAF1CF37B13E2069D6956105BD0E739499BDB
|
||||||
\curl -sSL https://get.rvm.io | bash -s stable
|
\curl -sSL https://get.rvm.io | bash -s stable
|
||||||
echo 'source ~/.rvm/scripts/rvm' >> $BASH_ENV
|
echo 'source ~/.rvm/scripts/rvm' >> $BASH_ENV
|
||||||
source ~/.rvm/scripts/rvm
|
source ~/.rvm/scripts/rvm
|
||||||
rvm install "3.4.4"
|
rvm install "3.3.3"
|
||||||
rvm use 3.4.4 --default
|
rvm use 3.3.3 --default
|
||||||
gem install bundler -v 2.5.16
|
gem install bundler -v 2.5.16
|
||||||
|
|
||||||
- run:
|
- run:
|
||||||
@@ -217,51 +89,29 @@ jobs:
|
|||||||
command: |
|
command: |
|
||||||
source ~/.rvm/scripts/rvm
|
source ~/.rvm/scripts/rvm
|
||||||
bundle install
|
bundle install
|
||||||
|
# pnpm install
|
||||||
# Install and configure OpenSearch
|
|
||||||
- run:
|
|
||||||
name: Install OpenSearch
|
|
||||||
command: |
|
|
||||||
# Download and install OpenSearch 2.11.0 (compatible with Elasticsearch 7.x clients)
|
|
||||||
wget https://artifacts.opensearch.org/releases/bundle/opensearch/2.11.0/opensearch-2.11.0-linux-x64.tar.gz
|
|
||||||
tar -xzf opensearch-2.11.0-linux-x64.tar.gz
|
|
||||||
sudo mv opensearch-2.11.0 /opt/opensearch
|
|
||||||
|
|
||||||
- run:
|
- run:
|
||||||
name: Configure and Start OpenSearch
|
name: Download cc-test-reporter
|
||||||
command: |
|
command: |
|
||||||
# Configure OpenSearch for single-node testing
|
mkdir -p ~/tmp
|
||||||
cat > /opt/opensearch/config/opensearch.yml \<< EOF
|
curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ~/tmp/cc-test-reporter
|
||||||
cluster.name: chatwoot-test
|
chmod +x ~/tmp/cc-test-reporter
|
||||||
node.name: node-1
|
|
||||||
network.host: 0.0.0.0
|
|
||||||
http.port: 9200
|
|
||||||
discovery.type: single-node
|
|
||||||
plugins.security.disabled: true
|
|
||||||
EOF
|
|
||||||
|
|
||||||
# Set ownership and permissions
|
|
||||||
sudo chown -R $USER:$USER /opt/opensearch
|
|
||||||
|
|
||||||
# Start OpenSearch in background
|
|
||||||
/opt/opensearch/bin/opensearch -d -p /tmp/opensearch.pid
|
|
||||||
|
|
||||||
|
# Swagger verification
|
||||||
- run:
|
- run:
|
||||||
name: Wait for OpenSearch to be ready
|
name: Verify swagger API specification
|
||||||
command: |
|
command: |
|
||||||
echo "Waiting for OpenSearch to start..."
|
bundle exec rake swagger:build
|
||||||
for i in {1..30}; do
|
if [[ `git status swagger/swagger.json --porcelain` ]]
|
||||||
if curl -s http://localhost:9200/_cluster/health | grep -q '"status"'; then
|
then
|
||||||
echo "OpenSearch is ready!"
|
echo "ERROR: The swagger.json file is not in sync with the yaml specification. Run 'rake swagger:build' and commit 'swagger/swagger.json'."
|
||||||
exit 0
|
exit 1
|
||||||
fi
|
fi
|
||||||
echo "Waiting... ($i/30)"
|
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
|
||||||
sleep 2
|
java -jar ~/tmp/openapi-generator-cli-6.3.0.jar validate -i swagger/swagger.json
|
||||||
done
|
|
||||||
echo "OpenSearch failed to start"
|
|
||||||
exit 1
|
|
||||||
|
|
||||||
# Configure environment and database
|
# 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: |
|
||||||
@@ -277,98 +127,65 @@ jobs:
|
|||||||
sed -i -e '/POSTGRES_USERNAME/ s/=.*/=chatwoot/' .env
|
sed -i -e '/POSTGRES_USERNAME/ s/=.*/=chatwoot/' .env
|
||||||
sed -i -e "/POSTGRES_PASSWORD/ s/=.*/=$pg_pass/" .env
|
sed -i -e "/POSTGRES_PASSWORD/ s/=.*/=$pg_pass/" .env
|
||||||
echo -en "\nINSTALLATION_ENV=circleci" >> ".env"
|
echo -en "\nINSTALLATION_ENV=circleci" >> ".env"
|
||||||
echo -en "\nOPENSEARCH_URL=http://localhost:9200" >> ".env"
|
|
||||||
|
|
||||||
# Database setup
|
# Database setup
|
||||||
- run:
|
- run:
|
||||||
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
|
|
||||||
|
|||||||
@@ -0,0 +1,62 @@
|
|||||||
|
version: '2'
|
||||||
|
plugins:
|
||||||
|
rubocop:
|
||||||
|
enabled: false
|
||||||
|
channel: rubocop-0-73
|
||||||
|
eslint:
|
||||||
|
enabled: false
|
||||||
|
csslint:
|
||||||
|
enabled: true
|
||||||
|
scss-lint:
|
||||||
|
enabled: true
|
||||||
|
brakeman:
|
||||||
|
enabled: false
|
||||||
|
checks:
|
||||||
|
similar-code:
|
||||||
|
enabled: false
|
||||||
|
method-count:
|
||||||
|
enabled: true
|
||||||
|
config:
|
||||||
|
threshold: 32
|
||||||
|
file-lines:
|
||||||
|
enabled: true
|
||||||
|
config:
|
||||||
|
threshold: 300
|
||||||
|
method-lines:
|
||||||
|
config:
|
||||||
|
threshold: 50
|
||||||
|
exclude_patterns:
|
||||||
|
- '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'
|
||||||
@@ -4,15 +4,5 @@ FROM ghcr.io/chatwoot/chatwoot_codespace:latest
|
|||||||
|
|
||||||
# Do the set up required for chatwoot app
|
# Do the set up required for chatwoot app
|
||||||
WORKDIR /workspace
|
WORKDIR /workspace
|
||||||
|
|
||||||
# Copy dependency files first for better caching
|
|
||||||
COPY package.json pnpm-lock.yaml ./
|
|
||||||
COPY Gemfile Gemfile.lock ./
|
|
||||||
|
|
||||||
# Install dependencies (will be cached if files don't change)
|
|
||||||
RUN pnpm install --frozen-lockfile && \
|
|
||||||
gem install bundler && \
|
|
||||||
bundle install --jobs=$(nproc)
|
|
||||||
|
|
||||||
# Copy source code after dependencies are installed
|
|
||||||
COPY . /workspace
|
COPY . /workspace
|
||||||
|
RUN yarn && gem install bundler && bundle install
|
||||||
|
|||||||
@@ -1,16 +1,12 @@
|
|||||||
ARG VARIANT="ubuntu-22.04"
|
|
||||||
|
ARG VARIANT
|
||||||
|
|
||||||
FROM mcr.microsoft.com/vscode/devcontainers/base:0-${VARIANT}
|
FROM mcr.microsoft.com/vscode/devcontainers/base:0-${VARIANT}
|
||||||
|
|
||||||
ENV DEBIAN_FRONTEND=noninteractive
|
|
||||||
|
|
||||||
ARG NODE_VERSION
|
ARG NODE_VERSION
|
||||||
ARG RUBY_VERSION
|
ARG RUBY_VERSION
|
||||||
ARG USER_UID
|
ARG USER_UID
|
||||||
ARG USER_GID
|
ARG USER_GID
|
||||||
ARG PNPM_VERSION="10.2.0"
|
|
||||||
ENV PNPM_VERSION ${PNPM_VERSION}
|
|
||||||
ENV RUBY_CONFIGURE_OPTS=--disable-install-doc
|
|
||||||
|
|
||||||
# Update args in docker-compose.yaml to set the UID/GID of the "vscode" user.
|
# Update args in docker-compose.yaml to set the UID/GID of the "vscode" user.
|
||||||
RUN if [ "$USER_GID" != "1000" ] || [ "$USER_UID" != "1000" ]; then \
|
RUN if [ "$USER_GID" != "1000" ] || [ "$USER_UID" != "1000" ]; then \
|
||||||
@@ -19,80 +15,61 @@ RUN if [ "$USER_GID" != "1000" ] || [ "$USER_UID" != "1000" ]; then \
|
|||||||
&& chmod -R $USER_UID:$USER_GID /home/vscode; \
|
&& chmod -R $USER_UID:$USER_GID /home/vscode; \
|
||||||
fi
|
fi
|
||||||
|
|
||||||
RUN NODE_MAJOR=$(echo $NODE_VERSION | cut -d. -f1) \
|
RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
|
||||||
&& curl -fsSL https://deb.nodesource.com/setup_${NODE_MAJOR}.x | bash - \
|
&& apt-get -y install --no-install-recommends \
|
||||||
&& apt-get update \
|
build-essential \
|
||||||
&& apt-get -y install --no-install-recommends \
|
libssl-dev \
|
||||||
build-essential \
|
zlib1g-dev \
|
||||||
libssl-dev \
|
gnupg2 \
|
||||||
zlib1g-dev \
|
tar \
|
||||||
gnupg \
|
tzdata \
|
||||||
tar \
|
postgresql-client \
|
||||||
tzdata \
|
libpq-dev \
|
||||||
postgresql-client \
|
yarn \
|
||||||
libpq-dev \
|
git \
|
||||||
git \
|
imagemagick \
|
||||||
imagemagick \
|
tmux \
|
||||||
libyaml-dev \
|
zsh \
|
||||||
curl \
|
git-flow \
|
||||||
ca-certificates \
|
npm \
|
||||||
tmux \
|
libyaml-dev
|
||||||
nodejs \
|
|
||||||
&& apt-get clean \
|
|
||||||
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
|
|
||||||
|
|
||||||
# Install rbenv and ruby for root user first
|
# Install rbenv and ruby
|
||||||
RUN git clone --depth 1 https://github.com/rbenv/rbenv.git ~/.rbenv \
|
RUN git clone https://github.com/rbenv/rbenv.git ~/.rbenv \
|
||||||
&& echo 'export PATH="$HOME/.rbenv/bin:$PATH"' >> ~/.bashrc \
|
&& echo 'export PATH="$HOME/.rbenv/bin:$PATH"' >> ~/.bashrc \
|
||||||
&& echo 'eval "$(rbenv init -)"' >> ~/.bashrc
|
&& echo 'eval "$(rbenv init -)"' >> ~/.bashrc
|
||||||
ENV PATH "/root/.rbenv/bin/:/root/.rbenv/shims/:$PATH"
|
ENV PATH "/root/.rbenv/bin/:/root/.rbenv/shims/:$PATH"
|
||||||
RUN git clone --depth 1 https://github.com/rbenv/ruby-build.git && \
|
RUN git clone https://github.com/rbenv/ruby-build.git && \
|
||||||
PREFIX=/usr/local ./ruby-build/install.sh
|
PREFIX=/usr/local ./ruby-build/install.sh
|
||||||
|
|
||||||
RUN rbenv install $RUBY_VERSION && \
|
RUN rbenv install $RUBY_VERSION && \
|
||||||
rbenv global $RUBY_VERSION && \
|
rbenv global $RUBY_VERSION && \
|
||||||
rbenv versions
|
rbenv versions
|
||||||
|
|
||||||
# Set up rbenv for vscode user
|
# Install overmind
|
||||||
RUN su - vscode -c "git clone --depth 1 https://github.com/rbenv/rbenv.git ~/.rbenv" \
|
|
||||||
&& su - vscode -c "echo 'export PATH=\"\$HOME/.rbenv/bin:\$PATH\"' >> ~/.bashrc" \
|
|
||||||
&& su - vscode -c "echo 'eval \"\$(rbenv init -)\"' >> ~/.bashrc" \
|
|
||||||
&& su - vscode -c "PATH=\"/home/vscode/.rbenv/bin:\$PATH\" rbenv install $RUBY_VERSION" \
|
|
||||||
&& su - vscode -c "PATH=\"/home/vscode/.rbenv/bin:\$PATH\" rbenv global $RUBY_VERSION"
|
|
||||||
|
|
||||||
# Install overmind and gh in single layer
|
|
||||||
RUN curl -L https://github.com/DarthSim/overmind/releases/download/v2.1.0/overmind-v2.1.0-linux-amd64.gz > overmind.gz \
|
RUN curl -L https://github.com/DarthSim/overmind/releases/download/v2.1.0/overmind-v2.1.0-linux-amd64.gz > overmind.gz \
|
||||||
&& gunzip overmind.gz \
|
&& gunzip overmind.gz \
|
||||||
&& mv overmind /usr/local/bin \
|
&& sudo mv overmind /usr/local/bin \
|
||||||
&& chmod +x /usr/local/bin/overmind \
|
&& chmod +x /usr/local/bin/overmind
|
||||||
&& curl -fsSL https://cli.github.com/packages/githubcli-archive-keyring.gpg | dd of=/usr/share/keyrings/githubcli-archive-keyring.gpg \
|
|
||||||
&& echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/githubcli-archive-keyring.gpg] https://cli.github.com/packages stable main" | tee /etc/apt/sources.list.d/github-cli.list > /dev/null \
|
|
||||||
&& apt-get update \
|
# Install gh
|
||||||
&& apt-get install -y --no-install-recommends gh \
|
RUN curl -fsSL https://cli.github.com/packages/githubcli-archive-keyring.gpg | sudo dd of=/usr/share/keyrings/githubcli-archive-keyring.gpg \
|
||||||
&& apt-get clean \
|
&& echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/githubcli-archive-keyring.gpg] https://cli.github.com/packages stable main" | sudo tee /etc/apt/sources.list.d/github-cli.list > /dev/null \
|
||||||
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
|
&& sudo apt update \
|
||||||
|
&& sudo apt install gh
|
||||||
|
|
||||||
|
|
||||||
# Do the set up required for chatwoot app
|
# Do the set up required for chatwoot app
|
||||||
WORKDIR /workspace
|
WORKDIR /workspace
|
||||||
RUN chown vscode:vscode /workspace
|
COPY . /workspace
|
||||||
|
|
||||||
# set up node js, pnpm and claude code in single layer
|
# set up ruby
|
||||||
RUN npm install -g pnpm@${PNPM_VERSION} @anthropic-ai/claude-code \
|
COPY Gemfile Gemfile.lock ./
|
||||||
&& npm cache clean --force
|
RUN gem install bundler && bundle install
|
||||||
|
|
||||||
# Switch to vscode user
|
# set up node js
|
||||||
USER vscode
|
RUN npm install n -g && \
|
||||||
ENV PATH="/home/vscode/.rbenv/bin:/home/vscode/.rbenv/shims:$PATH"
|
n $NODE_VERSION
|
||||||
|
RUN npm install --global yarn
|
||||||
# Copy dependency files first for better caching
|
RUN yarn
|
||||||
COPY --chown=vscode:vscode Gemfile Gemfile.lock package.json pnpm-lock.yaml ./
|
|
||||||
|
|
||||||
# Install dependencies as vscode user
|
|
||||||
RUN eval "$(rbenv init -)" \
|
|
||||||
&& gem install bundler -N \
|
|
||||||
&& bundle install --jobs=$(nproc) \
|
|
||||||
&& pnpm install --frozen-lockfile
|
|
||||||
|
|
||||||
# Copy source code after dependencies are installed
|
|
||||||
COPY --chown=vscode:vscode . /workspace
|
|
||||||
|
|||||||
@@ -4,26 +4,17 @@
|
|||||||
"dockerComposeFile": "docker-compose.yml",
|
"dockerComposeFile": "docker-compose.yml",
|
||||||
|
|
||||||
"settings": {
|
"settings": {
|
||||||
"terminal.integrated.shell.linux": "/bin/zsh",
|
"terminal.integrated.shell.linux": "/bin/zsh"
|
||||||
"extensions.showRecommendationsOnlyOnDemand": true,
|
|
||||||
"editor.formatOnSave": true,
|
|
||||||
"files.trimTrailingWhitespace": true,
|
|
||||||
"files.insertFinalNewline": true,
|
|
||||||
"search.exclude": {
|
|
||||||
"**/node_modules": true,
|
|
||||||
"**/tmp": true,
|
|
||||||
"**/log": true,
|
|
||||||
"**/coverage": true,
|
|
||||||
"**/public/packs": true
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
||||||
// Add the IDs of extensions you want installed when the container is created.
|
// Add the IDs of extensions you want installed when the container is created.
|
||||||
"extensions": [
|
"extensions": [
|
||||||
"Shopify.ruby-lsp",
|
"rebornix.Ruby",
|
||||||
"misogi.ruby-rubocop",
|
"misogi.ruby-rubocop",
|
||||||
|
"wingrunr21.vscode-ruby",
|
||||||
"davidpallinder.rails-test-runner",
|
"davidpallinder.rails-test-runner",
|
||||||
|
"eamodio.gitlens",
|
||||||
"github.copilot",
|
"github.copilot",
|
||||||
"mrmlnc.vscode-duplicate"
|
"mrmlnc.vscode-duplicate"
|
||||||
],
|
],
|
||||||
@@ -32,15 +23,15 @@
|
|||||||
// 5432 postgres
|
// 5432 postgres
|
||||||
// 6379 redis
|
// 6379 redis
|
||||||
// 1025,8025 mailhog
|
// 1025,8025 mailhog
|
||||||
"forwardPorts": [8025, 3000, 3036],
|
"forwardPorts": [8025, 3000, 3035],
|
||||||
|
|
||||||
"postCreateCommand": ".devcontainer/scripts/setup.sh && POSTGRES_STATEMENT_TIMEOUT=600s bundle exec rake db:chatwoot_prepare && pnpm install",
|
"postCreateCommand": ".devcontainer/scripts/setup.sh && POSTGRES_STATEMENT_TIMEOUT=600s bundle exec rake db:chatwoot_prepare && yarn",
|
||||||
"portsAttributes": {
|
"portsAttributes": {
|
||||||
"3000": {
|
"3000": {
|
||||||
"label": "Rails Server"
|
"label": "Rails Server"
|
||||||
},
|
},
|
||||||
"3036": {
|
"3035": {
|
||||||
"label": "Vite Dev Server"
|
"label": "Webpack Dev Server"
|
||||||
},
|
},
|
||||||
"8025": {
|
"8025": {
|
||||||
"label": "Mailhog UI"
|
"label": "Mailhog UI"
|
||||||
|
|||||||
@@ -1,18 +0,0 @@
|
|||||||
# Docker Compose file for building the base image in GitHub Actions
|
|
||||||
# Usage: docker-compose -f .devcontainer/docker-compose.base.yml build base
|
|
||||||
|
|
||||||
version: '3'
|
|
||||||
|
|
||||||
services:
|
|
||||||
base:
|
|
||||||
build:
|
|
||||||
context: ..
|
|
||||||
dockerfile: .devcontainer/Dockerfile.base
|
|
||||||
args:
|
|
||||||
VARIANT: 'ubuntu-22.04'
|
|
||||||
NODE_VERSION: '24.13.0'
|
|
||||||
RUBY_VERSION: '3.4.4'
|
|
||||||
# On Linux, you may need to update USER_UID and USER_GID below if not your local UID is not 1000.
|
|
||||||
USER_UID: '1000'
|
|
||||||
USER_GID: '1000'
|
|
||||||
image: ghcr.io/chatwoot/chatwoot_codespace:latest
|
|
||||||
@@ -5,14 +5,27 @@
|
|||||||
version: '3'
|
version: '3'
|
||||||
|
|
||||||
services:
|
services:
|
||||||
|
base:
|
||||||
|
build:
|
||||||
|
context: ..
|
||||||
|
dockerfile: .devcontainer/Dockerfile.base
|
||||||
|
args:
|
||||||
|
VARIANT: 'ubuntu-22.04'
|
||||||
|
NODE_VERSION: '23.7.0'
|
||||||
|
RUBY_VERSION: '3.3.3'
|
||||||
|
# On Linux, you may need to update USER_UID and USER_GID below if not your local UID is not 1000.
|
||||||
|
USER_UID: '1000'
|
||||||
|
USER_GID: '1000'
|
||||||
|
image: base:latest
|
||||||
|
|
||||||
app:
|
app:
|
||||||
build:
|
build:
|
||||||
context: ..
|
context: ..
|
||||||
dockerfile: .devcontainer/Dockerfile
|
dockerfile: .devcontainer/Dockerfile
|
||||||
args:
|
args:
|
||||||
VARIANT: 'ubuntu-22.04'
|
VARIANT: 'ubuntu-22.04'
|
||||||
NODE_VERSION: '24.13.0'
|
NODE_VERSION: '23.7.0'
|
||||||
RUBY_VERSION: '3.4.4'
|
RUBY_VERSION: '3.3.3'
|
||||||
# On Linux, you may need to update USER_UID and USER_GID below if not your local UID is not 1000.
|
# On Linux, you may need to update USER_UID and USER_GID below if not your local UID is not 1000.
|
||||||
USER_UID: '1000'
|
USER_UID: '1000'
|
||||||
USER_GID: '1000'
|
USER_GID: '1000'
|
||||||
|
|||||||
@@ -2,15 +2,12 @@ cp .env.example .env
|
|||||||
sed -i -e '/REDIS_URL/ s/=.*/=redis:\/\/localhost:6379/' .env
|
sed -i -e '/REDIS_URL/ s/=.*/=redis:\/\/localhost:6379/' .env
|
||||||
sed -i -e '/POSTGRES_HOST/ s/=.*/=localhost/' .env
|
sed -i -e '/POSTGRES_HOST/ s/=.*/=localhost/' .env
|
||||||
sed -i -e '/SMTP_ADDRESS/ s/=.*/=localhost/' .env
|
sed -i -e '/SMTP_ADDRESS/ s/=.*/=localhost/' .env
|
||||||
sed -i -e "/FRONTEND_URL/ s/=.*/=https:\/\/$CODESPACE_NAME-3000.app.github.dev/" .env
|
sed -i -e "/FRONTEND_URL/ s/=.*/=https:\/\/$CODESPACE_NAME-3000.githubpreview.dev/" .env
|
||||||
|
sed -i -e "/WEBPACKER_DEV_SERVER_PUBLIC/ s/=.*/=https:\/\/$CODESPACE_NAME-3035.githubpreview.dev/" .env
|
||||||
# Setup Claude Code API key if available
|
# uncomment the webpacker env variable
|
||||||
if [ -n "$CLAUDE_CODE_API_KEY" ]; then
|
sed -i -e '/WEBPACKER_DEV_SERVER_PUBLIC/s/^# //' .env
|
||||||
mkdir -p ~/.claude
|
# fix the error with webpacker
|
||||||
echo '{"apiKeyHelper": "~/.claude/anthropic_key.sh"}' > ~/.claude/settings.json
|
echo 'export NODE_OPTIONS=--openssl-legacy-provider' >> ~/.zshrc
|
||||||
echo "echo \"$CLAUDE_CODE_API_KEY\"" > ~/.claude/anthropic_key.sh
|
|
||||||
chmod +x ~/.claude/anthropic_key.sh
|
|
||||||
fi
|
|
||||||
|
|
||||||
# codespaces make the ports public
|
# codespaces make the ports public
|
||||||
gh codespace ports visibility 3000:public 3036:public 8025:public -c $CODESPACE_NAME
|
gh codespace ports visibility 3000:public 3035:public 8025:public -c $CODESPACE_NAME
|
||||||
|
|||||||
+1
-19
@@ -2,17 +2,10 @@
|
|||||||
# https://www.chatwoot.com/docs/self-hosted/configuration/environment-variables/#rails-production-variables
|
# https://www.chatwoot.com/docs/self-hosted/configuration/environment-variables/#rails-production-variables
|
||||||
|
|
||||||
# Used to verify the integrity of signed cookies. so ensure a secure value is set
|
# Used to verify the integrity of signed cookies. so ensure a secure value is set
|
||||||
# SECRET_KEY_BASE should be alphanumeric. Avoid special characters or symbols.
|
# SECRET_KEY_BASE should be alphanumeric. Avoid special characters or symbols.
|
||||||
# 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=
|
||||||
|
|
||||||
@@ -229,8 +216,6 @@ ANDROID_SHA256_CERT_FINGERPRINT=AC:73:8E:DE:EB:56:EA:CC:10:87:02:A7:65:37:7B:38:
|
|||||||
# ENABLE_RACK_ATTACK=true
|
# ENABLE_RACK_ATTACK=true
|
||||||
# RACK_ATTACK_LIMIT=300
|
# RACK_ATTACK_LIMIT=300
|
||||||
# ENABLE_RACK_ATTACK_WIDGET_API=true
|
# ENABLE_RACK_ATTACK_WIDGET_API=true
|
||||||
# Comma-separated list of trusted IPs that bypass Rack Attack throttling rules
|
|
||||||
# RACK_ATTACK_ALLOWED_IPS=127.0.0.1,::1,192.168.0.10
|
|
||||||
|
|
||||||
## Running chatwoot as an API only server
|
## Running chatwoot as an API only server
|
||||||
## setting this value to true will disable the frontend dashboard endpoints
|
## setting this value to true will disable the frontend dashboard endpoints
|
||||||
@@ -262,8 +247,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
|
||||||
@@ -275,4 +258,3 @@ AZURE_APP_SECRET=
|
|||||||
# contact_inboxes with no conversation older than 90 days will be removed
|
# contact_inboxes with no conversation older than 90 days will be removed
|
||||||
# REMOVE_STALE_CONTACT_INBOX_JOB_STATUS=false
|
# REMOVE_STALE_CONTACT_INBOX_JOB_STATUS=false
|
||||||
|
|
||||||
# REDIS_ALFRED_SIZE=10
|
|
||||||
|
|||||||
@@ -103,7 +103,6 @@ module.exports = {
|
|||||||
'⌘',
|
'⌘',
|
||||||
'📄',
|
'📄',
|
||||||
'🎉',
|
'🎉',
|
||||||
'🚀',
|
|
||||||
'💬',
|
'💬',
|
||||||
'👥',
|
'👥',
|
||||||
'📥',
|
'📥',
|
||||||
|
|||||||
@@ -1,28 +0,0 @@
|
|||||||
name: Auto-assign PR to Author
|
|
||||||
|
|
||||||
on:
|
|
||||||
pull_request:
|
|
||||||
types: [opened]
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
auto-assign:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
permissions:
|
|
||||||
pull-requests: write
|
|
||||||
steps:
|
|
||||||
- name: Auto-assign PR to author
|
|
||||||
uses: actions/github-script@v7
|
|
||||||
with:
|
|
||||||
script: |
|
|
||||||
const { owner, repo } = context.repo;
|
|
||||||
const pull_number = context.payload.pull_request.number;
|
|
||||||
const author = context.payload.pull_request.user.login;
|
|
||||||
|
|
||||||
await github.rest.issues.addAssignees({
|
|
||||||
owner,
|
|
||||||
repo,
|
|
||||||
issue_number: pull_number,
|
|
||||||
assignees: [author]
|
|
||||||
});
|
|
||||||
|
|
||||||
console.log(`Assigned PR #${pull_number} to ${author}`);
|
|
||||||
@@ -6,11 +6,6 @@ name: Deploy Check
|
|||||||
on:
|
on:
|
||||||
pull_request:
|
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:
|
jobs:
|
||||||
deployment_check:
|
deployment_check:
|
||||||
name: Check Deployment
|
name: Check Deployment
|
||||||
|
|||||||
@@ -26,7 +26,7 @@ jobs:
|
|||||||
|
|
||||||
- uses: actions/setup-node@v4
|
- uses: actions/setup-node@v4
|
||||||
with:
|
with:
|
||||||
node-version: 24
|
node-version: 23
|
||||||
cache: 'pnpm'
|
cache: 'pnpm'
|
||||||
|
|
||||||
- name: Install pnpm dependencies
|
- name: Install pnpm dependencies
|
||||||
|
|||||||
@@ -5,11 +5,6 @@ on:
|
|||||||
branches:
|
branches:
|
||||||
- develop
|
- develop
|
||||||
|
|
||||||
# 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:
|
jobs:
|
||||||
log_lines_check:
|
log_lines_check:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|||||||
@@ -19,5 +19,6 @@ jobs:
|
|||||||
|
|
||||||
- name: Build the Codespace Base Image
|
- name: Build the Codespace Base Image
|
||||||
run: |
|
run: |
|
||||||
docker compose -f .devcontainer/docker-compose.base.yml build base
|
docker-compose -f .devcontainer/docker-compose.yml build base
|
||||||
|
docker tag base:latest ghcr.io/chatwoot/chatwoot_codespace:latest
|
||||||
docker push ghcr.io/chatwoot/chatwoot_codespace:latest
|
docker push ghcr.io/chatwoot/chatwoot_codespace:latest
|
||||||
|
|||||||
@@ -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: 24
|
|
||||||
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: 24
|
|
||||||
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,11 +43,11 @@ 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:
|
||||||
node-version: 24
|
node-version: 23
|
||||||
cache: 'pnpm'
|
cache: 'pnpm'
|
||||||
|
|
||||||
- name: Install pnpm dependencies
|
- name: Install pnpm dependencies
|
||||||
@@ -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/
|
|
||||||
@@ -5,11 +5,6 @@ on:
|
|||||||
branches:
|
branches:
|
||||||
- develop
|
- develop
|
||||||
|
|
||||||
# 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:
|
jobs:
|
||||||
test:
|
test:
|
||||||
runs-on: ubuntu-22.04
|
runs-on: ubuntu-22.04
|
||||||
@@ -28,7 +23,7 @@ jobs:
|
|||||||
|
|
||||||
- uses: actions/setup-node@v4
|
- uses: actions/setup-node@v4
|
||||||
with:
|
with:
|
||||||
node-version: 24
|
node-version: 23
|
||||||
cache: 'pnpm'
|
cache: 'pnpm'
|
||||||
|
|
||||||
- name: pnpm
|
- name: pnpm
|
||||||
|
|||||||
@@ -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
|
||||||
|
|||||||
+5
-12
@@ -71,6 +71,9 @@ test/cypress/videos/*
|
|||||||
/config/master.key
|
/config/master.key
|
||||||
/config/*.enc
|
/config/*.enc
|
||||||
|
|
||||||
|
#ignore files under .vscode directory
|
||||||
|
.vscode
|
||||||
|
.cursor
|
||||||
|
|
||||||
# yalc for local testing
|
# yalc for local testing
|
||||||
.yalc
|
.yalc
|
||||||
@@ -89,15 +92,5 @@ yarn-debug.log*
|
|||||||
# https://vitejs.dev/guide/env-and-mode.html#env-files
|
# https://vitejs.dev/guide/env-and-mode.html#env-files
|
||||||
*.local
|
*.local
|
||||||
|
|
||||||
|
# Claude.ai config file
|
||||||
# TextEditors & AI Agents config files
|
CLAUDE.md
|
||||||
.vscode
|
|
||||||
.claude/settings.local.json
|
|
||||||
.cursor
|
|
||||||
CLAUDE.local.md
|
|
||||||
|
|
||||||
# Histoire deployment
|
|
||||||
.netlify
|
|
||||||
.histoire
|
|
||||||
.pnpm-store/*
|
|
||||||
local/
|
|
||||||
|
|||||||
@@ -1,7 +0,0 @@
|
|||||||
*
|
|
||||||
!configs
|
|
||||||
!configs/**
|
|
||||||
!hooks
|
|
||||||
!hooks/**
|
|
||||||
!qlty.toml
|
|
||||||
!.gitignore
|
|
||||||
@@ -1,2 +0,0 @@
|
|||||||
ignored:
|
|
||||||
- DL3008
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
source-path=SCRIPTDIR
|
|
||||||
@@ -1,8 +0,0 @@
|
|||||||
rules:
|
|
||||||
document-start: disable
|
|
||||||
quoted-strings:
|
|
||||||
required: only-when-needed
|
|
||||||
extra-allowed: ["{|}"]
|
|
||||||
key-duplicates: {}
|
|
||||||
octal-values:
|
|
||||||
forbid-implicit-octal: true
|
|
||||||
@@ -1,84 +0,0 @@
|
|||||||
# This file was automatically generated by `qlty init`.
|
|
||||||
# You can modify it to suit your needs.
|
|
||||||
# We recommend you to commit this file to your repository.
|
|
||||||
#
|
|
||||||
# This configuration is used by both Qlty CLI and Qlty Cloud.
|
|
||||||
#
|
|
||||||
# Qlty CLI -- Code quality toolkit for developers
|
|
||||||
# Qlty Cloud -- Fully automated Code Health Platform
|
|
||||||
#
|
|
||||||
# Try Qlty Cloud: https://qlty.sh
|
|
||||||
#
|
|
||||||
# For a guide to configuration, visit https://qlty.sh/d/config
|
|
||||||
# Or for a full reference, visit https://qlty.sh/d/qlty-toml
|
|
||||||
config_version = "0"
|
|
||||||
|
|
||||||
exclude_patterns = [
|
|
||||||
"*_min.*",
|
|
||||||
"*-min.*",
|
|
||||||
"*.min.*",
|
|
||||||
"**/.yarn/**",
|
|
||||||
"**/*.d.ts",
|
|
||||||
"**/assets/**",
|
|
||||||
"**/bower_components/**",
|
|
||||||
"**/build/**",
|
|
||||||
"**/cache/**",
|
|
||||||
"**/config/**",
|
|
||||||
"**/db/**",
|
|
||||||
"**/deps/**",
|
|
||||||
"**/dist/**",
|
|
||||||
"**/extern/**",
|
|
||||||
"**/external/**",
|
|
||||||
"**/generated/**",
|
|
||||||
"**/Godeps/**",
|
|
||||||
"**/gradlew/**",
|
|
||||||
"**/mvnw/**",
|
|
||||||
"**/node_modules/**",
|
|
||||||
"**/protos/**",
|
|
||||||
"**/seed/**",
|
|
||||||
"**/target/**",
|
|
||||||
"**/templates/**",
|
|
||||||
"**/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",
|
|
||||||
]
|
|
||||||
|
|
||||||
test_patterns = [
|
|
||||||
"**/test/**",
|
|
||||||
"**/spec/**",
|
|
||||||
"**/*.test.*",
|
|
||||||
"**/*.spec.*",
|
|
||||||
"**/*_test.*",
|
|
||||||
"**/*_spec.*",
|
|
||||||
"**/test_*.*",
|
|
||||||
"**/spec_*.*",
|
|
||||||
]
|
|
||||||
|
|
||||||
[smells]
|
|
||||||
mode = "comment"
|
|
||||||
|
|
||||||
[smells.boolean_logic]
|
|
||||||
threshold = 4
|
|
||||||
|
|
||||||
[smells.file_complexity]
|
|
||||||
threshold = 66
|
|
||||||
enabled = true
|
|
||||||
|
|
||||||
[smells.return_statements]
|
|
||||||
threshold = 4
|
|
||||||
|
|
||||||
[smells.nested_control_flow]
|
|
||||||
threshold = 4
|
|
||||||
|
|
||||||
[smells.function_parameters]
|
|
||||||
threshold = 4
|
|
||||||
|
|
||||||
[smells.function_complexity]
|
|
||||||
threshold = 5
|
|
||||||
|
|
||||||
[smells.duplication]
|
|
||||||
enabled = true
|
|
||||||
threshold = 20
|
|
||||||
|
|
||||||
[[source]]
|
|
||||||
name = "default"
|
|
||||||
default = true
|
|
||||||
+9
-191
@@ -1,14 +1,9 @@
|
|||||||
plugins:
|
require:
|
||||||
- rubocop-performance
|
- rubocop-performance
|
||||||
- rubocop-rails
|
- rubocop-rails
|
||||||
- rubocop-rspec
|
- rubocop-rspec
|
||||||
- rubocop-factory_bot
|
|
||||||
|
|
||||||
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
|
||||||
@@ -18,67 +13,44 @@ Metrics/ClassLength:
|
|||||||
Exclude:
|
Exclude:
|
||||||
- 'app/models/message.rb'
|
- 'app/models/message.rb'
|
||||||
- 'app/models/conversation.rb'
|
- 'app/models/conversation.rb'
|
||||||
|
|
||||||
Metrics/MethodLength:
|
Metrics/MethodLength:
|
||||||
Max: 19
|
Max: 19
|
||||||
Exclude:
|
|
||||||
- 'enterprise/lib/captain/agent.rb'
|
|
||||||
|
|
||||||
RSpec/ExampleLength:
|
RSpec/ExampleLength:
|
||||||
Max: 50
|
Max: 25
|
||||||
|
|
||||||
Style/Documentation:
|
Style/Documentation:
|
||||||
Enabled: false
|
Enabled: false
|
||||||
|
|
||||||
Style/ExponentialNotation:
|
Style/ExponentialNotation:
|
||||||
Enabled: false
|
Enabled: false
|
||||||
|
|
||||||
Style/FrozenStringLiteralComment:
|
Style/FrozenStringLiteralComment:
|
||||||
Enabled: false
|
Enabled: false
|
||||||
|
|
||||||
Style/SymbolArray:
|
Style/SymbolArray:
|
||||||
Enabled: false
|
Enabled: false
|
||||||
|
|
||||||
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'
|
||||||
- 'app/dispatchers/dispatcher.rb'
|
- 'app/dispatchers/dispatcher.rb'
|
||||||
|
|
||||||
Style/GlobalVars:
|
Style/GlobalVars:
|
||||||
Exclude:
|
Exclude:
|
||||||
- 'config/initializers/01_redis.rb'
|
- 'config/initializers/01_redis.rb'
|
||||||
- 'config/initializers/rack_attack.rb'
|
- 'config/initializers/rack_attack.rb'
|
||||||
- 'lib/redis/alfred.rb'
|
- 'lib/redis/alfred.rb'
|
||||||
- 'lib/global_config.rb'
|
- 'lib/global_config.rb'
|
||||||
|
|
||||||
Style/ClassVars:
|
Style/ClassVars:
|
||||||
Exclude:
|
Exclude:
|
||||||
- 'app/services/email_templates/db_resolver_service.rb'
|
- 'app/services/email_templates/db_resolver_service.rb'
|
||||||
|
|
||||||
Lint/MissingSuper:
|
Lint/MissingSuper:
|
||||||
Exclude:
|
Exclude:
|
||||||
- 'app/drops/base_drop.rb'
|
- 'app/drops/base_drop.rb'
|
||||||
|
|
||||||
Lint/SymbolConversion:
|
Lint/SymbolConversion:
|
||||||
Enabled: false
|
Enabled: false
|
||||||
|
|
||||||
Lint/EmptyBlock:
|
Lint/EmptyBlock:
|
||||||
Exclude:
|
Exclude:
|
||||||
- 'app/views/api/v1/accounts/conversations/toggle_status.json.jbuilder'
|
- 'app/views/api/v1/accounts/conversations/toggle_status.json.jbuilder'
|
||||||
|
|
||||||
Lint/OrAssignmentToConstant:
|
Lint/OrAssignmentToConstant:
|
||||||
Exclude:
|
Exclude:
|
||||||
- 'lib/redis/config.rb'
|
- 'lib/redis/config.rb'
|
||||||
|
|
||||||
Metrics/BlockLength:
|
Metrics/BlockLength:
|
||||||
Max: 30
|
Max: 30
|
||||||
Exclude:
|
Exclude:
|
||||||
@@ -86,16 +58,10 @@ Metrics/BlockLength:
|
|||||||
- '**/routes.rb'
|
- '**/routes.rb'
|
||||||
- 'config/environments/*'
|
- 'config/environments/*'
|
||||||
- db/schema.rb
|
- db/schema.rb
|
||||||
|
|
||||||
Metrics/ModuleLength:
|
Metrics/ModuleLength:
|
||||||
Exclude:
|
Exclude:
|
||||||
- lib/seeders/message_seeder.rb
|
- lib/seeders/message_seeder.rb
|
||||||
- spec/support/slack_stubs.rb
|
- spec/support/slack_stubs.rb
|
||||||
|
|
||||||
Rails/HelperInstanceVariable:
|
|
||||||
Exclude:
|
|
||||||
- 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'
|
||||||
@@ -105,101 +71,74 @@ Rails/ApplicationController:
|
|||||||
- 'app/controllers/platform_controller.rb'
|
- 'app/controllers/platform_controller.rb'
|
||||||
- 'app/controllers/public_controller.rb'
|
- 'app/controllers/public_controller.rb'
|
||||||
- 'app/controllers/survey/responses_controller.rb'
|
- 'app/controllers/survey/responses_controller.rb'
|
||||||
|
|
||||||
Rails/FindEach:
|
Rails/FindEach:
|
||||||
Enabled: true
|
Enabled: true
|
||||||
Include:
|
Include:
|
||||||
- 'app/**/*.rb'
|
- 'app/**/*.rb'
|
||||||
|
|
||||||
Rails/CompactBlank:
|
Rails/CompactBlank:
|
||||||
Enabled: false
|
Enabled: false
|
||||||
|
|
||||||
Rails/EnvironmentVariableAccess:
|
Rails/EnvironmentVariableAccess:
|
||||||
Enabled: false
|
Enabled: false
|
||||||
|
|
||||||
Rails/TimeZoneAssignment:
|
Rails/TimeZoneAssignment:
|
||||||
Enabled: false
|
Enabled: false
|
||||||
|
|
||||||
Rails/RedundantPresenceValidationOnBelongsTo:
|
Rails/RedundantPresenceValidationOnBelongsTo:
|
||||||
Enabled: false
|
Enabled: false
|
||||||
|
|
||||||
Rails/InverseOf:
|
|
||||||
Exclude:
|
|
||||||
- enterprise/app/models/captain/assistant.rb
|
|
||||||
|
|
||||||
Rails/UniqueValidationWithoutIndex:
|
|
||||||
Exclude:
|
|
||||||
- app/models/canned_response.rb
|
|
||||||
- app/models/telegram_bot.rb
|
|
||||||
- enterprise/app/models/captain_inbox.rb
|
|
||||||
- 'app/models/channel/twitter_profile.rb'
|
|
||||||
- 'app/models/webhook.rb'
|
|
||||||
- 'app/models/contact.rb'
|
|
||||||
|
|
||||||
Style/ClassAndModuleChildren:
|
Style/ClassAndModuleChildren:
|
||||||
EnforcedStyle: compact
|
EnforcedStyle: compact
|
||||||
Exclude:
|
Exclude:
|
||||||
- 'config/application.rb'
|
- 'config/application.rb'
|
||||||
- 'config/initializers/monkey_patches/*'
|
- 'config/initializers/monkey_patches/*'
|
||||||
|
|
||||||
Style/MapToHash:
|
Style/MapToHash:
|
||||||
Enabled: false
|
Enabled: false
|
||||||
|
|
||||||
Style/HashSyntax:
|
Style/HashSyntax:
|
||||||
Enabled: true
|
Enabled: true
|
||||||
EnforcedStyle: no_mixed_keys
|
EnforcedStyle: no_mixed_keys
|
||||||
EnforcedShorthandSyntax: never
|
EnforcedShorthandSyntax: never
|
||||||
|
|
||||||
RSpec/NestedGroups:
|
RSpec/NestedGroups:
|
||||||
Enabled: true
|
Enabled: true
|
||||||
Max: 4
|
Max: 4
|
||||||
|
|
||||||
RSpec/MessageSpies:
|
RSpec/MessageSpies:
|
||||||
Enabled: false
|
Enabled: false
|
||||||
|
|
||||||
RSpec/StubbedMock:
|
RSpec/StubbedMock:
|
||||||
Enabled: false
|
Enabled: false
|
||||||
|
RSpec/FactoryBot/SyntaxMethods:
|
||||||
|
Enabled: false
|
||||||
Naming/VariableNumber:
|
Naming/VariableNumber:
|
||||||
Enabled: false
|
Enabled: false
|
||||||
|
|
||||||
Naming/MemoizedInstanceVariableName:
|
Naming/MemoizedInstanceVariableName:
|
||||||
Exclude:
|
Exclude:
|
||||||
- 'app/models/message.rb'
|
- 'app/models/message.rb'
|
||||||
|
|
||||||
Style/GuardClause:
|
Style/GuardClause:
|
||||||
Exclude:
|
Exclude:
|
||||||
- 'app/builders/account_builder.rb'
|
- 'app/builders/account_builder.rb'
|
||||||
- 'app/models/attachment.rb'
|
- 'app/models/attachment.rb'
|
||||||
- 'app/models/message.rb'
|
- 'app/models/message.rb'
|
||||||
|
|
||||||
Metrics/AbcSize:
|
Metrics/AbcSize:
|
||||||
Max: 26
|
Max: 26
|
||||||
Exclude:
|
Exclude:
|
||||||
- 'app/controllers/concerns/auth_helper.rb'
|
- 'app/controllers/concerns/auth_helper.rb'
|
||||||
|
Rails/UniqueValidationWithoutIndex:
|
||||||
|
Exclude:
|
||||||
|
- 'app/models/channel/twitter_profile.rb'
|
||||||
|
- 'app/models/webhook.rb'
|
||||||
|
- 'app/models/contact.rb'
|
||||||
- 'app/models/integrations/hook.rb'
|
- 'app/models/integrations/hook.rb'
|
||||||
- 'app/models/canned_response.rb'
|
- 'app/models/canned_response.rb'
|
||||||
- 'app/models/telegram_bot.rb'
|
- 'app/models/telegram_bot.rb'
|
||||||
|
|
||||||
Rails/RenderInline:
|
Rails/RenderInline:
|
||||||
Exclude:
|
Exclude:
|
||||||
- 'app/controllers/swagger_controller.rb'
|
- 'app/controllers/swagger_controller.rb'
|
||||||
|
|
||||||
Rails/ThreeStateBooleanColumn:
|
Rails/ThreeStateBooleanColumn:
|
||||||
Exclude:
|
Exclude:
|
||||||
- 'db/migrate/20230503101201_create_sla_policies.rb'
|
- 'db/migrate/20230503101201_create_sla_policies.rb'
|
||||||
|
|
||||||
RSpec/IndexedLet:
|
RSpec/IndexedLet:
|
||||||
Enabled: false
|
Enabled: false
|
||||||
|
|
||||||
RSpec/NamedSubject:
|
RSpec/NamedSubject:
|
||||||
Enabled: false
|
Enabled: false
|
||||||
|
|
||||||
# we should bring this down
|
# we should bring this down
|
||||||
RSpec/MultipleExpectations:
|
RSpec/MultipleExpectations:
|
||||||
Max: 7
|
Max: 7
|
||||||
|
|
||||||
RSpec/MultipleMemoizedHelpers:
|
RSpec/MultipleMemoizedHelpers:
|
||||||
Max: 14
|
Max: 14
|
||||||
|
|
||||||
@@ -213,9 +152,6 @@ UseFromEmail:
|
|||||||
CustomCopLocation:
|
CustomCopLocation:
|
||||||
Enabled: true
|
Enabled: true
|
||||||
|
|
||||||
Style/OneClassPerFile:
|
|
||||||
Enabled: true
|
|
||||||
|
|
||||||
AllCops:
|
AllCops:
|
||||||
NewCops: enable
|
NewCops: enable
|
||||||
Exclude:
|
Exclude:
|
||||||
@@ -230,121 +166,3 @@ AllCops:
|
|||||||
- 'tmp/**/*'
|
- 'tmp/**/*'
|
||||||
- 'storage/**/*'
|
- 'storage/**/*'
|
||||||
- 'db/migrate/20230426130150_init_schema.rb'
|
- 'db/migrate/20230426130150_init_schema.rb'
|
||||||
|
|
||||||
FactoryBot/SyntaxMethods:
|
|
||||||
Enabled: false
|
|
||||||
|
|
||||||
# Disable new rules causing errors
|
|
||||||
Layout/LeadingCommentSpace:
|
|
||||||
Enabled: false
|
|
||||||
|
|
||||||
Style/ReturnNilInPredicateMethodDefinition:
|
|
||||||
Enabled: false
|
|
||||||
|
|
||||||
Style/RedundantParentheses:
|
|
||||||
Enabled: false
|
|
||||||
|
|
||||||
Performance/StringIdentifierArgument:
|
|
||||||
Enabled: false
|
|
||||||
|
|
||||||
Layout/EmptyLinesAroundExceptionHandlingKeywords:
|
|
||||||
Enabled: false
|
|
||||||
|
|
||||||
Lint/LiteralAsCondition:
|
|
||||||
Enabled: false
|
|
||||||
|
|
||||||
Style/RedundantReturn:
|
|
||||||
Enabled: false
|
|
||||||
|
|
||||||
Layout/SpaceAroundOperators:
|
|
||||||
Enabled: false
|
|
||||||
|
|
||||||
Rails/EnvLocal:
|
|
||||||
Enabled: false
|
|
||||||
|
|
||||||
Rails/WhereRange:
|
|
||||||
Enabled: false
|
|
||||||
|
|
||||||
Lint/UselessConstantScoping:
|
|
||||||
Enabled: false
|
|
||||||
|
|
||||||
Style/MultipleComparison:
|
|
||||||
Enabled: false
|
|
||||||
|
|
||||||
Bundler/OrderedGems:
|
|
||||||
Enabled: false
|
|
||||||
|
|
||||||
RSpec/ExampleWording:
|
|
||||||
Enabled: false
|
|
||||||
|
|
||||||
RSpec/ReceiveMessages:
|
|
||||||
Enabled: false
|
|
||||||
|
|
||||||
FactoryBot/AssociationStyle:
|
|
||||||
Enabled: false
|
|
||||||
|
|
||||||
Rails/EnumSyntax:
|
|
||||||
Enabled: false
|
|
||||||
|
|
||||||
Lint/RedundantTypeConversion:
|
|
||||||
Enabled: false
|
|
||||||
|
|
||||||
# Additional rules to disable
|
|
||||||
Rails/RedundantActiveRecordAllMethod:
|
|
||||||
Enabled: false
|
|
||||||
|
|
||||||
Layout/TrailingEmptyLines:
|
|
||||||
Enabled: true
|
|
||||||
|
|
||||||
Style/SafeNavigationChainLength:
|
|
||||||
Enabled: false
|
|
||||||
|
|
||||||
Lint/SafeNavigationConsistency:
|
|
||||||
Enabled: false
|
|
||||||
|
|
||||||
Lint/CopDirectiveSyntax:
|
|
||||||
Enabled: false
|
|
||||||
|
|
||||||
# Final set of rules to disable
|
|
||||||
FactoryBot/ExcessiveCreateList:
|
|
||||||
Enabled: false
|
|
||||||
|
|
||||||
RSpec/MissingExpectationTargetMethod:
|
|
||||||
Enabled: false
|
|
||||||
|
|
||||||
Performance/InefficientHashSearch:
|
|
||||||
Enabled: false
|
|
||||||
|
|
||||||
Style/RedundantSelfAssignmentBranch:
|
|
||||||
Enabled: false
|
|
||||||
|
|
||||||
Style/YAMLFileRead:
|
|
||||||
Enabled: false
|
|
||||||
|
|
||||||
Layout/ExtraSpacing:
|
|
||||||
Enabled: false
|
|
||||||
|
|
||||||
Style/RedundantFilterChain:
|
|
||||||
Enabled: false
|
|
||||||
|
|
||||||
Performance/MapMethodChain:
|
|
||||||
Enabled: false
|
|
||||||
|
|
||||||
Rails/RootPathnameMethods:
|
|
||||||
Enabled: false
|
|
||||||
|
|
||||||
Style/SuperArguments:
|
|
||||||
Enabled: false
|
|
||||||
|
|
||||||
# Final remaining rules to disable
|
|
||||||
Rails/Delegate:
|
|
||||||
Enabled: false
|
|
||||||
|
|
||||||
Style/CaseLikeIf:
|
|
||||||
Enabled: false
|
|
||||||
|
|
||||||
FactoryBot/RedundantFactoryOption:
|
|
||||||
Enabled: false
|
|
||||||
|
|
||||||
FactoryBot/FactoryAssociationWithStrategy:
|
|
||||||
Enabled: false
|
|
||||||
|
|||||||
+1
-1
@@ -1 +1 @@
|
|||||||
3.4.4
|
3.3.3
|
||||||
|
|||||||
@@ -1 +0,0 @@
|
|||||||
../../AGENTS.md
|
|
||||||
@@ -1,88 +0,0 @@
|
|||||||
# Chatwoot Development Guidelines
|
|
||||||
|
|
||||||
## Build / Test / Lint
|
|
||||||
|
|
||||||
- **Setup**: `bundle install && pnpm install`
|
|
||||||
- **Run Dev**: `pnpm dev` or `overmind start -f ./Procfile.dev`
|
|
||||||
- **Lint JS/Vue**: `pnpm eslint` / `pnpm eslint:fix`
|
|
||||||
- **Lint Ruby**: `bundle exec rubocop -a`
|
|
||||||
- **Test JS**: `pnpm test` or `pnpm test:watch`
|
|
||||||
- **Test Ruby**: `bundle exec rspec spec/path/to/file_spec.rb`
|
|
||||||
- **Single Test**: `bundle exec rspec spec/path/to/file_spec.rb:LINE_NUMBER`
|
|
||||||
- **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
|
|
||||||
|
|
||||||
- **Ruby**: Follow RuboCop rules (150 character max line length)
|
|
||||||
- **Vue/JS**: Use ESLint (Airbnb base + Vue 3 recommended)
|
|
||||||
- **Vue Components**: Use PascalCase
|
|
||||||
- **Events**: Use camelCase
|
|
||||||
- **I18n**: No bare strings in templates; use i18n
|
|
||||||
- **Error Handling**: Use custom exceptions (`lib/custom_exceptions/`)
|
|
||||||
- **Models**: Validate presence/uniqueness, add proper indexes
|
|
||||||
- **Type Safety**: Use PropTypes in Vue, strong params in Rails
|
|
||||||
- **Naming**: Use clear, descriptive names with consistent casing
|
|
||||||
- **Vue API**: Always use Composition API with `<script setup>` at the top
|
|
||||||
|
|
||||||
## Styling
|
|
||||||
|
|
||||||
- **Tailwind Only**:
|
|
||||||
- Do not write custom CSS
|
|
||||||
- Do not use scoped CSS
|
|
||||||
- Do not use inline styles
|
|
||||||
- Always use Tailwind utility classes
|
|
||||||
- **Colors**: Refer to `tailwind.config.js` for color definitions
|
|
||||||
|
|
||||||
## General Guidelines
|
|
||||||
|
|
||||||
- MVP focus: Least code change, happy-path only
|
|
||||||
- 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
|
|
||||||
- Iterate after confirmation
|
|
||||||
- Avoid writing specs unless explicitly asked
|
|
||||||
- Remove dead/unreachable/unused code
|
|
||||||
- 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
|
|
||||||
|
|
||||||
## Project-Specific
|
|
||||||
|
|
||||||
- **Translations**:
|
|
||||||
- Only update `en.yml` and `en.json`
|
|
||||||
- Other languages are handled by the community
|
|
||||||
- Backend i18n → `en.yml`, Frontend i18n → `en.json`
|
|
||||||
- **Frontend**:
|
|
||||||
- Use `components-next/` for message bubbles (the rest is being deprecated)
|
|
||||||
|
|
||||||
## Ruby Best Practices
|
|
||||||
|
|
||||||
- Use compact `module/class` definitions; avoid nested styles
|
|
||||||
|
|
||||||
## Enterprise Edition Notes
|
|
||||||
|
|
||||||
- Chatwoot has an Enterprise overlay under `enterprise/` that extends/overrides OSS code.
|
|
||||||
- When you add or modify core functionality, always check for corresponding files in `enterprise/` and keep behavior compatible.
|
|
||||||
- Follow the Enterprise development practices documented here:
|
|
||||||
- https://chatwoot.help/hc/handbook/articles/developing-enterprise-edition-features-38
|
|
||||||
|
|
||||||
Practical checklist for any change impacting core logic or public APIs
|
|
||||||
- Search for related files in both trees before editing (e.g., `rg -n "FooService|ControllerName|ModelName" app enterprise`).
|
|
||||||
- If adding new endpoints, services, or models, consider whether Enterprise needs:
|
|
||||||
- An override (e.g., `enterprise/app/...`), or
|
|
||||||
- An extension point (e.g., `prepend_mod_with`, hooks, configuration) to avoid hard forks.
|
|
||||||
- Avoid hardcoding instance- or plan-specific behavior in OSS; prefer configuration, feature flags, or extension points consumed by Enterprise.
|
|
||||||
- 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.
|
|
||||||
- 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/`.
|
|
||||||
@@ -1,10 +1,10 @@
|
|||||||
source 'https://rubygems.org'
|
source 'https://rubygems.org'
|
||||||
|
|
||||||
ruby '3.4.4'
|
ruby '3.3.3'
|
||||||
|
|
||||||
##-- base gems for rails --##
|
##-- base gems for rails --##
|
||||||
gem 'rack-cors', '2.0.0', require: 'rack/cors'
|
gem 'rack-cors', '2.0.0', require: 'rack/cors'
|
||||||
gem 'rails', '~> 7.1'
|
gem 'rails', '~> 7.0.8.4'
|
||||||
# Reduces boot times through caching; required in config/boot.rb
|
# Reduces boot times through caching; required in config/boot.rb
|
||||||
gem 'bootsnap', require: false
|
gem 'bootsnap', require: false
|
||||||
|
|
||||||
@@ -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 --##
|
||||||
@@ -34,8 +33,6 @@ gem 'liquid'
|
|||||||
gem 'commonmarker'
|
gem 'commonmarker'
|
||||||
# Validate Data against JSON Schema
|
# Validate Data against JSON Schema
|
||||||
gem 'json_schemer'
|
gem 'json_schemer'
|
||||||
# used in swagger build
|
|
||||||
gem 'json_refs'
|
|
||||||
# Rack middleware for blocking & throttling abusive requests
|
# Rack middleware for blocking & throttling abusive requests
|
||||||
gem 'rack-attack', '>= 6.7.0'
|
gem 'rack-attack', '>= 6.7.0'
|
||||||
# a utility tool for streaming, flexible and safe downloading of remote files
|
# a utility tool for streaming, flexible and safe downloading of remote files
|
||||||
@@ -55,9 +52,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 +60,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 +72,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 +87,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'
|
||||||
@@ -119,7 +106,7 @@ gem 'google-cloud-translate-v3', '>= 0.7.0'
|
|||||||
##-- apm and error monitoring ---#
|
##-- apm and error monitoring ---#
|
||||||
# loaded only when environment variables are set.
|
# loaded only when environment variables are set.
|
||||||
# ref application.rb
|
# ref application.rb
|
||||||
gem 'datadog', '~> 2.0', require: false
|
gem 'ddtrace', require: false
|
||||||
gem 'elastic-apm', require: false
|
gem 'elastic-apm', require: false
|
||||||
gem 'newrelic_rpm', require: false
|
gem 'newrelic_rpm', require: false
|
||||||
gem 'newrelic-sidekiq-metrics', '>= 1.6.2', require: false
|
gem 'newrelic-sidekiq-metrics', '>= 1.6.2', require: false
|
||||||
@@ -132,8 +119,6 @@ gem 'sentry-sidekiq', '>= 5.19.0', require: false
|
|||||||
gem 'sidekiq', '>= 7.3.1'
|
gem 'sidekiq', '>= 7.3.1'
|
||||||
# We want cron jobs
|
# We want cron jobs
|
||||||
gem 'sidekiq-cron', '>= 1.12.0'
|
gem 'sidekiq-cron', '>= 1.12.0'
|
||||||
# for sidekiq healthcheck
|
|
||||||
gem 'sidekiq_alive'
|
|
||||||
|
|
||||||
##-- Push notification service --##
|
##-- Push notification service --##
|
||||||
gem 'fcm'
|
gem 'fcm'
|
||||||
@@ -162,7 +147,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 +163,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,15 +175,6 @@ gem 'reverse_markdown'
|
|||||||
|
|
||||||
gem 'iso-639'
|
gem 'iso-639'
|
||||||
gem 'ruby-openai'
|
gem 'ruby-openai'
|
||||||
gem 'ai-agents', '>= 0.7.0'
|
|
||||||
|
|
||||||
# TODO: Move this gem as a dependency of ai-agents
|
|
||||||
gem 'ruby_llm', '>= 1.8.2'
|
|
||||||
gem 'ruby_llm-schema'
|
|
||||||
|
|
||||||
# OpenTelemetry for LLM observability
|
|
||||||
gem 'opentelemetry-sdk'
|
|
||||||
gem 'opentelemetry-exporter-otlp'
|
|
||||||
|
|
||||||
gem 'shopify_api'
|
gem 'shopify_api'
|
||||||
|
|
||||||
@@ -215,12 +190,15 @@ 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
|
||||||
gem 'web-console', '>= 4.2.1'
|
gem 'web-console', '>= 4.2.1'
|
||||||
|
|
||||||
|
# used in swagger build
|
||||||
|
gem 'json_refs'
|
||||||
|
|
||||||
# When we want to squash migrations
|
# When we want to squash migrations
|
||||||
gem 'squasher'
|
gem 'squasher'
|
||||||
|
|
||||||
@@ -229,8 +207,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 +216,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
|
||||||
@@ -262,10 +237,9 @@ group :development, :test do
|
|||||||
gem 'rubocop-performance', require: false
|
gem 'rubocop-performance', require: false
|
||||||
gem 'rubocop-rails', require: false
|
gem 'rubocop-rails', require: false
|
||||||
gem 'rubocop-rspec', require: false
|
gem 'rubocop-rspec', 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
|
||||||
|
|||||||
+191
-358
@@ -25,89 +25,76 @@ GIT
|
|||||||
GEM
|
GEM
|
||||||
remote: https://rubygems.org/
|
remote: https://rubygems.org/
|
||||||
specs:
|
specs:
|
||||||
actioncable (7.1.5.2)
|
actioncable (7.0.8.7)
|
||||||
actionpack (= 7.1.5.2)
|
actionpack (= 7.0.8.7)
|
||||||
activesupport (= 7.1.5.2)
|
activesupport (= 7.0.8.7)
|
||||||
nio4r (~> 2.0)
|
nio4r (~> 2.0)
|
||||||
websocket-driver (>= 0.6.1)
|
websocket-driver (>= 0.6.1)
|
||||||
zeitwerk (~> 2.6)
|
actionmailbox (7.0.8.7)
|
||||||
actionmailbox (7.1.5.2)
|
actionpack (= 7.0.8.7)
|
||||||
actionpack (= 7.1.5.2)
|
activejob (= 7.0.8.7)
|
||||||
activejob (= 7.1.5.2)
|
activerecord (= 7.0.8.7)
|
||||||
activerecord (= 7.1.5.2)
|
activestorage (= 7.0.8.7)
|
||||||
activestorage (= 7.1.5.2)
|
activesupport (= 7.0.8.7)
|
||||||
activesupport (= 7.1.5.2)
|
|
||||||
mail (>= 2.7.1)
|
mail (>= 2.7.1)
|
||||||
net-imap
|
net-imap
|
||||||
net-pop
|
net-pop
|
||||||
net-smtp
|
net-smtp
|
||||||
actionmailer (7.1.5.2)
|
actionmailer (7.0.8.7)
|
||||||
actionpack (= 7.1.5.2)
|
actionpack (= 7.0.8.7)
|
||||||
actionview (= 7.1.5.2)
|
actionview (= 7.0.8.7)
|
||||||
activejob (= 7.1.5.2)
|
activejob (= 7.0.8.7)
|
||||||
activesupport (= 7.1.5.2)
|
activesupport (= 7.0.8.7)
|
||||||
mail (~> 2.5, >= 2.5.4)
|
mail (~> 2.5, >= 2.5.4)
|
||||||
net-imap
|
net-imap
|
||||||
net-pop
|
net-pop
|
||||||
net-smtp
|
net-smtp
|
||||||
rails-dom-testing (~> 2.2)
|
rails-dom-testing (~> 2.0)
|
||||||
actionpack (7.1.5.2)
|
actionpack (7.0.8.7)
|
||||||
actionview (= 7.1.5.2)
|
actionview (= 7.0.8.7)
|
||||||
activesupport (= 7.1.5.2)
|
activesupport (= 7.0.8.7)
|
||||||
nokogiri (>= 1.8.5)
|
rack (~> 2.0, >= 2.2.4)
|
||||||
racc
|
|
||||||
rack (>= 2.2.4)
|
|
||||||
rack-session (>= 1.0.1)
|
|
||||||
rack-test (>= 0.6.3)
|
rack-test (>= 0.6.3)
|
||||||
rails-dom-testing (~> 2.2)
|
rails-dom-testing (~> 2.0)
|
||||||
rails-html-sanitizer (~> 1.6)
|
rails-html-sanitizer (~> 1.0, >= 1.2.0)
|
||||||
actiontext (7.1.5.2)
|
actiontext (7.0.8.7)
|
||||||
actionpack (= 7.1.5.2)
|
actionpack (= 7.0.8.7)
|
||||||
activerecord (= 7.1.5.2)
|
activerecord (= 7.0.8.7)
|
||||||
activestorage (= 7.1.5.2)
|
activestorage (= 7.0.8.7)
|
||||||
activesupport (= 7.1.5.2)
|
activesupport (= 7.0.8.7)
|
||||||
globalid (>= 0.6.0)
|
globalid (>= 0.6.0)
|
||||||
nokogiri (>= 1.8.5)
|
nokogiri (>= 1.8.5)
|
||||||
actionview (7.1.5.2)
|
actionview (7.0.8.7)
|
||||||
activesupport (= 7.1.5.2)
|
activesupport (= 7.0.8.7)
|
||||||
builder (~> 3.1)
|
builder (~> 3.1)
|
||||||
erubi (~> 1.11)
|
erubi (~> 1.4)
|
||||||
rails-dom-testing (~> 2.2)
|
rails-dom-testing (~> 2.0)
|
||||||
rails-html-sanitizer (~> 1.6)
|
rails-html-sanitizer (~> 1.1, >= 1.2.0)
|
||||||
active_record_query_trace (1.8)
|
active_record_query_trace (1.8)
|
||||||
activejob (7.1.5.2)
|
activejob (7.0.8.7)
|
||||||
activesupport (= 7.1.5.2)
|
activesupport (= 7.0.8.7)
|
||||||
globalid (>= 0.3.6)
|
globalid (>= 0.3.6)
|
||||||
activemodel (7.1.5.2)
|
activemodel (7.0.8.7)
|
||||||
activesupport (= 7.1.5.2)
|
activesupport (= 7.0.8.7)
|
||||||
activerecord (7.1.5.2)
|
activerecord (7.0.8.7)
|
||||||
activemodel (= 7.1.5.2)
|
activemodel (= 7.0.8.7)
|
||||||
activesupport (= 7.1.5.2)
|
activesupport (= 7.0.8.7)
|
||||||
timeout (>= 0.4.0)
|
activerecord-import (1.4.1)
|
||||||
activerecord-import (2.1.0)
|
|
||||||
activerecord (>= 4.2)
|
activerecord (>= 4.2)
|
||||||
activestorage (7.1.5.2)
|
activestorage (7.0.8.7)
|
||||||
actionpack (= 7.1.5.2)
|
actionpack (= 7.0.8.7)
|
||||||
activejob (= 7.1.5.2)
|
activejob (= 7.0.8.7)
|
||||||
activerecord (= 7.1.5.2)
|
activerecord (= 7.0.8.7)
|
||||||
activesupport (= 7.1.5.2)
|
activesupport (= 7.0.8.7)
|
||||||
marcel (~> 1.0)
|
marcel (~> 1.0)
|
||||||
activesupport (7.1.5.2)
|
mini_mime (>= 1.1.0)
|
||||||
base64
|
activesupport (7.0.8.7)
|
||||||
benchmark (>= 0.3)
|
|
||||||
bigdecimal
|
|
||||||
concurrent-ruby (~> 1.0, >= 1.0.2)
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
||||||
connection_pool (>= 2.2.5)
|
|
||||||
drb
|
|
||||||
i18n (>= 1.6, < 2)
|
i18n (>= 1.6, < 2)
|
||||||
logger (>= 1.4.2)
|
|
||||||
minitest (>= 5.1)
|
minitest (>= 5.1)
|
||||||
mutex_m
|
|
||||||
securerandom (>= 0.3)
|
|
||||||
tzinfo (~> 2.0)
|
tzinfo (~> 2.0)
|
||||||
acts-as-taggable-on (12.0.0)
|
acts-as-taggable-on (9.0.1)
|
||||||
activerecord (>= 7.1, < 8.1)
|
activerecord (>= 6.0, < 7.1)
|
||||||
zeitwerk (>= 2.4, < 3.0)
|
|
||||||
addressable (2.8.7)
|
addressable (2.8.7)
|
||||||
public_suffix (>= 2.0.2, < 7.0)
|
public_suffix (>= 2.0.2, < 7.0)
|
||||||
administrate (0.20.1)
|
administrate (0.20.1)
|
||||||
@@ -126,56 +113,43 @@ 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)
|
annotate (3.2.0)
|
||||||
ruby_llm (~> 1.8.2)
|
activerecord (>= 3.2, < 8.0)
|
||||||
annotaterb (4.20.0)
|
rake (>= 10.4, < 14.0)
|
||||||
activerecord (>= 6.0.0)
|
ast (2.4.2)
|
||||||
activesupport (>= 6.0.0)
|
|
||||||
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)
|
aws-eventstream (1.2.0)
|
||||||
actionmailbox (>= 7.1.0)
|
aws-partitions (1.760.0)
|
||||||
aws-sdk-s3 (~> 1, >= 1.123.0)
|
aws-sdk-core (3.171.1)
|
||||||
aws-sdk-sns (~> 1, >= 1.61.0)
|
aws-eventstream (~> 1, >= 1.0.2)
|
||||||
aws-eventstream (1.4.0)
|
aws-partitions (~> 1, >= 1.651.0)
|
||||||
aws-partitions (1.1198.0)
|
aws-sigv4 (~> 1.5)
|
||||||
aws-sdk-core (3.240.0)
|
|
||||||
aws-eventstream (~> 1, >= 1.3.0)
|
|
||||||
aws-partitions (~> 1, >= 1.992.0)
|
|
||||||
aws-sigv4 (~> 1.9)
|
|
||||||
base64
|
|
||||||
bigdecimal
|
|
||||||
jmespath (~> 1, >= 1.6.1)
|
jmespath (~> 1, >= 1.6.1)
|
||||||
logger
|
aws-sdk-kms (1.64.0)
|
||||||
aws-sdk-kms (1.118.0)
|
aws-sdk-core (~> 3, >= 3.165.0)
|
||||||
aws-sdk-core (~> 3, >= 3.239.1)
|
|
||||||
aws-sigv4 (~> 1.5)
|
|
||||||
aws-sdk-s3 (1.208.0)
|
|
||||||
aws-sdk-core (~> 3, >= 3.234.0)
|
|
||||||
aws-sdk-kms (~> 1)
|
|
||||||
aws-sigv4 (~> 1.5)
|
|
||||||
aws-sdk-sns (1.70.0)
|
|
||||||
aws-sdk-core (~> 3, >= 3.188.0)
|
|
||||||
aws-sigv4 (~> 1.1)
|
aws-sigv4 (~> 1.1)
|
||||||
aws-sigv4 (1.12.1)
|
aws-sdk-s3 (1.122.0)
|
||||||
|
aws-sdk-core (~> 3, >= 3.165.0)
|
||||||
|
aws-sdk-kms (~> 1)
|
||||||
|
aws-sigv4 (~> 1.4)
|
||||||
|
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)
|
||||||
multi_json (~> 1)
|
multi_json (~> 1)
|
||||||
statsd-ruby (~> 1.1)
|
statsd-ruby (~> 1.1)
|
||||||
base64 (0.3.0)
|
base64 (0.2.0)
|
||||||
bcrypt (3.1.20)
|
bcrypt (3.1.20)
|
||||||
benchmark (0.4.1)
|
bigdecimal (3.1.8)
|
||||||
bigdecimal (3.2.2)
|
|
||||||
bindex (0.8.1)
|
bindex (0.8.1)
|
||||||
bootsnap (1.16.0)
|
bootsnap (1.16.0)
|
||||||
msgpack (~> 1.2)
|
msgpack (~> 1.2)
|
||||||
brakeman (5.4.1)
|
brakeman (5.4.1)
|
||||||
browser (5.3.1)
|
browser (5.3.1)
|
||||||
builder (3.3.0)
|
builder (3.3.0)
|
||||||
bullet (8.0.7)
|
bullet (7.0.7)
|
||||||
activesupport (>= 3.0.0)
|
activesupport (>= 3.0.0)
|
||||||
uniform_notifier (~> 1.11)
|
uniform_notifier (~> 1.11)
|
||||||
bundle-audit (0.1.0)
|
bundle-audit (0.1.0)
|
||||||
@@ -184,13 +158,11 @@ GEM
|
|||||||
bundler (>= 1.2.0, < 3)
|
bundler (>= 1.2.0, < 3)
|
||||||
thor (~> 1.0)
|
thor (~> 1.0)
|
||||||
byebug (11.1.3)
|
byebug (11.1.3)
|
||||||
childprocess (5.1.0)
|
|
||||||
logger (~> 1.5)
|
|
||||||
climate_control (1.2.0)
|
climate_control (1.2.0)
|
||||||
coderay (1.1.3)
|
coderay (1.1.3)
|
||||||
commonmarker (0.23.10)
|
commonmarker (0.23.10)
|
||||||
concurrent-ruby (1.3.5)
|
concurrent-ruby (1.3.4)
|
||||||
connection_pool (2.5.3)
|
connection_pool (2.4.1)
|
||||||
crack (1.0.0)
|
crack (1.0.0)
|
||||||
bigdecimal
|
bigdecimal
|
||||||
rexml
|
rexml
|
||||||
@@ -204,14 +176,16 @@ GEM
|
|||||||
activerecord (>= 5.a)
|
activerecord (>= 5.a)
|
||||||
database_cleaner-core (~> 2.0.0)
|
database_cleaner-core (~> 2.0.0)
|
||||||
database_cleaner-core (2.0.1)
|
database_cleaner-core (2.0.1)
|
||||||
datadog (2.19.0)
|
datadog-ci (0.8.3)
|
||||||
datadog-ruby_core_source (~> 3.4, >= 3.4.1)
|
|
||||||
libdatadog (~> 18.1.0.1.0)
|
|
||||||
libddwaf (~> 1.24.1.0.3)
|
|
||||||
logger
|
|
||||||
msgpack
|
msgpack
|
||||||
datadog-ruby_core_source (3.4.1)
|
|
||||||
date (3.4.1)
|
date (3.4.1)
|
||||||
|
ddtrace (1.23.2)
|
||||||
|
datadog-ci (~> 0.8.1)
|
||||||
|
debase-ruby_core_source (= 3.3.1)
|
||||||
|
libdatadog (~> 7.0.0.1.0)
|
||||||
|
libddwaf (~> 1.14.0.0.0)
|
||||||
|
msgpack
|
||||||
|
debase-ruby_core_source (3.3.1)
|
||||||
debug (1.8.0)
|
debug (1.8.0)
|
||||||
irb (>= 1.5.0)
|
irb (>= 1.5.0)
|
||||||
reline (>= 0.3.1)
|
reline (>= 0.3.1)
|
||||||
@@ -222,19 +196,14 @@ 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)
|
devise_token_auth (1.2.3)
|
||||||
activesupport (>= 7.0, < 8.1)
|
|
||||||
devise (~> 4.0)
|
|
||||||
railties (>= 7.0, < 8.1)
|
|
||||||
rotp (~> 6.0)
|
|
||||||
devise_token_auth (1.2.5)
|
|
||||||
bcrypt (~> 3.0)
|
bcrypt (~> 3.0)
|
||||||
devise (> 3.5.2, < 5)
|
devise (> 3.5.2, < 5)
|
||||||
rails (>= 4.2.0, < 8.1)
|
rails (>= 4.2.0, < 7.2)
|
||||||
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)
|
||||||
@@ -243,44 +212,13 @@ GEM
|
|||||||
railties (>= 6.1)
|
railties (>= 6.1)
|
||||||
down (5.4.0)
|
down (5.4.0)
|
||||||
addressable (~> 2.8)
|
addressable (~> 2.8)
|
||||||
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)
|
||||||
@@ -297,41 +235,26 @@ 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)
|
||||||
ffi (1.17.2)
|
ffi (1.16.3)
|
||||||
ffi (1.17.2-arm64-darwin)
|
|
||||||
ffi (1.17.2-x86_64-darwin)
|
|
||||||
ffi (1.17.2-x86_64-linux-gnu)
|
|
||||||
ffi-compiler (1.0.1)
|
ffi-compiler (1.0.1)
|
||||||
ffi (>= 1.0.0)
|
ffi (>= 1.0.0)
|
||||||
rake
|
rake
|
||||||
@@ -392,13 +315,16 @@ GEM
|
|||||||
google-cloud-translate-v3 (0.10.0)
|
google-cloud-translate-v3 (0.10.0)
|
||||||
gapic-common (>= 0.20.0, < 2.a)
|
gapic-common (>= 0.20.0, < 2.a)
|
||||||
google-cloud-errors (~> 1.0)
|
google-cloud-errors (~> 1.0)
|
||||||
google-protobuf (3.25.7)
|
google-protobuf (3.25.5)
|
||||||
|
google-protobuf (3.25.5-arm64-darwin)
|
||||||
|
google-protobuf (3.25.5-x86_64-darwin)
|
||||||
|
google-protobuf (3.25.5-x86_64-linux)
|
||||||
googleapis-common-protos (1.6.0)
|
googleapis-common-protos (1.6.0)
|
||||||
google-protobuf (>= 3.18, < 5.a)
|
google-protobuf (>= 3.18, < 5.a)
|
||||||
googleapis-common-protos-types (~> 1.7)
|
googleapis-common-protos-types (~> 1.7)
|
||||||
grpc (~> 1.41)
|
grpc (~> 1.41)
|
||||||
googleapis-common-protos-types (1.20.0)
|
googleapis-common-protos-types (1.14.0)
|
||||||
google-protobuf (>= 3.18, < 5.a)
|
google-protobuf (~> 3.18)
|
||||||
googleauth (1.11.2)
|
googleauth (1.11.2)
|
||||||
faraday (>= 1.0, < 3.a)
|
faraday (>= 1.0, < 3.a)
|
||||||
google-cloud-env (~> 2.1)
|
google-cloud-env (~> 2.1)
|
||||||
@@ -408,19 +334,18 @@ GEM
|
|||||||
signet (>= 0.16, < 2.a)
|
signet (>= 0.16, < 2.a)
|
||||||
groupdate (6.2.1)
|
groupdate (6.2.1)
|
||||||
activesupport (>= 5.2)
|
activesupport (>= 5.2)
|
||||||
grpc (1.72.0)
|
grpc (1.62.0)
|
||||||
google-protobuf (>= 3.25, < 5.0)
|
google-protobuf (~> 3.25)
|
||||||
googleapis-common-protos-types (~> 1.0)
|
googleapis-common-protos-types (~> 1.0)
|
||||||
grpc (1.72.0-arm64-darwin)
|
grpc (1.62.0-arm64-darwin)
|
||||||
google-protobuf (>= 3.25, < 5.0)
|
google-protobuf (~> 3.25)
|
||||||
googleapis-common-protos-types (~> 1.0)
|
googleapis-common-protos-types (~> 1.0)
|
||||||
grpc (1.72.0-x86_64-darwin)
|
grpc (1.62.0-x86_64-darwin)
|
||||||
google-protobuf (>= 3.25, < 5.0)
|
google-protobuf (~> 3.25)
|
||||||
googleapis-common-protos-types (~> 1.0)
|
googleapis-common-protos-types (~> 1.0)
|
||||||
grpc (1.72.0-x86_64-linux)
|
grpc (1.62.0-x86_64-linux)
|
||||||
google-protobuf (>= 3.25, < 5.0)
|
google-protobuf (~> 3.25)
|
||||||
googleapis-common-protos-types (~> 1.0)
|
googleapis-common-protos-types (~> 1.0)
|
||||||
gserver (0.0.1)
|
|
||||||
haikunator (1.1.1)
|
haikunator (1.1.1)
|
||||||
hairtrigger (1.0.0)
|
hairtrigger (1.0.0)
|
||||||
activerecord (>= 6.0, < 8)
|
activerecord (>= 6.0, < 8)
|
||||||
@@ -441,12 +366,11 @@ GEM
|
|||||||
http-cookie (1.0.5)
|
http-cookie (1.0.5)
|
||||||
domain_name (~> 0.5)
|
domain_name (~> 0.5)
|
||||||
http-form_data (2.3.0)
|
http-form_data (2.3.0)
|
||||||
httparty (0.24.0)
|
httparty (0.21.0)
|
||||||
csv
|
|
||||||
mini_mime (>= 1.0.0)
|
mini_mime (>= 1.0.0)
|
||||||
multi_xml (>= 0.5.2)
|
multi_xml (>= 0.5.2)
|
||||||
httpclient (2.8.3)
|
httpclient (2.8.3)
|
||||||
i18n (1.14.7)
|
i18n (1.14.6)
|
||||||
concurrent-ruby (~> 1.0)
|
concurrent-ruby (~> 1.0)
|
||||||
image_processing (1.12.2)
|
image_processing (1.12.2)
|
||||||
mini_magick (>= 4.9.5, < 5)
|
mini_magick (>= 4.9.5, < 5)
|
||||||
@@ -464,7 +388,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.6.3)
|
||||||
json_refs (0.1.8)
|
json_refs (0.1.8)
|
||||||
hana
|
hana
|
||||||
json_schemer (0.2.24)
|
json_schemer (0.2.24)
|
||||||
@@ -479,7 +403,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)
|
||||||
@@ -499,25 +423,21 @@ GEM
|
|||||||
faraday-multipart
|
faraday-multipart
|
||||||
json (>= 1.8)
|
json (>= 1.8)
|
||||||
rexml
|
rexml
|
||||||
language_server-protocol (3.17.0.5)
|
launchy (2.5.2)
|
||||||
launchy (3.1.1)
|
|
||||||
addressable (~> 2.8)
|
addressable (~> 2.8)
|
||||||
childprocess (~> 5.0)
|
letter_opener (1.8.1)
|
||||||
logger (~> 1.6)
|
launchy (>= 2.2, < 3)
|
||||||
letter_opener (1.10.0)
|
libdatadog (7.0.0.1.0)
|
||||||
launchy (>= 2.2, < 4)
|
libdatadog (7.0.0.1.0-x86_64-linux)
|
||||||
libdatadog (18.1.0.1.0)
|
libddwaf (1.14.0.0.0)
|
||||||
libdatadog (18.1.0.1.0-x86_64-linux)
|
|
||||||
libddwaf (1.24.1.0.3)
|
|
||||||
ffi (~> 1.0)
|
ffi (~> 1.0)
|
||||||
libddwaf (1.24.1.0.3-arm64-darwin)
|
libddwaf (1.14.0.0.0-arm64-darwin)
|
||||||
ffi (~> 1.0)
|
ffi (~> 1.0)
|
||||||
libddwaf (1.24.1.0.3-x86_64-darwin)
|
libddwaf (1.14.0.0.0-x86_64-darwin)
|
||||||
ffi (~> 1.0)
|
ffi (~> 1.0)
|
||||||
libddwaf (1.24.1.0.3-x86_64-linux)
|
libddwaf (1.14.0.0.0-x86_64-linux)
|
||||||
ffi (~> 1.0)
|
ffi (~> 1.0)
|
||||||
line-bot-api (1.28.0)
|
line-bot-api (1.28.0)
|
||||||
lint_roller (1.1.0)
|
|
||||||
liquid (5.4.0)
|
liquid (5.4.0)
|
||||||
listen (3.8.0)
|
listen (3.8.0)
|
||||||
rb-fsevent (~> 0.10, >= 0.10.3)
|
rb-fsevent (~> 0.10, >= 0.10.3)
|
||||||
@@ -525,7 +445,7 @@ GEM
|
|||||||
llhttp-ffi (0.4.0)
|
llhttp-ffi (0.4.0)
|
||||||
ffi-compiler (~> 1.0)
|
ffi-compiler (~> 1.0)
|
||||||
rake (~> 13.0)
|
rake (~> 13.0)
|
||||||
logger (1.7.0)
|
logger (1.6.0)
|
||||||
lograge (0.14.0)
|
lograge (0.14.0)
|
||||||
actionpack (>= 4)
|
actionpack (>= 4)
|
||||||
activesupport (>= 4)
|
activesupport (>= 4)
|
||||||
@@ -550,19 +470,18 @@ GEM
|
|||||||
mime-types-data (3.2023.0218.1)
|
mime-types-data (3.2023.0218.1)
|
||||||
mini_magick (4.12.0)
|
mini_magick (4.12.0)
|
||||||
mini_mime (1.1.5)
|
mini_mime (1.1.5)
|
||||||
mini_portile2 (2.8.9)
|
mini_portile2 (2.8.8)
|
||||||
minitest (5.25.5)
|
minitest (5.25.4)
|
||||||
mock_redis (0.36.0)
|
mock_redis (0.36.0)
|
||||||
ruby2_keywords
|
ruby2_keywords
|
||||||
msgpack (1.8.0)
|
msgpack (1.7.0)
|
||||||
multi_json (1.15.0)
|
multi_json (1.15.0)
|
||||||
multi_xml (0.8.0)
|
multi_xml (0.6.0)
|
||||||
bigdecimal (>= 3.1, < 5)
|
|
||||||
multipart-post (2.3.0)
|
multipart-post (2.3.0)
|
||||||
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)
|
||||||
@@ -582,14 +501,14 @@ GEM
|
|||||||
newrelic_rpm (9.6.0)
|
newrelic_rpm (9.6.0)
|
||||||
base64
|
base64
|
||||||
nio4r (2.7.3)
|
nio4r (2.7.3)
|
||||||
nokogiri (1.18.9)
|
nokogiri (1.18.8)
|
||||||
mini_portile2 (~> 2.8.2)
|
mini_portile2 (~> 2.8.2)
|
||||||
racc (~> 1.4)
|
racc (~> 1.4)
|
||||||
nokogiri (1.18.9-arm64-darwin)
|
nokogiri (1.18.8-arm64-darwin)
|
||||||
racc (~> 1.4)
|
racc (~> 1.4)
|
||||||
nokogiri (1.18.9-x86_64-darwin)
|
nokogiri (1.18.8-x86_64-darwin)
|
||||||
racc (~> 1.4)
|
racc (~> 1.4)
|
||||||
nokogiri (1.18.9-x86_64-linux-gnu)
|
nokogiri (1.18.8-x86_64-linux-gnu)
|
||||||
racc (~> 1.4)
|
racc (~> 1.4)
|
||||||
oauth (1.1.0)
|
oauth (1.1.0)
|
||||||
oauth-tty (~> 1.0, >= 1.0.1)
|
oauth-tty (~> 1.0, >= 1.0.1)
|
||||||
@@ -607,9 +526,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)
|
||||||
@@ -623,45 +541,18 @@ 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)
|
||||||
parallel (1.27.0)
|
parallel (1.23.0)
|
||||||
parser (3.3.8.0)
|
parser (3.2.2.1)
|
||||||
ast (~> 2.4.1)
|
ast (~> 2.4.1)
|
||||||
racc
|
|
||||||
pg (1.5.3)
|
pg (1.5.3)
|
||||||
pg_search (2.3.6)
|
pg_search (2.3.6)
|
||||||
activerecord (>= 5.2)
|
activerecord (>= 5.2)
|
||||||
activesupport (>= 5.2)
|
activesupport (>= 5.2)
|
||||||
pgvector (0.1.1)
|
pgvector (0.1.1)
|
||||||
prism (1.4.0)
|
|
||||||
procore-sift (1.0.0)
|
procore-sift (1.0.0)
|
||||||
activerecord (>= 6.1)
|
activerecord (>= 6.1)
|
||||||
pry (0.14.2)
|
pry (0.14.2)
|
||||||
@@ -669,14 +560,14 @@ GEM
|
|||||||
method_source (~> 1.0)
|
method_source (~> 1.0)
|
||||||
pry-rails (0.3.9)
|
pry-rails (0.3.9)
|
||||||
pry (>= 0.10.4)
|
pry (>= 0.10.4)
|
||||||
public_suffix (6.0.2)
|
public_suffix (6.0.0)
|
||||||
puma (6.4.3)
|
puma (6.4.3)
|
||||||
nio4r (~> 2.0)
|
nio4r (~> 2.0)
|
||||||
pundit (2.3.0)
|
pundit (2.3.0)
|
||||||
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.13)
|
||||||
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)
|
||||||
@@ -685,34 +576,28 @@ 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)
|
|
||||||
base64 (>= 0.1.0)
|
|
||||||
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)
|
rails (7.0.8.7)
|
||||||
rack (>= 3)
|
actioncable (= 7.0.8.7)
|
||||||
rails (7.1.5.2)
|
actionmailbox (= 7.0.8.7)
|
||||||
actioncable (= 7.1.5.2)
|
actionmailer (= 7.0.8.7)
|
||||||
actionmailbox (= 7.1.5.2)
|
actionpack (= 7.0.8.7)
|
||||||
actionmailer (= 7.1.5.2)
|
actiontext (= 7.0.8.7)
|
||||||
actionpack (= 7.1.5.2)
|
actionview (= 7.0.8.7)
|
||||||
actiontext (= 7.1.5.2)
|
activejob (= 7.0.8.7)
|
||||||
actionview (= 7.1.5.2)
|
activemodel (= 7.0.8.7)
|
||||||
activejob (= 7.1.5.2)
|
activerecord (= 7.0.8.7)
|
||||||
activemodel (= 7.1.5.2)
|
activestorage (= 7.0.8.7)
|
||||||
activerecord (= 7.1.5.2)
|
activesupport (= 7.0.8.7)
|
||||||
activestorage (= 7.1.5.2)
|
|
||||||
activesupport (= 7.1.5.2)
|
|
||||||
bundler (>= 1.15.0)
|
bundler (>= 1.15.0)
|
||||||
railties (= 7.1.5.2)
|
railties (= 7.0.8.7)
|
||||||
rails-dom-testing (2.2.0)
|
rails-dom-testing (2.2.0)
|
||||||
activesupport (>= 5.0.0)
|
activesupport (>= 5.0.0)
|
||||||
minitest
|
minitest
|
||||||
@@ -720,14 +605,13 @@ GEM
|
|||||||
rails-html-sanitizer (1.6.1)
|
rails-html-sanitizer (1.6.1)
|
||||||
loofah (~> 2.21)
|
loofah (~> 2.21)
|
||||||
nokogiri (>= 1.15.7, != 1.16.7, != 1.16.6, != 1.16.5, != 1.16.4, != 1.16.3, != 1.16.2, != 1.16.1, != 1.16.0.rc1, != 1.16.0)
|
nokogiri (>= 1.15.7, != 1.16.7, != 1.16.6, != 1.16.5, != 1.16.4, != 1.16.3, != 1.16.2, != 1.16.1, != 1.16.0.rc1, != 1.16.0)
|
||||||
railties (7.1.5.2)
|
railties (7.0.8.7)
|
||||||
actionpack (= 7.1.5.2)
|
actionpack (= 7.0.8.7)
|
||||||
activesupport (= 7.1.5.2)
|
activesupport (= 7.0.8.7)
|
||||||
irb
|
method_source
|
||||||
rackup (>= 1.0.0)
|
|
||||||
rake (>= 12.2)
|
rake (>= 12.2)
|
||||||
thor (~> 1.0, >= 1.2.2)
|
thor (~> 1.0)
|
||||||
zeitwerk (~> 2.6)
|
zeitwerk (~> 2.5)
|
||||||
rainbow (3.1.1)
|
rainbow (3.1.1)
|
||||||
rake (13.2.1)
|
rake (13.2.1)
|
||||||
rb-fsevent (0.11.2)
|
rb-fsevent (0.11.2)
|
||||||
@@ -739,7 +623,7 @@ GEM
|
|||||||
connection_pool
|
connection_pool
|
||||||
redis-namespace (1.10.0)
|
redis-namespace (1.10.0)
|
||||||
redis (>= 4)
|
redis (>= 4)
|
||||||
regexp_parser (2.10.0)
|
regexp_parser (2.8.0)
|
||||||
reline (0.3.6)
|
reline (0.3.6)
|
||||||
io-console (~> 0.5)
|
io-console (~> 0.5)
|
||||||
representable (3.2.0)
|
representable (3.2.0)
|
||||||
@@ -759,8 +643,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.3.9)
|
||||||
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)
|
||||||
@@ -780,61 +663,41 @@ GEM
|
|||||||
rspec-support (3.13.1)
|
rspec-support (3.13.1)
|
||||||
rspec_junit_formatter (0.6.0)
|
rspec_junit_formatter (0.6.0)
|
||||||
rspec-core (>= 2, < 4, != 2.12.0)
|
rspec-core (>= 2, < 4, != 2.12.0)
|
||||||
rubocop (1.75.6)
|
rubocop (1.50.2)
|
||||||
json (~> 2.3)
|
json (~> 2.3)
|
||||||
language_server-protocol (~> 3.17.0.2)
|
|
||||||
lint_roller (~> 1.1.0)
|
|
||||||
parallel (~> 1.10)
|
parallel (~> 1.10)
|
||||||
parser (>= 3.3.0.2)
|
parser (>= 3.2.0.0)
|
||||||
rainbow (>= 2.2.2, < 4.0)
|
rainbow (>= 2.2.2, < 4.0)
|
||||||
regexp_parser (>= 2.9.3, < 3.0)
|
regexp_parser (>= 1.8, < 3.0)
|
||||||
rubocop-ast (>= 1.44.0, < 2.0)
|
rexml (>= 3.2.5, < 4.0)
|
||||||
|
rubocop-ast (>= 1.28.0, < 2.0)
|
||||||
ruby-progressbar (~> 1.7)
|
ruby-progressbar (~> 1.7)
|
||||||
unicode-display_width (>= 2.4.0, < 4.0)
|
unicode-display_width (>= 2.4.0, < 3.0)
|
||||||
rubocop-ast (1.44.1)
|
rubocop-ast (1.28.1)
|
||||||
parser (>= 3.3.7.2)
|
parser (>= 3.2.1.0)
|
||||||
prism (~> 1.4)
|
rubocop-capybara (2.18.0)
|
||||||
rubocop-factory_bot (2.27.1)
|
rubocop (~> 1.41)
|
||||||
lint_roller (~> 1.1)
|
rubocop-performance (1.17.1)
|
||||||
rubocop (~> 1.72, >= 1.72.1)
|
rubocop (>= 1.7.0, < 2.0)
|
||||||
rubocop-performance (1.25.0)
|
rubocop-ast (>= 0.4.0)
|
||||||
lint_roller (~> 1.1)
|
rubocop-rails (2.19.1)
|
||||||
rubocop (>= 1.75.0, < 2.0)
|
|
||||||
rubocop-ast (>= 1.38.0, < 2.0)
|
|
||||||
rubocop-rails (2.32.0)
|
|
||||||
activesupport (>= 4.2.0)
|
activesupport (>= 4.2.0)
|
||||||
lint_roller (~> 1.1)
|
|
||||||
rack (>= 1.1)
|
rack (>= 1.1)
|
||||||
rubocop (>= 1.75.0, < 2.0)
|
rubocop (>= 1.33.0, < 2.0)
|
||||||
rubocop-ast (>= 1.44.0, < 2.0)
|
rubocop-rspec (2.21.0)
|
||||||
rubocop-rspec (3.6.0)
|
rubocop (~> 1.33)
|
||||||
lint_roller (~> 1.1)
|
rubocop-capybara (~> 2.17)
|
||||||
rubocop (~> 1.72, >= 1.72.1)
|
|
||||||
ruby-openai (7.3.1)
|
ruby-openai (7.3.1)
|
||||||
event_stream_parser (>= 0.3.0, < 2.0.0)
|
event_stream_parser (>= 0.3.0, < 2.0.0)
|
||||||
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)
|
|
||||||
base64
|
|
||||||
event_stream_parser (~> 1)
|
|
||||||
faraday (>= 1.10.0)
|
|
||||||
faraday-multipart (>= 1)
|
|
||||||
faraday-net_http (>= 1)
|
|
||||||
faraday-retry (>= 1)
|
|
||||||
marcel (~> 1.0)
|
|
||||||
ruby_llm-schema (~> 0.2.1)
|
|
||||||
zeitwerk (~> 2)
|
|
||||||
ruby_llm-schema (0.2.5)
|
|
||||||
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)
|
||||||
@@ -854,9 +717,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)
|
||||||
@@ -895,22 +755,18 @@ GEM
|
|||||||
fugit (~> 1.8)
|
fugit (~> 1.8)
|
||||||
globalid (>= 1.0.1)
|
globalid (>= 1.0.1)
|
||||||
sidekiq (>= 6)
|
sidekiq (>= 6)
|
||||||
sidekiq_alive (2.5.0)
|
|
||||||
gserver (~> 0.0.1)
|
|
||||||
sidekiq (>= 5, < 9)
|
|
||||||
signet (0.17.0)
|
signet (0.17.0)
|
||||||
addressable (~> 2.8)
|
addressable (~> 2.8)
|
||||||
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
|
||||||
@@ -934,21 +790,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.3.1)
|
||||||
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)
|
||||||
@@ -964,11 +816,9 @@ GEM
|
|||||||
unf (0.1.4)
|
unf (0.1.4)
|
||||||
unf_ext
|
unf_ext
|
||||||
unf_ext (0.0.8.2)
|
unf_ext (0.0.8.2)
|
||||||
unicode-display_width (3.1.4)
|
unicode-display_width (2.4.2)
|
||||||
unicode-emoji (~> 4.0, >= 4.0.4)
|
uniform_notifier (1.16.0)
|
||||||
unicode-emoji (4.0.4)
|
uri (1.0.3)
|
||||||
uniform_notifier (1.17.0)
|
|
||||||
uri (1.0.4)
|
|
||||||
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)
|
||||||
@@ -995,8 +845,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)
|
||||||
websocket-driver (0.7.7)
|
websocket-driver (0.7.6)
|
||||||
base64
|
|
||||||
websocket-extensions (>= 0.1.0)
|
websocket-extensions (>= 0.1.0)
|
||||||
websocket-extensions (0.1.5)
|
websocket-extensions (0.1.5)
|
||||||
wisper (2.0.0)
|
wisper (2.0.0)
|
||||||
@@ -1023,11 +872,9 @@ 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)
|
annotate
|
||||||
annotaterb
|
|
||||||
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
|
||||||
@@ -1041,21 +888,18 @@ DEPENDENCIES
|
|||||||
commonmarker
|
commonmarker
|
||||||
csv-safe
|
csv-safe
|
||||||
database_cleaner
|
database_cleaner
|
||||||
datadog (~> 2.0)
|
ddtrace
|
||||||
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
|
||||||
@@ -1096,10 +940,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
|
||||||
@@ -1111,7 +951,7 @@ DEPENDENCIES
|
|||||||
rack-cors (= 2.0.0)
|
rack-cors (= 2.0.0)
|
||||||
rack-mini-profiler (>= 3.2.0)
|
rack-mini-profiler (>= 3.2.0)
|
||||||
rack-timeout
|
rack-timeout
|
||||||
rails (~> 7.1)
|
rails (~> 7.0.8.4)
|
||||||
redis
|
redis
|
||||||
redis-namespace
|
redis-namespace
|
||||||
responders (>= 3.1.1)
|
responders (>= 3.1.1)
|
||||||
@@ -1120,16 +960,12 @@ DEPENDENCIES
|
|||||||
rspec-rails (>= 6.1.5)
|
rspec-rails (>= 6.1.5)
|
||||||
rspec_junit_formatter
|
rspec_junit_formatter
|
||||||
rubocop
|
rubocop
|
||||||
rubocop-factory_bot
|
|
||||||
rubocop-performance
|
rubocop-performance
|
||||||
rubocop-rails
|
rubocop-rails
|
||||||
rubocop-rspec
|
rubocop-rspec
|
||||||
ruby-openai
|
ruby-openai
|
||||||
ruby_llm (>= 1.8.2)
|
|
||||||
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
|
||||||
@@ -1138,20 +974,17 @@ DEPENDENCIES
|
|||||||
shoulda-matchers
|
shoulda-matchers
|
||||||
sidekiq (>= 7.3.1)
|
sidekiq (>= 7.3.1)
|
||||||
sidekiq-cron (>= 1.12.0)
|
sidekiq-cron (>= 1.12.0)
|
||||||
sidekiq_alive
|
simplecov (= 0.17.1)
|
||||||
simplecov (>= 0.21)
|
slack-ruby-client (~> 2.5.2)
|
||||||
simplecov_json_formatter
|
|
||||||
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
|
||||||
@@ -1164,7 +997,7 @@ DEPENDENCIES
|
|||||||
working_hours
|
working_hours
|
||||||
|
|
||||||
RUBY VERSION
|
RUBY VERSION
|
||||||
ruby 3.4.4p34
|
ruby 3.3.3p89
|
||||||
|
|
||||||
BUNDLED WITH
|
BUNDLED WITH
|
||||||
2.5.16
|
2.5.16
|
||||||
|
|||||||
@@ -41,15 +41,8 @@ run:
|
|||||||
|
|
||||||
force_run:
|
force_run:
|
||||||
rm -f ./.overmind.sock
|
rm -f ./.overmind.sock
|
||||||
rm -f tmp/pids/*.pid
|
|
||||||
overmind start -f Procfile.dev
|
overmind start -f Procfile.dev
|
||||||
|
|
||||||
force_run_tunnel:
|
|
||||||
lsof -ti:3000 | xargs kill -9 2>/dev/null || true
|
|
||||||
rm -f ./.overmind.sock
|
|
||||||
rm -f tmp/pids/*.pid
|
|
||||||
overmind start -f Procfile.tunnel
|
|
||||||
|
|
||||||
debug:
|
debug:
|
||||||
overmind connect backend
|
overmind connect backend
|
||||||
|
|
||||||
@@ -59,4 +52,4 @@ debug_worker:
|
|||||||
docker:
|
docker:
|
||||||
docker build -t $(APP_NAME) -f ./docker/Dockerfile .
|
docker build -t $(APP_NAME) -f ./docker/Dockerfile .
|
||||||
|
|
||||||
.PHONY: setup db_create db_migrate db_seed db_reset db console server burn docker run force_run force_run_tunnel debug debug_worker
|
.PHONY: setup db_create db_migrate db_seed db_reset db console server burn docker run force_run debug debug_worker
|
||||||
|
|||||||
@@ -1,4 +0,0 @@
|
|||||||
backend: DISABLE_MINI_PROFILER=true bin/rails s -p 3000
|
|
||||||
# https://github.com/mperham/sidekiq/issues/3090#issuecomment-389748695
|
|
||||||
worker: dotenv bundle exec sidekiq -C config/sidekiq.yml
|
|
||||||
vite: bin/vite build --watch
|
|
||||||
@@ -8,6 +8,7 @@ ___
|
|||||||
The modern customer support platform, an open-source alternative to Intercom, Zendesk, Salesforce Service Cloud etc.
|
The modern customer support platform, an open-source alternative to Intercom, Zendesk, Salesforce Service Cloud etc.
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
|
<a href="https://codeclimate.com/github/chatwoot/chatwoot/maintainability"><img src="https://api.codeclimate.com/v1/badges/e6e3f66332c91e5a4c0c/maintainability" alt="Maintainability"></a>
|
||||||
<img src="https://img.shields.io/circleci/build/github/chatwoot/chatwoot" alt="CircleCI Badge">
|
<img src="https://img.shields.io/circleci/build/github/chatwoot/chatwoot" alt="CircleCI Badge">
|
||||||
<a href="https://hub.docker.com/r/chatwoot/chatwoot/"><img src="https://img.shields.io/docker/pulls/chatwoot/chatwoot" alt="Docker Pull Badge"></a>
|
<a href="https://hub.docker.com/r/chatwoot/chatwoot/"><img src="https://img.shields.io/docker/pulls/chatwoot/chatwoot" alt="Docker Pull Badge"></a>
|
||||||
<a href="https://hub.docker.com/r/chatwoot/chatwoot/"><img src="https://img.shields.io/docker/cloud/build/chatwoot/chatwoot" alt="Docker Build Badge"></a>
|
<a href="https://hub.docker.com/r/chatwoot/chatwoot/"><img src="https://img.shields.io/docker/cloud/build/chatwoot/chatwoot" alt="Docker Build Badge"></a>
|
||||||
@@ -136,4 +137,4 @@ Thanks goes to all these [wonderful people](https://www.chatwoot.com/docs/contri
|
|||||||
<a href="https://github.com/chatwoot/chatwoot/graphs/contributors"><img src="https://opencollective.com/chatwoot/contributors.svg?width=890&button=false" /></a>
|
<a href="https://github.com/chatwoot/chatwoot/graphs/contributors"><img src="https://opencollective.com/chatwoot/contributors.svg?width=890&button=false" /></a>
|
||||||
|
|
||||||
|
|
||||||
*Chatwoot* © 2017-2026, Chatwoot Inc - Released under the MIT License.
|
*Chatwoot* © 2017-2025, Chatwoot Inc - Released under the MIT License.
|
||||||
|
|||||||
@@ -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.10.1
|
3.13.0
|
||||||
|
|||||||
+1
-1
@@ -1 +1 @@
|
|||||||
3.5.0
|
3.2.0
|
||||||
|
|||||||
@@ -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": {
|
||||||
|
|||||||
@@ -6,7 +6,6 @@
|
|||||||
# We don't want to update the name of the identified original contact.
|
# We don't want to update the name of the identified original contact.
|
||||||
|
|
||||||
class ContactIdentifyAction
|
class ContactIdentifyAction
|
||||||
include UrlHelper
|
|
||||||
pattr_initialize [:contact!, :params!, { retain_original_contact_name: false, discard_invalid_attrs: false }]
|
pattr_initialize [:contact!, :params!, { retain_original_contact_name: false, discard_invalid_attrs: false }]
|
||||||
|
|
||||||
def perform
|
def perform
|
||||||
@@ -105,14 +104,7 @@ class ContactIdentifyAction
|
|||||||
# TODO: replace reject { |_k, v| v.blank? } with compact_blank when rails is upgraded
|
# TODO: replace reject { |_k, v| v.blank? } with compact_blank when rails is upgraded
|
||||||
@contact.discard_invalid_attrs if discard_invalid_attrs
|
@contact.discard_invalid_attrs if discard_invalid_attrs
|
||||||
@contact.save!
|
@contact.save!
|
||||||
enqueue_avatar_job
|
Avatar::AvatarFromUrlJob.perform_later(@contact, params[:avatar_url]) if params[:avatar_url].present? && !@contact.avatar.attached?
|
||||||
end
|
|
||||||
|
|
||||||
def enqueue_avatar_job
|
|
||||||
return unless params[:avatar_url].present? && !@contact.avatar.attached?
|
|
||||||
return unless url_valid?(params[:avatar_url])
|
|
||||||
|
|
||||||
Avatar::AvatarFromUrlJob.perform_later(@contact, params[:avatar_url])
|
|
||||||
end
|
end
|
||||||
|
|
||||||
def merge_contact(base_contact, merge_contact)
|
def merge_contact(base_contact, merge_contact)
|
||||||
|
|||||||
@@ -10,8 +10,7 @@ function toggleSecretField(e) {
|
|||||||
if (!textElement) return;
|
if (!textElement) return;
|
||||||
|
|
||||||
if (textElement.dataset.secretMasked === 'false') {
|
if (textElement.dataset.secretMasked === 'false') {
|
||||||
const maskedLength = secretField.dataset.secretText?.length || 10;
|
textElement.textContent = '•'.repeat(10);
|
||||||
textElement.textContent = '•'.repeat(maskedLength);
|
|
||||||
textElement.dataset.secretMasked = 'true';
|
textElement.dataset.secretMasked = 'true';
|
||||||
toggler.querySelector('svg use').setAttribute('xlink:href', '#eye-show');
|
toggler.querySelector('svg use').setAttribute('xlink:href', '#eye-show');
|
||||||
|
|
||||||
@@ -33,13 +32,3 @@ function copySecretField(e) {
|
|||||||
|
|
||||||
navigator.clipboard.writeText(secretField.dataset.secretText);
|
navigator.clipboard.writeText(secretField.dataset.secretText);
|
||||||
}
|
}
|
||||||
|
|
||||||
document.addEventListener('DOMContentLoaded', () => {
|
|
||||||
document.querySelectorAll('.cell-data__secret-field').forEach(field => {
|
|
||||||
const span = field.querySelector('[data-secret-masked]');
|
|
||||||
if (span && span.dataset.secretMasked === 'true') {
|
|
||||||
const len = field.dataset.secretText?.length || 10;
|
|
||||||
span.textContent = '•'.repeat(len);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|||||||
@@ -46,25 +46,17 @@
|
|||||||
|
|
||||||
.cell-data__secret-field {
|
.cell-data__secret-field {
|
||||||
align-items: center;
|
align-items: center;
|
||||||
color: $hint-grey;
|
|
||||||
display: flex;
|
display: flex;
|
||||||
|
|
||||||
span {
|
span {
|
||||||
flex: 0 0 auto;
|
flex: 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
[data-secret-toggler],
|
button {
|
||||||
[data-secret-copier] {
|
margin-left: 5px;
|
||||||
background: transparent;
|
|
||||||
border: 0;
|
|
||||||
color: inherit;
|
|
||||||
margin-left: 0.5rem;
|
|
||||||
padding: 0;
|
|
||||||
|
|
||||||
svg {
|
svg {
|
||||||
fill: currentColor;
|
fill: currentColor;
|
||||||
height: 1.25rem;
|
|
||||||
width: 1.25rem;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -32,7 +32,14 @@ class AccountBuilder
|
|||||||
end
|
end
|
||||||
|
|
||||||
def validate_email
|
def validate_email
|
||||||
Account::SignUpEmailValidationService.new(@email).perform
|
raise InvalidEmail.new({ domain_blocked: domain_blocked }) if domain_blocked?
|
||||||
|
|
||||||
|
address = ValidEmail2::Address.new(@email)
|
||||||
|
if address.valid? && !address.disposable?
|
||||||
|
true
|
||||||
|
else
|
||||||
|
raise InvalidEmail.new({ valid: address.valid?, disposable: address.disposable? })
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
def validate_user
|
def validate_user
|
||||||
@@ -74,4 +81,21 @@ class AccountBuilder
|
|||||||
@user.confirm if @confirmed
|
@user.confirm if @confirmed
|
||||||
@user.save!
|
@user.save!
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def domain_blocked?
|
||||||
|
domain = @email.split('@').last
|
||||||
|
|
||||||
|
blocked_domains.each do |blocked_domain|
|
||||||
|
return true if domain.match?(blocked_domain)
|
||||||
|
end
|
||||||
|
|
||||||
|
false
|
||||||
|
end
|
||||||
|
|
||||||
|
def blocked_domains
|
||||||
|
domains = GlobalConfigService.load('BLOCKED_EMAIL_DOMAINS', '')
|
||||||
|
return [] if domains.blank?
|
||||||
|
|
||||||
|
domains.split("\n").map(&:strip)
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -52,5 +52,3 @@ class AgentBuilder
|
|||||||
}.compact))
|
}.compact))
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
AgentBuilder.prepend_mod_with('AgentBuilder')
|
|
||||||
|
|||||||
@@ -59,13 +59,11 @@ class ContactInboxBuilder
|
|||||||
end
|
end
|
||||||
|
|
||||||
def create_contact_inbox
|
def create_contact_inbox
|
||||||
attrs = {
|
::ContactInbox.create_with(hmac_verified: hmac_verified || false).find_or_create_by!(
|
||||||
contact_id: @contact.id,
|
contact_id: @contact.id,
|
||||||
inbox_id: @inbox.id,
|
inbox_id: @inbox.id,
|
||||||
source_id: @source_id
|
source_id: @source_id
|
||||||
}
|
)
|
||||||
|
|
||||||
::ContactInbox.where(attrs).first_or_create!(hmac_verified: hmac_verified || false)
|
|
||||||
rescue ActiveRecord::RecordNotUnique
|
rescue ActiveRecord::RecordNotUnique
|
||||||
Rails.logger.info("[ContactInboxBuilder] RecordNotUnique #{@source_id} #{@contact.id} #{@inbox.id}")
|
Rails.logger.info("[ContactInboxBuilder] RecordNotUnique #{@source_id} #{@contact.id} #{@inbox.id}")
|
||||||
update_old_contact_inbox
|
update_old_contact_inbox
|
||||||
@@ -103,5 +101,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
|
|
||||||
@@ -112,25 +112,6 @@ class Messages::Instagram::BaseMessageBuilder < Messages::Messenger::MessageBuil
|
|||||||
return if story_reply_attributes.blank?
|
return if story_reply_attributes.blank?
|
||||||
|
|
||||||
@message.save_story_info(story_reply_attributes)
|
@message.save_story_info(story_reply_attributes)
|
||||||
create_story_reply_attachment(story_reply_attributes['url'])
|
|
||||||
end
|
|
||||||
|
|
||||||
def create_story_reply_attachment(story_url)
|
|
||||||
return if story_url.blank?
|
|
||||||
|
|
||||||
attachment = @message.attachments.new(
|
|
||||||
file_type: :ig_story,
|
|
||||||
account_id: @message.account_id,
|
|
||||||
external_url: story_url
|
|
||||||
)
|
|
||||||
attachment.save!
|
|
||||||
begin
|
|
||||||
attach_file(attachment, story_url)
|
|
||||||
rescue Down::Error, StandardError => e
|
|
||||||
Rails.logger.warn "Failed to download Instagram story attachment: #{e.message}"
|
|
||||||
end
|
|
||||||
@message.content_attributes[:image_type] = 'ig_story_reply'
|
|
||||||
@message.save!
|
|
||||||
end
|
end
|
||||||
|
|
||||||
def build_conversation
|
def build_conversation
|
||||||
@@ -171,13 +152,11 @@ class Messages::Instagram::BaseMessageBuilder < Messages::Messenger::MessageBuil
|
|||||||
end
|
end
|
||||||
|
|
||||||
def message_already_exists?
|
def message_already_exists?
|
||||||
find_message_by_source_id(@messaging[:message][:mid]).present?
|
cw_message = conversation.messages.where(
|
||||||
end
|
source_id: @messaging[:message][:mid]
|
||||||
|
).first
|
||||||
|
|
||||||
def find_message_by_source_id(source_id)
|
cw_message.present?
|
||||||
return unless source_id
|
|
||||||
|
|
||||||
@message = Message.find_by(source_id: source_id)
|
|
||||||
end
|
end
|
||||||
|
|
||||||
def all_unsupported_files?
|
def all_unsupported_files?
|
||||||
|
|||||||
@@ -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
|
||||||
|
|||||||
@@ -1,38 +0,0 @@
|
|||||||
class V2::Reports::ChannelSummaryBuilder
|
|
||||||
include DateRangeHelper
|
|
||||||
|
|
||||||
pattr_initialize [:account!, :params!]
|
|
||||||
|
|
||||||
def build
|
|
||||||
conversations_by_channel_and_status.transform_values { |status_counts| build_channel_stats(status_counts) }
|
|
||||||
end
|
|
||||||
|
|
||||||
private
|
|
||||||
|
|
||||||
def conversations_by_channel_and_status
|
|
||||||
account.conversations
|
|
||||||
.joins(:inbox)
|
|
||||||
.where(created_at: range)
|
|
||||||
.group('inboxes.channel_type', 'conversations.status')
|
|
||||||
.count
|
|
||||||
.each_with_object({}) do |((channel_type, status), count), grouped|
|
|
||||||
grouped[channel_type] ||= {}
|
|
||||||
grouped[channel_type][status] = count
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
def build_channel_stats(status_counts)
|
|
||||||
open_count = status_counts['open'] || 0
|
|
||||||
resolved_count = status_counts['resolved'] || 0
|
|
||||||
pending_count = status_counts['pending'] || 0
|
|
||||||
snoozed_count = status_counts['snoozed'] || 0
|
|
||||||
|
|
||||||
{
|
|
||||||
open: open_count,
|
|
||||||
resolved: resolved_count,
|
|
||||||
pending: pending_count,
|
|
||||||
snoozed: snoozed_count,
|
|
||||||
total: open_count + resolved_count + pending_count + snoozed_count
|
|
||||||
}
|
|
||||||
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
|
||||||
|
|||||||
@@ -1,112 +0,0 @@
|
|||||||
class V2::Reports::LabelSummaryBuilder < V2::Reports::BaseSummaryBuilder
|
|
||||||
attr_reader :account, :params
|
|
||||||
|
|
||||||
# rubocop:disable Lint/MissingSuper
|
|
||||||
# the parent class has no initialize
|
|
||||||
def initialize(account:, params:)
|
|
||||||
@account = account
|
|
||||||
@params = params
|
|
||||||
|
|
||||||
timezone_offset = (params[:timezone_offset] || 0).to_f
|
|
||||||
@timezone = ActiveSupport::TimeZone[timezone_offset]&.name
|
|
||||||
end
|
|
||||||
# rubocop:enable Lint/MissingSuper
|
|
||||||
|
|
||||||
def build
|
|
||||||
labels = account.labels.to_a
|
|
||||||
return [] if labels.empty?
|
|
||||||
|
|
||||||
report_data = collect_report_data
|
|
||||||
labels.map { |label| build_label_report(label, report_data) }
|
|
||||||
end
|
|
||||||
|
|
||||||
private
|
|
||||||
|
|
||||||
def collect_report_data
|
|
||||||
conversation_filter = build_conversation_filter
|
|
||||||
use_business_hours = use_business_hours?
|
|
||||||
|
|
||||||
{
|
|
||||||
conversation_counts: fetch_conversation_counts(conversation_filter),
|
|
||||||
resolved_counts: fetch_resolved_counts,
|
|
||||||
resolution_metrics: fetch_metrics(conversation_filter, 'conversation_resolved', 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)
|
|
||||||
}
|
|
||||||
end
|
|
||||||
|
|
||||||
def build_label_report(label, report_data)
|
|
||||||
{
|
|
||||||
id: label.id,
|
|
||||||
name: label.title,
|
|
||||||
conversations_count: report_data[:conversation_counts][label.title] || 0,
|
|
||||||
avg_resolution_time: report_data[:resolution_metrics][label.title] || 0,
|
|
||||||
avg_first_response_time: report_data[:first_response_metrics][label.title] || 0,
|
|
||||||
avg_reply_time: report_data[:reply_metrics][label.title] || 0,
|
|
||||||
resolved_conversations_count: report_data[:resolved_counts][label.title] || 0
|
|
||||||
}
|
|
||||||
end
|
|
||||||
|
|
||||||
def use_business_hours?
|
|
||||||
ActiveModel::Type::Boolean.new.cast(params[:business_hours])
|
|
||||||
end
|
|
||||||
|
|
||||||
def build_conversation_filter
|
|
||||||
conversation_filter = { account_id: account.id }
|
|
||||||
conversation_filter[:created_at] = range if range.present?
|
|
||||||
|
|
||||||
conversation_filter
|
|
||||||
end
|
|
||||||
|
|
||||||
def fetch_conversation_counts(conversation_filter)
|
|
||||||
fetch_counts(conversation_filter)
|
|
||||||
end
|
|
||||||
|
|
||||||
def fetch_resolved_counts
|
|
||||||
# Count resolution events, not conversations currently in resolved status
|
|
||||||
# Filter by reporting_event.created_at, not conversation.created_at
|
|
||||||
reporting_event_filter = { name: 'conversation_resolved', account_id: account.id }
|
|
||||||
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
|
|
||||||
|
|
||||||
def fetch_counts(conversation_filter)
|
|
||||||
ActsAsTaggableOn::Tagging
|
|
||||||
.joins('INNER JOIN conversations ON taggings.taggable_id = conversations.id')
|
|
||||||
.joins('INNER JOIN tags ON taggings.tag_id = tags.id')
|
|
||||||
.where(
|
|
||||||
taggable_type: 'Conversation',
|
|
||||||
context: 'labels',
|
|
||||||
conversations: conversation_filter
|
|
||||||
)
|
|
||||||
.select('tags.name, COUNT(taggings.*) AS count')
|
|
||||||
.group('tags.name')
|
|
||||||
.each_with_object({}) { |record, hash| hash[record.name] = record.count }
|
|
||||||
end
|
|
||||||
|
|
||||||
def fetch_metrics(conversation_filter, event_name, use_business_hours)
|
|
||||||
ReportingEvent
|
|
||||||
.joins(conversation: { taggings: :tag })
|
|
||||||
.where(
|
|
||||||
conversations: conversation_filter,
|
|
||||||
name: event_name,
|
|
||||||
taggings: { taggable_type: 'Conversation', context: 'labels' }
|
|
||||||
)
|
|
||||||
.group('tags.name')
|
|
||||||
.order('tags.name')
|
|
||||||
.select(
|
|
||||||
'tags.name',
|
|
||||||
use_business_hours ? 'AVG(reporting_events.value_in_business_hours) as avg_value' : 'AVG(reporting_events.value) as avg_value'
|
|
||||||
)
|
|
||||||
.each_with_object({}) { |record, hash| hash[record.name] = record.avg_value.to_f }
|
|
||||||
end
|
|
||||||
end
|
|
||||||
@@ -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
|
||||||
@@ -29,15 +29,10 @@ class Api::V1::Accounts::AgentBotsController < Api::V1::Accounts::BaseController
|
|||||||
head :ok
|
head :ok
|
||||||
end
|
end
|
||||||
|
|
||||||
def reset_access_token
|
|
||||||
@agent_bot.access_token.regenerate_token
|
|
||||||
@agent_bot.reload
|
|
||||||
end
|
|
||||||
|
|
||||||
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
|
||||||
|
|
||||||
@@ -69,7 +68,7 @@ class Api::V1::Accounts::ArticlesController < Api::V1::Accounts::BaseController
|
|||||||
|
|
||||||
def article_params
|
def article_params
|
||||||
params.require(:article).permit(
|
params.require(:article).permit(
|
||||||
:title, :slug, :position, :content, :description, :category_id, :author_id, :associated_article_id, :status,
|
:title, :slug, :position, :content, :description, :position, :category_id, :author_id, :associated_article_id, :status,
|
||||||
:locale, meta: [:title,
|
:locale, meta: [:title,
|
||||||
:description,
|
:description,
|
||||||
{ tags: [] }]
|
{ tags: [] }]
|
||||||
|
|||||||
@@ -1,20 +0,0 @@
|
|||||||
class Api::V1::Accounts::AssignmentPolicies::InboxesController < Api::V1::Accounts::BaseController
|
|
||||||
before_action :fetch_assignment_policy
|
|
||||||
before_action -> { check_authorization(AssignmentPolicy) }
|
|
||||||
|
|
||||||
def index
|
|
||||||
@inboxes = @assignment_policy.inboxes
|
|
||||||
end
|
|
||||||
|
|
||||||
private
|
|
||||||
|
|
||||||
def fetch_assignment_policy
|
|
||||||
@assignment_policy = Current.account.assignment_policies.find(
|
|
||||||
params[:assignment_policy_id]
|
|
||||||
)
|
|
||||||
end
|
|
||||||
|
|
||||||
def permitted_params
|
|
||||||
params.permit(:assignment_policy_id)
|
|
||||||
end
|
|
||||||
end
|
|
||||||
@@ -1,36 +0,0 @@
|
|||||||
class Api::V1::Accounts::AssignmentPoliciesController < Api::V1::Accounts::BaseController
|
|
||||||
before_action :fetch_assignment_policy, only: [:show, :update, :destroy]
|
|
||||||
before_action :check_authorization
|
|
||||||
|
|
||||||
def index
|
|
||||||
@assignment_policies = Current.account.assignment_policies
|
|
||||||
end
|
|
||||||
|
|
||||||
def show; end
|
|
||||||
|
|
||||||
def create
|
|
||||||
@assignment_policy = Current.account.assignment_policies.create!(assignment_policy_params)
|
|
||||||
end
|
|
||||||
|
|
||||||
def update
|
|
||||||
@assignment_policy.update!(assignment_policy_params)
|
|
||||||
end
|
|
||||||
|
|
||||||
def destroy
|
|
||||||
@assignment_policy.destroy!
|
|
||||||
head :ok
|
|
||||||
end
|
|
||||||
|
|
||||||
private
|
|
||||||
|
|
||||||
def fetch_assignment_policy
|
|
||||||
@assignment_policy = Current.account.assignment_policies.find(params[:id])
|
|
||||||
end
|
|
||||||
|
|
||||||
def assignment_policy_params
|
|
||||||
params.require(:assignment_policy).permit(
|
|
||||||
:name, :description, :assignment_order, :conversation_priority,
|
|
||||||
:fair_distribution_limit, :fair_distribution_window, :enabled
|
|
||||||
)
|
|
||||||
end
|
|
||||||
end
|
|
||||||
@@ -1,6 +1,4 @@
|
|||||||
class Api::V1::Accounts::AutomationRulesController < Api::V1::Accounts::BaseController
|
class Api::V1::Accounts::AutomationRulesController < Api::V1::Accounts::BaseController
|
||||||
include AttachmentConcern
|
|
||||||
|
|
||||||
before_action :check_authorization
|
before_action :check_authorization
|
||||||
before_action :fetch_automation_rule, only: [:show, :update, :destroy, :clone]
|
before_action :fetch_automation_rule, only: [:show, :update, :destroy, :clone]
|
||||||
|
|
||||||
@@ -11,32 +9,25 @@ class Api::V1::Accounts::AutomationRulesController < Api::V1::Accounts::BaseCont
|
|||||||
def show; end
|
def show; end
|
||||||
|
|
||||||
def create
|
def create
|
||||||
blobs, actions, error = validate_and_prepare_attachments(params[:actions])
|
|
||||||
return render_could_not_create_error(error) if error
|
|
||||||
|
|
||||||
@automation_rule = Current.account.automation_rules.new(automation_rules_permit)
|
@automation_rule = Current.account.automation_rules.new(automation_rules_permit)
|
||||||
@automation_rule.actions = actions
|
@automation_rule.actions = params[:actions]
|
||||||
@automation_rule.conditions = params[:conditions]
|
@automation_rule.conditions = params[:conditions]
|
||||||
|
|
||||||
return render_could_not_create_error(@automation_rule.errors.messages) unless @automation_rule.valid?
|
render json: { error: @automation_rule.errors.messages }, status: :unprocessable_entity and return unless @automation_rule.valid?
|
||||||
|
|
||||||
@automation_rule.save!
|
@automation_rule.save!
|
||||||
blobs.each { |blob| @automation_rule.files.attach(blob) }
|
process_attachments
|
||||||
|
@automation_rule
|
||||||
end
|
end
|
||||||
|
|
||||||
def update
|
def update
|
||||||
blobs, actions, error = validate_and_prepare_attachments(params[:actions], @automation_rule)
|
|
||||||
return render_could_not_create_error(error) if error
|
|
||||||
|
|
||||||
ActiveRecord::Base.transaction do
|
ActiveRecord::Base.transaction do
|
||||||
@automation_rule.assign_attributes(automation_rules_permit)
|
automation_rule_update
|
||||||
@automation_rule.actions = actions if params[:actions]
|
process_attachments
|
||||||
@automation_rule.conditions = params[:conditions] if params[:conditions]
|
|
||||||
@automation_rule.save!
|
|
||||||
blobs.each { |blob| @automation_rule.files.attach(blob) }
|
|
||||||
rescue StandardError => e
|
rescue StandardError => e
|
||||||
Rails.logger.error e
|
Rails.logger.error e
|
||||||
render_could_not_create_error(@automation_rule.errors.messages)
|
render json: { error: @automation_rule.errors.messages }.to_json, status: :unprocessable_entity
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
@@ -52,11 +43,29 @@ class Api::V1::Accounts::AutomationRulesController < Api::V1::Accounts::BaseCont
|
|||||||
@automation_rule = new_rule
|
@automation_rule = new_rule
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def process_attachments
|
||||||
|
actions = @automation_rule.actions.filter_map { |k, _v| k if k['action_name'] == 'send_attachment' }
|
||||||
|
return if actions.blank?
|
||||||
|
|
||||||
|
actions.each do |action|
|
||||||
|
blob_id = action['action_params']
|
||||||
|
blob = ActiveStorage::Blob.find_by(id: blob_id)
|
||||||
|
@automation_rule.files.attach(blob)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
private
|
private
|
||||||
|
|
||||||
|
def automation_rule_update
|
||||||
|
@automation_rule.update!(automation_rules_permit)
|
||||||
|
@automation_rule.actions = params[:actions] if params[:actions]
|
||||||
|
@automation_rule.conditions = params[:conditions] if params[:conditions]
|
||||||
|
@automation_rule.save!
|
||||||
|
end
|
||||||
|
|
||||||
def automation_rules_permit
|
def automation_rules_permit
|
||||||
params.permit(
|
params.permit(
|
||||||
:name, :description, :event_name, :active,
|
:name, :description, :event_name, :account_id, :active,
|
||||||
conditions: [:attribute_key, :filter_operator, :query_operator, :custom_attribute_type, { values: [] }],
|
conditions: [:attribute_key, :filter_operator, :query_operator, :custom_attribute_type, { values: [] }],
|
||||||
actions: [:action_name, { action_params: [] }]
|
actions: [:action_name, { action_params: [] }]
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -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
|
||||||
|
|||||||
@@ -30,14 +30,7 @@ class Api::V1::Accounts::CallbacksController < Api::V1::Accounts::BaseController
|
|||||||
end
|
end
|
||||||
|
|
||||||
def facebook_pages
|
def facebook_pages
|
||||||
pages = []
|
@page_details = mark_already_existing_facebook_pages(fb_object.get_connections('me', 'accounts'))
|
||||||
fb_pages = fb_object.get_connections('me', 'accounts')
|
|
||||||
pages.concat(fb_pages)
|
|
||||||
while fb_pages.respond_to?(:next_page) && (next_page = fb_pages.next_page)
|
|
||||||
fb_pages = next_page
|
|
||||||
pages.concat(fb_pages)
|
|
||||||
end
|
|
||||||
@page_details = mark_already_existing_facebook_pages(pages)
|
|
||||||
end
|
end
|
||||||
|
|
||||||
def set_instagram_id(page_access_token, facebook_channel)
|
def set_instagram_id(page_access_token, facebook_channel)
|
||||||
|
|||||||
@@ -29,6 +29,6 @@ class Api::V1::Accounts::CampaignsController < Api::V1::Accounts::BaseController
|
|||||||
|
|
||||||
def campaign_params
|
def campaign_params
|
||||||
params.require(:campaign).permit(:title, :description, :message, :enabled, :trigger_only_during_business_hours, :inbox_id, :sender_id,
|
params.require(:campaign).permit(:title, :description, :message, :enabled, :trigger_only_during_business_hours, :inbox_id, :sender_id,
|
||||||
:scheduled_at, audience: [:type, :id], trigger_rules: {}, template_params: {})
|
:scheduled_at, audience: [:type, :id], trigger_rules: {})
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -1,76 +0,0 @@
|
|||||||
class Api::V1::Accounts::Captain::PreferencesController < Api::V1::Accounts::BaseController
|
|
||||||
before_action :current_account
|
|
||||||
before_action :authorize_account_update, only: [:update]
|
|
||||||
|
|
||||||
def show
|
|
||||||
render json: preferences_payload
|
|
||||||
end
|
|
||||||
|
|
||||||
def update
|
|
||||||
params_to_update = captain_params
|
|
||||||
@current_account.captain_models = params_to_update[:captain_models] if params_to_update[:captain_models]
|
|
||||||
@current_account.captain_features = params_to_update[:captain_features] if params_to_update[:captain_features]
|
|
||||||
@current_account.save!
|
|
||||||
|
|
||||||
render json: preferences_payload
|
|
||||||
end
|
|
||||||
|
|
||||||
private
|
|
||||||
|
|
||||||
def preferences_payload
|
|
||||||
{
|
|
||||||
providers: Llm::Models.providers,
|
|
||||||
models: Llm::Models.models,
|
|
||||||
features: features_with_account_preferences
|
|
||||||
}
|
|
||||||
end
|
|
||||||
|
|
||||||
def authorize_account_update
|
|
||||||
authorize @current_account, :update?
|
|
||||||
end
|
|
||||||
|
|
||||||
def captain_params
|
|
||||||
permitted = {}
|
|
||||||
permitted[:captain_models] = merged_captain_models if params[:captain_models].present?
|
|
||||||
permitted[:captain_features] = merged_captain_features if params[:captain_features].present?
|
|
||||||
permitted
|
|
||||||
end
|
|
||||||
|
|
||||||
def merged_captain_models
|
|
||||||
existing_models = @current_account.captain_models || {}
|
|
||||||
existing_models.merge(permitted_captain_models)
|
|
||||||
end
|
|
||||||
|
|
||||||
def merged_captain_features
|
|
||||||
existing_features = @current_account.captain_features || {}
|
|
||||||
existing_features.merge(permitted_captain_features)
|
|
||||||
end
|
|
||||||
|
|
||||||
def permitted_captain_models
|
|
||||||
params.require(:captain_models).permit(
|
|
||||||
:editor, :assistant, :copilot, :label_suggestion,
|
|
||||||
:audio_transcription, :help_center_search
|
|
||||||
).to_h.stringify_keys
|
|
||||||
end
|
|
||||||
|
|
||||||
def permitted_captain_features
|
|
||||||
params.require(:captain_features).permit(
|
|
||||||
:editor, :assistant, :copilot, :label_suggestion,
|
|
||||||
:audio_transcription, :help_center_search
|
|
||||||
).to_h.stringify_keys
|
|
||||||
end
|
|
||||||
|
|
||||||
def features_with_account_preferences
|
|
||||||
preferences = Current.account.captain_preferences
|
|
||||||
account_features = preferences[:features] || {}
|
|
||||||
account_models = preferences[:models] || {}
|
|
||||||
|
|
||||||
Llm::Models.feature_keys.index_with do |feature_key|
|
|
||||||
config = Llm::Models.feature_config(feature_key)
|
|
||||||
config.merge(
|
|
||||||
enabled: account_features[feature_key] == true,
|
|
||||||
selected: account_models[feature_key] || config[:default]
|
|
||||||
)
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
|
||||||
@@ -1,6 +1,3 @@
|
|||||||
# TODO : Move this to inboxes controller and deprecate this controller
|
|
||||||
# No need to retain this controller as we could handle everything centrally in inboxes controller
|
|
||||||
|
|
||||||
class Api::V1::Accounts::Channels::TwilioChannelsController < Api::V1::Accounts::BaseController
|
class Api::V1::Accounts::Channels::TwilioChannelsController < Api::V1::Accounts::BaseController
|
||||||
before_action :authorize_request
|
before_action :authorize_request
|
||||||
|
|
||||||
@@ -64,7 +61,7 @@ class Api::V1::Accounts::Channels::TwilioChannelsController < Api::V1::Accounts:
|
|||||||
|
|
||||||
def permitted_params
|
def permitted_params
|
||||||
params.require(:twilio_channel).permit(
|
params.require(:twilio_channel).permit(
|
||||||
:messaging_service_sid, :phone_number, :account_sid, :auth_token, :name, :medium, :api_key_sid
|
:account_id, :messaging_service_sid, :phone_number, :account_sid, :auth_token, :name, :medium, :api_key_sid
|
||||||
)
|
)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -12,6 +12,10 @@ class Api::V1::Accounts::Contacts::ConversationsController < Api::V1::Accounts::
|
|||||||
Current.account
|
Current.account
|
||||||
).perform
|
).perform
|
||||||
|
|
||||||
|
# Only allow conversations from inboxes the user has access to
|
||||||
|
inbox_ids = Current.user.assigned_inboxes.pluck(:id)
|
||||||
|
conversations = conversations.where(inbox_id: inbox_ids)
|
||||||
|
|
||||||
@conversations = conversations.order(last_activity_at: :desc).limit(20)
|
@conversations = conversations.order(last_activity_at: :desc).limit(20)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -14,21 +14,23 @@ class Api::V1::Accounts::ContactsController < Api::V1::Accounts::BaseController
|
|||||||
before_action :check_authorization
|
before_action :check_authorization
|
||||||
before_action :set_current_page, only: [:index, :active, :search, :filter]
|
before_action :set_current_page, only: [:index, :active, :search, :filter]
|
||||||
before_action :fetch_contact, only: [:show, :update, :destroy, :avatar, :contactable_inboxes, :destroy_custom_attributes]
|
before_action :fetch_contact, only: [:show, :update, :destroy, :avatar, :contactable_inboxes, :destroy_custom_attributes]
|
||||||
before_action :set_include_contact_inboxes, only: [:index, :active, :search, :filter, :show, :update]
|
before_action :set_include_contact_inboxes, only: [:index, :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
|
||||||
render json: { error: 'Specify search string with parameter q' }, status: :unprocessable_entity if params[:q].blank? && return
|
render json: { error: 'Specify search string with parameter q' }, status: :unprocessable_entity if params[:q].blank? && return
|
||||||
|
|
||||||
contacts = Current.account.contacts.where(
|
contacts = resolved_contacts.where(
|
||||||
'name ILIKE :search OR email ILIKE :search OR phone_number ILIKE :search OR contacts.identifier LIKE :search',
|
'name ILIKE :search OR email ILIKE :search OR phone_number ILIKE :search OR contacts.identifier LIKE :search
|
||||||
|
OR contacts.additional_attributes->>\'company_name\' ILIKE :search',
|
||||||
search: "%#{params[:q].strip}%"
|
search: "%#{params[:q].strip}%"
|
||||||
)
|
)
|
||||||
@contacts = fetch_contacts_with_has_more(contacts)
|
@contacts_count = contacts.count
|
||||||
|
@contacts = fetch_contacts(contacts)
|
||||||
end
|
end
|
||||||
|
|
||||||
def import
|
def import
|
||||||
@@ -53,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 = fetch_contacts(contacts)
|
@contacts_count = contacts.count
|
||||||
@contacts_count = @contacts.total_count
|
@contacts = contacts.page(@current_page)
|
||||||
end
|
end
|
||||||
|
|
||||||
def show; end
|
def show; end
|
||||||
@@ -120,7 +122,7 @@ class Api::V1::Accounts::ContactsController < Api::V1::Accounts::BaseController
|
|||||||
def resolved_contacts
|
def resolved_contacts
|
||||||
return @resolved_contacts if @resolved_contacts
|
return @resolved_contacts if @resolved_contacts
|
||||||
|
|
||||||
@resolved_contacts = Current.account.contacts.resolved_contacts(use_crm_v2: Current.account.feature_enabled?('crm_v2'))
|
@resolved_contacts = Current.account.contacts.resolved_contacts
|
||||||
|
|
||||||
@resolved_contacts = @resolved_contacts.tagged_with(params[:labels], any: true) if params[:labels].present?
|
@resolved_contacts = @resolved_contacts.tagged_with(params[:labels], any: true) if params[:labels].present?
|
||||||
@resolved_contacts
|
@resolved_contacts
|
||||||
@@ -131,32 +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)
|
|
||||||
.per(RESULTS_PER_PAGE)
|
|
||||||
end
|
|
||||||
|
|
||||||
def fetch_contacts_with_has_more(contacts)
|
contacts_with_avatar
|
||||||
includes_hash = { avatar_attachment: [:blob] }
|
|
||||||
includes_hash[:contact_inboxes] = { inbox: :channel } if @include_contact_inboxes
|
|
||||||
|
|
||||||
# Calculate offset manually to fetch one extra record for has_more check
|
|
||||||
offset = (@current_page.to_i - 1) * RESULTS_PER_PAGE
|
|
||||||
results = filtrate(contacts)
|
|
||||||
.includes(includes_hash)
|
|
||||||
.offset(offset)
|
|
||||||
.limit(RESULTS_PER_PAGE + 1)
|
|
||||||
.to_a
|
|
||||||
|
|
||||||
@has_more = results.size > RESULTS_PER_PAGE
|
|
||||||
results = results.first(RESULTS_PER_PAGE) if @has_more
|
|
||||||
@contacts_count = results.size
|
|
||||||
results
|
|
||||||
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
|
||||||
|
|||||||
@@ -110,15 +110,6 @@ class Api::V1::Accounts::ConversationsController < Api::V1::Accounts::BaseContro
|
|||||||
end
|
end
|
||||||
|
|
||||||
def update_last_seen
|
def update_last_seen
|
||||||
# High-traffic accounts generate excessive DB writes when agents frequently switch between conversations.
|
|
||||||
# Throttle last_seen updates to once per hour when there are no unread messages to reduce DB load.
|
|
||||||
# Always update immediately if there are unread messages to maintain accurate read/unread state.
|
|
||||||
return update_last_seen_on_conversation(DateTime.now.utc, true) if assignee? && @conversation.assignee_unread_messages.any?
|
|
||||||
return update_last_seen_on_conversation(DateTime.now.utc, false) if !assignee? && @conversation.unread_messages.any?
|
|
||||||
|
|
||||||
# No unread messages - apply throttling to limit DB writes
|
|
||||||
return unless should_update_last_seen?
|
|
||||||
|
|
||||||
update_last_seen_on_conversation(DateTime.now.utc, assignee?)
|
update_last_seen_on_conversation(DateTime.now.utc, assignee?)
|
||||||
end
|
end
|
||||||
|
|
||||||
@@ -133,12 +124,6 @@ class Api::V1::Accounts::ConversationsController < Api::V1::Accounts::BaseContro
|
|||||||
@conversation.save!
|
@conversation.save!
|
||||||
end
|
end
|
||||||
|
|
||||||
def destroy
|
|
||||||
authorize @conversation, :destroy?
|
|
||||||
::DeleteObjectJob.perform_later(@conversation, Current.user, request.ip)
|
|
||||||
head :ok
|
|
||||||
end
|
|
||||||
|
|
||||||
private
|
private
|
||||||
|
|
||||||
def permitted_update_params
|
def permitted_update_params
|
||||||
@@ -151,25 +136,12 @@ class Api::V1::Accounts::ConversationsController < Api::V1::Accounts::BaseContro
|
|||||||
end
|
end
|
||||||
|
|
||||||
def update_last_seen_on_conversation(last_seen_at, update_assignee)
|
def update_last_seen_on_conversation(last_seen_at, update_assignee)
|
||||||
updates = { agent_last_seen_at: last_seen_at }
|
|
||||||
updates[:assignee_last_seen_at] = last_seen_at if update_assignee.present?
|
|
||||||
|
|
||||||
# rubocop:disable Rails/SkipsModelValidations
|
# rubocop:disable Rails/SkipsModelValidations
|
||||||
@conversation.update_columns(updates)
|
@conversation.update_column(:agent_last_seen_at, last_seen_at)
|
||||||
|
@conversation.update_column(:assignee_last_seen_at, last_seen_at) if update_assignee.present?
|
||||||
# rubocop:enable Rails/SkipsModelValidations
|
# rubocop:enable Rails/SkipsModelValidations
|
||||||
end
|
end
|
||||||
|
|
||||||
def should_update_last_seen?
|
|
||||||
# Update if at least one relevant timestamp is older than 1 hour or not set
|
|
||||||
# This prevents redundant DB writes when agents repeatedly view the same conversation
|
|
||||||
agent_needs_update = @conversation.agent_last_seen_at.blank? || @conversation.agent_last_seen_at < 1.hour.ago
|
|
||||||
return agent_needs_update unless assignee?
|
|
||||||
|
|
||||||
# For assignees, check both timestamps - update if either is old
|
|
||||||
assignee_needs_update = @conversation.assignee_last_seen_at.blank? || @conversation.assignee_last_seen_at < 1.hour.ago
|
|
||||||
agent_needs_update || assignee_needs_update
|
|
||||||
end
|
|
||||||
|
|
||||||
def set_conversation_status
|
def set_conversation_status
|
||||||
@conversation.status = params[:status]
|
@conversation.status = params[:status]
|
||||||
@conversation.snoozed_until = parse_date_time(params[:snoozed_until].to_s) if params[:snoozed_until]
|
@conversation.snoozed_until = parse_date_time(params[:snoozed_until].to_s) if params[:snoozed_until]
|
||||||
@@ -182,7 +154,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
|
||||||
|
|||||||
@@ -50,5 +50,3 @@ class Api::V1::Accounts::CsatSurveyResponsesController < Api::V1::Accounts::Base
|
|||||||
@current_page = params[:page] || 1
|
@current_page = params[:page] || 1
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
Api::V1::Accounts::CsatSurveyResponsesController.prepend_mod_with('Api::V1::Accounts::CsatSurveyResponsesController')
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
class Api::V1::Accounts::CustomFiltersController < Api::V1::Accounts::BaseController
|
class Api::V1::Accounts::CustomFiltersController < Api::V1::Accounts::BaseController
|
||||||
before_action :check_authorization
|
before_action :check_authorization
|
||||||
before_action :fetch_custom_filters, only: [:index]
|
before_action :fetch_custom_filters, except: [:create]
|
||||||
before_action :fetch_custom_filter, only: [:show, :update, :destroy]
|
before_action :fetch_custom_filter, only: [:show, :update, :destroy]
|
||||||
DEFAULT_FILTER_TYPE = 'conversation'.freeze
|
DEFAULT_FILTER_TYPE = 'conversation'.freeze
|
||||||
|
|
||||||
@@ -9,8 +9,8 @@ class Api::V1::Accounts::CustomFiltersController < Api::V1::Accounts::BaseContro
|
|||||||
def show; end
|
def show; end
|
||||||
|
|
||||||
def create
|
def create
|
||||||
@custom_filter = Current.account.custom_filters.create!(
|
@custom_filter = current_user.custom_filters.create!(
|
||||||
permitted_payload.merge(user: Current.user)
|
permitted_payload.merge(account_id: Current.account.id)
|
||||||
)
|
)
|
||||||
render json: { error: @custom_filter.errors.messages }, status: :unprocessable_entity and return unless @custom_filter.valid?
|
render json: { error: @custom_filter.errors.messages }, status: :unprocessable_entity and return unless @custom_filter.valid?
|
||||||
end
|
end
|
||||||
@@ -27,16 +27,14 @@ class Api::V1::Accounts::CustomFiltersController < Api::V1::Accounts::BaseContro
|
|||||||
private
|
private
|
||||||
|
|
||||||
def fetch_custom_filters
|
def fetch_custom_filters
|
||||||
@custom_filters = Current.account.custom_filters.where(
|
@custom_filters = current_user.custom_filters.where(
|
||||||
user: Current.user,
|
account_id: Current.account.id,
|
||||||
filter_type: permitted_params[:filter_type] || DEFAULT_FILTER_TYPE
|
filter_type: permitted_params[:filter_type] || DEFAULT_FILTER_TYPE
|
||||||
)
|
)
|
||||||
end
|
end
|
||||||
|
|
||||||
def fetch_custom_filter
|
def fetch_custom_filter
|
||||||
@custom_filter = Current.account.custom_filters.where(
|
@custom_filter = @custom_filters.find(permitted_params[:id])
|
||||||
user: Current.user
|
|
||||||
).find(permitted_params[:id])
|
|
||||||
end
|
end
|
||||||
|
|
||||||
def permitted_payload
|
def permitted_payload
|
||||||
|
|||||||
@@ -1,23 +1,32 @@
|
|||||||
class Api::V1::Accounts::Google::AuthorizationsController < Api::V1::Accounts::OauthAuthorizationController
|
class Api::V1::Accounts::Google::AuthorizationsController < Api::V1::Accounts::BaseController
|
||||||
include GoogleConcern
|
include GoogleConcern
|
||||||
|
before_action :check_authorization
|
||||||
|
|
||||||
def create
|
def create
|
||||||
|
email = params[:authorization][:email]
|
||||||
redirect_url = google_client.auth_code.authorize_url(
|
redirect_url = google_client.auth_code.authorize_url(
|
||||||
{
|
{
|
||||||
redirect_uri: "#{base_url}/google/callback",
|
redirect_uri: "#{base_url}/google/callback",
|
||||||
scope: scope,
|
scope: 'email profile https://mail.google.com/',
|
||||||
response_type: 'code',
|
response_type: 'code',
|
||||||
prompt: 'consent', # the oauth flow does not return a refresh token, this is supposed to fix it
|
prompt: 'consent', # the oauth flow does not return a refresh token, this is supposed to fix it
|
||||||
access_type: 'offline', # the default is 'online'
|
access_type: 'offline', # the default is 'online'
|
||||||
state: state,
|
|
||||||
client_id: GlobalConfigService.load('GOOGLE_OAUTH_CLIENT_ID', nil)
|
client_id: GlobalConfigService.load('GOOGLE_OAUTH_CLIENT_ID', nil)
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
|
||||||
if redirect_url
|
if redirect_url
|
||||||
|
cache_key = "google::#{email.downcase}"
|
||||||
|
::Redis::Alfred.setex(cache_key, Current.account.id, 5.minutes)
|
||||||
render json: { success: true, url: redirect_url }
|
render json: { success: true, url: redirect_url }
|
||||||
else
|
else
|
||||||
render json: { success: false }, status: :unprocessable_entity
|
render json: { success: false }, status: :unprocessable_entity
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
private
|
||||||
|
|
||||||
|
def check_authorization
|
||||||
|
raise Pundit::NotAuthorizedError unless Current.account_user.administrator?
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -1,111 +0,0 @@
|
|||||||
class Api::V1::Accounts::InboxCsatTemplatesController < Api::V1::Accounts::BaseController
|
|
||||||
before_action :fetch_inbox
|
|
||||||
before_action :validate_whatsapp_channel
|
|
||||||
|
|
||||||
def show
|
|
||||||
service = CsatTemplateManagementService.new(@inbox)
|
|
||||||
result = service.template_status
|
|
||||||
|
|
||||||
if result[:service_error]
|
|
||||||
render json: { error: result[:service_error] }, status: :internal_server_error
|
|
||||||
else
|
|
||||||
render json: result
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
def create
|
|
||||||
template_params = extract_template_params
|
|
||||||
return render_missing_message_error if template_params[:message].blank?
|
|
||||||
|
|
||||||
service = CsatTemplateManagementService.new(@inbox)
|
|
||||||
result = service.create_template(template_params)
|
|
||||||
render_template_creation_result(result)
|
|
||||||
rescue ActionController::ParameterMissing
|
|
||||||
render json: { error: 'Template parameters are required' }, status: :unprocessable_entity
|
|
||||||
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? || @inbox.twilio_whatsapp?
|
|
||||||
|
|
||||||
render json: { error: 'CSAT template operations only available for WhatsApp and Twilio 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 render_template_creation_result(result)
|
|
||||||
if result[:success]
|
|
||||||
render_successful_template_creation(result)
|
|
||||||
elsif result[:service_error]
|
|
||||||
render json: { error: result[:service_error] }, status: :internal_server_error
|
|
||||||
else
|
|
||||||
render_failed_template_creation(result)
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
def render_successful_template_creation(result)
|
|
||||||
if @inbox.twilio_whatsapp?
|
|
||||||
render json: {
|
|
||||||
template: {
|
|
||||||
friendly_name: result[:friendly_name],
|
|
||||||
content_sid: result[:content_sid],
|
|
||||||
status: result[:status] || 'pending',
|
|
||||||
language: result[:language] || 'en'
|
|
||||||
}
|
|
||||||
}, status: :created
|
|
||||||
else
|
|
||||||
render json: {
|
|
||||||
template: {
|
|
||||||
name: result[:template_name],
|
|
||||||
template_id: result[:template_id],
|
|
||||||
status: 'PENDING',
|
|
||||||
language: result[:language] || 'en'
|
|
||||||
}
|
|
||||||
}, status: :created
|
|
||||||
end
|
|
||||||
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 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
|
|
||||||
@@ -1,46 +0,0 @@
|
|||||||
class Api::V1::Accounts::Inboxes::AssignmentPoliciesController < Api::V1::Accounts::BaseController
|
|
||||||
before_action :fetch_inbox
|
|
||||||
before_action :fetch_assignment_policy, only: [:create]
|
|
||||||
before_action -> { check_authorization(AssignmentPolicy) }
|
|
||||||
before_action :validate_assignment_policy, only: [:show, :destroy]
|
|
||||||
|
|
||||||
def show
|
|
||||||
@assignment_policy = @inbox.assignment_policy
|
|
||||||
end
|
|
||||||
|
|
||||||
def create
|
|
||||||
# There should be only one assignment policy for an inbox.
|
|
||||||
# If there is a new request to add an assignment policy, we will
|
|
||||||
# delete the old one and attach the new policy
|
|
||||||
remove_inbox_assignment_policy
|
|
||||||
@inbox_assignment_policy = @inbox.create_inbox_assignment_policy!(assignment_policy: @assignment_policy)
|
|
||||||
@assignment_policy = @inbox.assignment_policy
|
|
||||||
end
|
|
||||||
|
|
||||||
def destroy
|
|
||||||
remove_inbox_assignment_policy
|
|
||||||
head :ok
|
|
||||||
end
|
|
||||||
|
|
||||||
private
|
|
||||||
|
|
||||||
def remove_inbox_assignment_policy
|
|
||||||
@inbox.inbox_assignment_policy&.destroy
|
|
||||||
end
|
|
||||||
|
|
||||||
def fetch_inbox
|
|
||||||
@inbox = Current.account.inboxes.find(permitted_params[:inbox_id])
|
|
||||||
end
|
|
||||||
|
|
||||||
def fetch_assignment_policy
|
|
||||||
@assignment_policy = Current.account.assignment_policies.find(permitted_params[:assignment_policy_id])
|
|
||||||
end
|
|
||||||
|
|
||||||
def permitted_params
|
|
||||||
params.permit(:assignment_policy_id, :inbox_id)
|
|
||||||
end
|
|
||||||
|
|
||||||
def validate_assignment_policy
|
|
||||||
return render_not_found_error(I18n.t('errors.assignment_policy.not_found')) unless @inbox.assignment_policy
|
|
||||||
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] }))
|
||||||
@@ -43,9 +42,7 @@ class Api::V1::Accounts::InboxesController < Api::V1::Accounts::BaseController
|
|||||||
end
|
end
|
||||||
|
|
||||||
def update
|
def update
|
||||||
inbox_params = permitted_params.except(:channel, :csat_config)
|
@inbox.update!(permitted_params.except(:channel))
|
||||||
inbox_params[:csat_config] = format_csat_config(permitted_params[:csat_config]) if permitted_params[:csat_config].present?
|
|
||||||
@inbox.update!(inbox_params)
|
|
||||||
update_inbox_working_hours
|
update_inbox_working_hours
|
||||||
update_channel if channel_update_required?
|
update_channel if channel_update_required?
|
||||||
end
|
end
|
||||||
@@ -70,23 +67,6 @@ class Api::V1::Accounts::InboxesController < Api::V1::Accounts::BaseController
|
|||||||
render status: :ok, json: { message: I18n.t('messages.inbox_deletetion_response') }
|
render status: :ok, json: { message: I18n.t('messages.inbox_deletetion_response') }
|
||||||
end
|
end
|
||||||
|
|
||||||
def sync_templates
|
|
||||||
return render status: :unprocessable_entity, json: { error: 'Template sync is only available for WhatsApp channels' } unless whatsapp_channel?
|
|
||||||
|
|
||||||
trigger_template_sync
|
|
||||||
render status: :ok, json: { message: 'Template sync initiated successfully' }
|
|
||||||
rescue StandardError => e
|
|
||||||
render status: :internal_server_error, json: { error: e.message }
|
|
||||||
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,22 +78,12 @@ 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 %w[web_widget api email line telegram whatsapp sms].include?(permitted_params[:channel][:type])
|
||||||
|
|
||||||
account_channels_method.create!(permitted_params(channel_type_from_params::EDITABLE_ATTRS)[:channel].except(:type))
|
account_channels_method.create!(permitted_params(channel_type_from_params::EDITABLE_ATTRS)[:channel].except(:type))
|
||||||
end
|
end
|
||||||
|
|
||||||
def allowed_channel_types
|
|
||||||
%w[web_widget api email line telegram whatsapp sms]
|
|
||||||
end
|
|
||||||
|
|
||||||
def update_inbox_working_hours
|
def update_inbox_working_hours
|
||||||
@inbox.update_working_hours(params.permit(working_hours: Inbox::OFFISABLE_ATTRS)[:working_hours]) if params[:working_hours]
|
@inbox.update_working_hours(params.permit(working_hours: Inbox::OFFISABLE_ATTRS)[:working_hours]) if params[:working_hours]
|
||||||
end
|
end
|
||||||
@@ -151,38 +121,20 @@ class Api::V1::Accounts::InboxesController < Api::V1::Accounts::BaseController
|
|||||||
@inbox.channel.save!
|
@inbox.channel.save!
|
||||||
end
|
end
|
||||||
|
|
||||||
def format_csat_config(config)
|
|
||||||
formatted = {
|
|
||||||
'display_type' => config['display_type'] || 'emoji',
|
|
||||||
'message' => config['message'] || '',
|
|
||||||
:survey_rules => {
|
|
||||||
'operator' => config.dig('survey_rules', 'operator') || 'contains',
|
|
||||||
'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
|
|
||||||
|
|
||||||
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,
|
|
||||||
{ survey_rules: [:operator, { values: [] }],
|
|
||||||
template: [:name, :template_id, :friendly_name, :content_sid, :approval_sid, :created_at, :language, :status] }] }]
|
|
||||||
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 +150,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
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
class Api::V1::Accounts::Instagram::AuthorizationsController < Api::V1::Accounts::OauthAuthorizationController
|
class Api::V1::Accounts::Instagram::AuthorizationsController < Api::V1::Accounts::BaseController
|
||||||
include InstagramConcern
|
include InstagramConcern
|
||||||
include Instagram::IntegrationHelper
|
include Instagram::IntegrationHelper
|
||||||
|
before_action :check_authorization
|
||||||
|
|
||||||
def create
|
def create
|
||||||
# https://developers.facebook.com/docs/instagram-platform/instagram-api-with-instagram-login/business-login#step-1--get-authorization
|
# https://developers.facebook.com/docs/instagram-platform/instagram-api-with-instagram-login/business-login#step-1--get-authorization
|
||||||
@@ -20,4 +21,10 @@ class Api::V1::Accounts::Instagram::AuthorizationsController < Api::V1::Accounts
|
|||||||
render json: { success: false }, status: :unprocessable_entity
|
render json: { success: false }, status: :unprocessable_entity
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
private
|
||||||
|
|
||||||
|
def check_authorization
|
||||||
|
raise Pundit::NotAuthorizedError unless Current.account_user.administrator?
|
||||||
|
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)
|
||||||
|
|||||||
@@ -1,9 +1,8 @@
|
|||||||
class Api::V1::Accounts::Integrations::LinearController < Api::V1::Accounts::BaseController
|
class Api::V1::Accounts::Integrations::LinearController < Api::V1::Accounts::BaseController
|
||||||
before_action :fetch_conversation, only: [:create_issue, :link_issue, :unlink_issue, :linked_issues]
|
before_action :fetch_conversation, only: [:link_issue, :linked_issues]
|
||||||
before_action :fetch_hook, only: [:destroy]
|
before_action :fetch_hook, only: [:destroy]
|
||||||
|
|
||||||
def destroy
|
def destroy
|
||||||
revoke_linear_token
|
|
||||||
@hook.destroy!
|
@hook.destroy!
|
||||||
head :ok
|
head :ok
|
||||||
end
|
end
|
||||||
@@ -28,16 +27,10 @@ class Api::V1::Accounts::Integrations::LinearController < Api::V1::Accounts::Bas
|
|||||||
end
|
end
|
||||||
|
|
||||||
def create_issue
|
def create_issue
|
||||||
issue = linear_processor_service.create_issue(permitted_params, Current.user)
|
issue = linear_processor_service.create_issue(permitted_params)
|
||||||
if issue[:error]
|
if issue[:error]
|
||||||
render json: { error: issue[:error] }, status: :unprocessable_entity
|
render json: { error: issue[:error] }, status: :unprocessable_entity
|
||||||
else
|
else
|
||||||
Linear::ActivityMessageService.new(
|
|
||||||
conversation: @conversation,
|
|
||||||
action_type: :issue_created,
|
|
||||||
issue_data: { id: issue[:data][:identifier] },
|
|
||||||
user: Current.user
|
|
||||||
).perform
|
|
||||||
render json: issue[:data], status: :ok
|
render json: issue[:data], status: :ok
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
@@ -45,34 +38,21 @@ class Api::V1::Accounts::Integrations::LinearController < Api::V1::Accounts::Bas
|
|||||||
def link_issue
|
def link_issue
|
||||||
issue_id = permitted_params[:issue_id]
|
issue_id = permitted_params[:issue_id]
|
||||||
title = permitted_params[:title]
|
title = permitted_params[:title]
|
||||||
issue = linear_processor_service.link_issue(conversation_link, issue_id, title, Current.user)
|
issue = linear_processor_service.link_issue(conversation_link, issue_id, title)
|
||||||
if issue[:error]
|
if issue[:error]
|
||||||
render json: { error: issue[:error] }, status: :unprocessable_entity
|
render json: { error: issue[:error] }, status: :unprocessable_entity
|
||||||
else
|
else
|
||||||
Linear::ActivityMessageService.new(
|
|
||||||
conversation: @conversation,
|
|
||||||
action_type: :issue_linked,
|
|
||||||
issue_data: { id: issue_id },
|
|
||||||
user: Current.user
|
|
||||||
).perform
|
|
||||||
render json: issue[:data], status: :ok
|
render json: issue[:data], status: :ok
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
def unlink_issue
|
def unlink_issue
|
||||||
link_id = permitted_params[:link_id]
|
link_id = permitted_params[:link_id]
|
||||||
issue_id = permitted_params[:issue_id]
|
|
||||||
issue = linear_processor_service.unlink_issue(link_id)
|
issue = linear_processor_service.unlink_issue(link_id)
|
||||||
|
|
||||||
if issue[:error]
|
if issue[:error]
|
||||||
render json: { error: issue[:error] }, status: :unprocessable_entity
|
render json: { error: issue[:error] }, status: :unprocessable_entity
|
||||||
else
|
else
|
||||||
Linear::ActivityMessageService.new(
|
|
||||||
conversation: @conversation,
|
|
||||||
action_type: :issue_unlinked,
|
|
||||||
issue_data: { id: issue_id },
|
|
||||||
user: Current.user
|
|
||||||
).perform
|
|
||||||
render json: issue[:data], status: :ok
|
render json: issue[:data], status: :ok
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
@@ -114,22 +94,10 @@ class Api::V1::Accounts::Integrations::LinearController < Api::V1::Accounts::Bas
|
|||||||
end
|
end
|
||||||
|
|
||||||
def permitted_params
|
def permitted_params
|
||||||
params.permit(:team_id, :project_id, :conversation_id, :issue_id, :link_id, :title, :description, :assignee_id, :priority, :state_id,
|
params.permit(:team_id, :project_id, :conversation_id, :issue_id, :link_id, :title, :description, :assignee_id, :priority, label_ids: [])
|
||||||
label_ids: [])
|
|
||||||
end
|
end
|
||||||
|
|
||||||
def fetch_hook
|
def fetch_hook
|
||||||
@hook = Integrations::Hook.where(account: Current.account).find_by(app_id: 'linear')
|
@hook = Integrations::Hook.where(account: Current.account).find_by(app_id: 'linear')
|
||||||
end
|
end
|
||||||
|
|
||||||
def revoke_linear_token
|
|
||||||
return unless @hook&.access_token
|
|
||||||
|
|
||||||
begin
|
|
||||||
linear_client = Linear.new(@hook.access_token)
|
|
||||||
linear_client.revoke_token
|
|
||||||
rescue StandardError => e
|
|
||||||
Rails.logger.error "Failed to revoke Linear token: #{e.message}"
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -1,14 +0,0 @@
|
|||||||
class Api::V1::Accounts::Integrations::NotionController < Api::V1::Accounts::BaseController
|
|
||||||
before_action :fetch_hook, only: [:destroy]
|
|
||||||
|
|
||||||
def destroy
|
|
||||||
@hook.destroy!
|
|
||||||
head :ok
|
|
||||||
end
|
|
||||||
|
|
||||||
private
|
|
||||||
|
|
||||||
def fetch_hook
|
|
||||||
@hook = Integrations::Hook.where(account: Current.account).find_by(app_id: 'notion')
|
|
||||||
end
|
|
||||||
end
|
|
||||||
@@ -1,6 +1,4 @@
|
|||||||
class Api::V1::Accounts::MacrosController < Api::V1::Accounts::BaseController
|
class Api::V1::Accounts::MacrosController < Api::V1::Accounts::BaseController
|
||||||
include AttachmentConcern
|
|
||||||
|
|
||||||
before_action :fetch_macro, only: [:show, :update, :destroy, :execute]
|
before_action :fetch_macro, only: [:show, :update, :destroy, :execute]
|
||||||
before_action :check_authorization, only: [:show, :update, :destroy, :execute]
|
before_action :check_authorization, only: [:show, :update, :destroy, :execute]
|
||||||
|
|
||||||
@@ -13,32 +11,26 @@ class Api::V1::Accounts::MacrosController < Api::V1::Accounts::BaseController
|
|||||||
end
|
end
|
||||||
|
|
||||||
def create
|
def create
|
||||||
blobs, actions, error = validate_and_prepare_attachments(params[:actions])
|
|
||||||
return render_could_not_create_error(error) if error
|
|
||||||
|
|
||||||
@macro = Current.account.macros.new(macros_with_user.merge(created_by_id: current_user.id))
|
@macro = Current.account.macros.new(macros_with_user.merge(created_by_id: current_user.id))
|
||||||
@macro.set_visibility(current_user, permitted_params)
|
@macro.set_visibility(current_user, permitted_params)
|
||||||
@macro.actions = actions
|
@macro.actions = params[:actions]
|
||||||
|
|
||||||
return render_could_not_create_error(@macro.errors.messages) unless @macro.valid?
|
render json: { error: @macro.errors.messages }, status: :unprocessable_entity and return unless @macro.valid?
|
||||||
|
|
||||||
@macro.save!
|
@macro.save!
|
||||||
blobs.each { |blob| @macro.files.attach(blob) }
|
process_attachments
|
||||||
|
@macro
|
||||||
end
|
end
|
||||||
|
|
||||||
def update
|
def update
|
||||||
blobs, actions, error = validate_and_prepare_attachments(params[:actions], @macro)
|
|
||||||
return render_could_not_create_error(error) if error
|
|
||||||
|
|
||||||
ActiveRecord::Base.transaction do
|
ActiveRecord::Base.transaction do
|
||||||
@macro.assign_attributes(macros_with_user)
|
@macro.update!(macros_with_user)
|
||||||
@macro.set_visibility(current_user, permitted_params)
|
@macro.set_visibility(current_user, permitted_params)
|
||||||
@macro.actions = actions if params[:actions]
|
process_attachments
|
||||||
@macro.save!
|
@macro.save!
|
||||||
blobs.each { |blob| @macro.files.attach(blob) }
|
|
||||||
rescue StandardError => e
|
rescue StandardError => e
|
||||||
Rails.logger.error e
|
Rails.logger.error e
|
||||||
render_could_not_create_error(@macro.errors.messages)
|
render json: { error: @macro.errors.messages }.to_json, status: :unprocessable_entity
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
@@ -55,9 +47,20 @@ class Api::V1::Accounts::MacrosController < Api::V1::Accounts::BaseController
|
|||||||
|
|
||||||
private
|
private
|
||||||
|
|
||||||
|
def process_attachments
|
||||||
|
actions = @macro.actions.filter_map { |k, _v| k if k['action_name'] == 'send_attachment' }
|
||||||
|
return if actions.blank?
|
||||||
|
|
||||||
|
actions.each do |action|
|
||||||
|
blob_id = action['action_params']
|
||||||
|
blob = ActiveStorage::Blob.find_by(id: blob_id)
|
||||||
|
@macro.files.attach(blob)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
def permitted_params
|
def permitted_params
|
||||||
params.permit(
|
params.permit(
|
||||||
:name, :visibility,
|
:name, :account_id, :visibility,
|
||||||
actions: [:action_name, { action_params: [] }]
|
actions: [:action_name, { action_params: [] }]
|
||||||
)
|
)
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -1,19 +1,28 @@
|
|||||||
class Api::V1::Accounts::Microsoft::AuthorizationsController < Api::V1::Accounts::OauthAuthorizationController
|
class Api::V1::Accounts::Microsoft::AuthorizationsController < Api::V1::Accounts::BaseController
|
||||||
include MicrosoftConcern
|
include MicrosoftConcern
|
||||||
|
before_action :check_authorization
|
||||||
|
|
||||||
def create
|
def create
|
||||||
|
email = params[:authorization][:email]
|
||||||
redirect_url = microsoft_client.auth_code.authorize_url(
|
redirect_url = microsoft_client.auth_code.authorize_url(
|
||||||
{
|
{
|
||||||
redirect_uri: "#{base_url}/microsoft/callback",
|
redirect_uri: "#{base_url}/microsoft/callback",
|
||||||
scope: scope,
|
scope: 'offline_access https://outlook.office.com/IMAP.AccessAsUser.All https://outlook.office.com/SMTP.Send openid profile',
|
||||||
state: state,
|
|
||||||
prompt: 'consent'
|
prompt: 'consent'
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
if redirect_url
|
if redirect_url
|
||||||
|
cache_key = "microsoft::#{email.downcase}"
|
||||||
|
::Redis::Alfred.setex(cache_key, Current.account.id, 5.minutes)
|
||||||
render json: { success: true, url: redirect_url }
|
render json: { success: true, url: redirect_url }
|
||||||
else
|
else
|
||||||
render json: { success: false }, status: :unprocessable_entity
|
render json: { success: false }, status: :unprocessable_entity
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
private
|
||||||
|
|
||||||
|
def check_authorization
|
||||||
|
raise Pundit::NotAuthorizedError unless Current.account_user.administrator?
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -1,21 +0,0 @@
|
|||||||
class Api::V1::Accounts::Notion::AuthorizationsController < Api::V1::Accounts::OauthAuthorizationController
|
|
||||||
include NotionConcern
|
|
||||||
|
|
||||||
def create
|
|
||||||
redirect_url = notion_client.auth_code.authorize_url(
|
|
||||||
{
|
|
||||||
redirect_uri: "#{base_url}/notion/callback",
|
|
||||||
response_type: 'code',
|
|
||||||
owner: 'user',
|
|
||||||
state: state,
|
|
||||||
client_id: GlobalConfigService.load('NOTION_CLIENT_ID', nil)
|
|
||||||
}
|
|
||||||
)
|
|
||||||
|
|
||||||
if redirect_url
|
|
||||||
render json: { success: true, url: redirect_url }
|
|
||||||
else
|
|
||||||
render json: { success: false }, status: :unprocessable_entity
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
|
||||||
@@ -1,23 +0,0 @@
|
|||||||
class Api::V1::Accounts::OauthAuthorizationController < Api::V1::Accounts::BaseController
|
|
||||||
before_action :check_authorization
|
|
||||||
|
|
||||||
protected
|
|
||||||
|
|
||||||
def scope
|
|
||||||
''
|
|
||||||
end
|
|
||||||
|
|
||||||
def state
|
|
||||||
Current.account.to_sgid(expires_in: 15.minutes).to_s
|
|
||||||
end
|
|
||||||
|
|
||||||
def base_url
|
|
||||||
ENV.fetch('FRONTEND_URL', 'http://localhost:3000')
|
|
||||||
end
|
|
||||||
|
|
||||||
private
|
|
||||||
|
|
||||||
def check_authorization
|
|
||||||
raise Pundit::NotAuthorizedError unless Current.account_user.administrator?
|
|
||||||
end
|
|
||||||
end
|
|
||||||
@@ -26,8 +26,9 @@ class Api::V1::Accounts::PortalsController < Api::V1::Accounts::BaseController
|
|||||||
@portal.update!(portal_params.merge(live_chat_widget_params)) if params[:portal].present?
|
@portal.update!(portal_params.merge(live_chat_widget_params)) if params[:portal].present?
|
||||||
# @portal.custom_domain = parsed_custom_domain
|
# @portal.custom_domain = parsed_custom_domain
|
||||||
process_attached_logo if params[:blob_id].present?
|
process_attached_logo if params[:blob_id].present?
|
||||||
rescue ActiveRecord::RecordInvalid => e
|
rescue StandardError => e
|
||||||
render_record_invalid(e)
|
Rails.logger.error e
|
||||||
|
render json: { error: @portal.errors.messages }.to_json, status: :unprocessable_entity
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
@@ -46,23 +47,9 @@ class Api::V1::Accounts::PortalsController < Api::V1::Accounts::BaseController
|
|||||||
head :ok
|
head :ok
|
||||||
end
|
end
|
||||||
|
|
||||||
def send_instructions
|
|
||||||
email = permitted_params[:email]
|
|
||||||
return render_could_not_create_error(I18n.t('portals.send_instructions.email_required')) if email.blank?
|
|
||||||
return render_could_not_create_error(I18n.t('portals.send_instructions.invalid_email_format')) unless valid_email?(email)
|
|
||||||
return render_could_not_create_error(I18n.t('portals.send_instructions.custom_domain_not_configured')) if @portal.custom_domain.blank?
|
|
||||||
|
|
||||||
PortalInstructionsMailer.send_cname_instructions(
|
|
||||||
portal: @portal,
|
|
||||||
recipient_email: email
|
|
||||||
).deliver_later
|
|
||||||
|
|
||||||
render json: { message: I18n.t('portals.send_instructions.instructions_sent_successfully') }, status: :ok
|
|
||||||
end
|
|
||||||
|
|
||||||
def process_attached_logo
|
def process_attached_logo
|
||||||
blob_id = params[:blob_id]
|
blob_id = params[:blob_id]
|
||||||
blob = ActiveStorage::Blob.find_signed(blob_id)
|
blob = ActiveStorage::Blob.find_by(id: blob_id)
|
||||||
@portal.logo.attach(blob)
|
@portal.logo.attach(blob)
|
||||||
end
|
end
|
||||||
|
|
||||||
@@ -73,20 +60,19 @@ class Api::V1::Accounts::PortalsController < Api::V1::Accounts::BaseController
|
|||||||
end
|
end
|
||||||
|
|
||||||
def permitted_params
|
def permitted_params
|
||||||
params.permit(:id, :email)
|
params.permit(:id)
|
||||||
end
|
end
|
||||||
|
|
||||||
def portal_params
|
def portal_params
|
||||||
params.require(:portal).permit(
|
params.require(:portal).permit(
|
||||||
:id, :color, :custom_domain, :header_text, :homepage_link,
|
:account_id, :color, :custom_domain, :header_text, :homepage_link,
|
||||||
:name, :page_title, :slug, :archived, { config: [:default_locale, { allowed_locales: [] }] }
|
:name, :page_title, :slug, :archived, { config: [:default_locale, { allowed_locales: [] }] }
|
||||||
)
|
)
|
||||||
end
|
end
|
||||||
|
|
||||||
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?
|
||||||
@@ -102,10 +88,4 @@ class Api::V1::Accounts::PortalsController < Api::V1::Accounts::BaseController
|
|||||||
domain = URI.parse(@portal.custom_domain)
|
domain = URI.parse(@portal.custom_domain)
|
||||||
domain.is_a?(URI::HTTP) ? domain.host : @portal.custom_domain
|
domain.is_a?(URI::HTTP) ? domain.host : @portal.custom_domain
|
||||||
end
|
end
|
||||||
|
|
||||||
def valid_email?(email)
|
|
||||||
ValidEmail2::Address.new(email).valid?
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
|
|
||||||
Api::V1::Accounts::PortalsController.prepend_mod_with('Api::V1::Accounts::PortalsController')
|
|
||||||
|
|||||||
@@ -15,10 +15,6 @@ class Api::V1::Accounts::SearchController < Api::V1::Accounts::BaseController
|
|||||||
@result = search('Message')
|
@result = search('Message')
|
||||||
end
|
end
|
||||||
|
|
||||||
def articles
|
|
||||||
@result = search('Article')
|
|
||||||
end
|
|
||||||
|
|
||||||
private
|
private
|
||||||
|
|
||||||
def search(search_type)
|
def search(search_type)
|
||||||
@@ -28,7 +24,5 @@ class Api::V1::Accounts::SearchController < Api::V1::Accounts::BaseController
|
|||||||
search_type: search_type,
|
search_type: search_type,
|
||||||
params: params
|
params: params
|
||||||
).perform
|
).perform
|
||||||
rescue ArgumentError => e
|
|
||||||
render json: { error: e.message }, status: :unprocessable_entity
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -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
|
|
||||||
@@ -59,7 +59,7 @@ class Api::V1::Accounts::UploadController < Api::V1::Accounts::BaseController
|
|||||||
end
|
end
|
||||||
|
|
||||||
def render_success(file_blob)
|
def render_success(file_blob)
|
||||||
render json: { file_url: url_for(file_blob), blob_id: file_blob.signed_id }
|
render json: { file_url: url_for(file_blob), blob_key: file_blob.key, blob_id: file_blob.id }
|
||||||
end
|
end
|
||||||
|
|
||||||
def render_error(message, status)
|
def render_error(message, status)
|
||||||
|
|||||||
@@ -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,77 +0,0 @@
|
|||||||
class Api::V1::Accounts::Whatsapp::AuthorizationsController < Api::V1::Accounts::BaseController
|
|
||||||
before_action :fetch_and_validate_inbox, if: -> { params[:inbox_id].present? }
|
|
||||||
|
|
||||||
# POST /api/v1/accounts/:account_id/whatsapp/authorization
|
|
||||||
# Handles both initial authorization and reauthorization
|
|
||||||
# If inbox_id is present in params, it performs reauthorization
|
|
||||||
def create
|
|
||||||
validate_embedded_signup_params!
|
|
||||||
channel = process_embedded_signup
|
|
||||||
render_success_response(channel.inbox)
|
|
||||||
rescue StandardError => e
|
|
||||||
render_error_response(e)
|
|
||||||
end
|
|
||||||
|
|
||||||
private
|
|
||||||
|
|
||||||
def process_embedded_signup
|
|
||||||
service = Whatsapp::EmbeddedSignupService.new(
|
|
||||||
account: Current.account,
|
|
||||||
params: params.permit(:code, :business_id, :waba_id, :phone_number_id).to_h.symbolize_keys,
|
|
||||||
inbox_id: params[:inbox_id]
|
|
||||||
)
|
|
||||||
service.perform
|
|
||||||
end
|
|
||||||
|
|
||||||
def fetch_and_validate_inbox
|
|
||||||
@inbox = Current.account.inboxes.find(params[:inbox_id])
|
|
||||||
validate_reauthorization_required
|
|
||||||
end
|
|
||||||
|
|
||||||
def validate_reauthorization_required
|
|
||||||
return if @inbox.channel.reauthorization_required? || can_upgrade_to_embedded_signup?
|
|
||||||
|
|
||||||
render json: {
|
|
||||||
success: false,
|
|
||||||
message: I18n.t('inbox.reauthorization.not_required')
|
|
||||||
}, status: :unprocessable_entity
|
|
||||||
end
|
|
||||||
|
|
||||||
def can_upgrade_to_embedded_signup?
|
|
||||||
channel = @inbox.channel
|
|
||||||
return false unless channel.provider == 'whatsapp_cloud'
|
|
||||||
|
|
||||||
true
|
|
||||||
end
|
|
||||||
|
|
||||||
def render_success_response(inbox)
|
|
||||||
response = {
|
|
||||||
success: true,
|
|
||||||
id: inbox.id,
|
|
||||||
name: inbox.name,
|
|
||||||
channel_type: 'whatsapp'
|
|
||||||
}
|
|
||||||
response[:message] = I18n.t('inbox.reauthorization.success') if params[:inbox_id].present?
|
|
||||||
render json: response
|
|
||||||
end
|
|
||||||
|
|
||||||
def render_error_response(error)
|
|
||||||
Rails.logger.error "[WHATSAPP AUTHORIZATION] Embedded signup error: #{error.message}"
|
|
||||||
Rails.logger.error error.backtrace.join("\n")
|
|
||||||
render json: {
|
|
||||||
success: false,
|
|
||||||
error: error.message
|
|
||||||
}, status: :unprocessable_entity
|
|
||||||
end
|
|
||||||
|
|
||||||
def validate_embedded_signup_params!
|
|
||||||
missing_params = []
|
|
||||||
missing_params << 'code' if params[:code].blank?
|
|
||||||
missing_params << 'business_id' if params[:business_id].blank?
|
|
||||||
missing_params << 'waba_id' if params[:waba_id].blank?
|
|
||||||
|
|
||||||
return if missing_params.empty?
|
|
||||||
|
|
||||||
raise ArgumentError, "Required parameters are missing: #{missing_params.join(', ')}"
|
|
||||||
end
|
|
||||||
end
|
|
||||||
@@ -92,11 +92,7 @@ class Api::V1::AccountsController < Api::BaseController
|
|||||||
end
|
end
|
||||||
|
|
||||||
def settings_params
|
def settings_params
|
||||||
params.permit(*permitted_settings_attributes)
|
params.permit(:auto_resolve_after, :auto_resolve_message)
|
||||||
end
|
|
||||||
|
|
||||||
def permitted_settings_attributes
|
|
||||||
[:auto_resolve_after, :auto_resolve_message, :auto_resolve_ignore_waiting, :audio_transcriptions, :auto_resolve_label]
|
|
||||||
end
|
end
|
||||||
|
|
||||||
def check_signup_enabled
|
def check_signup_enabled
|
||||||
@@ -115,5 +111,3 @@ class Api::V1::AccountsController < Api::BaseController
|
|||||||
}
|
}
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
Api::V1::AccountsController.prepend_mod_with('Api::V1::AccountsSettings')
|
|
||||||
|
|||||||
@@ -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
|
|
||||||
@@ -38,11 +38,6 @@ class Api::V1::ProfilesController < Api::BaseController
|
|||||||
head :ok
|
head :ok
|
||||||
end
|
end
|
||||||
|
|
||||||
def reset_access_token
|
|
||||||
@user.access_token.regenerate_token
|
|
||||||
@user.reload
|
|
||||||
end
|
|
||||||
|
|
||||||
private
|
private
|
||||||
|
|
||||||
def set_user
|
def set_user
|
||||||
|
|||||||
@@ -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
|
||||||
|
|||||||
@@ -38,11 +38,6 @@ class Api::V2::Accounts::ReportsController < Api::V1::Accounts::BaseController
|
|||||||
generate_csv('teams_report', 'api/v2/accounts/reports/teams')
|
generate_csv('teams_report', 'api/v2/accounts/reports/teams')
|
||||||
end
|
end
|
||||||
|
|
||||||
def conversations_summary
|
|
||||||
@report_data = generate_conversations_report
|
|
||||||
generate_csv('conversations_summary_report', 'api/v2/accounts/reports/conversations_summary')
|
|
||||||
end
|
|
||||||
|
|
||||||
def conversation_traffic
|
def conversation_traffic
|
||||||
@report_data = generate_conversations_heatmap_report
|
@report_data = generate_conversations_heatmap_report
|
||||||
timezone_offset = (params[:timezone_offset] || 0).to_f
|
timezone_offset = (params[:timezone_offset] || 0).to_f
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
class Api::V2::Accounts::SummaryReportsController < Api::V1::Accounts::BaseController
|
class Api::V2::Accounts::SummaryReportsController < Api::V1::Accounts::BaseController
|
||||||
before_action :check_authorization
|
before_action :check_authorization
|
||||||
before_action :prepare_builder_params, only: [:agent, :team, :inbox, :label, :channel]
|
before_action :prepare_builder_params, only: [:agent, :team, :inbox]
|
||||||
|
|
||||||
def agent
|
def agent
|
||||||
render_report_with(V2::Reports::AgentSummaryBuilder)
|
render_report_with(V2::Reports::AgentSummaryBuilder)
|
||||||
@@ -14,16 +14,6 @@ class Api::V2::Accounts::SummaryReportsController < Api::V1::Accounts::BaseContr
|
|||||||
render_report_with(V2::Reports::InboxSummaryBuilder)
|
render_report_with(V2::Reports::InboxSummaryBuilder)
|
||||||
end
|
end
|
||||||
|
|
||||||
def label
|
|
||||||
render_report_with(V2::Reports::LabelSummaryBuilder)
|
|
||||||
end
|
|
||||||
|
|
||||||
def channel
|
|
||||||
return render_could_not_create_error(I18n.t('errors.reports.date_range_too_long')) if date_range_too_long?
|
|
||||||
|
|
||||||
render_report_with(V2::Reports::ChannelSummaryBuilder)
|
|
||||||
end
|
|
||||||
|
|
||||||
private
|
private
|
||||||
|
|
||||||
def check_authorization
|
def check_authorization
|
||||||
@@ -46,12 +36,4 @@ class Api::V2::Accounts::SummaryReportsController < Api::V1::Accounts::BaseContr
|
|||||||
def permitted_params
|
def permitted_params
|
||||||
params.permit(:since, :until, :business_hours)
|
params.permit(:since, :until, :business_hours)
|
||||||
end
|
end
|
||||||
|
|
||||||
def date_range_too_long?
|
|
||||||
return false if permitted_params[:since].blank? || permitted_params[:until].blank?
|
|
||||||
|
|
||||||
since_time = Time.zone.at(permitted_params[:since].to_i)
|
|
||||||
until_time = Time.zone.at(permitted_params[:until].to_i)
|
|
||||||
(until_time - since_time) > 6.months
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -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
|
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user