# Pull Request Template ## Description This PR adds an endpoint to fetch all attachments shared with or by a contact across all of their conversations. Results are scoped based on the access: * Admins can access all attachments * Agents can access attachments only from inboxes they belong to * Custom role agents are further filtered based on their conversation permissions Each attachment payload includes `conversation_id`, allowing the UI to deep-link back to the source conversation. Added `GET /api/v1/accounts/:account_id/contacts/:contact_id/attachments` under the existing contacts scope. Fixes https://linear.app/chatwoot/issue/CW-7021/add-media-view-to-the-contact-details-page ## Type of change - [x] New feature (non-breaking change which adds functionality) ## Checklist: - [x] My code follows the style guidelines of this project - [x] I have performed a self-review of my code - [x] I have commented on my code, particularly in hard-to-understand areas - [ ] I have made corresponding changes to the documentation - [x] My changes generate no new warnings - [x] I have added tests that prove my fix is effective or that my feature works - [x] New and existing unit tests pass locally with my changes - [ ] Any dependent changes have been merged and published in downstream modules --------- Co-authored-by: Sojan Jose <sojan@pepalo.com>
85 lines
3.5 KiB
Ruby
85 lines
3.5 KiB
Ruby
require 'rails_helper'
|
|
|
|
RSpec.describe '/api/v1/accounts/{account.id}/contacts/:id/attachments', type: :request do
|
|
let(:account) { create(:account) }
|
|
let(:contact) { create(:contact, account: account) }
|
|
let(:inbox_1) { create(:inbox, account: account) }
|
|
let(:inbox_2) { create(:inbox, account: account) }
|
|
let(:contact_inbox_1) { create(:contact_inbox, contact: contact, inbox: inbox_1) }
|
|
let(:contact_inbox_2) { create(:contact_inbox, contact: contact, inbox: inbox_2) }
|
|
let(:admin) { create(:user, account: account, role: :administrator) }
|
|
let(:agent) { create(:user, account: account, role: :agent) }
|
|
let(:unknown) { create(:user, account: account, role: nil) }
|
|
|
|
before do
|
|
create(:inbox_member, user: agent, inbox: inbox_1)
|
|
|
|
conversation_1 = create(:conversation, account: account, inbox: inbox_1, contact: contact, contact_inbox: contact_inbox_1)
|
|
conversation_2 = create(:conversation, account: account, inbox: inbox_2, contact: contact, contact_inbox: contact_inbox_2)
|
|
|
|
create(:message, :with_attachment, conversation: conversation_1, account: account, inbox: inbox_1, message_type: 'incoming')
|
|
create(:message, :with_attachment, conversation: conversation_2, account: account, inbox: inbox_2, message_type: 'incoming')
|
|
end
|
|
|
|
describe 'GET /api/v1/accounts/{account.id}/contacts/:id/attachments' do
|
|
context 'when unauthenticated user' do
|
|
it 'returns unauthorized' do
|
|
get "/api/v1/accounts/#{account.id}/contacts/#{contact.id}/attachments"
|
|
expect(response).to have_http_status(:unauthorized)
|
|
end
|
|
end
|
|
|
|
context 'when user is logged in' do
|
|
context 'with user as administrator' do
|
|
it 'returns attachments from all the contact conversations' do
|
|
get "/api/v1/accounts/#{account.id}/contacts/#{contact.id}/attachments",
|
|
headers: admin.create_new_auth_token
|
|
|
|
expect(response).to have_http_status(:success)
|
|
json_response = response.parsed_body
|
|
|
|
expect(json_response['payload'].length).to eq 2
|
|
expect(json_response['meta']['total_count']).to eq 2
|
|
end
|
|
|
|
it 'serialises the conversation display id as conversation_id' do
|
|
conversation = contact.conversations.first
|
|
|
|
get "/api/v1/accounts/#{account.id}/contacts/#{contact.id}/attachments",
|
|
headers: admin.create_new_auth_token
|
|
|
|
payload = response.parsed_body['payload']
|
|
attachment = payload.find { |a| a['conversation_id'] == conversation.display_id }
|
|
expect(attachment).not_to be_nil
|
|
expect(attachment).to include('id', 'message_id', 'data_url', 'file_type', 'created_at', 'sender')
|
|
end
|
|
end
|
|
|
|
context 'with user as agent' do
|
|
it 'returns attachments only from inboxes the agent has access to' do
|
|
get "/api/v1/accounts/#{account.id}/contacts/#{contact.id}/attachments",
|
|
headers: agent.create_new_auth_token
|
|
|
|
expect(response).to have_http_status(:success)
|
|
json_response = response.parsed_body
|
|
|
|
expect(json_response['payload'].length).to eq 1
|
|
expect(json_response['meta']['total_count']).to eq 1
|
|
end
|
|
end
|
|
|
|
context 'with user as unknown role' do
|
|
it 'returns no attachments' do
|
|
get "/api/v1/accounts/#{account.id}/contacts/#{contact.id}/attachments",
|
|
headers: unknown.create_new_auth_token
|
|
|
|
expect(response).to have_http_status(:success)
|
|
json_response = response.parsed_body
|
|
|
|
expect(json_response['payload']).to be_empty
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|