2015-12-23 17:02:59 -05:00
|
|
|
module Gitlab
|
|
|
|
module GithubImport
|
|
|
|
class BaseFormatter
|
|
|
|
attr_reader :formatter, :project, :raw_data
|
|
|
|
|
|
|
|
def initialize(project, raw_data)
|
|
|
|
@project = project
|
|
|
|
@raw_data = raw_data
|
|
|
|
@formatter = Gitlab::ImportFormatter.new
|
|
|
|
end
|
|
|
|
|
2016-06-06 13:00:44 -04:00
|
|
|
def create!
|
|
|
|
self.klass.create!(self.attributes)
|
|
|
|
end
|
|
|
|
|
2015-12-23 17:02:59 -05:00
|
|
|
private
|
|
|
|
|
|
|
|
def gl_user_id(github_id)
|
|
|
|
User.joins(:identities).
|
|
|
|
find_by("identities.extern_uid = ? AND identities.provider = 'github'", github_id.to_s).
|
|
|
|
try(:id)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|