2018-05-10 23:53:25 +02:00
|
|
|
package clients
|
2017-09-23 01:03:27 +02:00
|
|
|
|
|
|
|
import "errors"
|
|
|
|
|
|
|
|
var (
|
|
|
|
// ErrConflict indicates usage of the existing email during account
|
|
|
|
// registration.
|
2018-05-10 23:53:25 +02:00
|
|
|
ErrConflict = errors.New("email already taken")
|
2017-09-23 01:03:27 +02:00
|
|
|
|
2017-10-01 01:07:37 +02:00
|
|
|
// ErrMalformedEntity indicates malformed entity specification (e.g.
|
|
|
|
// invalid username or password).
|
2018-05-10 23:53:25 +02:00
|
|
|
ErrMalformedEntity = errors.New("malformed entity specification")
|
2017-09-23 01:03:27 +02:00
|
|
|
|
|
|
|
// ErrUnauthorizedAccess indicates missing or invalid credentials provided
|
|
|
|
// when accessing a protected resource.
|
2018-05-10 23:53:25 +02:00
|
|
|
ErrUnauthorizedAccess = errors.New("missing or invalid credentials provided")
|
2017-09-23 01:03:27 +02:00
|
|
|
|
|
|
|
// ErrNotFound indicates a non-existent entity request.
|
2018-05-10 23:53:25 +02:00
|
|
|
ErrNotFound = errors.New("non-existent entity")
|
2017-09-23 01:03:27 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
// Service specifies an API that must be fullfiled by the domain service
|
|
|
|
// implementation, and all of its decorators (e.g. logging & metrics).
|
|
|
|
type Service interface {
|
|
|
|
// AddClient adds new client to the user identified by the provided key.
|
|
|
|
AddClient(string, Client) (string, error)
|
|
|
|
|
|
|
|
// UpdateClient updates the client identified by the provided ID, that
|
|
|
|
// belongs to the user identified by the provided key.
|
|
|
|
UpdateClient(string, Client) error
|
|
|
|
|
|
|
|
// ViewClient retrieves data about the client identified with the provided
|
|
|
|
// ID, that belongs to the user identified by the provided key.
|
|
|
|
ViewClient(string, string) (Client, error)
|
|
|
|
|
2018-04-18 22:36:24 +02:00
|
|
|
// ListClients retrieves data about subset of clients that belongs to the
|
|
|
|
// user identified by the provided key.
|
|
|
|
ListClients(string, int, int) ([]Client, error)
|
2017-09-23 01:03:27 +02:00
|
|
|
|
|
|
|
// RemoveClient removes the client identified with the provided ID, that
|
|
|
|
// belongs to the user identified by the provided key.
|
|
|
|
RemoveClient(string, string) error
|
|
|
|
|
|
|
|
// CreateChannel adds new channel to the user identified by the provided key.
|
|
|
|
CreateChannel(string, Channel) (string, error)
|
|
|
|
|
|
|
|
// UpdateChannel updates the channel identified by the provided ID, that
|
|
|
|
// belongs to the user identified by the provided key.
|
|
|
|
UpdateChannel(string, Channel) error
|
|
|
|
|
|
|
|
// ViewChannel retrieves data about the channel identified by the provided
|
|
|
|
// ID, that belongs to the user identified by the provided key.
|
|
|
|
ViewChannel(string, string) (Channel, error)
|
|
|
|
|
2018-04-18 22:36:24 +02:00
|
|
|
// ListChannels retrieves data about subset of channels that belongs to the
|
|
|
|
// user identified by the provided key.
|
|
|
|
ListChannels(string, int, int) ([]Channel, error)
|
2017-09-23 01:03:27 +02:00
|
|
|
|
|
|
|
// RemoveChannel removes the client identified by the provided ID, that
|
|
|
|
// belongs to the user identified by the provided key.
|
|
|
|
RemoveChannel(string, string) error
|
|
|
|
|
2018-03-11 18:06:01 +01:00
|
|
|
// Connect adds client to the channel's list of connected clients.
|
|
|
|
Connect(string, string, string) error
|
|
|
|
|
|
|
|
// Disconnect removes client from the channel's list of connected
|
|
|
|
// clients.
|
|
|
|
Disconnect(string, string, string) error
|
|
|
|
|
2017-12-29 10:40:44 +01:00
|
|
|
// CanAccess determines whether the channel can be accessed using the
|
2018-05-10 23:53:25 +02:00
|
|
|
// provided key and returns client's id.
|
2017-12-29 10:40:44 +01:00
|
|
|
CanAccess(string, string) (string, error)
|
2017-09-23 01:03:27 +02:00
|
|
|
}
|