|
|
@@ -1,7 +1,6 @@
|
|
|
package gitote
|
|
|
|
|
|
import (
|
|
|
- "encoding/json"
|
|
|
"fmt"
|
|
|
"time"
|
|
|
)
|
|
|
@@ -9,7 +8,8 @@ import (
|
|
|
// User represents a API user.
|
|
|
type User struct {
|
|
|
ID int64 `json:"id"`
|
|
|
- UserName string `json:"login"`
|
|
|
+ UserName string `json:"username"` // LEGACY [Gitote 1.0]: remove field(s) for backward compatibility
|
|
|
+ Login string `json:"login"`
|
|
|
FullName string `json:"full_name"`
|
|
|
Website string `json:"website"`
|
|
|
Email string `json:"email"`
|
|
|
@@ -29,17 +29,6 @@ type User struct {
|
|
|
ReposURL string `json:"repos_url"`
|
|
|
}
|
|
|
|
|
|
-// MarshalJSON implements the json.Marshaler interface for User
|
|
|
-func (u User) MarshalJSON() ([]byte, error) {
|
|
|
- // Re-declaring User to avoid recursion
|
|
|
- type shadow User
|
|
|
- return json.Marshal(struct {
|
|
|
- shadow
|
|
|
- // LEGACY [Gitote 1.0]: remove field(s) for backward compatibility
|
|
|
- CompatUserName string `json:"username"`
|
|
|
- }{shadow(u), u.UserName})
|
|
|
-}
|
|
|
-
|
|
|
func (c *Client) GetUserInfo(user string) (*User, error) {
|
|
|
u := new(User)
|
|
|
err := c.getParsedResponse("GET", fmt.Sprintf("/users/%s", user), nil, nil, u)
|