Class: Mutations::WorkItems::Create

Inherits:
BaseMutation
  • Object
show all
Includes:
FindsNamespace, SpamProtection, SharedArguments, Widgetable
Defined in:
app/graphql/mutations/work_items/create.rb

Constant Summary collapse

MUTUALLY_EXCLUSIVE_ARGUMENTS_ERROR =
'Please provide either projectPath or namespacePath argument, but not both.'
DISABLED_FF_ERROR =
'create_group_level_work_items feature flag is disabled. Only project paths allowed.'

Constants included from SpamProtection

SpamProtection::NEEDS_CAPTCHA_RESPONSE_MESSAGE, SpamProtection::NeedsCaptchaResponseError, SpamProtection::SPAM_DISALLOWED_MESSAGE, SpamProtection::SpamActionError, SpamProtection::SpamDisallowedError

Constants inherited from BaseMutation

BaseMutation::ERROR_MESSAGE

Constants included from Gitlab::Graphql::Authorize::AuthorizeResource

Gitlab::Graphql::Authorize::AuthorizeResource::ConfigurationError, Gitlab::Graphql::Authorize::AuthorizeResource::RESOURCE_ACCESS_ERROR

Instance Method Summary collapse

Methods included from Widgetable

#extract_widget_params!

Methods included from Spam::Concerns::HasSpamActionResponseFields

#spam_action_response_fields

Methods inherited from BaseMutation

#api_user?, authorization, authorization_scopes, authorized?, authorizes_object?, #current_user, #errors_on_object, #load_application_object, #read_only?, #unauthorized_object

Methods included from Gitlab::Graphql::Authorize::AuthorizeResource

#authorize!, #authorized_find!, #authorized_resource?, #find_object, #raise_resource_not_available_error!

Instance Method Details

#ready?(**args) ⇒ Boolean

Returns:

  • (Boolean)


71
72
73
74
75
76
77
# File 'app/graphql/mutations/work_items/create.rb', line 71

def ready?(**args)
  if args.slice(:project_path, :namespace_path)&.length != 1
    raise Gitlab::Graphql::Errors::ArgumentError, MUTUALLY_EXCLUSIVE_ARGUMENTS_ERROR
  end

  super
end

#resolve(project_path: nil, namespace_path: nil, **attributes) ⇒ Object



79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
# File 'app/graphql/mutations/work_items/create.rb', line 79

def resolve(project_path: nil, namespace_path: nil, **attributes)
  container_path = project_path || namespace_path
  container = authorized_find!(container_path)
  params = params_with_work_item_type(attributes).merge(author_id: current_user.id)
  type = params[:work_item_type]
  raise_resource_not_available_error! unless type

  check_feature_available!(container, type)
  widget_params = extract_widget_params!(type, params, container)

  create_result = ::WorkItems::CreateService.new(
    container: container,
    current_user: current_user,
    params: params,
    widget_params: widget_params
  ).execute

  check_spam_action_response!(create_result[:work_item]) if create_result[:work_item]

  {
    work_item: create_result.success? ? create_result[:work_item] : nil,
    errors: create_result.errors
  }
end