chore: Add Contact Note APIs (#3266)

This commit is contained in:
Sojan Jose
2021-10-24 12:40:30 +05:30
committed by GitHub
parent 19855a90e2
commit 06289b03ea
13 changed files with 191 additions and 15 deletions

View File

@@ -0,0 +1,9 @@
class Api::V1::Accounts::Contacts::BaseController < Api::V1::Accounts::BaseController
before_action :ensure_contact
private
def ensure_contact
@contact = Current.account.contacts.find(params[:contact_id])
end
end

View File

@@ -1,5 +1,4 @@
class Api::V1::Accounts::Contacts::ContactInboxesController < Api::V1::Accounts::BaseController
before_action :ensure_contact
class Api::V1::Accounts::Contacts::ContactInboxesController < Api::V1::Accounts::Contacts::BaseController
before_action :ensure_inbox, only: [:create]
def create
@@ -13,8 +12,4 @@ class Api::V1::Accounts::Contacts::ContactInboxesController < Api::V1::Accounts:
@inbox = Current.account.inboxes.find(params[:inbox_id])
authorize @inbox, :show?
end
def ensure_contact
@contact = Current.account.contacts.find(params[:contact_id])
end
end

View File

@@ -1,8 +1,8 @@
class Api::V1::Accounts::Contacts::ConversationsController < Api::V1::Accounts::BaseController
class Api::V1::Accounts::Contacts::ConversationsController < Api::V1::Accounts::Contacts::BaseController
def index
@conversations = Current.account.conversations.includes(
:assignee, :contact, :inbox, :taggings
).where(inbox_id: inbox_ids, contact_id: permitted_params[:contact_id])
).where(inbox_id: inbox_ids, contact_id: @contact.id)
end
private
@@ -14,8 +14,4 @@ class Api::V1::Accounts::Contacts::ConversationsController < Api::V1::Accounts::
[]
end
end
def permitted_params
params.permit(:contact_id)
end
end

View File

@@ -1,13 +1,13 @@
class Api::V1::Accounts::Contacts::LabelsController < Api::V1::Accounts::BaseController
class Api::V1::Accounts::Contacts::LabelsController < Api::V1::Accounts::Contacts::BaseController
include LabelConcern
private
def model
@model ||= Current.account.contacts.find(permitted_params[:contact_id])
@model ||= @contact
end
def permitted_params
params.permit(:contact_id, labels: [])
params.permit(labels: [])
end
end

View File

@@ -0,0 +1,32 @@
class Api::V1::Accounts::Contacts::NotesController < Api::V1::Accounts::Contacts::BaseController
before_action :note, except: [:index, :create]
def index
@notes = @contact.notes.includes(:user)
end
def create
@note = @contact.notes.create!(note_params)
end
def destroy
@note.destroy
head :ok
end
def show; end
def update
@note.update(note_params)
end
private
def note
@note ||= @contact.notes.find(params[:id])
end
def note_params
params.require(:note).permit(:content).merge({ contact_id: @contact.id, user_id: Current.user.id })
end
end

View File

@@ -23,6 +23,7 @@
# fk_rails_... (user_id => users.id)
#
class Note < ApplicationRecord
before_validation :ensure_account_id
validates :content, presence: true
validates :account_id, presence: true
validates :contact_id, presence: true
@@ -31,4 +32,10 @@ class Note < ApplicationRecord
belongs_to :account
belongs_to :contact
belongs_to :user
private
def ensure_account_id
self.account_id = contact&.account_id
end
end

View File

@@ -0,0 +1 @@
json.partial! 'api/v1/models/note.json.jbuilder', resource: @note

View File

@@ -0,0 +1,3 @@
json.array! @notes do |note|
json.partial! 'api/v1/models/note.json.jbuilder', resource: note
end

View File

@@ -0,0 +1 @@
json.partial! 'api/v1/models/note.json.jbuilder', resource: @note

View File

@@ -0,0 +1 @@
json.partial! 'api/v1/models/note.json.jbuilder', resource: @note

View File

@@ -0,0 +1,9 @@
json.id resource.id
json.content resource.content
json.account_id json.account_id
json.contact_id json.contact_id
json.user do
json.partial! 'api/v1/models/agent.json.jbuilder', resource: resource.user
end
json.created_at resource.created_at
json.updated_at resource.updated_at