56 lines
1.3 KiB
Go
56 lines
1.3 KiB
Go
package api
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/supabase/auth/internal/metering"
|
|
"github.com/supabase/auth/internal/models"
|
|
"github.com/supabase/auth/internal/storage"
|
|
)
|
|
|
|
func (a *API) SignupAnonymously(w http.ResponseWriter, r *http.Request) error {
|
|
ctx := r.Context()
|
|
config := a.config
|
|
db := a.db.WithContext(ctx)
|
|
aud := a.requestAud(ctx, r)
|
|
|
|
if config.DisableSignup {
|
|
return unprocessableEntityError(ErrorCodeSignupDisabled, "Signups not allowed for this instance")
|
|
}
|
|
|
|
params := &SignupParams{}
|
|
if err := retrieveRequestParams(r, params); err != nil {
|
|
return err
|
|
}
|
|
params.Aud = aud
|
|
params.Provider = "anonymous"
|
|
|
|
newUser, err := params.ToUserModel(false /* <- isSSOUser */)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
var grantParams models.GrantParams
|
|
grantParams.FillGrantParams(r)
|
|
|
|
var token *AccessTokenResponse
|
|
err = db.Transaction(func(tx *storage.Connection) error {
|
|
var terr error
|
|
newUser, terr = a.signupNewUser(tx, newUser)
|
|
if terr != nil {
|
|
return terr
|
|
}
|
|
token, terr = a.issueRefreshToken(r, tx, newUser, models.Anonymous, grantParams)
|
|
if terr != nil {
|
|
return terr
|
|
}
|
|
return nil
|
|
})
|
|
if err != nil {
|
|
return internalServerError("Database error creating anonymous user").WithInternalError(err)
|
|
}
|
|
|
|
metering.RecordLogin("anonymous", newUser.ID)
|
|
return sendJSON(w, http.StatusOK, token)
|
|
}
|