435c0d9fc8
This PR switches the Nomad repository from using govendor to Go modules for managing dependencies. Aspects of the Nomad workflow remain pretty much the same. The usual Makefile targets should continue to work as they always did. The API submodule simply defers to the parent Nomad version on the repository, keeping the semantics of API versioning that currently exists.
65 lines
1.9 KiB
Go
65 lines
1.9 KiB
Go
package packngo
|
|
|
|
const userBasePath = "/users"
|
|
const userPath = "/user"
|
|
|
|
// UserService interface defines available user methods
|
|
type UserService interface {
|
|
Get(string) (*User, *Response, error)
|
|
Current() (*User, *Response, error)
|
|
}
|
|
|
|
// User represents a Packet user
|
|
type User struct {
|
|
ID string `json:"id"`
|
|
FirstName string `json:"first_name,omitempty"`
|
|
LastName string `json:"last_name,omitempty"`
|
|
FullName string `json:"full_name,omitempty"`
|
|
Email string `json:"email,omitempty"`
|
|
TwoFactor string `json:"two_factor_auth,omitempty"`
|
|
DefaultOrganizationID string `json:"default_organization_id,omitempty"`
|
|
AvatarURL string `json:"avatar_url,omitempty"`
|
|
Facebook string `json:"twitter,omitempty"`
|
|
Twitter string `json:"facebook,omitempty"`
|
|
LinkedIn string `json:"linkedin,omitempty"`
|
|
Created string `json:"created_at,omitempty"`
|
|
Updated string `json:"updated_at,omitempty"`
|
|
TimeZone string `json:"timezone,omitempty"`
|
|
Emails []Email `json:"emails,omitempty"`
|
|
PhoneNumber string `json:"phone_number,omitempty"`
|
|
URL string `json:"href,omitempty"`
|
|
}
|
|
|
|
func (u User) String() string {
|
|
return Stringify(u)
|
|
}
|
|
|
|
// UserServiceOp implements UserService
|
|
type UserServiceOp struct {
|
|
client *Client
|
|
}
|
|
|
|
// Get method gets a user by userID
|
|
func (s *UserServiceOp) Get(userID string) (*User, *Response, error) {
|
|
user := new(User)
|
|
|
|
resp, err := s.client.DoRequest("GET", userBasePath, nil, user)
|
|
if err != nil {
|
|
return nil, resp, err
|
|
}
|
|
|
|
return user, resp, err
|
|
}
|
|
|
|
// Returns the user object for the currently logged-in user.
|
|
func (s *UserServiceOp) Current() (*User, *Response, error) {
|
|
user := new(User)
|
|
|
|
resp, err := s.client.DoRequest("GET", userPath, nil, user)
|
|
if err != nil {
|
|
return nil, resp, err
|
|
}
|
|
|
|
return user, resp, err
|
|
}
|