2019-12-16 16:22:09 +01:00
|
|
|
// Copyright (c) Mainflux
|
|
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
|
|
|
package http
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/mainflux/mainflux"
|
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
_ mainflux.Response = (*issueKeyRes)(nil)
|
|
|
|
_ mainflux.Response = (*revokeKeyRes)(nil)
|
|
|
|
)
|
|
|
|
|
|
|
|
type issueKeyRes struct {
|
|
|
|
ID string `json:"id,omitempty"`
|
|
|
|
Value string `json:"value,omitempty"`
|
|
|
|
IssuedAt time.Time `json:"issued_at,omitempty"`
|
|
|
|
ExpiresAt *time.Time `json:"expires_at,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (res issueKeyRes) Code() int {
|
|
|
|
return http.StatusCreated
|
|
|
|
}
|
|
|
|
|
|
|
|
func (res issueKeyRes) Headers() map[string]string {
|
|
|
|
return map[string]string{}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (res issueKeyRes) Empty() bool {
|
|
|
|
return res.Value == ""
|
|
|
|
}
|
|
|
|
|
|
|
|
type revokeKeyRes struct {
|
|
|
|
}
|
|
|
|
|
|
|
|
func (res revokeKeyRes) Code() int {
|
|
|
|
return http.StatusNoContent
|
|
|
|
}
|
|
|
|
|
|
|
|
func (res revokeKeyRes) Headers() map[string]string {
|
|
|
|
return map[string]string{}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (res revokeKeyRes) Empty() bool {
|
|
|
|
return true
|
|
|
|
}
|
2020-04-10 17:43:42 +02:00
|
|
|
|
|
|
|
type errorRes struct {
|
|
|
|
Err string `json:"error"`
|
|
|
|
}
|