Some checks failed
Lock Threads / action (push) Has been cancelled
Mark stale issues and pull requests / stale (push) Has been cancelled
Publish Chatwoot EE docker images / build (linux/amd64, ubuntu-latest) (push) Has been cancelled
Publish Chatwoot EE docker images / build (linux/arm64, ubuntu-22.04-arm) (push) Has been cancelled
Publish Chatwoot EE docker images / merge (push) Has been cancelled
Publish Chatwoot CE docker images / build (linux/amd64, ubuntu-latest) (push) Has been cancelled
Publish Chatwoot CE docker images / build (linux/arm64, ubuntu-22.04-arm) (push) Has been cancelled
Publish Chatwoot CE docker images / merge (push) Has been cancelled
Run Chatwoot CE spec / lint-backend (push) Has been cancelled
Run Chatwoot CE spec / lint-frontend (push) Has been cancelled
Run Chatwoot CE spec / frontend-tests (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (0, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (1, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (10, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (11, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (12, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (13, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (14, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (15, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (2, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (3, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (4, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (5, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (6, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (7, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (8, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (9, 16) (push) Has been cancelled
Run Linux nightly installer / nightly (push) Has been cancelled
- Add Logistics component with progress tracking - Add OrderDetail component for order information - Support data-driven steps and actions - Add blue color scale to widget SCSS - Fix node overflow and progress bar rendering issues - Add English translations for dashboard components Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
69 lines
2.0 KiB
Ruby
69 lines
2.0 KiB
Ruby
class Messages::MentionService
|
|
pattr_initialize [:message!]
|
|
|
|
def perform
|
|
return unless valid_mention_message?(message)
|
|
|
|
validated_mentioned_ids = filter_mentioned_ids_by_inbox
|
|
return if validated_mentioned_ids.blank?
|
|
|
|
Conversations::UserMentionJob.perform_later(validated_mentioned_ids, message.conversation.id, message.account.id)
|
|
generate_notifications_for_mentions(validated_mentioned_ids)
|
|
add_mentioned_users_as_participants(validated_mentioned_ids)
|
|
end
|
|
|
|
private
|
|
|
|
def valid_mention_message?(message)
|
|
message.private? && message.content.present? && mentioned_ids.present?
|
|
end
|
|
|
|
def mentioned_ids
|
|
user_mentions = message.content.scan(%r{\(mention://user/(\d+)/(.+?)\)}).map(&:first)
|
|
team_mentions = message.content.scan(%r{\(mention://team/(\d+)/(.+?)\)}).map(&:first)
|
|
|
|
expanded_user_ids = expand_team_mentions_to_users(team_mentions)
|
|
|
|
(user_mentions + expanded_user_ids).uniq
|
|
end
|
|
|
|
def expand_team_mentions_to_users(team_ids)
|
|
return [] if team_ids.blank?
|
|
|
|
message.inbox.account.teams
|
|
.joins(:team_members)
|
|
.where(id: team_ids)
|
|
.pluck('team_members.user_id')
|
|
.map(&:to_s)
|
|
end
|
|
|
|
def valid_mentionable_user_ids
|
|
@valid_mentionable_user_ids ||= begin
|
|
inbox = message.inbox
|
|
inbox.account.administrators.pluck(:id) + inbox.members.pluck(:id)
|
|
end
|
|
end
|
|
|
|
def filter_mentioned_ids_by_inbox
|
|
mentioned_ids & valid_mentionable_user_ids.map(&:to_s)
|
|
end
|
|
|
|
def generate_notifications_for_mentions(validated_mentioned_ids)
|
|
validated_mentioned_ids.each do |user_id|
|
|
NotificationBuilder.new(
|
|
notification_type: 'conversation_mention',
|
|
user: User.find(user_id),
|
|
account: message.account,
|
|
primary_actor: message.conversation,
|
|
secondary_actor: message
|
|
).perform
|
|
end
|
|
end
|
|
|
|
def add_mentioned_users_as_participants(validated_mentioned_ids)
|
|
validated_mentioned_ids.each do |user_id|
|
|
message.conversation.conversation_participants.find_or_create_by(user_id: user_id)
|
|
end
|
|
end
|
|
end
|