Add identity resource
This commit is contained in:
parent
b59971e686
commit
4f77442eff
8 changed files with 327 additions and 28 deletions
31
external/evcli/client.go
vendored
31
external/evcli/client.go
vendored
|
@ -181,6 +181,12 @@ func (c *Client) UpdateProject(project *eventline.Project) error {
|
|||
return c.SendRequest("PUT", uri, project, nil)
|
||||
}
|
||||
|
||||
func (c *Client) CreateIdentity(identity *Identity) error {
|
||||
uri := NewURL("identities")
|
||||
|
||||
return c.SendRequest("POST", uri, identity, identity)
|
||||
}
|
||||
|
||||
func (c *Client) FetchIdentities() (Identities, error) {
|
||||
var identities Identities
|
||||
|
||||
|
@ -209,6 +215,31 @@ func (c *Client) FetchIdentities() (Identities, error) {
|
|||
return identities, nil
|
||||
}
|
||||
|
||||
func (c *Client) FetchIdentityById(id eventline.Id) (*Identity, error) {
|
||||
uri := NewURL("identities", "id", id.String())
|
||||
|
||||
var identity Identity
|
||||
|
||||
err := c.SendRequest("GET", uri, nil, &identity)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
return &identity, nil
|
||||
}
|
||||
|
||||
func (c *Client) UpdateIdentity(identity *Identity) error {
|
||||
uri := NewURL("identities", "id", identity.Id.String())
|
||||
|
||||
return c.SendRequest("PUT", uri, identity, identity)
|
||||
}
|
||||
|
||||
func (c *Client) DeleteIdentity(id eventline.Id) error {
|
||||
uri := NewURL("identities", "id", id.String())
|
||||
|
||||
return c.SendRequest("DELETE", uri, nil, nil)
|
||||
}
|
||||
|
||||
func (c *Client) ReplayEvent(id string) (*eventline.Event, error) {
|
||||
var event eventline.Event
|
||||
|
||||
|
|
28
external/evcli/identities.go
vendored
28
external/evcli/identities.go
vendored
|
@ -2,7 +2,6 @@ package evcli
|
|||
|
||||
import (
|
||||
"encoding/json"
|
||||
"fmt"
|
||||
"time"
|
||||
|
||||
"github.com/exograd/eventline/pkg/eventline"
|
||||
|
@ -27,7 +26,6 @@ type Identity struct {
|
|||
RefreshTime *time.Time `json:"refresh_time,omitempty"`
|
||||
Connector string `json:"connector"`
|
||||
Type string `json:"type"`
|
||||
Data eventline.IdentityData `json:"-"`
|
||||
RawData json.RawMessage `json:"data"`
|
||||
}
|
||||
|
||||
|
@ -45,29 +43,3 @@ func (i *Identity) SortKey(sort string) (key string) {
|
|||
|
||||
return
|
||||
}
|
||||
|
||||
func (pi *Identity) MarshalJSON() ([]byte, error) {
|
||||
type Identity2 Identity
|
||||
|
||||
i := Identity2(*pi)
|
||||
data, err := json.Marshal(i.Data)
|
||||
if err != nil {
|
||||
return nil, fmt.Errorf("cannot encode data: %w", err)
|
||||
}
|
||||
|
||||
i.RawData = data
|
||||
|
||||
return json.Marshal(i)
|
||||
}
|
||||
|
||||
func (pi *Identity) UnmarshalJSON(data []byte) error {
|
||||
type Identity2 Identity
|
||||
|
||||
i := Identity2(*pi)
|
||||
if err := json.Unmarshal(data, &i); err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
*pi = Identity(i)
|
||||
return nil
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue