2020-01-01 13:55:28 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Mutations
|
|
|
|
module Snippets
|
|
|
|
class Create < BaseMutation
|
2020-06-23 00:09:42 +05:30
|
|
|
include ResolvesProject
|
2020-01-01 13:55:28 +05:30
|
|
|
|
|
|
|
graphql_name 'CreateSnippet'
|
|
|
|
|
|
|
|
field :snippet,
|
|
|
|
Types::SnippetType,
|
|
|
|
null: true,
|
|
|
|
description: 'The snippet after mutation'
|
|
|
|
|
|
|
|
argument :title, GraphQL::STRING_TYPE,
|
|
|
|
required: true,
|
|
|
|
description: 'Title of the snippet'
|
|
|
|
|
|
|
|
argument :file_name, GraphQL::STRING_TYPE,
|
|
|
|
required: false,
|
|
|
|
description: 'File name of the snippet'
|
|
|
|
|
|
|
|
argument :content, GraphQL::STRING_TYPE,
|
2020-07-28 23:09:34 +05:30
|
|
|
required: false,
|
2020-01-01 13:55:28 +05:30
|
|
|
description: 'Content of the snippet'
|
|
|
|
|
|
|
|
argument :description, GraphQL::STRING_TYPE,
|
|
|
|
required: false,
|
|
|
|
description: 'Description of the snippet'
|
|
|
|
|
|
|
|
argument :visibility_level, Types::VisibilityLevelsEnum,
|
|
|
|
description: 'The visibility level of the snippet',
|
|
|
|
required: true
|
|
|
|
|
|
|
|
argument :project_path, GraphQL::ID_TYPE,
|
|
|
|
required: false,
|
|
|
|
description: 'The project full path the snippet is associated with'
|
|
|
|
|
2020-05-24 23:13:21 +05:30
|
|
|
argument :uploaded_files, [GraphQL::STRING_TYPE],
|
|
|
|
required: false,
|
|
|
|
description: 'The paths to files uploaded in the snippet description'
|
|
|
|
|
2020-07-28 23:09:34 +05:30
|
|
|
argument :files, [Types::Snippets::FileInputType],
|
|
|
|
description: "The snippet files to create",
|
|
|
|
required: false
|
|
|
|
|
2020-01-01 13:55:28 +05:30
|
|
|
def resolve(args)
|
|
|
|
project_path = args.delete(:project_path)
|
|
|
|
|
|
|
|
if project_path.present?
|
|
|
|
project = find_project!(project_path: project_path)
|
|
|
|
elsif !can_create_personal_snippet?
|
2020-03-13 15:44:24 +05:30
|
|
|
raise_resource_not_available_error!
|
2020-01-01 13:55:28 +05:30
|
|
|
end
|
|
|
|
|
2020-03-13 15:44:24 +05:30
|
|
|
service_response = ::Snippets::CreateService.new(project,
|
2020-07-28 23:09:34 +05:30
|
|
|
context[:current_user],
|
|
|
|
create_params(args)).execute
|
2020-05-24 23:13:21 +05:30
|
|
|
|
2020-03-13 15:44:24 +05:30
|
|
|
snippet = service_response.payload[:snippet]
|
2020-01-01 13:55:28 +05:30
|
|
|
|
|
|
|
{
|
2020-06-23 00:09:42 +05:30
|
|
|
snippet: service_response.success? ? snippet : nil,
|
2020-01-01 13:55:28 +05:30
|
|
|
errors: errors_on_object(snippet)
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def find_project!(project_path:)
|
|
|
|
authorized_find!(full_path: project_path)
|
|
|
|
end
|
|
|
|
|
|
|
|
def find_object(full_path:)
|
|
|
|
resolve_project(full_path: full_path)
|
|
|
|
end
|
|
|
|
|
|
|
|
def authorized_resource?(project)
|
2020-03-13 15:44:24 +05:30
|
|
|
Ability.allowed?(context[:current_user], :create_snippet, project)
|
2020-01-01 13:55:28 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
def can_create_personal_snippet?
|
2020-03-13 15:44:24 +05:30
|
|
|
Ability.allowed?(context[:current_user], :create_snippet)
|
2020-01-01 13:55:28 +05:30
|
|
|
end
|
2020-07-28 23:09:34 +05:30
|
|
|
|
|
|
|
def create_params(args)
|
|
|
|
args.tap do |create_args|
|
|
|
|
# We need to rename `files` into `snippet_actions` because
|
|
|
|
# it's the expected key param
|
|
|
|
create_args[:snippet_actions] = create_args.delete(:files)&.map(&:to_h)
|
|
|
|
|
|
|
|
# We need to rename `uploaded_files` into `files` because
|
|
|
|
# it's the expected key param
|
|
|
|
create_args[:files] = create_args.delete(:uploaded_files)
|
|
|
|
end
|
|
|
|
end
|
2020-01-01 13:55:28 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|