debian-mirror-gitlab/app/graphql/mutations/merge_requests/update.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

68 lines
2.1 KiB
Ruby
Raw Normal View History

2020-07-28 23:09:34 +05:30
# frozen_string_literal: true
module Mutations
module MergeRequests
class Update < Base
graphql_name 'MergeRequestUpdate'
description 'Update attributes of a merge request'
2021-10-27 15:23:28 +05:30
argument :title, GraphQL::Types::String,
2020-07-28 23:09:34 +05:30
required: false,
description: copy_field_description(Types::MergeRequestType, :title)
2021-10-27 15:23:28 +05:30
argument :target_branch, GraphQL::Types::String,
2020-07-28 23:09:34 +05:30
required: false,
description: copy_field_description(Types::MergeRequestType, :target_branch)
2021-10-27 15:23:28 +05:30
argument :description, GraphQL::Types::String,
2020-07-28 23:09:34 +05:30
required: false,
description: copy_field_description(Types::MergeRequestType, :description)
2021-03-11 19:13:27 +05:30
argument :state, ::Types::MergeRequestStateEventEnum,
required: false,
as: :state_event,
2021-10-27 15:23:28 +05:30
description: 'Action to perform to change the state.'
2021-03-11 19:13:27 +05:30
2023-04-23 21:23:45 +05:30
argument :time_estimate, GraphQL::Types::String,
required: false,
description: 'Estimated time to complete the merge request, or `0` to remove the current estimate.'
2021-03-11 19:13:27 +05:30
def resolve(project_path:, iid:, **args)
merge_request = authorized_find!(project_path: project_path, iid: iid)
2023-04-23 21:23:45 +05:30
args = parse_arguments(args)
2020-07-28 23:09:34 +05:30
::MergeRequests::UpdateService
2023-04-23 21:23:45 +05:30
.new(project: merge_request.project, current_user: current_user, params: args)
2020-07-28 23:09:34 +05:30
.execute(merge_request)
errors = errors_on_object(merge_request)
{
merge_request: merge_request.reset,
errors: errors
}
end
2023-04-23 21:23:45 +05:30
def ready?(time_estimate: nil, **args)
if !time_estimate.nil? && Gitlab::TimeTrackingFormatter.parse(time_estimate, keep_zero: true).nil?
raise Gitlab::Graphql::Errors::ArgumentError,
'timeEstimate must be formatted correctly, for example `1h 30m`'
end
super
end
private
def parse_arguments(args)
unless args[:time_estimate].nil?
args[:time_estimate] = Gitlab::TimeTrackingFormatter.parse(args[:time_estimate], keep_zero: true)
end
args.compact
end
2020-07-28 23:09:34 +05:30
end
end
end