create_service.rb 4.7 KB
Newer Older
1
module Projects
2
  class CreateService < BaseService
3 4 5 6
    def initialize(user, params)
      @current_user, @params = user, params.dup
    end

7
    def execute
Z
Z.J. van de Weg 已提交
8 9 10 11
      if @params[:template_name]&.present?
        return ::Projects::CreateFromTemplateService.new(current_user, params).execute
      end

12
      forked_from_project_id = params.delete(:forked_from_project_id)
J
James Lopez 已提交
13
      import_data = params.delete(:import_data)
14 15
      @skip_wiki = params.delete(:skip_wiki)

16
      @project = Project.new(params)
17

18
      # Make sure that the user is allowed to use the specified visibility level
19
      unless Gitlab::VisibilityLevel.allowed_for?(current_user, @project.visibility_level)
F
Felipe Artur 已提交
20 21 22
        deny_visibility_level(@project)
        return @project
      end
23

24 25 26 27 28
      unless allowed_fork?(forked_from_project_id)
        @project.errors.add(:forked_from_project_id, 'is forbidden')
        return @project
      end

29
      set_project_name_from_path
30

31 32
      # get namespace id
      namespace_id = params[:namespace_id]
33 34 35 36

      if namespace_id
        # Find matching namespace and check if it allowed
        # for current user if namespace_id passed.
37 38
        unless allowed_namespace?(current_user, namespace_id)
          @project.namespace_id = nil
39 40 41 42 43
          deny_namespace
          return @project
        end
      else
        # Set current user namespace if namespace_id is nil
44
        @project.namespace_id = current_user.namespace_id
45 46
      end

47
      @project.creator = current_user
48

49 50 51 52
      if forked_from_project_id
        @project.build_forked_project_link(forked_from_project_id: forked_from_project_id)
      end

J
James Lopez 已提交
53
      save_project_and_import_data(import_data)
54

55
      after_create_actions if @project.persisted?
56

57
      if @project.errors.empty?
58
        @project.import_schedule if @project.import?
59
      else
60
        fail(error: @project.errors.full_messages.join(', '))
61
      end
62

63
      @project
64 65 66
    rescue ActiveRecord::RecordInvalid => e
      message = "Unable to save #{e.record.type}: #{e.record.errors.full_messages.join(", ")} "
      fail(error: message)
67
    rescue => e
68
      fail(error: e.message)
69 70 71 72 73 74 75 76
    end

    protected

    def deny_namespace
      @project.errors.add(:namespace, "is not valid")
    end

77 78 79 80 81 82 83
    def allowed_fork?(source_project_id)
      return true if source_project_id.nil?

      source_project = Project.find_by(id: source_project_id)
      current_user.can?(:fork_project, source_project)
    end

84
    def allowed_namespace?(user, namespace_id)
S
skv 已提交
85
      namespace = Namespace.find_by(id: namespace_id)
86
      current_user.can?(:create_projects, namespace)
87
    end
88 89 90

    def after_create_actions
      log_info("#{@project.owner.name} created a new project \"#{@project.name_with_namespace}\"")
91

92
      unless @project.gitlab_project_import?
93
        @project.create_wiki unless skip_wiki?
94
        create_services_from_active_templates(@project)
95

96 97
        @project.create_labels
      end
V
Valery Sizov 已提交
98

99
      event_service.create_project(@project, current_user)
100 101
      system_hook_service.execute_hooks_for(@project, :create)

102
      unless @project.group || @project.gitlab_project_import?
103 104
        owners = [current_user, @project.namespace.owner].compact.uniq
        @project.add_master(owners, current_user: current_user)
105
      end
106

Z
Z.J. van de Weg 已提交
107
      @project.group&.refresh_members_authorized_projects
108
    end
J
James Lopez 已提交
109

110 111 112 113
    def skip_wiki?
      !@project.feature_available?(:wiki, current_user) || @skip_wiki
    end

J
James Lopez 已提交
114
    def save_project_and_import_data(import_data)
J
James Lopez 已提交
115 116 117
      Project.transaction do
        @project.create_or_update_import_data(data: import_data[:data], credentials: import_data[:credentials]) if import_data

118
        if @project.save && !@project.import?
J
James Lopez 已提交
119 120 121 122
          raise 'Failed to create repository' unless @project.create_repository
        end
      end
    end
123 124 125 126 127 128 129 130 131 132 133 134 135 136

    def fail(error:)
      message = "Unable to save project. Error: #{error}"
      message << "Project ID: #{@project.id}" if @project && @project.id

      Rails.logger.error(message)

      if @project && @project.import?
        @project.errors.add(:base, message)
        @project.mark_import_as_failed(message)
      end

      @project
    end
137 138 139 140 141 142 143

    def create_services_from_active_templates(project)
      Service.where(template: true, active: true).each do |template|
        service = Service.build_from_template(project.id, template)
        service.save!
      end
    end
144 145 146 147 148 149 150 151 152 153 154 155 156 157

    def set_project_name_from_path
      # Set project name from path
      if @project.name.present? && @project.path.present?
        # if both name and path set - everything is ok
      elsif @project.path.present?
        # Set project name from path
        @project.name = @project.path.dup
      elsif @project.name.present?
        # For compatibility - set path from name
        # TODO: remove this in 8.0
        @project.path = @project.name.dup.parameterize
      end
    end
158 159
  end
end