gophish/models/models.go

49 lines
1.2 KiB
Go
Raw Normal View History

package models
2014-01-13 03:36:26 +00:00
import (
"net/mail"
// SMTPServer is used to provide a default SMTP server preference.
"time"
"github.com/jordan-wright/email"
)
type SMTPServer struct {
Host string `json:"host"`
User string `json:"user"`
Password string `json:"password"`
}
// Config represents the configuration information.
type Config struct {
URL string `json:"url"`
SMTP SMTPServer `json:"smtp"`
DBPath string `json:"dbpath"`
}
// User represents the user model for gophish.
type User struct {
2014-01-13 02:00:20 +00:00
Id int `json:"id"`
Username string `json:"username"`
Hash string `json:"-"`
APIKey string `json:"apikey"`
}
// Flash is used to hold flash information for use in templates.
type Flash struct {
Type string
Message string
}
2014-01-13 03:36:26 +00:00
//Campaign is a struct representing a created campaign
type Campaign struct {
Id int `json:"id"`
Name string `json:"name"`
CreatedDate time.Time `json:"created_date"`
CompletedDate time.Time `json:"completed_date"`
Targets []mail.Address `json:"targets"`
Template email.Email `json:"template"`
Status string `json:"status"`
}