mirror of https://github.com/gophish/gophish
71 lines
1.8 KiB
Go
71 lines
1.8 KiB
Go
package models
|
|
|
|
import
|
|
|
|
// SMTPServer is used to provide a default SMTP server preference.
|
|
"time"
|
|
|
|
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 {
|
|
Id int64 `json:"id"`
|
|
Username string `json:"username"`
|
|
Hash string `json:"-"`
|
|
APIKey string `json:"api_key" db:"api_key"`
|
|
}
|
|
|
|
// Flash is used to hold flash information for use in templates.
|
|
type Flash struct {
|
|
Type string
|
|
Message string
|
|
}
|
|
|
|
//Campaign is a struct representing a created campaign
|
|
type Campaign struct {
|
|
Id int64 `json:"id"`
|
|
Name string `json:"name"`
|
|
CreatedDate time.Time `json:"created_date" db:"created_date"`
|
|
CompletedDate time.Time `json:"completed_date" db:"completed_date"`
|
|
Template string `json:"template"` //This may change
|
|
Status string `json:"status"`
|
|
Results []Result `json:"results,omitempty" db:"-"`
|
|
Groups []Group `json:"groups,omitempty" db:"-"`
|
|
}
|
|
|
|
type Result struct {
|
|
Target
|
|
Status string `json:"status"`
|
|
}
|
|
|
|
type Group struct {
|
|
Id int64 `json:"id"`
|
|
Name string `json:"name"`
|
|
ModifiedDate time.Time `json:"modified_date" db:"modified_date"`
|
|
Targets []Target `json:"targets" db:"-"`
|
|
}
|
|
|
|
type Target struct {
|
|
Id int64 `json:"-"`
|
|
Email string `json:"email"`
|
|
}
|
|
|
|
type Template struct {
|
|
Id int64 `json:"id"`
|
|
Name string `json:"name" db:"name"`
|
|
Text string `json:"text" db:"text"`
|
|
Html string `json:"html" db:"html"`
|
|
ModifiedDate time.Time `json:"modified_date" db:"modified_date"`
|
|
}
|