Newer
Older
package dbModels
import (
"database/sql"
"github.com/zachmann/mytoken/internal/db"
"github.com/zachmann/mytoken/internal/model"
"github.com/zachmann/mytoken/internal/supertoken/capabilities"
eventService "github.com/zachmann/mytoken/internal/supertoken/event"
event "github.com/zachmann/mytoken/internal/supertoken/event/pkg"
supertoken "github.com/zachmann/mytoken/internal/supertoken/pkg"
"github.com/zachmann/mytoken/internal/supertoken/restrictions"
)
// SuperTokenEntry holds the information of a SuperTokenEntry as stored in the
// database
type SuperTokenEntry struct {
ID uuid.UUID
ParentID string `db:"parent_id"`
RootID string `db:"root_id"`
Token *supertoken.SuperToken
RefreshToken string `db:"refresh_token"`
Name string
CreatedAt time.Time `db:"created_at"`
IP string `db:"ip_created"`
// NewSuperTokenEntry creates a new SuperTokenEntry
func NewSuperTokenEntry(name, oidcSub, oidcIss string, r restrictions.Restrictions, c, sc capabilities.Capabilities, networkData model.ClientMetaData) *SuperTokenEntry {
st := supertoken.NewSuperToken(oidcSub, oidcIss, r, c, sc)
ID: st.ID,
Token: st,
Name: name,
IP: networkData.IP,
networkData: networkData,
// Root checks if this SuperTokenEntry is a root token
func (ste *SuperTokenEntry) Root() bool {
if ste.RootID == "" {
return true
}
return false
}
// Store stores the SuperTokenEntry in the database
func (ste *SuperTokenEntry) Store(tx *sqlx.Tx, comment string) error {
steStore := superTokenEntryStore{
ID: ste.ID,
ParentID: db.NewNullString(ste.ParentID),
RootID: db.NewNullString(ste.RootID),
Token: ste.Token,
RefreshToken: db.NewNullString(ste.RefreshToken),
Name: db.NewNullString(ste.Name),
IP: ste.IP,
Iss: ste.Token.OIDCIssuer,
Sub: ste.Token.OIDCSubject,
}
return db.RunWithinTransaction(tx, func(tx *sqlx.Tx) error {
err := steStore.Store(tx)
if err != nil {
return err
}
return eventService.LogEvent(tx, event.FromNumber(event.STEventSTCreated, comment), ste.ID, ste.networkData)
})
}
type superTokenEntryStore struct {
ID uuid.UUID
ParentID sql.NullString `db:"parent_id"`
RootID sql.NullString `db:"root_id"`
Token *supertoken.SuperToken
RefreshToken sql.NullString `db:"refresh_token"`
Name sql.NullString
IP string `db:"ip_created"`
Iss string
Sub string
}
// Store stores the superTokenEntryStore in the database; if this is the first token for this user, the user is also added to the db
func (e *superTokenEntryStore) Store(tx *sqlx.Tx) error {
return db.RunWithinTransaction(tx, func(tx *sqlx.Tx) error {
stmt, err := tx.PrepareNamed(`INSERT INTO SuperTokens (id, parent_id, root_id, token, refresh_token, name, ip_created, user_id) VALUES(:id, :parent_id, :root_id, :token, :refresh_token, :name, :ip_created, (SELECT id FROM Users WHERE iss=:iss AND sub=:sub))`)
if err != nil {
return err
}
var mysqlError *mysql.MySQLError
if errors.As(err, &mysqlError) && mysqlError.Number == 1048 {
_, err = tx.NamedExec(`INSERT INTO Users (sub, iss) VALUES(:sub, :iss)`, e)
if err != nil {
return err
}
_, err = txStmt.Exec(e)
return err
}
log.WithError(err).Error()