authkit/cmd/abilities/main.go
juancwu d3c5367492 Rebuild for v1.0.0: postgres-only, slug-keyed authz, predicate API
Drops the Dialect/Queries abstraction in favor of a single PostgreSQL 16+
implementation collapsed into the root authkit package, removes the
public store interfaces, and reshapes the authorization model around
seeded slugs (roles, permissions, abilities) with optional labels.

Schema is now squashed into one migrations/0001_init.sql and applied
automatically on authkit.New (opt-out via Config.SkipAutoMigrate). A
schema verifier checks tables/columns/types/nullability on startup,
tolerates extra columns, and falls back to default table names when a
configured override is missing.

Auth API: CreateUser + SetPassword replace Register; password is
nullable. Email OTP (RequestEmailOTP/ConsumeEmailOTP) joins magic links
and password reset, all with anti-enumeration silent-success defaults
and a Config.RevealUnknownEmail opt-in. Service tokens drop owner
columns and validate ability slugs against authkit_abilities at issue.
Direct user permissions live alongside role-derived ones; queries
return their UNION.

Predicate API: HasRole/HasPermission/HasAbility leaves with
AnyLogin/AllLogin/AnyServiceKey/AllServiceKey combinators. Validate
runs at middleware construction, panicking on unknown slugs.

Middleware collapses to RequireLogin (cookie + JWT), RequireGuest
(configurable OnAuthenticated), and RequireServiceKey. UserIDFromCtx /
UserFromCtx (lazy) / RefreshUserInCtx provide request-lifetime user
caching. Cookie defaults flip to Secure=true and HttpOnly=true via
*bool with BoolPtr opt-out.

CLIs ship under cmd/perms, cmd/roles, cmd/abilities for seeding the
authorization vocabulary; the library never seeds rows itself.

Tests cover unit-level (slug validation + fuzz, opaque secrets, email
normalization, extractors, predicates, OTP generator) and integration
flows gated on AUTHKIT_TEST_DATABASE_URL (every Auth method, schema
drift detection, migration idempotency, lazy user cache, all middleware
paths).

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-04-26 23:27:30 +00:00

109 lines
2.3 KiB
Go

// Command abilities is the seeding CLI for service-token abilities.
//
// abilities create <slug> [--label "..."]
// abilities list
// abilities delete <slug>
package main
import (
"context"
"errors"
"fmt"
"os"
"git.juancwu.dev/juancwu/authkit/cmd/internal/clihelp"
)
func main() {
if len(os.Args) < 2 {
usage()
os.Exit(2)
}
sub := os.Args[1]
args := os.Args[2:]
switch sub {
case "create":
runCreate(args)
case "list":
runList(args)
case "delete", "rm":
runDelete(args)
case "-h", "--help", "help":
usage()
default:
fmt.Fprintf(os.Stderr, "unknown subcommand %q\n\n", sub)
usage()
os.Exit(2)
}
}
func usage() {
fmt.Fprintln(os.Stderr, `usage: abilities <subcommand> [args]
Subcommands:
create <slug> [--label "..."] create an ability
list list every ability
delete <slug> delete an ability
Common flags:
--dsn PostgreSQL DSN (defaults to $AUTHKIT_DATABASE_URL)`)
}
func runCreate(args []string) {
fs, dsn := clihelp.DSNFlag("abilities create")
label := fs.String("label", "", "optional human label")
_ = fs.Parse(args)
rest := fs.Args()
if len(rest) != 1 {
clihelp.Fail(errors.New("create takes exactly one slug argument"))
}
ctx := context.Background()
a, db, err := clihelp.Dial(ctx, *dsn)
if err != nil {
clihelp.Fail(err)
}
defer db.Close()
ab, err := a.CreateAbility(ctx, rest[0], *label)
if err != nil {
clihelp.Fail(err)
}
fmt.Printf("created ability %s (id=%s, label=%q)\n", ab.Slug, ab.ID, ab.Label)
}
func runList(args []string) {
fs, dsn := clihelp.DSNFlag("abilities list")
_ = fs.Parse(args)
ctx := context.Background()
a, db, err := clihelp.Dial(ctx, *dsn)
if err != nil {
clihelp.Fail(err)
}
defer db.Close()
abilities, err := a.ListAbilities(ctx)
if err != nil {
clihelp.Fail(err)
}
for _, ab := range abilities {
fmt.Printf("%s\t%s\n", ab.Slug, ab.Label)
}
}
func runDelete(args []string) {
fs, dsn := clihelp.DSNFlag("abilities delete")
_ = fs.Parse(args)
rest := fs.Args()
if len(rest) != 1 {
clihelp.Fail(errors.New("delete takes exactly one slug argument"))
}
ctx := context.Background()
a, db, err := clihelp.Dial(ctx, *dsn)
if err != nil {
clihelp.Fail(err)
}
defer db.Close()
if err := a.DeleteAbility(ctx, rest[0]); err != nil {
clihelp.Fail(err)
}
fmt.Printf("deleted ability %s\n", rest[0])
}