Class: Gitlab::GithubImport::Representation::User

Inherits:
Object
  • Object
show all
Includes:
ExposeAttribute, ToHash
Defined in:
lib/gitlab/github_import/representation/user.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Methods included from ExposeAttribute

#[]

Methods included from ToHash

#convert_value_for_to_hash, #to_hash

Constructor Details

#initialize(attributes) ⇒ User

attributes - A Hash containing the user details. The keys of this

Hash (and any nested hashes) must be symbols.


31
32
33
# File 'lib/gitlab/github_import/representation/user.rb', line 31

def initialize(attributes)
  @attributes = attributes
end

Instance Attribute Details

#attributesObject (readonly)

Returns the value of attribute attributes.



10
11
12
# File 'lib/gitlab/github_import/representation/user.rb', line 10

def attributes
  @attributes
end

Class Method Details

.from_api_response(user, additional_data = {}) ⇒ Object

Builds a user from a GitHub API response.

user - An instance of ‘Hash` containing the user details.



17
18
19
20
21
22
# File 'lib/gitlab/github_import/representation/user.rb', line 17

def self.from_api_response(user, additional_data = {})
  new(
    id: user[:id],
    login: user[:login]
  )
end

.from_json_hash(raw_hash) ⇒ Object

Builds a user using a Hash that was built from a JSON payload.



25
26
27
# File 'lib/gitlab/github_import/representation/user.rb', line 25

def self.from_json_hash(raw_hash)
  new(Representation.symbolize_hash(raw_hash))
end