mirror of https://github.com/statping/statping
107 lines
2.5 KiB
Go
107 lines
2.5 KiB
Go
// Statup
|
|
// Copyright (C) 2018. Hunter Long and the project contributors
|
|
// Written by Hunter Long <info@socialeck.com> and the project contributors
|
|
//
|
|
// https://github.com/hunterlong/statup
|
|
//
|
|
// The licenses for most software and other practical works are designed
|
|
// to take away your freedom to share and change the works. By contrast,
|
|
// the GNU General Public License is intended to guarantee your freedom to
|
|
// share and change all versions of a program--to make sure it remains free
|
|
// software for all its users.
|
|
//
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
package core
|
|
|
|
import (
|
|
"fmt"
|
|
"github.com/hunterlong/statup/types"
|
|
"github.com/hunterlong/statup/utils"
|
|
"golang.org/x/crypto/bcrypt"
|
|
"time"
|
|
)
|
|
|
|
type User struct {
|
|
*types.User
|
|
}
|
|
|
|
func ReturnUser(u *types.User) *User {
|
|
return &User{User: u}
|
|
}
|
|
|
|
func SelectUser(id int64) (*User, error) {
|
|
var user *User
|
|
col := DbSession.Collection("users")
|
|
res := col.Find("id", id)
|
|
err := res.One(&user)
|
|
return user, err
|
|
}
|
|
|
|
func SelectUsername(username string) (*User, error) {
|
|
var user *User
|
|
col := DbSession.Collection("users")
|
|
res := col.Find("username", username)
|
|
err := res.One(&user)
|
|
return user, err
|
|
}
|
|
|
|
func (u *User) Delete() error {
|
|
col := DbSession.Collection("users")
|
|
user := col.Find("id", u.Id)
|
|
return user.Delete()
|
|
}
|
|
|
|
func (u *User) Update() error {
|
|
u.CreatedAt = time.Now()
|
|
col := DbSession.Collection("users")
|
|
user := col.Find("id", u.Id)
|
|
return user.Update(u)
|
|
}
|
|
|
|
func (u *User) Create() (int64, error) {
|
|
u.CreatedAt = time.Now()
|
|
u.Password = utils.HashPassword(u.Password)
|
|
u.ApiKey = utils.NewSHA1Hash(5)
|
|
u.ApiSecret = utils.NewSHA1Hash(10)
|
|
col := DbSession.Collection("users")
|
|
uuid, err := col.Insert(u)
|
|
if err != nil {
|
|
return 0, err
|
|
}
|
|
if uuid == nil {
|
|
utils.Log(3, fmt.Sprintf("Failed to create user %v. %v", u.Username, err))
|
|
return 0, err
|
|
}
|
|
return uuid.(int64), err
|
|
}
|
|
|
|
func SelectAllUsers() ([]*User, error) {
|
|
var users []*User
|
|
col := DbSession.Collection("users").Find()
|
|
err := col.All(&users)
|
|
if err != nil {
|
|
utils.Log(3, fmt.Sprintf("Failed to load all users. %v", err))
|
|
}
|
|
return users, err
|
|
}
|
|
|
|
func AuthUser(username, password string) (*User, bool) {
|
|
var auth bool
|
|
user, err := SelectUsername(username)
|
|
if err != nil {
|
|
utils.Log(2, err)
|
|
return nil, false
|
|
}
|
|
if CheckHash(password, user.Password) {
|
|
auth = true
|
|
}
|
|
return user, auth
|
|
}
|
|
|
|
func CheckHash(password, hash string) bool {
|
|
err := bcrypt.CompareHashAndPassword([]byte(hash), []byte(password))
|
|
return err == nil
|
|
}
|