summaryrefslogtreecommitdiff
path: root/app/services/customer_relations/contacts/create_service.rb
blob: 2fabc51eebfa6fa796b49fc2e2a046e4e6a0a7d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# frozen_string_literal: true

module CustomerRelations
  module Contacts
    class CreateService < BaseService
      def execute
        return error_no_permissions unless allowed?
        return error_organization_invalid unless organization_valid?

        contact = Contact.create(params.merge(group_id: group.id))
        return error_creating(contact) unless contact.persisted?

        ServiceResponse.success(payload: contact)
      end

      private

      def error_creating(contact)
        error(contact&.errors&.full_messages || 'Failed to create contact')
      end
    end
  end
end