gitlab-org--gitlab-foss/lib/gitlab/git/user.rb

38 lines
971 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2017-08-22 07:05:36 -04:00
module Gitlab
module Git
2017-09-13 12:16:56 -04:00
class User
attr_reader :username, :name, :email, :gl_id
2017-08-22 10:27:15 -04:00
2017-09-13 12:16:56 -04:00
def self.from_gitlab(gitlab_user)
new(gitlab_user.username, gitlab_user.name, gitlab_user.commit_email, Gitlab::GlId.gl_id(gitlab_user))
2017-09-13 12:16:56 -04:00
end
2017-10-03 12:53:11 -04:00
def self.from_gitaly(gitaly_user)
2017-11-23 05:48:57 -05:00
new(
gitaly_user.gl_username,
Gitlab::EncodingHelper.encode!(gitaly_user.name),
Gitlab::EncodingHelper.encode!(gitaly_user.email),
gitaly_user.gl_id
)
2017-10-03 12:53:11 -04:00
end
def initialize(username, name, email, gl_id)
@username = username
2017-08-22 07:05:36 -04:00
@name = name
@email = email
@gl_id = gl_id
end
def ==(other)
[username, name, email, gl_id] == [other.username, other.name, other.email, other.gl_id]
2017-08-22 07:05:36 -04:00
end
def to_gitaly
2017-11-23 05:48:57 -05:00
Gitaly::User.new(gl_username: username, gl_id: gl_id, name: name.b, email: email.b)
end
2017-08-22 07:05:36 -04:00
end
end
end