BigW Consortium Gitlab

create_context.rb 2.42 KB
Newer Older
1 2
module Projects
  class CreateContext < BaseContext
3 4 5 6
    def initialize(user, params)
      @current_user, @params = user, params.dup
    end

7 8
    def execute
      # get namespace id
9
      namespace_id = params.delete(:namespace_id)
10

11 12 13 14 15 16 17 18 19 20 21 22
      # Load default feature settings
      default_features = Gitlab.config.gitlab.default_projects_features

      default_opts = {
        issues_enabled: default_features.issues,
        wiki_enabled: default_features.wiki,
        wall_enabled: default_features.wall,
        snippets_enabled: default_features.snippets,
        merge_requests_enabled: default_features.merge_requests
      }

      @project = Project.new(default_opts.merge(params))
23 24 25 26 27 28 29 30 31 32 33 34 35

      # Parametrize path for project
      #
      # Ex.
      #  'GitLab HQ'.parameterize => "gitlab-hq"
      #
      @project.path = @project.name.dup.parameterize


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

46
      @project.creator = current_user
47

48 49 50
      # Import project from cloneable resource
      if @project.valid? && @project.import_url.present?
        shell = Gitlab::Shell.new
51

52
        if shell.import_repository(@project.path_with_namespace, @project.import_url)
53 54
          # We should create satellite for imported repo
          @project.satellite.create unless @project.satellite.exists?
55
          @project.imported = true
56 57 58 59 60 61
          true
        else
          @project.errors.add(:import_url, 'cannot clone repo')
        end
      end

62 63 64 65 66 67
      if @project.save
        unless @project.group
          @project.users_projects.create(project_access: UsersProject::MASTER, user: current_user)
        end

        @project.discover_default_branch
68 69 70
      end

      @project
71 72
    rescue => ex
      @project.errors.add(:base, "Can't save project. Please try again later")
73 74 75 76 77 78 79 80 81 82
      @project
    end

    protected

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

    def allowed_namespace?(user, namespace_id)
83 84
      namespace = Namespace.find_by_id(namespace_id)
      current_user.can?(:manage_namespace, namespace)
85 86 87
    end
  end
end