This repository has been archived on 2026-04-03. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
core/server/models/models_extension_perm.go
Jeffrey Smith bd703b9e0d
All checks were successful
CI/CD / detect-changes (pull_request) Successful in 24s
CI/CD / test-frontend (pull_request) Has been skipped
CI/CD / test-go-pg (pull_request) Successful in 2m30s
CI/CD / test-sqlite (pull_request) Successful in 2m37s
CI/CD / build-and-deploy (pull_request) Successful in 1m30s
Feat event bus subscriptions + trigger system (v0.2.2)
Three trigger primitives replacing the old monolithic scheduler:

- Event triggers: extensions subscribe to bus patterns via manifest,
  async handler invocation through sandbox.CallEntryPoint
- Webhook triggers: inbound HTTP at /api/v1/hooks/:pkg/:slug with
  HMAC-SHA256 verification and synchronous Starlark response
- Scheduled tasks: user-created cron scripts with restricted sandbox
  (no raw HTTP, no DB table creation), runs as creator identity

New tables: triggers, scheduled_tasks, trigger_logs (postgres + sqlite).
New permission: triggers.register. Full admin + user CRUD APIs.
SyncManifestTriggers hooked into seed and install flows.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-26 22:29:43 +00:00

65 lines
2.4 KiB
Go

package models
import "time"
// ── Package Status Constants ─────────────────
const (
// PackageStatusActive means the package is running normally.
PackageStatusActive = "active"
// PackageStatusPendingReview means the package declared permissions
// that require admin approval before activation.
PackageStatusPendingReview = "pending_review"
// PackageStatusSuspended means an admin has suspended the package.
PackageStatusSuspended = "suspended"
)
// ValidPackageStatuses is the set of valid package status values.
var ValidPackageStatuses = map[string]bool{
PackageStatusActive: true,
PackageStatusPendingReview: true,
PackageStatusSuspended: true,
}
// ── Extension Permission Constants ───────────
const (
ExtPermSecretsRead = "secrets.read"
ExtPermNotificationsSend = "notifications.send"
ExtPermDBRead = "db.read"
ExtPermDBWrite = "db.write"
ExtPermAPIHTTP = "api.http"
ExtPermFormValidate = "forms.validate" // v0.29.3: form validation hooks
ExtPermWorkflowAccess = "workflow.access" // v0.30.2: workflow definition + stage data access
ExtPermConnectionsRead = "connections.read" // v0.38.1: extension connection resolution
ExtPermTriggersRegister = "triggers.register" // v0.2.2: event/webhook trigger registration
)
// ValidExtensionPermissions is the set of recognized permission keys.
var ValidExtensionPermissions = map[string]bool{
ExtPermSecretsRead: true,
ExtPermNotificationsSend: true,
ExtPermDBRead: true,
ExtPermDBWrite: true,
ExtPermAPIHTTP: true,
ExtPermFormValidate: true,
ExtPermWorkflowAccess: true,
ExtPermConnectionsRead: true,
ExtPermTriggersRegister: true,
}
// ── Extension Permission Model ───────────────
// ExtensionPermission represents a declared/granted capability for a package.
type ExtensionPermission struct {
ID string `json:"id" db:"id"`
PackageID string `json:"package_id" db:"package_id"`
Permission string `json:"permission" db:"permission"`
Granted bool `json:"granted" db:"granted"`
GrantedBy *string `json:"granted_by,omitempty" db:"granted_by"`
GrantedAt *time.Time `json:"granted_at,omitempty" db:"granted_at"`
CreatedAt time.Time `json:"created_at" db:"created_at"`
}