summaryrefslogtreecommitdiff
path: root/app/graphql/mutations/branches/create.rb
blob: a94d3966258f16e2b5528d9a71a4a963c7a16d6c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# frozen_string_literal: true

module Mutations
  module Branches
    class Create < BaseMutation
      include FindsProject

      graphql_name 'CreateBranch'

      argument :project_path, GraphQL::ID_TYPE,
               required: true,
               description: 'Project full path the branch is associated with.'

      argument :name, GraphQL::STRING_TYPE,
               required: true,
               description: 'Name of the branch.'

      argument :ref,
               GraphQL::STRING_TYPE,
               required: true,
               description: 'Branch name or commit SHA to create branch from.'

      field :branch,
            Types::BranchType,
            null: true,
            description: 'Branch after mutation.'

      authorize :push_code

      def resolve(project_path:, name:, ref:)
        project = authorized_find!(project_path)

        result = ::Branches::CreateService.new(project, current_user)
                   .execute(name, ref)

        {
          branch: (result[:branch] if result[:status] == :success),
          errors: Array.wrap(result[:message])
        }
      end
    end
  end
end