mirror of
https://github.com/gophish/gophish
synced 2024-11-15 00:37:14 +00:00
f21d40d77a
Additional cleanup, removing unused code
53 lines
1.3 KiB
Go
53 lines
1.3 KiB
Go
package models
|
|
|
|
import "github.com/jinzhu/gorm"
|
|
|
|
// User represents the user model for gophish.
|
|
type User struct {
|
|
Id int64 `json:"id"`
|
|
Username string `json:"username" sql:"not null;unique"`
|
|
Hash string `json:"-"`
|
|
ApiKey string `json:"api_key" sql:"not null;unique"`
|
|
}
|
|
|
|
// GetUser returns the user that the given id corresponds to. If no user is found, an
|
|
// error is thrown.
|
|
func GetUser(id int64) (User, error) {
|
|
u := User{}
|
|
err := db.Where("id=?", id).First(&u).Error
|
|
if err != nil {
|
|
return u, err
|
|
}
|
|
return u, nil
|
|
}
|
|
|
|
// GetUserByAPIKey returns the user that the given API Key corresponds to. If no user is found, an
|
|
// error is thrown.
|
|
func GetUserByAPIKey(key string) (User, error) {
|
|
u := User{}
|
|
err := db.Where("api_key = ?", key).First(&u).Error
|
|
if err != nil {
|
|
return u, err
|
|
}
|
|
return u, nil
|
|
}
|
|
|
|
// GetUserByUsername returns the user that the given username corresponds to. If no user is found, an
|
|
// error is thrown.
|
|
func GetUserByUsername(username string) (User, error) {
|
|
u := User{}
|
|
err := db.Where("username = ?", username).First(&u).Error
|
|
// No issue if we don't find a record
|
|
if err == gorm.RecordNotFound {
|
|
return u, nil
|
|
} else if err == nil {
|
|
return u, ErrUsernameTaken
|
|
}
|
|
return u, err
|
|
}
|
|
|
|
// PutUser updates the given user
|
|
func PutUser(u *User) error {
|
|
err := db.Save(u).Error
|
|
return err
|
|
}
|