2023-05-22 00:37:59 +08:00
|
|
|
package types
|
|
|
|
|
|
|
|
import (
|
|
|
|
"strconv"
|
|
|
|
|
|
|
|
v1 "github.com/juanfont/headscale/gen/go/headscale/v1"
|
|
|
|
"github.com/juanfont/headscale/hscontrol/util"
|
|
|
|
"google.golang.org/protobuf/types/known/timestamppb"
|
|
|
|
"gorm.io/gorm"
|
|
|
|
"tailscale.com/tailcfg"
|
|
|
|
)
|
|
|
|
|
|
|
|
// User is the way Headscale implements the concept of users in Tailscale
|
|
|
|
//
|
|
|
|
// At the end of the day, users in Tailscale are some kind of 'bubbles' or users
|
|
|
|
// that contain our machines.
|
|
|
|
type User struct {
|
|
|
|
gorm.Model
|
|
|
|
Name string `gorm:"unique"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (n *User) TailscaleUser() *tailcfg.User {
|
|
|
|
user := tailcfg.User{
|
2024-02-09 00:28:19 +08:00
|
|
|
ID: tailcfg.UserID(n.ID),
|
|
|
|
LoginName: n.Name,
|
|
|
|
DisplayName: n.Name,
|
|
|
|
// TODO(kradalby): See if we can fill in Gravatar here
|
2023-05-22 00:37:59 +08:00
|
|
|
ProfilePicURL: "",
|
|
|
|
Logins: []tailcfg.LoginID{},
|
2024-02-09 00:28:19 +08:00
|
|
|
Created: n.CreatedAt,
|
2023-05-22 00:37:59 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return &user
|
|
|
|
}
|
|
|
|
|
|
|
|
func (n *User) TailscaleLogin() *tailcfg.Login {
|
|
|
|
login := tailcfg.Login{
|
2024-02-09 00:28:19 +08:00
|
|
|
ID: tailcfg.LoginID(n.ID),
|
|
|
|
LoginName: n.Name,
|
|
|
|
DisplayName: n.Name,
|
|
|
|
// TODO(kradalby): See if we can fill in Gravatar here
|
2023-05-22 00:37:59 +08:00
|
|
|
ProfilePicURL: "",
|
|
|
|
}
|
|
|
|
|
|
|
|
return &login
|
|
|
|
}
|
|
|
|
|
|
|
|
func (n *User) Proto() *v1.User {
|
|
|
|
return &v1.User{
|
|
|
|
Id: strconv.FormatUint(uint64(n.ID), util.Base10),
|
|
|
|
Name: n.Name,
|
|
|
|
CreatedAt: timestamppb.New(n.CreatedAt),
|
|
|
|
}
|
|
|
|
}
|