12345678910111213141516171819202122232425262728293031323334353637383940 |
- # Copyright (C) 2012-2024 Zammad Foundation, https://zammad-foundation.org/
- module Gql::Mutations
- class Ticket::Update < BaseMutation
- include Gql::Mutations::Ticket::Concerns::HandlesGroup
- description 'Update a ticket.'
- argument :ticket_id, GraphQL::Types::ID, loads: Gql::Types::TicketType, description: 'The ticket to be updated'
- argument :input, Gql::Types::Input::Ticket::UpdateInputType, description: 'The ticket data'
- argument :meta, Gql::Types::Input::Ticket::UpdateMetaInputType, required: false, description: 'The ticket metadata'
- field :ticket, Gql::Types::TicketType, description: 'The updated ticket. If this is present but empty, the mutation was successful but the user has no rights to view the updated ticket.'
- def self.authorize(_obj, ctx)
- ctx.current_user.permissions?(['ticket.agent', 'ticket.customer'])
- end
- def resolve(ticket:, input:, meta: nil)
- return group_has_no_email_error if !group_has_email?(input: input)
- {
- ticket: Service::Ticket::Update
- .new(current_user: context.current_user)
- .execute(ticket: ticket, ticket_data: input, skip_validators: meta&.dig(:skip_validators), macro: meta&.dig(:macro))
- }
- rescue Exceptions::InvalidAttribute => e
- field = e.attribute == 'email_recipient' ? 'article.to' : e.attribute
- error_response({ field:, message: e.message })
- rescue => e
- raise e if !e.class.name.starts_with?('Service::Ticket::Update::Validator')
- error_response(
- message: e.message,
- exception: e.class,
- )
- end
- end
- end
|