4969f486f2
We also unify conversions from and to `Gitaly::User`s in the `Gitlab::Git::User` class.
30 lines
815 B
Ruby
30 lines
815 B
Ruby
module Gitlab
|
|
module Git
|
|
class User
|
|
attr_reader :username, :name, :email, :gl_id
|
|
|
|
def self.from_gitlab(gitlab_user)
|
|
new(gitlab_user.username, gitlab_user.name, gitlab_user.email, Gitlab::GlId.gl_id(gitlab_user))
|
|
end
|
|
|
|
def self.from_gitaly(gitaly_user)
|
|
new(gitaly_user.gl_username, gitaly_user.name, gitaly_user.email, gitaly_user.gl_id)
|
|
end
|
|
|
|
def initialize(username, name, email, gl_id)
|
|
@username = username
|
|
@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]
|
|
end
|
|
|
|
def to_gitaly
|
|
Gitaly::User.new(gl_username: username, gl_id: gl_id, name: name, email: email)
|
|
end
|
|
end
|
|
end
|
|
end
|