ovpn-certman/models/model.go

40 lines
1,006 B
Go
Raw Normal View History

2018-02-01 03:30:00 +01:00
package models
import (
"errors"
"time"
)
var (
// ErrNotImplemented gets thrown if some action was not attempted,
// because it is not implemented in the code yet.
ErrNotImplemented = errors.New("Not implemented")
)
// Model is a base model definition, including helpful fields for dealing with
// models in a database
type Model struct {
ID uint `gorm:"primary_key"`
CreatedAt time.Time
UpdatedAt time.Time
DeletedAt *time.Time `sql:"index"`
}
// Client represent the OpenVPN client configuration
type Client struct {
Model
2018-02-01 09:31:06 +01:00
Name string `gorm:"index;unique_index:idx_name_user"`
User string `gorm:"index;unique_index:idx_name_user"`
2018-02-01 03:30:00 +01:00
Cert []byte
PrivateKey []byte
}
type ClientProvider interface {
CountClients() (uint, error)
2018-02-01 09:31:06 +01:00
CreateClient(*Client) (*Client, error)
ListClients(count, offset int) ([]*Client, error)
ListClientsForUser(user string, count, offset int) ([]*Client, error)
GetClientByID(id uint) (*Client, error)
2018-02-01 03:30:00 +01:00
DeleteClient(id uint) error
}