Compare commits
3
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
77ad12742e | ||
|
|
d1ac5a4bd5 | ||
|
|
b96c3af414 |
@@ -73,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:
|
||||||
|
|||||||
@@ -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: '23.7.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,6 +5,19 @@
|
|||||||
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: ..
|
||||||
@@ -12,7 +25,7 @@ services:
|
|||||||
args:
|
args:
|
||||||
VARIANT: 'ubuntu-22.04'
|
VARIANT: 'ubuntu-22.04'
|
||||||
NODE_VERSION: '23.7.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
|
||||||
|
|||||||
+2
-3
@@ -2,7 +2,7 @@
|
|||||||
# 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
|
||||||
|
|
||||||
@@ -216,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
|
||||||
@@ -259,3 +257,4 @@ AZURE_APP_SECRET=
|
|||||||
# Set to true if you want to remove stale contact inboxes
|
# Set to true if you want to remove stale contact inboxes
|
||||||
# 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
|
||||||
|
|
||||||
|
|||||||
@@ -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
|
||||||
|
|||||||
@@ -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
|
||||||
|
|||||||
@@ -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
|
||||||
|
|||||||
+5
-5
@@ -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,8 +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
|
|
||||||
|
|||||||
+3
-3
@@ -4,8 +4,8 @@
|
|||||||
# lint js and vue files
|
# lint js and vue files
|
||||||
npx --no-install lint-staged
|
npx --no-install lint-staged
|
||||||
|
|
||||||
# lint only staged ruby files that still exist (not deleted)
|
# lint only staged ruby files
|
||||||
git diff --name-only --cached | xargs -I {} sh -c 'test -f "{}" && echo "{}"' | grep '\.rb$' | xargs -I {} bundle exec rubocop --force-exclusion -a "{}" || true
|
git diff --name-only --cached | xargs ls -1 2>/dev/null | grep '\.rb$' | xargs bundle exec rubocop --force-exclusion -a
|
||||||
|
|
||||||
# stage rubocop changes to files
|
# stage rubocop changes to files
|
||||||
git diff --name-only --cached | xargs -I {} sh -c 'test -f "{}" && git add "{}"' || true
|
git diff --name-only --cached | xargs git add
|
||||||
|
|||||||
@@ -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/captain/storeFactory.js", "app/javascript/dashboard/i18n/index.js", "app/javascript/widget/i18n/index.js", "app/javascript/survey/i18n/index.js", "app/javascript/shared/constants/locales.js", "app/javascript/dashboard/helper/specs/macrosFixtures.js", "app/javascript/dashboard/routes/dashboard/settings/macros/constants.js", "**/fixtures/**", "**/*/fixtures.js",
|
|
||||||
]
|
|
||||||
|
|
||||||
test_patterns = [
|
|
||||||
"**/test/**",
|
|
||||||
"**/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
|
|
||||||
+8
-179
@@ -1,10 +1,7 @@
|
|||||||
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
|
||||||
|
|
||||||
@@ -16,61 +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: 25
|
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
|
||||||
|
|
||||||
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:
|
||||||
@@ -78,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
|
|
||||||
|
|
||||||
Rails/ApplicationController:
|
Rails/ApplicationController:
|
||||||
Exclude:
|
Exclude:
|
||||||
- 'app/controllers/api/v1/widget/messages_controller.rb'
|
- 'app/controllers/api/v1/widget/messages_controller.rb'
|
||||||
@@ -97,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
|
||||||
|
|
||||||
@@ -219,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,58 +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`
|
|
||||||
|
|
||||||
## 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
|
|
||||||
- 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
|
|
||||||
- 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
|
|
||||||
@@ -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
|
||||||
|
|
||||||
@@ -33,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
|
||||||
@@ -121,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'
|
||||||
@@ -179,7 +175,6 @@ gem 'reverse_markdown'
|
|||||||
|
|
||||||
gem 'iso-639'
|
gem 'iso-639'
|
||||||
gem 'ruby-openai'
|
gem 'ruby-openai'
|
||||||
gem 'ai-agents', '>= 0.2.1'
|
|
||||||
|
|
||||||
gem 'shopify_api'
|
gem 'shopify_api'
|
||||||
|
|
||||||
@@ -201,6 +196,9 @@ group :development do
|
|||||||
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'
|
||||||
|
|
||||||
@@ -239,7 +237,6 @@ 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.17.1', require: false
|
gem 'simplecov', '0.17.1', require: false
|
||||||
|
|||||||
+152
-193
@@ -25,89 +25,76 @@ GIT
|
|||||||
GEM
|
GEM
|
||||||
remote: https://rubygems.org/
|
remote: https://rubygems.org/
|
||||||
specs:
|
specs:
|
||||||
actioncable (7.1.5.1)
|
actioncable (7.0.8.7)
|
||||||
actionpack (= 7.1.5.1)
|
actionpack (= 7.0.8.7)
|
||||||
activesupport (= 7.1.5.1)
|
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.1)
|
actionpack (= 7.0.8.7)
|
||||||
actionpack (= 7.1.5.1)
|
activejob (= 7.0.8.7)
|
||||||
activejob (= 7.1.5.1)
|
activerecord (= 7.0.8.7)
|
||||||
activerecord (= 7.1.5.1)
|
activestorage (= 7.0.8.7)
|
||||||
activestorage (= 7.1.5.1)
|
activesupport (= 7.0.8.7)
|
||||||
activesupport (= 7.1.5.1)
|
|
||||||
mail (>= 2.7.1)
|
mail (>= 2.7.1)
|
||||||
net-imap
|
net-imap
|
||||||
net-pop
|
net-pop
|
||||||
net-smtp
|
net-smtp
|
||||||
actionmailer (7.1.5.1)
|
actionmailer (7.0.8.7)
|
||||||
actionpack (= 7.1.5.1)
|
actionpack (= 7.0.8.7)
|
||||||
actionview (= 7.1.5.1)
|
actionview (= 7.0.8.7)
|
||||||
activejob (= 7.1.5.1)
|
activejob (= 7.0.8.7)
|
||||||
activesupport (= 7.1.5.1)
|
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.1)
|
actionpack (7.0.8.7)
|
||||||
actionview (= 7.1.5.1)
|
actionview (= 7.0.8.7)
|
||||||
activesupport (= 7.1.5.1)
|
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.1)
|
actiontext (7.0.8.7)
|
||||||
actionpack (= 7.1.5.1)
|
actionpack (= 7.0.8.7)
|
||||||
activerecord (= 7.1.5.1)
|
activerecord (= 7.0.8.7)
|
||||||
activestorage (= 7.1.5.1)
|
activestorage (= 7.0.8.7)
|
||||||
activesupport (= 7.1.5.1)
|
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.1)
|
actionview (7.0.8.7)
|
||||||
activesupport (= 7.1.5.1)
|
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.1)
|
activejob (7.0.8.7)
|
||||||
activesupport (= 7.1.5.1)
|
activesupport (= 7.0.8.7)
|
||||||
globalid (>= 0.3.6)
|
globalid (>= 0.3.6)
|
||||||
activemodel (7.1.5.1)
|
activemodel (7.0.8.7)
|
||||||
activesupport (= 7.1.5.1)
|
activesupport (= 7.0.8.7)
|
||||||
activerecord (7.1.5.1)
|
activerecord (7.0.8.7)
|
||||||
activemodel (= 7.1.5.1)
|
activemodel (= 7.0.8.7)
|
||||||
activesupport (= 7.1.5.1)
|
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.1)
|
activestorage (7.0.8.7)
|
||||||
actionpack (= 7.1.5.1)
|
actionpack (= 7.0.8.7)
|
||||||
activejob (= 7.1.5.1)
|
activejob (= 7.0.8.7)
|
||||||
activerecord (= 7.1.5.1)
|
activerecord (= 7.0.8.7)
|
||||||
activesupport (= 7.1.5.1)
|
activesupport (= 7.0.8.7)
|
||||||
marcel (~> 1.0)
|
marcel (~> 1.0)
|
||||||
activesupport (7.1.5.1)
|
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,12 +113,10 @@ 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.2.1)
|
|
||||||
ruby_llm (~> 1.3)
|
|
||||||
annotate (3.2.0)
|
annotate (3.2.0)
|
||||||
activerecord (>= 3.2, < 8.0)
|
activerecord (>= 3.2, < 8.0)
|
||||||
rake (>= 10.4, < 14.0)
|
rake (>= 10.4, < 14.0)
|
||||||
ast (2.4.3)
|
ast (2.4.2)
|
||||||
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)
|
||||||
@@ -157,15 +142,14 @@ GEM
|
|||||||
statsd-ruby (~> 1.1)
|
statsd-ruby (~> 1.1)
|
||||||
base64 (0.2.0)
|
base64 (0.2.0)
|
||||||
bcrypt (3.1.20)
|
bcrypt (3.1.20)
|
||||||
benchmark (0.4.0)
|
bigdecimal (3.1.8)
|
||||||
bigdecimal (3.1.9)
|
|
||||||
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)
|
||||||
@@ -174,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
|
||||||
@@ -194,10 +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)
|
||||||
date (3.4.1)
|
datadog-ci (0.8.3)
|
||||||
ddtrace (0.48.0)
|
|
||||||
ffi (~> 1.0)
|
|
||||||
msgpack
|
msgpack
|
||||||
|
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)
|
||||||
@@ -208,10 +196,10 @@ GEM
|
|||||||
railties (>= 4.1.0)
|
railties (>= 4.1.0)
|
||||||
responders
|
responders
|
||||||
warden (~> 1.2.3)
|
warden (~> 1.2.3)
|
||||||
devise_token_auth (1.2.5)
|
devise_token_auth (1.2.3)
|
||||||
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)
|
||||||
@@ -224,7 +212,6 @@ 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)
|
||||||
ecma-re-validator (0.4.0)
|
ecma-re-validator (0.4.0)
|
||||||
regexp_parser (~> 2.2)
|
regexp_parser (~> 2.2)
|
||||||
@@ -267,10 +254,7 @@ GEM
|
|||||||
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
|
||||||
@@ -331,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)
|
||||||
@@ -347,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)
|
||||||
@@ -384,7 +370,7 @@ GEM
|
|||||||
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)
|
||||||
@@ -402,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.12.0)
|
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)
|
||||||
@@ -437,15 +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)
|
||||||
|
libddwaf (1.14.0.0.0)
|
||||||
|
ffi (~> 1.0)
|
||||||
|
libddwaf (1.14.0.0.0-arm64-darwin)
|
||||||
|
ffi (~> 1.0)
|
||||||
|
libddwaf (1.14.0.0.0-x86_64-darwin)
|
||||||
|
ffi (~> 1.0)
|
||||||
|
libddwaf (1.14.0.0.0-x86_64-linux)
|
||||||
|
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)
|
||||||
@@ -453,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)
|
||||||
@@ -478,11 +470,11 @@ 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.6.0)
|
multi_xml (0.6.0)
|
||||||
multipart-post (2.3.0)
|
multipart-post (2.3.0)
|
||||||
@@ -493,7 +485,7 @@ GEM
|
|||||||
uri
|
uri
|
||||||
net-http-persistent (4.0.2)
|
net-http-persistent (4.0.2)
|
||||||
connection_pool (~> 2.2)
|
connection_pool (~> 2.2)
|
||||||
net-imap (0.4.20)
|
net-imap (0.4.19)
|
||||||
date
|
date
|
||||||
net-protocol
|
net-protocol
|
||||||
net-pop (0.1.2)
|
net-pop (0.1.2)
|
||||||
@@ -509,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.4)
|
||||||
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.4-arm64-darwin)
|
||||||
racc (~> 1.4)
|
racc (~> 1.4)
|
||||||
nokogiri (1.18.9-x86_64-darwin)
|
nokogiri (1.18.4-x86_64-darwin)
|
||||||
racc (~> 1.4)
|
racc (~> 1.4)
|
||||||
nokogiri (1.18.9-x86_64-linux-gnu)
|
nokogiri (1.18.4-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)
|
||||||
@@ -553,16 +545,14 @@ GEM
|
|||||||
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)
|
||||||
@@ -570,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 (2.2.15)
|
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)
|
||||||
@@ -591,28 +581,23 @@ GEM
|
|||||||
rack (~> 2.2, >= 2.2.4)
|
rack (~> 2.2, >= 2.2.4)
|
||||||
rack-proxy (0.7.7)
|
rack-proxy (0.7.7)
|
||||||
rack
|
rack
|
||||||
rack-session (1.0.2)
|
|
||||||
rack (< 3)
|
|
||||||
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 (1.0.1)
|
rails (7.0.8.7)
|
||||||
rack (< 3)
|
actioncable (= 7.0.8.7)
|
||||||
webrick
|
actionmailbox (= 7.0.8.7)
|
||||||
rails (7.1.5.1)
|
actionmailer (= 7.0.8.7)
|
||||||
actioncable (= 7.1.5.1)
|
actionpack (= 7.0.8.7)
|
||||||
actionmailbox (= 7.1.5.1)
|
actiontext (= 7.0.8.7)
|
||||||
actionmailer (= 7.1.5.1)
|
actionview (= 7.0.8.7)
|
||||||
actionpack (= 7.1.5.1)
|
activejob (= 7.0.8.7)
|
||||||
actiontext (= 7.1.5.1)
|
activemodel (= 7.0.8.7)
|
||||||
actionview (= 7.1.5.1)
|
activerecord (= 7.0.8.7)
|
||||||
activejob (= 7.1.5.1)
|
activestorage (= 7.0.8.7)
|
||||||
activemodel (= 7.1.5.1)
|
activesupport (= 7.0.8.7)
|
||||||
activerecord (= 7.1.5.1)
|
|
||||||
activestorage (= 7.1.5.1)
|
|
||||||
activesupport (= 7.1.5.1)
|
|
||||||
bundler (>= 1.15.0)
|
bundler (>= 1.15.0)
|
||||||
railties (= 7.1.5.1)
|
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
|
||||||
@@ -620,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.1)
|
railties (7.0.8.7)
|
||||||
actionpack (= 7.1.5.1)
|
actionpack (= 7.0.8.7)
|
||||||
activesupport (= 7.1.5.1)
|
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)
|
||||||
@@ -639,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)
|
||||||
@@ -659,7 +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.1)
|
rexml (3.3.9)
|
||||||
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)
|
||||||
@@ -679,36 +663,30 @@ 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)
|
||||||
@@ -720,15 +698,6 @@ GEM
|
|||||||
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.3.1)
|
|
||||||
base64
|
|
||||||
event_stream_parser (~> 1)
|
|
||||||
faraday (>= 1.10.0)
|
|
||||||
faraday-multipart (>= 1)
|
|
||||||
faraday-net_http (>= 1)
|
|
||||||
faraday-retry (>= 1)
|
|
||||||
marcel (~> 1.0)
|
|
||||||
zeitwerk (~> 2)
|
|
||||||
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)
|
||||||
@@ -786,9 +755,6 @@ 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)
|
||||||
@@ -827,7 +793,7 @@ GEM
|
|||||||
stripe (8.5.0)
|
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)
|
||||||
tilt (2.3.0)
|
tilt (2.3.0)
|
||||||
time_diff (0.3.0)
|
time_diff (0.3.0)
|
||||||
activesupport
|
activesupport
|
||||||
@@ -850,10 +816,8 @@ 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)
|
|
||||||
uniform_notifier (1.17.0)
|
|
||||||
uri (1.0.3)
|
uri (1.0.3)
|
||||||
uri_template (0.7.0)
|
uri_template (0.7.0)
|
||||||
valid_email2 (5.2.6)
|
valid_email2 (5.2.6)
|
||||||
@@ -881,9 +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)
|
||||||
webrick (1.9.1)
|
websocket-driver (0.7.6)
|
||||||
websocket-driver (0.7.7)
|
|
||||||
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)
|
||||||
@@ -910,7 +872,6 @@ 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.2.1)
|
|
||||||
annotate
|
annotate
|
||||||
attr_extras
|
attr_extras
|
||||||
audited (~> 5.4, >= 5.4.1)
|
audited (~> 5.4, >= 5.4.1)
|
||||||
@@ -990,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)
|
||||||
@@ -999,7 +960,6 @@ 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
|
||||||
@@ -1014,7 +974,6 @@ 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.17.1)
|
||||||
slack-ruby-client (~> 2.5.2)
|
slack-ruby-client (~> 2.5.2)
|
||||||
spring
|
spring
|
||||||
@@ -1038,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
|
|
||||||
+1
-1
@@ -1 +1 @@
|
|||||||
4.4.0
|
3.13.0
|
||||||
|
|||||||
+1
-1
@@ -1 +1 @@
|
|||||||
3.4.2
|
3.2.0
|
||||||
|
|||||||
@@ -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
|
||||||
|
|||||||
@@ -9,7 +9,7 @@ class Campaigns::CampaignConversationBuilder
|
|||||||
@contact_inbox.lock!
|
@contact_inbox.lock!
|
||||||
|
|
||||||
# We won't send campaigns if a conversation is already present
|
# We won't send campaigns if a conversation is already present
|
||||||
raise 'Conversation already present' if @contact_inbox.reload.conversations.present?
|
raise 'Conversation alread present' if @contact_inbox.reload.conversations.present?
|
||||||
|
|
||||||
@conversation = ::Conversation.create!(conversation_params)
|
@conversation = ::Conversation.create!(conversation_params)
|
||||||
Messages::MessageBuilder.new(@campaign.sender, @conversation, message_params).perform
|
Messages::MessageBuilder.new(@campaign.sender, @conversation, message_params).perform
|
||||||
|
|||||||
@@ -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
|
||||||
|
|||||||
@@ -94,10 +94,11 @@ class Messages::Instagram::BaseMessageBuilder < Messages::Messenger::MessageBuil
|
|||||||
def build_message
|
def build_message
|
||||||
# Duplicate webhook events may be sent for the same message
|
# Duplicate webhook events may be sent for the same message
|
||||||
# when a user is connected to the Instagram account through both Messenger and Instagram login.
|
# when a user is connected to the Instagram account through both Messenger and Instagram login.
|
||||||
# There is chance for echo events to be sent for the same message.
|
|
||||||
# Therefore, we need to check if the message already exists before creating it.
|
# Therefore, we need to check if the message already exists before creating it.
|
||||||
return if message_already_exists?
|
return if message_already_exists?
|
||||||
|
|
||||||
|
return if @outgoing_echo
|
||||||
|
|
||||||
return if message_content.blank? && all_unsupported_files?
|
return if message_content.blank? && all_unsupported_files?
|
||||||
|
|
||||||
@message = conversation.messages.create!(message_params)
|
@message = conversation.messages.create!(message_params)
|
||||||
@@ -152,13 +153,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,103 +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(conversation_filter),
|
|
||||||
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(conversation_filter)
|
|
||||||
# since the base query is ActsAsTaggableOn,
|
|
||||||
# the status :resolved won't automatically be converted to integer status
|
|
||||||
fetch_counts(conversation_filter.merge(status: Conversation.statuses[:resolved]))
|
|
||||||
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('INNER JOIN conversations ON reporting_events.conversation_id = conversations.id')
|
|
||||||
.joins('INNER JOIN taggings ON taggings.taggable_id = conversations.id')
|
|
||||||
.joins('INNER JOIN tags ON taggings.tag_id = tags.id')
|
|
||||||
.where(
|
|
||||||
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
|
|
||||||
@@ -29,11 +29,6 @@ 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
|
||||||
@@ -42,7 +37,7 @@ class Api::V1::Accounts::AgentBotsController < Api::V1::Accounts::BaseController
|
|||||||
end
|
end
|
||||||
|
|
||||||
def permitted_params
|
def permitted_params
|
||||||
params.permit(:name, :description, :outgoing_url, :avatar, :avatar_url, :bot_type, bot_config: {})
|
params.permit(:name, :description, :outgoing_url, :avatar, :avatar_url, :bot_type, bot_config: [:csml_content])
|
||||||
end
|
end
|
||||||
|
|
||||||
def process_avatar_from_url
|
def process_avatar_from_url
|
||||||
|
|||||||
@@ -68,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,79 +0,0 @@
|
|||||||
# frozen_string_literal: true
|
|
||||||
|
|
||||||
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.includes(:inboxes)
|
|
||||||
render json: { assignment_policies: serialize_assignment_policies(@assignment_policies) }
|
|
||||||
end
|
|
||||||
|
|
||||||
def show
|
|
||||||
render json: { assignment_policy: serialize_assignment_policy(@assignment_policy) }
|
|
||||||
end
|
|
||||||
|
|
||||||
def create
|
|
||||||
@assignment_policy = Current.account.assignment_policies.build(assignment_policy_params)
|
|
||||||
|
|
||||||
if @assignment_policy.save
|
|
||||||
render json: { assignment_policy: serialize_assignment_policy(@assignment_policy) }, status: :created
|
|
||||||
else
|
|
||||||
render json: { errors: @assignment_policy.errors.full_messages }, status: :unprocessable_entity
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
def update
|
|
||||||
if @assignment_policy.update(assignment_policy_params)
|
|
||||||
render json: { assignment_policy: serialize_assignment_policy(@assignment_policy) }
|
|
||||||
else
|
|
||||||
render json: { errors: @assignment_policy.errors.full_messages }, status: :unprocessable_entity
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
def destroy
|
|
||||||
if @assignment_policy.destroy
|
|
||||||
head :ok
|
|
||||||
else
|
|
||||||
render json: { errors: @assignment_policy.errors.full_messages }, status: :unprocessable_entity
|
|
||||||
end
|
|
||||||
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
|
|
||||||
|
|
||||||
def serialize_assignment_policy(policy)
|
|
||||||
{
|
|
||||||
id: policy.id,
|
|
||||||
name: policy.name,
|
|
||||||
description: policy.description,
|
|
||||||
assignment_order: policy.assignment_order,
|
|
||||||
conversation_priority: policy.conversation_priority,
|
|
||||||
fair_distribution_limit: policy.fair_distribution_limit,
|
|
||||||
fair_distribution_window: policy.fair_distribution_window,
|
|
||||||
enabled: policy.enabled,
|
|
||||||
inbox_count: policy.inboxes.count,
|
|
||||||
inboxes: policy.inboxes.map { |inbox| { id: inbox.id, name: inbox.name } },
|
|
||||||
created_at: policy.created_at,
|
|
||||||
updated_at: policy.updated_at
|
|
||||||
}
|
|
||||||
end
|
|
||||||
|
|
||||||
def serialize_assignment_policies(policies)
|
|
||||||
policies.map { |policy| serialize_assignment_policy(policy) }
|
|
||||||
end
|
|
||||||
|
|
||||||
def check_authorization
|
|
||||||
authorize(AssignmentPolicy)
|
|
||||||
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,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
|
||||||
|
|
||||||
|
|||||||
@@ -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,7 +14,7 @@ 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_count = resolved_contacts.count
|
||||||
@@ -56,7 +56,7 @@ class Api::V1::Accounts::ContactsController < Api::V1::Accounts::BaseController
|
|||||||
contacts = Current.account.contacts.where(id: ::OnlineStatusTracker
|
contacts = Current.account.contacts.where(id: ::OnlineStatusTracker
|
||||||
.get_available_contact_ids(Current.account.id))
|
.get_available_contact_ids(Current.account.id))
|
||||||
@contacts_count = contacts.count
|
@contacts_count = contacts.count
|
||||||
@contacts = fetch_contacts(contacts)
|
@contacts = contacts.page(@current_page)
|
||||||
end
|
end
|
||||||
|
|
||||||
def show; end
|
def show; end
|
||||||
@@ -122,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
|
||||||
@@ -163,16 +163,9 @@ class Api::V1::Accounts::ContactsController < Api::V1::Accounts::BaseController
|
|||||||
@contact.custom_attributes
|
@contact.custom_attributes
|
||||||
end
|
end
|
||||||
|
|
||||||
def contact_additional_attributes
|
|
||||||
return @contact.additional_attributes.merge(permitted_params[:additional_attributes]) if permitted_params[:additional_attributes]
|
|
||||||
|
|
||||||
@contact.additional_attributes
|
|
||||||
end
|
|
||||||
|
|
||||||
def contact_update_params
|
def contact_update_params
|
||||||
permitted_params.except(:custom_attributes, :avatar_url)
|
# we want the merged custom attributes not the original one
|
||||||
.merge({ custom_attributes: contact_custom_attributes })
|
permitted_params.except(:custom_attributes, :avatar_url).merge({ custom_attributes: contact_custom_attributes })
|
||||||
.merge({ additional_attributes: contact_additional_attributes })
|
|
||||||
end
|
end
|
||||||
|
|
||||||
def set_include_contact_inboxes
|
def set_include_contact_inboxes
|
||||||
|
|||||||
@@ -1,6 +1,4 @@
|
|||||||
class Api::V1::Accounts::Conversations::MessagesController < Api::V1::Accounts::Conversations::BaseController
|
class Api::V1::Accounts::Conversations::MessagesController < Api::V1::Accounts::Conversations::BaseController
|
||||||
before_action :ensure_api_inbox, only: :update
|
|
||||||
|
|
||||||
def index
|
def index
|
||||||
@messages = message_finder.perform
|
@messages = message_finder.perform
|
||||||
end
|
end
|
||||||
@@ -13,11 +11,6 @@ class Api::V1::Accounts::Conversations::MessagesController < Api::V1::Accounts::
|
|||||||
render_could_not_create_error(e.message)
|
render_could_not_create_error(e.message)
|
||||||
end
|
end
|
||||||
|
|
||||||
def update
|
|
||||||
Messages::StatusUpdateService.new(message, permitted_params[:status], permitted_params[:external_error]).perform
|
|
||||||
@message = message
|
|
||||||
end
|
|
||||||
|
|
||||||
def destroy
|
def destroy
|
||||||
ActiveRecord::Base.transaction do
|
ActiveRecord::Base.transaction do
|
||||||
message.update!(content: I18n.t('conversations.messages.deleted'), content_type: :text, content_attributes: { deleted: true })
|
message.update!(content: I18n.t('conversations.messages.deleted'), content_type: :text, content_attributes: { deleted: true })
|
||||||
@@ -28,9 +21,7 @@ class Api::V1::Accounts::Conversations::MessagesController < Api::V1::Accounts::
|
|||||||
def retry
|
def retry
|
||||||
return if message.blank?
|
return if message.blank?
|
||||||
|
|
||||||
service = Messages::StatusUpdateService.new(message, 'sent')
|
message.update!(status: :sent, content_attributes: {})
|
||||||
service.perform
|
|
||||||
message.update!(content_attributes: {})
|
|
||||||
::SendReplyJob.perform_later(message.id)
|
::SendReplyJob.perform_later(message.id)
|
||||||
rescue StandardError => e
|
rescue StandardError => e
|
||||||
render_could_not_create_error(e.message)
|
render_could_not_create_error(e.message)
|
||||||
@@ -65,16 +56,10 @@ class Api::V1::Accounts::Conversations::MessagesController < Api::V1::Accounts::
|
|||||||
end
|
end
|
||||||
|
|
||||||
def permitted_params
|
def permitted_params
|
||||||
params.permit(:id, :target_language, :status, :external_error)
|
params.permit(:id, :target_language)
|
||||||
end
|
end
|
||||||
|
|
||||||
def already_translated_content_available?
|
def already_translated_content_available?
|
||||||
message.translations.present? && message.translations[permitted_params[:target_language]].present?
|
message.translations.present? && message.translations[permitted_params[:target_language]].present?
|
||||||
end
|
end
|
||||||
|
|
||||||
# API inbox check
|
|
||||||
def ensure_api_inbox
|
|
||||||
# Only API inboxes can update messages
|
|
||||||
render json: { error: 'Message status update is only allowed for API inboxes' }, status: :forbidden unless @conversation.inbox.api?
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -124,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
|
||||||
|
|||||||
@@ -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,81 +0,0 @@
|
|||||||
# frozen_string_literal: true
|
|
||||||
|
|
||||||
class Api::V1::Accounts::InboxAssignmentPoliciesController < Api::V1::Accounts::BaseController
|
|
||||||
before_action :fetch_inbox
|
|
||||||
before_action :check_authorization
|
|
||||||
|
|
||||||
def show
|
|
||||||
@inbox_assignment_policy = @inbox.inbox_assignment_policy
|
|
||||||
|
|
||||||
if @inbox_assignment_policy
|
|
||||||
render json: {
|
|
||||||
inbox_assignment_policy: serialize_inbox_assignment_policy(@inbox_assignment_policy)
|
|
||||||
}
|
|
||||||
else
|
|
||||||
render json: {
|
|
||||||
inbox_assignment_policy: nil,
|
|
||||||
message: 'No assignment policy assigned to this inbox'
|
|
||||||
}
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
def create
|
|
||||||
# Remove existing assignment if any
|
|
||||||
@inbox.inbox_assignment_policy&.destroy
|
|
||||||
|
|
||||||
@assignment_policy = Current.account.assignment_policies.find(params[:assignment_policy_id])
|
|
||||||
@inbox_assignment_policy = @inbox.build_inbox_assignment_policy(assignment_policy: @assignment_policy)
|
|
||||||
|
|
||||||
if @inbox_assignment_policy.save
|
|
||||||
render json: {
|
|
||||||
inbox_assignment_policy: serialize_inbox_assignment_policy(@inbox_assignment_policy)
|
|
||||||
}, status: :created
|
|
||||||
else
|
|
||||||
render json: { errors: @inbox_assignment_policy.errors.full_messages }, status: :unprocessable_entity
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
def destroy
|
|
||||||
@inbox_assignment_policy = @inbox.inbox_assignment_policy
|
|
||||||
|
|
||||||
if @inbox_assignment_policy
|
|
||||||
if @inbox_assignment_policy.destroy
|
|
||||||
head :ok
|
|
||||||
else
|
|
||||||
render json: { errors: @inbox_assignment_policy.errors.full_messages }, status: :unprocessable_entity
|
|
||||||
end
|
|
||||||
else
|
|
||||||
render json: { error: 'No assignment policy found for this inbox' }, status: :not_found
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
private
|
|
||||||
|
|
||||||
def fetch_inbox
|
|
||||||
@inbox = Current.account.inboxes.find(params[:inbox_id])
|
|
||||||
end
|
|
||||||
|
|
||||||
def check_authorization
|
|
||||||
authorize(@inbox, :update?)
|
|
||||||
end
|
|
||||||
|
|
||||||
def serialize_inbox_assignment_policy(inbox_assignment_policy)
|
|
||||||
{
|
|
||||||
id: inbox_assignment_policy.id,
|
|
||||||
inbox_id: inbox_assignment_policy.inbox_id,
|
|
||||||
assignment_policy_id: inbox_assignment_policy.assignment_policy_id,
|
|
||||||
assignment_policy: {
|
|
||||||
id: inbox_assignment_policy.assignment_policy.id,
|
|
||||||
name: inbox_assignment_policy.assignment_policy.name,
|
|
||||||
description: inbox_assignment_policy.assignment_policy.description,
|
|
||||||
assignment_order: inbox_assignment_policy.assignment_policy.assignment_order,
|
|
||||||
conversation_priority: inbox_assignment_policy.assignment_policy.conversation_priority,
|
|
||||||
fair_distribution_limit: inbox_assignment_policy.assignment_policy.fair_distribution_limit,
|
|
||||||
fair_distribution_window: inbox_assignment_policy.assignment_policy.fair_distribution_window,
|
|
||||||
enabled: inbox_assignment_policy.assignment_policy.enabled
|
|
||||||
},
|
|
||||||
created_at: inbox_assignment_policy.created_at,
|
|
||||||
updated_at: inbox_assignment_policy.updated_at
|
|
||||||
}
|
|
||||||
end
|
|
||||||
end
|
|
||||||
@@ -42,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
|
||||||
@@ -69,17 +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
|
|
||||||
unless @inbox.channel.is_a?(Channel::Whatsapp)
|
|
||||||
return render status: :unprocessable_entity, json: { error: 'Template sync is only available for WhatsApp channels' }
|
|
||||||
end
|
|
||||||
|
|
||||||
Channels::Whatsapp::TemplatesSyncJob.perform_later(@inbox.channel)
|
|
||||||
render status: :ok, json: { message: 'Template sync initiated successfully' }
|
|
||||||
rescue StandardError => e
|
|
||||||
render status: :internal_server_error, json: { error: e.message }
|
|
||||||
end
|
|
||||||
|
|
||||||
private
|
private
|
||||||
|
|
||||||
def fetch_inbox
|
def fetch_inbox
|
||||||
@@ -92,15 +79,11 @@ class Api::V1::Accounts::InboxesController < Api::V1::Accounts::BaseController
|
|||||||
end
|
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
|
||||||
@@ -138,22 +121,10 @@ class Api::V1::Accounts::InboxesController < Api::V1::Accounts::BaseController
|
|||||||
@inbox.channel.save!
|
@inbox.channel.save!
|
||||||
end
|
end
|
||||||
|
|
||||||
def format_csat_config(config)
|
|
||||||
{
|
|
||||||
display_type: config['display_type'] || 'emoji',
|
|
||||||
message: config['message'] || '',
|
|
||||||
survey_rules: {
|
|
||||||
operator: config.dig('survey_rules', 'operator') || 'contains',
|
|
||||||
values: config.dig('survey_rules', 'values') || []
|
|
||||||
}
|
|
||||||
}
|
|
||||||
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, { survey_rules: [:operator, { values: [] }] }] }]
|
|
||||||
end
|
end
|
||||||
|
|
||||||
def permitted_params(channel_attributes = [])
|
def permitted_params(channel_attributes = [])
|
||||||
|
|||||||
@@ -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
|
||||||
|
|||||||
@@ -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,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,20 +47,6 @@ 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_by(id: blob_id)
|
blob = ActiveStorage::Blob.find_by(id: blob_id)
|
||||||
@@ -73,12 +60,12 @@ 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, :account_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
|
||||||
@@ -101,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)
|
||||||
|
|||||||
@@ -1,87 +0,0 @@
|
|||||||
class Api::V1::Accounts::Whatsapp::AuthorizationsController < Api::V1::Accounts::BaseController
|
|
||||||
before_action :validate_feature_enabled!
|
|
||||||
before_action :fetch_and_validate_inbox, if: -> { params[:inbox_id].present? }
|
|
||||||
|
|
||||||
# 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_feature_enabled!
|
|
||||||
return if Current.account.feature_whatsapp_embedded_signup?
|
|
||||||
|
|
||||||
render json: {
|
|
||||||
success: false,
|
|
||||||
error: 'WhatsApp embedded signup is not enabled for this account'
|
|
||||||
}, status: :forbidden
|
|
||||||
end
|
|
||||||
|
|
||||||
def validate_embedded_signup_params!
|
|
||||||
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
|
|
||||||
@@ -44,9 +44,8 @@ class Api::V1::AccountsController < Api::BaseController
|
|||||||
end
|
end
|
||||||
|
|
||||||
def update
|
def update
|
||||||
@account.assign_attributes(account_params.slice(:name, :locale, :domain, :support_email))
|
@account.assign_attributes(account_params.slice(:name, :locale, :domain, :support_email, :auto_resolve_duration))
|
||||||
@account.custom_attributes.merge!(custom_attributes_params)
|
@account.custom_attributes.merge!(custom_attributes_params)
|
||||||
@account.settings.merge!(settings_params)
|
|
||||||
@account.custom_attributes['onboarding_step'] = 'invite_team' if @account.custom_attributes['onboarding_step'] == 'account_update'
|
@account.custom_attributes['onboarding_step'] = 'invite_team' if @account.custom_attributes['onboarding_step'] == 'account_update'
|
||||||
@account.save!
|
@account.save!
|
||||||
end
|
end
|
||||||
@@ -84,17 +83,13 @@ class Api::V1::AccountsController < Api::BaseController
|
|||||||
end
|
end
|
||||||
|
|
||||||
def account_params
|
def account_params
|
||||||
params.permit(:account_name, :email, :name, :password, :locale, :domain, :support_email, :user_full_name)
|
params.permit(:account_name, :email, :name, :password, :locale, :domain, :support_email, :auto_resolve_duration, :user_full_name)
|
||||||
end
|
end
|
||||||
|
|
||||||
def custom_attributes_params
|
def custom_attributes_params
|
||||||
params.permit(:industry, :company_size, :timezone)
|
params.permit(:industry, :company_size, :timezone)
|
||||||
end
|
end
|
||||||
|
|
||||||
def settings_params
|
|
||||||
params.permit(:auto_resolve_after, :auto_resolve_message, :auto_resolve_ignore_waiting, :audio_transcriptions, :auto_resolve_label)
|
|
||||||
end
|
|
||||||
|
|
||||||
def check_signup_enabled
|
def check_signup_enabled
|
||||||
raise ActionController::RoutingError, 'Not Found' if GlobalConfigService.load('ENABLE_ACCOUNT_SIGNUP', 'false') == 'false'
|
raise ActionController::RoutingError, 'Not Found' if GlobalConfigService.load('ENABLE_ACCOUNT_SIGNUP', 'false') == 'false'
|
||||||
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
|
||||||
|
|||||||
@@ -2,15 +2,10 @@ class Api::V1::Widget::CampaignsController < Api::V1::Widget::BaseController
|
|||||||
skip_before_action :set_contact
|
skip_before_action :set_contact
|
||||||
|
|
||||||
def index
|
def index
|
||||||
account = @web_widget.inbox.account
|
@campaigns = @web_widget
|
||||||
@campaigns = if account.feature_enabled?('campaigns')
|
.inbox
|
||||||
@web_widget
|
.campaigns
|
||||||
.inbox
|
.where(enabled: true, account_id: @web_widget.inbox.account_id)
|
||||||
.campaigns
|
.includes(:sender)
|
||||||
.where(enabled: true, account_id: account.id)
|
|
||||||
.includes(:sender)
|
|
||||||
else
|
|
||||||
[]
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -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]
|
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,10 +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
|
|
||||||
|
|
||||||
private
|
private
|
||||||
|
|
||||||
def check_authorization
|
def check_authorization
|
||||||
|
|||||||
@@ -54,7 +54,7 @@ class Api::V2::AccountsController < Api::BaseController
|
|||||||
end
|
end
|
||||||
|
|
||||||
def account_params
|
def account_params
|
||||||
params.permit(:account_name, :email, :name, :password, :locale, :domain, :support_email, :user_full_name)
|
params.permit(:account_name, :email, :name, :password, :locale, :domain, :support_email, :auto_resolve_duration, :user_full_name)
|
||||||
end
|
end
|
||||||
|
|
||||||
def check_signup_enabled
|
def check_signup_enabled
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
module AccessTokenAuthHelper
|
module AccessTokenAuthHelper
|
||||||
BOT_ACCESSIBLE_ENDPOINTS = {
|
BOT_ACCESSIBLE_ENDPOINTS = {
|
||||||
'api/v1/accounts/conversations' => %w[toggle_status toggle_priority create update custom_attributes],
|
'api/v1/accounts/conversations' => %w[toggle_status toggle_priority create update],
|
||||||
'api/v1/accounts/conversations/messages' => ['create'],
|
'api/v1/accounts/conversations/messages' => ['create'],
|
||||||
'api/v1/accounts/conversations/assignments' => ['create']
|
'api/v1/accounts/conversations/assignments' => ['create']
|
||||||
}.freeze
|
}.freeze
|
||||||
|
|||||||
@@ -14,7 +14,7 @@ module GoogleConcern
|
|||||||
|
|
||||||
private
|
private
|
||||||
|
|
||||||
def scope
|
def base_url
|
||||||
'email profile https://mail.google.com/'
|
ENV.fetch('FRONTEND_URL', 'http://localhost:3000')
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -15,7 +15,7 @@ module MicrosoftConcern
|
|||||||
|
|
||||||
private
|
private
|
||||||
|
|
||||||
def scope
|
def base_url
|
||||||
'offline_access https://outlook.office.com/IMAP.AccessAsUser.All https://outlook.office.com/SMTP.Send openid profile email'
|
ENV.fetch('FRONTEND_URL', 'http://localhost:3000')
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -1,21 +0,0 @@
|
|||||||
module NotionConcern
|
|
||||||
extend ActiveSupport::Concern
|
|
||||||
|
|
||||||
def notion_client
|
|
||||||
app_id = GlobalConfigService.load('NOTION_CLIENT_ID', nil)
|
|
||||||
app_secret = GlobalConfigService.load('NOTION_CLIENT_SECRET', nil)
|
|
||||||
|
|
||||||
::OAuth2::Client.new(app_id, app_secret, {
|
|
||||||
site: 'https://api.notion.com',
|
|
||||||
authorize_url: 'https://api.notion.com/v1/oauth/authorize',
|
|
||||||
token_url: 'https://api.notion.com/v1/oauth/token',
|
|
||||||
auth_scheme: :basic_auth
|
|
||||||
})
|
|
||||||
end
|
|
||||||
|
|
||||||
private
|
|
||||||
|
|
||||||
def scope
|
|
||||||
''
|
|
||||||
end
|
|
||||||
end
|
|
||||||
@@ -15,7 +15,7 @@ class DashboardController < ActionController::Base
|
|||||||
private
|
private
|
||||||
|
|
||||||
def ensure_html_format
|
def ensure_html_format
|
||||||
render json: { error: 'Please use API routes instead of dashboard routes for JSON requests' }, status: :not_acceptable if request.format.json?
|
head :not_acceptable unless request.format.html?
|
||||||
end
|
end
|
||||||
|
|
||||||
def set_global_config
|
def set_global_config
|
||||||
@@ -36,7 +36,7 @@ class DashboardController < ActionController::Base
|
|||||||
'LOGOUT_REDIRECT_LINK',
|
'LOGOUT_REDIRECT_LINK',
|
||||||
'DISABLE_USER_PROFILE_UPDATE',
|
'DISABLE_USER_PROFILE_UPDATE',
|
||||||
'DEPLOYMENT_ENV',
|
'DEPLOYMENT_ENV',
|
||||||
'INSTALLATION_PRICING_PLAN'
|
'CSML_EDITOR_HOST', 'INSTALLATION_PRICING_PLAN'
|
||||||
).merge(app_config)
|
).merge(app_config)
|
||||||
end
|
end
|
||||||
|
|
||||||
@@ -65,10 +65,7 @@ class DashboardController < ActionController::Base
|
|||||||
VAPID_PUBLIC_KEY: VapidService.public_key,
|
VAPID_PUBLIC_KEY: VapidService.public_key,
|
||||||
ENABLE_ACCOUNT_SIGNUP: GlobalConfigService.load('ENABLE_ACCOUNT_SIGNUP', 'false'),
|
ENABLE_ACCOUNT_SIGNUP: GlobalConfigService.load('ENABLE_ACCOUNT_SIGNUP', 'false'),
|
||||||
FB_APP_ID: GlobalConfigService.load('FB_APP_ID', ''),
|
FB_APP_ID: GlobalConfigService.load('FB_APP_ID', ''),
|
||||||
INSTAGRAM_APP_ID: GlobalConfigService.load('INSTAGRAM_APP_ID', ''),
|
|
||||||
FACEBOOK_API_VERSION: GlobalConfigService.load('FACEBOOK_API_VERSION', 'v17.0'),
|
FACEBOOK_API_VERSION: GlobalConfigService.load('FACEBOOK_API_VERSION', 'v17.0'),
|
||||||
WHATSAPP_APP_ID: GlobalConfigService.load('WHATSAPP_APP_ID', ''),
|
|
||||||
WHATSAPP_CONFIGURATION_ID: GlobalConfigService.load('WHATSAPP_CONFIGURATION_ID', ''),
|
|
||||||
IS_ENTERPRISE: ChatwootApp.enterprise?,
|
IS_ENTERPRISE: ChatwootApp.enterprise?,
|
||||||
AZURE_APP_ID: GlobalConfigService.load('AZURE_APP_ID', ''),
|
AZURE_APP_ID: GlobalConfigService.load('AZURE_APP_ID', ''),
|
||||||
GIT_SHA: GIT_HASH
|
GIT_SHA: GIT_HASH
|
||||||
|
|||||||
@@ -21,7 +21,7 @@ class DeviseOverrides::OmniauthCallbacksController < DeviseTokenAuth::OmniauthCa
|
|||||||
|
|
||||||
def sign_up_user
|
def sign_up_user
|
||||||
return redirect_to login_page_url(error: 'no-account-found') unless account_signup_allowed?
|
return redirect_to login_page_url(error: 'no-account-found') unless account_signup_allowed?
|
||||||
return redirect_to login_page_url(error: 'business-account-only') unless validate_signup_email_is_business_domain?
|
return redirect_to login_page_url(error: 'business-account-only') unless validate_business_account?
|
||||||
|
|
||||||
create_account_for_user
|
create_account_for_user
|
||||||
token = @resource.send(:set_reset_password_token)
|
token = @resource.send(:set_reset_password_token)
|
||||||
@@ -53,11 +53,9 @@ class DeviseOverrides::OmniauthCallbacksController < DeviseTokenAuth::OmniauthCa
|
|||||||
).first
|
).first
|
||||||
end
|
end
|
||||||
|
|
||||||
def validate_signup_email_is_business_domain?
|
def validate_business_account?
|
||||||
# return true if the user is a business account, false if it is a blocked domain account
|
# return true if the user is a business account, false if it is a gmail account
|
||||||
Account::SignUpEmailValidationService.new(auth_hash['info']['email']).perform
|
auth_hash['info']['email'].exclude?('@gmail.com')
|
||||||
rescue CustomExceptions::Account::InvalidEmail
|
|
||||||
false
|
|
||||||
end
|
end
|
||||||
|
|
||||||
def create_account_for_user
|
def create_account_for_user
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ class MicrosoftController < ApplicationController
|
|||||||
after_action :set_version_header
|
after_action :set_version_header
|
||||||
|
|
||||||
def identity_association
|
def identity_association
|
||||||
microsoft_identity
|
microsoft_indentity
|
||||||
end
|
end
|
||||||
|
|
||||||
private
|
private
|
||||||
@@ -11,7 +11,7 @@ class MicrosoftController < ApplicationController
|
|||||||
response.headers['Content-Length'] = { associatedApplications: [{ applicationId: @identity_json }] }.to_json.length
|
response.headers['Content-Length'] = { associatedApplications: [{ applicationId: @identity_json }] }.to_json.length
|
||||||
end
|
end
|
||||||
|
|
||||||
def microsoft_identity
|
def microsoft_indentity
|
||||||
@identity_json = GlobalConfigService.load('AZURE_APP_ID', nil)
|
@identity_json = GlobalConfigService.load('AZURE_APP_ID', nil)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -1,36 +0,0 @@
|
|||||||
class Notion::CallbacksController < OauthCallbackController
|
|
||||||
include NotionConcern
|
|
||||||
|
|
||||||
private
|
|
||||||
|
|
||||||
def provider_name
|
|
||||||
'notion'
|
|
||||||
end
|
|
||||||
|
|
||||||
def oauth_client
|
|
||||||
notion_client
|
|
||||||
end
|
|
||||||
|
|
||||||
def handle_response
|
|
||||||
hook = account.hooks.new(
|
|
||||||
access_token: parsed_body['access_token'],
|
|
||||||
status: 'enabled',
|
|
||||||
app_id: 'notion',
|
|
||||||
settings: {
|
|
||||||
token_type: parsed_body['token_type'],
|
|
||||||
workspace_name: parsed_body['workspace_name'],
|
|
||||||
workspace_id: parsed_body['workspace_id'],
|
|
||||||
workspace_icon: parsed_body['workspace_icon'],
|
|
||||||
bot_id: parsed_body['bot_id'],
|
|
||||||
owner: parsed_body['owner']
|
|
||||||
}
|
|
||||||
)
|
|
||||||
|
|
||||||
hook.save!
|
|
||||||
redirect_to notion_redirect_uri
|
|
||||||
end
|
|
||||||
|
|
||||||
def notion_redirect_uri
|
|
||||||
"#{ENV.fetch('FRONTEND_URL', nil)}/app/accounts/#{account.id}/settings/integrations/notion"
|
|
||||||
end
|
|
||||||
end
|
|
||||||
@@ -6,6 +6,7 @@ class OauthCallbackController < ApplicationController
|
|||||||
)
|
)
|
||||||
|
|
||||||
handle_response
|
handle_response
|
||||||
|
::Redis::Alfred.delete(cache_key)
|
||||||
rescue StandardError => e
|
rescue StandardError => e
|
||||||
ChatwootExceptionTracker.new(e).capture_exception
|
ChatwootExceptionTracker.new(e).capture_exception
|
||||||
redirect_to '/'
|
redirect_to '/'
|
||||||
@@ -63,10 +64,13 @@ class OauthCallbackController < ApplicationController
|
|||||||
raise NotImplementedError
|
raise NotImplementedError
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def cache_key
|
||||||
|
"#{provider_name}::#{users_data['email'].downcase}"
|
||||||
|
end
|
||||||
|
|
||||||
def create_channel_with_inbox
|
def create_channel_with_inbox
|
||||||
ActiveRecord::Base.transaction do
|
ActiveRecord::Base.transaction do
|
||||||
channel_email = Channel::Email.create!(email: users_data['email'], account: account)
|
channel_email = Channel::Email.create!(email: users_data['email'], account: account)
|
||||||
|
|
||||||
account.inboxes.create!(
|
account.inboxes.create!(
|
||||||
account: account,
|
account: account,
|
||||||
channel: channel_email,
|
channel: channel_email,
|
||||||
@@ -81,17 +85,12 @@ class OauthCallbackController < ApplicationController
|
|||||||
decoded_token[0]
|
decoded_token[0]
|
||||||
end
|
end
|
||||||
|
|
||||||
def account_from_signed_id
|
def account_id
|
||||||
raise ActionController::BadRequest, 'Missing state variable' if params[:state].blank?
|
::Redis::Alfred.get(cache_key)
|
||||||
|
|
||||||
account = GlobalID::Locator.locate_signed(params[:state])
|
|
||||||
raise 'Invalid or expired state' if account.nil?
|
|
||||||
|
|
||||||
account
|
|
||||||
end
|
end
|
||||||
|
|
||||||
def account
|
def account
|
||||||
@account ||= account_from_signed_id
|
@account ||= Account.find(account_id)
|
||||||
end
|
end
|
||||||
|
|
||||||
# Fallback name, for when name field is missing from users_data
|
# Fallback name, for when name field is missing from users_data
|
||||||
|
|||||||
@@ -1,11 +1,4 @@
|
|||||||
class Platform::Api::V1::AccountsController < PlatformController
|
class Platform::Api::V1::AccountsController < PlatformController
|
||||||
def index
|
|
||||||
@resources = @platform_app.platform_app_permissibles
|
|
||||||
.where(permissible_type: 'Account')
|
|
||||||
.includes(:permissible)
|
|
||||||
.map(&:permissible)
|
|
||||||
end
|
|
||||||
|
|
||||||
def show; end
|
def show; end
|
||||||
|
|
||||||
def create
|
def create
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
class Platform::Api::V1::UsersController < PlatformController
|
class Platform::Api::V1::UsersController < PlatformController
|
||||||
# ref: https://stackoverflow.com/a/45190318/939299
|
# ref: https://stackoverflow.com/a/45190318/939299
|
||||||
# set resource is called for other actions already in platform controller
|
# set resource is called for other actions already in platform controller
|
||||||
# we want to add login and token to that chain as well
|
# we want to add login to that chain as well
|
||||||
before_action(only: [:login, :token]) { set_resource }
|
before_action(only: [:login]) { set_resource }
|
||||||
before_action(only: [:login, :token]) { validate_platform_app_permissible }
|
before_action(only: [:login]) { validate_platform_app_permissible }
|
||||||
|
|
||||||
def show; end
|
def show; end
|
||||||
|
|
||||||
@@ -18,8 +18,6 @@ class Platform::Api::V1::UsersController < PlatformController
|
|||||||
render json: { url: @resource.generate_sso_link }
|
render json: { url: @resource.generate_sso_link }
|
||||||
end
|
end
|
||||||
|
|
||||||
def token; end
|
|
||||||
|
|
||||||
def update
|
def update
|
||||||
@resource.assign_attributes(user_update_params)
|
@resource.assign_attributes(user_update_params)
|
||||||
|
|
||||||
|
|||||||
@@ -1,40 +1,19 @@
|
|||||||
class Public::Api::V1::Portals::ArticlesController < Public::Api::V1::Portals::BaseController
|
class Public::Api::V1::Portals::ArticlesController < Public::Api::V1::Portals::BaseController
|
||||||
before_action :ensure_custom_domain_request, only: [:show, :index]
|
before_action :ensure_custom_domain_request, only: [:show, :index]
|
||||||
before_action :portal
|
before_action :portal
|
||||||
before_action :set_category, except: [:index, :show, :tracking_pixel]
|
before_action :set_category, except: [:index, :show]
|
||||||
before_action :set_article, only: [:show]
|
before_action :set_article, only: [:show]
|
||||||
layout 'portal'
|
layout 'portal'
|
||||||
|
|
||||||
def index
|
def index
|
||||||
@articles = @portal.articles.published.includes(:category, :author)
|
@articles = @portal.articles.published.includes(:category, :author)
|
||||||
|
|
||||||
@articles = @articles.where(locale: permitted_params[:locale]) if permitted_params[:locale].present?
|
|
||||||
|
|
||||||
@articles_count = @articles.count
|
@articles_count = @articles.count
|
||||||
|
|
||||||
search_articles
|
search_articles
|
||||||
order_by_sort_param
|
order_by_sort_param
|
||||||
limit_results
|
limit_results
|
||||||
end
|
end
|
||||||
|
|
||||||
def show
|
def show; end
|
||||||
@og_image_url = helpers.set_og_image_url(@portal.name, @article.title)
|
|
||||||
end
|
|
||||||
|
|
||||||
def tracking_pixel
|
|
||||||
@article = @portal.articles.find_by(slug: permitted_params[:article_slug])
|
|
||||||
return head :not_found unless @article
|
|
||||||
|
|
||||||
@article.increment_view_count if @article.published?
|
|
||||||
|
|
||||||
# Serve the 1x1 tracking pixel with 24-hour private cache
|
|
||||||
# Private cache bypasses CDN but allows browser caching to prevent duplicate views from same user
|
|
||||||
expires_in 24.hours, public: false
|
|
||||||
response.headers['Content-Type'] = 'image/png'
|
|
||||||
|
|
||||||
pixel_path = Rails.public_path.join('assets/images/tracking-pixel.png')
|
|
||||||
send_file pixel_path, type: 'image/png', disposition: 'inline'
|
|
||||||
end
|
|
||||||
|
|
||||||
private
|
private
|
||||||
|
|
||||||
@@ -60,6 +39,7 @@ class Public::Api::V1::Portals::ArticlesController < Public::Api::V1::Portals::B
|
|||||||
|
|
||||||
def set_article
|
def set_article
|
||||||
@article = @portal.articles.find_by(slug: permitted_params[:article_slug])
|
@article = @portal.articles.find_by(slug: permitted_params[:article_slug])
|
||||||
|
@article.increment_view_count if @article.published?
|
||||||
@parsed_content = render_article_content(@article.content)
|
@parsed_content = render_article_content(@article.content)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|||||||
@@ -8,9 +8,7 @@ class Public::Api::V1::Portals::CategoriesController < Public::Api::V1::Portals:
|
|||||||
@categories = @portal.categories.order(position: :asc)
|
@categories = @portal.categories.order(position: :asc)
|
||||||
end
|
end
|
||||||
|
|
||||||
def show
|
def show; end
|
||||||
@og_image_url = helpers.set_og_image_url(@portal.name, @category.name)
|
|
||||||
end
|
|
||||||
|
|
||||||
private
|
private
|
||||||
|
|
||||||
|
|||||||
@@ -4,9 +4,7 @@ class Public::Api::V1::PortalsController < Public::Api::V1::Portals::BaseControl
|
|||||||
before_action :redirect_to_portal_with_locale, only: [:show]
|
before_action :redirect_to_portal_with_locale, only: [:show]
|
||||||
layout 'portal'
|
layout 'portal'
|
||||||
|
|
||||||
def show
|
def show; end
|
||||||
@og_image_url = helpers.set_og_image_url('', @portal.header_text)
|
|
||||||
end
|
|
||||||
|
|
||||||
def sitemap
|
def sitemap
|
||||||
@help_center_url = @portal.custom_domain || ChatwootApp.help_center_root
|
@help_center_url = @portal.custom_domain || ChatwootApp.help_center_root
|
||||||
|
|||||||
@@ -17,12 +17,7 @@ class SlackUploadsController < ApplicationController
|
|||||||
end
|
end
|
||||||
|
|
||||||
def blob_url
|
def blob_url
|
||||||
# Only generate representations for images
|
url_for(@blob.representation(resize_to_fill: [250, nil]))
|
||||||
if @blob.content_type.start_with?('image/')
|
|
||||||
url_for(@blob.representation(resize_to_fill: [250, nil]))
|
|
||||||
else
|
|
||||||
url_for(@blob)
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
|
|
||||||
def avatar_url
|
def avatar_url
|
||||||
|
|||||||
@@ -2,13 +2,6 @@ class SuperAdmin::AccountUsersController < SuperAdmin::ApplicationController
|
|||||||
# Overwrite any of the RESTful controller actions to implement custom behavior
|
# Overwrite any of the RESTful controller actions to implement custom behavior
|
||||||
# For example, you may want to send an email after a foo is updated.
|
# For example, you may want to send an email after a foo is updated.
|
||||||
#
|
#
|
||||||
|
|
||||||
# Since account/user page - account user role attribute links to the show page
|
|
||||||
# Handle with a redirect to the user show page
|
|
||||||
def show
|
|
||||||
redirect_to super_admin_user_path(requested_resource.user)
|
|
||||||
end
|
|
||||||
|
|
||||||
def create
|
def create
|
||||||
resource = resource_class.new(resource_params)
|
resource = resource_class.new(resource_params)
|
||||||
authorize_resource(resource)
|
authorize_resource(resource)
|
||||||
|
|||||||
@@ -66,5 +66,3 @@ class SuperAdmin::AccountsController < SuperAdmin::ApplicationController
|
|||||||
# rubocop:enable Rails/I18nLocaleTexts
|
# rubocop:enable Rails/I18nLocaleTexts
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
SuperAdmin::AccountsController.prepend_mod_with('SuperAdmin::AccountsController')
|
|
||||||
|
|||||||
@@ -32,20 +32,22 @@ class SuperAdmin::AppConfigsController < SuperAdmin::ApplicationController
|
|||||||
end
|
end
|
||||||
|
|
||||||
def allowed_configs
|
def allowed_configs
|
||||||
mapping = {
|
@allowed_configs = case @config
|
||||||
'facebook' => %w[FB_APP_ID FB_VERIFY_TOKEN FB_APP_SECRET IG_VERIFY_TOKEN FACEBOOK_API_VERSION ENABLE_MESSENGER_CHANNEL_HUMAN_AGENT],
|
when 'facebook'
|
||||||
'shopify' => %w[SHOPIFY_CLIENT_ID SHOPIFY_CLIENT_SECRET],
|
%w[FB_APP_ID FB_VERIFY_TOKEN FB_APP_SECRET IG_VERIFY_TOKEN FACEBOOK_API_VERSION ENABLE_MESSENGER_CHANNEL_HUMAN_AGENT]
|
||||||
'microsoft' => %w[AZURE_APP_ID AZURE_APP_SECRET],
|
when 'shopify'
|
||||||
'email' => ['MAILER_INBOUND_EMAIL_DOMAIN'],
|
%w[SHOPIFY_CLIENT_ID SHOPIFY_CLIENT_SECRET]
|
||||||
'linear' => %w[LINEAR_CLIENT_ID LINEAR_CLIENT_SECRET],
|
when 'microsoft'
|
||||||
'slack' => %w[SLACK_CLIENT_ID SLACK_CLIENT_SECRET],
|
%w[AZURE_APP_ID AZURE_APP_SECRET]
|
||||||
'instagram' => %w[INSTAGRAM_APP_ID INSTAGRAM_APP_SECRET INSTAGRAM_VERIFY_TOKEN INSTAGRAM_API_VERSION ENABLE_INSTAGRAM_CHANNEL_HUMAN_AGENT],
|
when 'email'
|
||||||
'whatsapp_embedded' => %w[WHATSAPP_APP_ID WHATSAPP_APP_SECRET WHATSAPP_CONFIGURATION_ID WHATSAPP_API_VERSION],
|
['MAILER_INBOUND_EMAIL_DOMAIN']
|
||||||
'notion' => %w[NOTION_CLIENT_ID NOTION_CLIENT_SECRET],
|
when 'linear'
|
||||||
'google' => %w[GOOGLE_OAUTH_CLIENT_ID GOOGLE_OAUTH_CLIENT_SECRET GOOGLE_OAUTH_REDIRECT_URI]
|
%w[LINEAR_CLIENT_ID LINEAR_CLIENT_SECRET]
|
||||||
}
|
when 'instagram'
|
||||||
|
%w[INSTAGRAM_APP_ID INSTAGRAM_APP_SECRET INSTAGRAM_VERIFY_TOKEN INSTAGRAM_API_VERSION ENABLE_INSTAGRAM_CHANNEL_HUMAN_AGENT]
|
||||||
@allowed_configs = mapping.fetch(@config, %w[ENABLE_ACCOUNT_SIGNUP FIREBASE_PROJECT_ID FIREBASE_CREDENTIALS])
|
else
|
||||||
|
%w[ENABLE_ACCOUNT_SIGNUP FIREBASE_PROJECT_ID FIREBASE_CREDENTIALS]
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|||||||
@@ -7,9 +7,8 @@
|
|||||||
class SuperAdmin::ApplicationController < Administrate::ApplicationController
|
class SuperAdmin::ApplicationController < Administrate::ApplicationController
|
||||||
include ActionView::Helpers::TagHelper
|
include ActionView::Helpers::TagHelper
|
||||||
include ActionView::Context
|
include ActionView::Context
|
||||||
include SuperAdmin::NavigationHelper
|
|
||||||
|
|
||||||
helper_method :render_vue_component, :settings_open?, :settings_pages
|
helper_method :render_vue_component
|
||||||
# authenticiation done via devise : SuperAdmin Model
|
# authenticiation done via devise : SuperAdmin Model
|
||||||
before_action :authenticate_super_admin!
|
before_action :authenticate_super_admin!
|
||||||
|
|
||||||
|
|||||||
@@ -24,14 +24,9 @@ class Twilio::CallbackController < ApplicationController
|
|||||||
:Body,
|
:Body,
|
||||||
:ToCountry,
|
:ToCountry,
|
||||||
:FromState,
|
:FromState,
|
||||||
*Array.new(10) { |i| :"MediaUrl#{i}" },
|
:MediaUrl0,
|
||||||
*Array.new(10) { |i| :"MediaContentType#{i}" },
|
:MediaContentType0,
|
||||||
:MessagingServiceSid,
|
:MessagingServiceSid
|
||||||
:NumMedia,
|
|
||||||
:Latitude,
|
|
||||||
:Longitude,
|
|
||||||
:MessageType,
|
|
||||||
:ProfileName
|
|
||||||
)
|
)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -4,16 +4,7 @@ class Webhooks::InstagramController < ActionController::API
|
|||||||
def events
|
def events
|
||||||
Rails.logger.info('Instagram webhook received events')
|
Rails.logger.info('Instagram webhook received events')
|
||||||
if params['object'].casecmp('instagram').zero?
|
if params['object'].casecmp('instagram').zero?
|
||||||
entry_params = params.to_unsafe_hash[:entry]
|
::Webhooks::InstagramEventsJob.perform_later(params.to_unsafe_hash[:entry])
|
||||||
|
|
||||||
if contains_echo_event?(entry_params)
|
|
||||||
# Add delay to prevent race condition where echo arrives before send message API completes
|
|
||||||
# This avoids duplicate messages when echo comes early during API processing
|
|
||||||
::Webhooks::InstagramEventsJob.set(wait: 2.seconds).perform_later(entry_params)
|
|
||||||
else
|
|
||||||
::Webhooks::InstagramEventsJob.perform_later(entry_params)
|
|
||||||
end
|
|
||||||
|
|
||||||
render json: :ok
|
render json: :ok
|
||||||
else
|
else
|
||||||
Rails.logger.warn("Message is not received from the instagram webhook event: #{params['object']}")
|
Rails.logger.warn("Message is not received from the instagram webhook event: #{params['object']}")
|
||||||
@@ -23,16 +14,6 @@ class Webhooks::InstagramController < ActionController::API
|
|||||||
|
|
||||||
private
|
private
|
||||||
|
|
||||||
def contains_echo_event?(entry_params)
|
|
||||||
return false unless entry_params.is_a?(Array)
|
|
||||||
|
|
||||||
entry_params.any? do |entry|
|
|
||||||
# Check messaging array for echo events
|
|
||||||
messaging_events = entry[:messaging] || []
|
|
||||||
messaging_events.any? { |messaging| messaging.dig(:message, :is_echo).present? }
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
def valid_token?(token)
|
def valid_token?(token)
|
||||||
# Validates against both IG_VERIFY_TOKEN (Instagram channel via Facebook page) and
|
# Validates against both IG_VERIFY_TOKEN (Instagram channel via Facebook page) and
|
||||||
# INSTAGRAM_VERIFY_TOKEN (Instagram channel via direct Instagram login)
|
# INSTAGRAM_VERIFY_TOKEN (Instagram channel via direct Instagram login)
|
||||||
|
|||||||
@@ -9,17 +9,10 @@ class AccountDashboard < Administrate::BaseDashboard
|
|||||||
# on pages throughout the dashboard.
|
# on pages throughout the dashboard.
|
||||||
|
|
||||||
enterprise_attribute_types = if ChatwootApp.enterprise?
|
enterprise_attribute_types = if ChatwootApp.enterprise?
|
||||||
attributes = {
|
{
|
||||||
limits: AccountLimitsField
|
limits: Enterprise::AccountLimitsField,
|
||||||
|
all_features: Enterprise::AccountFeaturesField
|
||||||
}
|
}
|
||||||
|
|
||||||
# Only show manually managed features in Chatwoot Cloud deployment
|
|
||||||
attributes[:manually_managed_features] = ManuallyManagedFeaturesField if ChatwootApp.chatwoot_cloud?
|
|
||||||
|
|
||||||
# Add all_features last so it appears after manually_managed_features
|
|
||||||
attributes[:all_features] = AccountFeaturesField
|
|
||||||
|
|
||||||
attributes
|
|
||||||
else
|
else
|
||||||
{}
|
{}
|
||||||
end
|
end
|
||||||
@@ -53,14 +46,7 @@ class AccountDashboard < Administrate::BaseDashboard
|
|||||||
|
|
||||||
# SHOW_PAGE_ATTRIBUTES
|
# SHOW_PAGE_ATTRIBUTES
|
||||||
# an array of attributes that will be displayed on the model's show page.
|
# an array of attributes that will be displayed on the model's show page.
|
||||||
enterprise_show_page_attributes = if ChatwootApp.enterprise?
|
enterprise_show_page_attributes = ChatwootApp.enterprise? ? %i[custom_attributes limits all_features] : []
|
||||||
attrs = %i[custom_attributes limits]
|
|
||||||
attrs << :manually_managed_features if ChatwootApp.chatwoot_cloud?
|
|
||||||
attrs << :all_features
|
|
||||||
attrs
|
|
||||||
else
|
|
||||||
[]
|
|
||||||
end
|
|
||||||
SHOW_PAGE_ATTRIBUTES = (%i[
|
SHOW_PAGE_ATTRIBUTES = (%i[
|
||||||
id
|
id
|
||||||
name
|
name
|
||||||
@@ -75,14 +61,7 @@ class AccountDashboard < Administrate::BaseDashboard
|
|||||||
# FORM_ATTRIBUTES
|
# FORM_ATTRIBUTES
|
||||||
# an array of attributes that will be displayed
|
# an array of attributes that will be displayed
|
||||||
# on the model's form (`new` and `edit`) pages.
|
# on the model's form (`new` and `edit`) pages.
|
||||||
enterprise_form_attributes = if ChatwootApp.enterprise?
|
enterprise_form_attributes = ChatwootApp.enterprise? ? %i[limits all_features] : []
|
||||||
attrs = %i[limits]
|
|
||||||
attrs << :manually_managed_features if ChatwootApp.chatwoot_cloud?
|
|
||||||
attrs << :all_features
|
|
||||||
attrs
|
|
||||||
else
|
|
||||||
[]
|
|
||||||
end
|
|
||||||
FORM_ATTRIBUTES = (%i[
|
FORM_ATTRIBUTES = (%i[
|
||||||
name
|
name
|
||||||
locale
|
locale
|
||||||
@@ -117,11 +96,6 @@ class AccountDashboard < Administrate::BaseDashboard
|
|||||||
# to prevent an error from being raised (wrong number of arguments)
|
# to prevent an error from being raised (wrong number of arguments)
|
||||||
# Reference: https://github.com/thoughtbot/administrate/pull/2356/files#diff-4e220b661b88f9a19ac527c50d6f1577ef6ab7b0bed2bfdf048e22e6bfa74a05R204
|
# Reference: https://github.com/thoughtbot/administrate/pull/2356/files#diff-4e220b661b88f9a19ac527c50d6f1577ef6ab7b0bed2bfdf048e22e6bfa74a05R204
|
||||||
def permitted_attributes(action)
|
def permitted_attributes(action)
|
||||||
attrs = super + [limits: {}]
|
super + [limits: {}]
|
||||||
|
|
||||||
# Add manually_managed_features to permitted attributes only for Chatwoot Cloud
|
|
||||||
attrs << { manually_managed_features: [] } if ChatwootApp.chatwoot_cloud?
|
|
||||||
|
|
||||||
attrs
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -0,0 +1,7 @@
|
|||||||
|
require 'administrate/field/base'
|
||||||
|
|
||||||
|
class Enterprise::AccountFeaturesField < Administrate::Field::Base
|
||||||
|
def to_s
|
||||||
|
data
|
||||||
|
end
|
||||||
|
end
|
||||||
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
require 'administrate/field/base'
|
require 'administrate/field/base'
|
||||||
|
|
||||||
class AccountLimitsField < Administrate::Field::Base
|
class Enterprise::AccountLimitsField < Administrate::Field::Base
|
||||||
def to_s
|
def to_s
|
||||||
data.present? ? data.to_json : { agents: nil, inboxes: nil, captain_responses: nil, captain_documents: nil }.to_json
|
data.present? ? data.to_json : { agents: nil, inboxes: nil, captain_responses: nil, captain_documents: nil }.to_json
|
||||||
end
|
end
|
||||||
@@ -88,10 +88,7 @@ class ConversationFinder
|
|||||||
|
|
||||||
def find_conversation_by_inbox
|
def find_conversation_by_inbox
|
||||||
@conversations = current_account.conversations
|
@conversations = current_account.conversations
|
||||||
|
@conversations = @conversations.where(inbox_id: @inbox_ids) unless params[:inbox_id].blank? && @is_admin
|
||||||
return unless params[:inbox_id]
|
|
||||||
|
|
||||||
@conversations = @conversations.where(inbox_id: @inbox_ids)
|
|
||||||
end
|
end
|
||||||
|
|
||||||
def find_all_conversations
|
def find_all_conversations
|
||||||
|
|||||||
@@ -15,13 +15,7 @@ class NotificationFinder
|
|||||||
end
|
end
|
||||||
|
|
||||||
def unread_count
|
def unread_count
|
||||||
if type_included?('read')
|
@notifications.where(read_at: nil).count
|
||||||
# If we're including read notifications, filter to unread
|
|
||||||
@notifications.where(read_at: nil).count
|
|
||||||
else
|
|
||||||
# Already filtered to unread notifications, just count
|
|
||||||
@notifications.count
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
|
|
||||||
def count
|
def count
|
||||||
@@ -33,7 +27,7 @@ class NotificationFinder
|
|||||||
def set_up
|
def set_up
|
||||||
find_all_notifications
|
find_all_notifications
|
||||||
filter_snoozed_notifications
|
filter_snoozed_notifications
|
||||||
filter_read_notifications
|
fitler_read_notifications
|
||||||
end
|
end
|
||||||
|
|
||||||
def find_all_notifications
|
def find_all_notifications
|
||||||
@@ -44,7 +38,7 @@ class NotificationFinder
|
|||||||
@notifications = @notifications.where(snoozed_until: nil) unless type_included?('snoozed')
|
@notifications = @notifications.where(snoozed_until: nil) unless type_included?('snoozed')
|
||||||
end
|
end
|
||||||
|
|
||||||
def filter_read_notifications
|
def fitler_read_notifications
|
||||||
@notifications = @notifications.where(read_at: nil) unless type_included?('read')
|
@notifications = @notifications.where(read_at: nil) unless type_included?('read')
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|||||||
@@ -36,13 +36,9 @@ module Api::V2::Accounts::ReportsHelper
|
|||||||
end
|
end
|
||||||
|
|
||||||
def generate_labels_report
|
def generate_labels_report
|
||||||
reports = V2::Reports::LabelSummaryBuilder.new(
|
Current.account.labels.map do |label|
|
||||||
account: Current.account,
|
label_report = report_builder({ type: :label, id: label.id }).short_summary
|
||||||
params: build_params({})
|
[label.title] + generate_readable_report_metrics(label_report)
|
||||||
).build
|
|
||||||
|
|
||||||
reports.map do |report|
|
|
||||||
[report[:name]] + generate_readable_report_metrics(report)
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|||||||
@@ -1,13 +1,9 @@
|
|||||||
module MessageFormatHelper
|
module MessageFormatHelper
|
||||||
|
include RegexHelper
|
||||||
|
|
||||||
def transform_user_mention_content(message_content)
|
def transform_user_mention_content(message_content)
|
||||||
# attachment message without content, message_content is nil
|
# attachment message without content, message_content is nil
|
||||||
return '' unless message_content.presence
|
message_content.presence ? message_content.gsub(MENTION_REGEX, '\1') : ''
|
||||||
|
|
||||||
# Use CommonMarker to convert markdown to plain text for notifications
|
|
||||||
# This handles all markdown formatting (links, bold, italic, etc.) not just mentions
|
|
||||||
# Converts: [@👍 customer support](mention://team/1/%F0%9F%91%8D%20customer%20support)
|
|
||||||
# To: @👍 customer support
|
|
||||||
CommonMarker.render_doc(message_content).to_plaintext.strip
|
|
||||||
end
|
end
|
||||||
|
|
||||||
def render_message_content(message_content)
|
def render_message_content(message_content)
|
||||||
|
|||||||
@@ -1,21 +1,4 @@
|
|||||||
module PortalHelper
|
module PortalHelper
|
||||||
def set_og_image_url(portal_name, title)
|
|
||||||
cdn_url = GlobalConfig.get('OG_IMAGE_CDN_URL')['OG_IMAGE_CDN_URL']
|
|
||||||
return if cdn_url.blank?
|
|
||||||
|
|
||||||
client_ref = GlobalConfig.get('OG_IMAGE_CLIENT_REF')['OG_IMAGE_CLIENT_REF']
|
|
||||||
|
|
||||||
uri = URI.parse(cdn_url)
|
|
||||||
uri.path = '/og'
|
|
||||||
uri.query = URI.encode_www_form(
|
|
||||||
clientRef: client_ref,
|
|
||||||
title: title,
|
|
||||||
portalName: portal_name
|
|
||||||
)
|
|
||||||
|
|
||||||
uri.to_s
|
|
||||||
end
|
|
||||||
|
|
||||||
def generate_portal_bg_color(portal_color, theme)
|
def generate_portal_bg_color(portal_color, theme)
|
||||||
base_color = theme == 'dark' ? 'black' : 'white'
|
base_color = theme == 'dark' ? 'black' : 'white'
|
||||||
"color-mix(in srgb, #{portal_color} 20%, #{base_color})"
|
"color-mix(in srgb, #{portal_color} 20%, #{base_color})"
|
||||||
|
|||||||
@@ -15,7 +15,7 @@ module SuperAdmin::AccountFeaturesHelper
|
|||||||
end
|
end
|
||||||
|
|
||||||
def self.filter_internal_features(features)
|
def self.filter_internal_features(features)
|
||||||
return features if ChatwootApp.chatwoot_cloud?
|
return features if GlobalConfig.get_value('DEPLOYMENT_ENV') == 'cloud'
|
||||||
|
|
||||||
internal_features = account_features.select { |f| f['chatwoot_internal'] }.pluck('name')
|
internal_features = account_features.select { |f| f['chatwoot_internal'] }.pluck('name')
|
||||||
features.except(*internal_features)
|
features.except(*internal_features)
|
||||||
|
|||||||
@@ -1,16 +0,0 @@
|
|||||||
module SuperAdmin::NavigationHelper
|
|
||||||
def settings_open?
|
|
||||||
params[:controller].in? %w[super_admin/settings super_admin/app_configs]
|
|
||||||
end
|
|
||||||
|
|
||||||
def settings_pages
|
|
||||||
features = SuperAdmin::FeaturesHelper.available_features.select do |_feature, attrs|
|
|
||||||
attrs['config_key'].present? && attrs['enabled']
|
|
||||||
end
|
|
||||||
|
|
||||||
# Add general at the beginning
|
|
||||||
general_feature = [['general', { 'config_key' => 'general', 'name' => 'General' }]]
|
|
||||||
|
|
||||||
general_feature + features.to_a
|
|
||||||
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