summaryrefslogtreecommitdiff
path: root/lib/gitlab/gitorious_import/project_creator.rb
blob: 8e22aa9286ddf4d2a332f2daca87a6ab5f2eee9d (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
module Gitlab
  module GitoriousImport
    class ProjectCreator
      attr_reader :repo, :namespace, :current_user

      def initialize(repo, namespace, current_user)
        @repo = repo
        @namespace = namespace
        @current_user = current_user
      end

      def execute
        ::Projects::CreateService.new(
          current_user,
          name: repo.name,
          path: repo.path,
          description: repo.description,
          namespace_id: namespace.id,
          visibility_level: Gitlab::VisibilityLevel::PUBLIC,
          import_type: "gitorious",
          import_source: repo.full_name,
          import_url: repo.import_url
        ).execute
      end
    end
  end
end