Adopts sitesvc's retry-on-duplicate-key slug loop. The control plane previously returned an error when it lost the slug race.
75 lines
2.2 KiB
Go
75 lines
2.2 KiB
Go
package provision
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"fmt"
|
|
"time"
|
|
|
|
"github.com/google/uuid"
|
|
"github.com/mrhid6/vantage/shared/models"
|
|
"go.mongodb.org/mongo-driver/v2/bson"
|
|
"go.mongodb.org/mongo-driver/v2/mongo"
|
|
)
|
|
|
|
// ErrNameRejected wraps every reason a name cannot become an organisation.
|
|
var ErrNameRejected = errors.New("organisation name rejected")
|
|
|
|
const maxSlugAttempts = 50
|
|
|
|
// CreateOrg inserts an organisation under the first free slug derived from name.
|
|
//
|
|
// The count-then-insert loop is racy on its own. It is safe only because
|
|
// orgs.slug carries a unique index: a lost race surfaces as a duplicate-key
|
|
// error, which we treat as "that slug is taken" and retry. Do not remove the
|
|
// duplicate-key branch, and do not remove the index.
|
|
func CreateOrg(ctx context.Context, db *mongo.Database, name string) (*models.Org, error) {
|
|
base, err := BaseSlug(name)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("%w: %s", ErrNameRejected, err.Error())
|
|
}
|
|
|
|
for attempt := 1; attempt <= maxSlugAttempts; attempt++ {
|
|
slug := NextSlug(base, attempt)
|
|
|
|
n, err := db.Collection("orgs").CountDocuments(ctx, bson.M{"slug": slug})
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if n > 0 {
|
|
continue
|
|
}
|
|
|
|
org := models.Org{
|
|
OrgID: uuid.NewString(),
|
|
Name: name,
|
|
Slug: slug,
|
|
CreatedAt: time.Now().UTC(),
|
|
}
|
|
if _, err := db.Collection("orgs").InsertOne(ctx, org); err != nil {
|
|
if mongo.IsDuplicateKeyError(err) {
|
|
continue // lost the race; try the next slug
|
|
}
|
|
return nil, err
|
|
}
|
|
return &org, nil
|
|
}
|
|
return nil, fmt.Errorf("%w: could not find a free slug for %q", ErrNameRejected, name)
|
|
}
|
|
|
|
// RollbackOrg deletes an organisation that has no users.
|
|
//
|
|
// It refuses an organisation that has users. Rollback exists to clean up a
|
|
// half-finished signup, and an organisation with users is not half-finished.
|
|
func RollbackOrg(ctx context.Context, db *mongo.Database, orgID string) error {
|
|
n, err := db.Collection("users").CountDocuments(ctx, bson.M{"org_id": orgID})
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if n > 0 {
|
|
return fmt.Errorf("refusing to roll back organisation %s: it has %d user(s)", orgID, n)
|
|
}
|
|
_, err = db.Collection("orgs").DeleteOne(ctx, bson.M{"org_id": orgID})
|
|
return err
|
|
}
|