mirror of
https://github.com/mainflux/mainflux.git
synced 2025-05-02 22:17:10 +08:00

* Add pagination to clients and channels endpoints Signed-off-by: Dušan Borovčanin <borovcanindusan1@gmail.com> * Refactor code Change method signature and rename Bulk methods back to All. Signed-off-by: Dušan Borovčanin <borovcanindusan1@gmail.com> * Rename transport_test.go to endpoint_test.go Signed-off-by: Dušan Borovčanin <borovcanindusan1@gmail.com> * Fix manager tests to support pagination Signed-off-by: Dušan Borovčanin <borovcanindusan1@gmail.com> * Add default offset and limit support Signed-off-by: Dušan Borovčanin <borovcanindusan1@gmail.com> * Update docs Signed-off-by: Dušan Borovčanin <borovcanindusan1@gmail.com> * Update tests to support pagination - Move maxLimitSize checking to request validation. - Add tests to support pagination. Signed-off-by: Dušan Borovčanin <borovcanindusan1@gmail.com> * Fix handling query params for pagination Signed-off-by: Dušan Borovčanin <borovcanindusan1@gmail.com> * Fix empty result set Return empty results if invalid offset and limit is passed to channel and client repository. Update tests accordingly. Signed-off-by: Dušan Borovčanin <borovcanindusan1@gmail.com> * Update manager API docs Signed-off-by: Dušan Borovčanin <borovcanindusan1@gmail.com> * Fix response to invalid limit query param Signed-off-by: Dušan Borovčanin <borovcanindusan1@gmail.com> * Remove offset and limmit checks in repository methods Signed-off-by: Dušan Borovčanin <borovcanindusan1@gmail.com>
45 lines
1.6 KiB
Go
45 lines
1.6 KiB
Go
package manager
|
|
|
|
// Channel represents a Mainflux "communication group". This group contains the
|
|
// clients that can exchange messages between eachother.
|
|
type Channel struct {
|
|
ID string `gorm:"type:char(36);primary_key" json:"id"`
|
|
Owner string `gorm:"type:varchar(254);not null" json:"-"`
|
|
Name string `json:"name,omitempty"`
|
|
Clients []Client `gorm:"many2many:channel_clients" json:"connected,omitempty"`
|
|
}
|
|
|
|
// ChannelRepository specifies a channel persistence API.
|
|
type ChannelRepository interface {
|
|
// Save persists the channel. Successful operation is indicated by unique
|
|
// identifier accompanied by nil error response. A non-nil error is
|
|
// returned to indicate operation failure.
|
|
Save(Channel) (string, error)
|
|
|
|
// Update performs an update to the existing channel. A non-nil error is
|
|
// returned to indicate operation failure.
|
|
Update(Channel) error
|
|
|
|
// One retrieves the channel having the provided identifier, that is owned
|
|
// by the specified user.
|
|
One(string, string) (Channel, error)
|
|
|
|
// All retrieves the subset of channels owned by the specified user.
|
|
All(string, int, int) []Channel
|
|
|
|
// Remove removes the channel having the provided identifier, that is owned
|
|
// by the specified user.
|
|
Remove(string, string) error
|
|
|
|
// 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
|
|
|
|
// HasClient determines whether the client with the provided identifier, is
|
|
// "connected" to the specified channel.
|
|
HasClient(string, string) bool
|
|
}
|