2268cc1df3
Change-Id: Ia01404dbb6bdd19a146fa10ff7302e08f87a8c95
42 lines
888 B
Go
42 lines
888 B
Go
// Copyright (C) 2019 Storj Labs, Inc.
|
|
// See LICENSE for copying information.
|
|
|
|
package consoleauth
|
|
|
|
import (
|
|
"bytes"
|
|
"encoding/json"
|
|
"time"
|
|
|
|
"storj.io/common/uuid"
|
|
)
|
|
|
|
// TODO: change to JWT or Macaroon based auth
|
|
|
|
// Claims represents data signed by server and used for authentication.
|
|
type Claims struct {
|
|
ID uuid.UUID `json:"id"`
|
|
Email string `json:"email,omitempty"`
|
|
Expiration time.Time `json:"expires,omitempty"`
|
|
}
|
|
|
|
// JSON returns json representation of Claims.
|
|
func (c *Claims) JSON() ([]byte, error) {
|
|
buffer := bytes.NewBuffer(nil)
|
|
|
|
err := json.NewEncoder(buffer).Encode(c)
|
|
return buffer.Bytes(), err
|
|
}
|
|
|
|
// FromJSON returns Claims instance, parsed from JSON.
|
|
func FromJSON(data []byte) (*Claims, error) {
|
|
claims := new(Claims)
|
|
|
|
err := json.NewDecoder(bytes.NewReader(data)).Decode(claims)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return claims, nil
|
|
}
|