generated from coulomb/repo-seed
- Schema.sql: add FK constraints for phases 6–12 so IHP generates Id X instead of UUID for FK columns (widget_adapter_specs, friction_scores, hub_routing_rules, agent_proposals, hub_capability_manifests, etc.) - HubHealth, ModelRouter, ApiInteractionEvents: remove toUUID() wrappers now that FK columns carry proper Id types - FederatedGovernance/Dashboard, HubRoutingRules/Index: same Id comparison fix - AgentProposals/Index, DecisionRecords/Index, ApiConsumers/Edit: Id type fixes - BottleneckDetector: add Data.Coerce import; CrossHubPropagation: add guard - ApiKeys: qualify cryptohash-sha256 import to resolve package ambiguity - WebhookDeliveryJob: use LBS.fromStrict; remove duplicate diffUTCTime - Sessions/New: use renderFlashMessages (IHP built-in) - ArchiveRecords/LineageInspector: simplify renderChainStep signature - static/app.css: Tailwind CSS output (2011 lines) — A3 confirmed - workplans/IHUB-WP-0015-local-deployment-intro-ui.md: add workplan Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
54 lines
1.9 KiB
Haskell
54 lines
1.9 KiB
Haskell
module Web.Controller.ApiKeys where
|
|
|
|
import Web.Types
|
|
import Web.View.ApiKeys.New
|
|
import Web.View.ApiKeys.Created
|
|
import Generated.Types
|
|
import IHP.Prelude
|
|
import IHP.ControllerPrelude
|
|
import qualified Data.Text.Encoding as TE
|
|
import qualified "cryptohash-sha256" Crypto.Hash.SHA256 as SHA256
|
|
import qualified Data.ByteString.Base16 as Base16
|
|
import qualified Data.ByteString.Random as Random
|
|
|
|
instance Controller ApiKeysController where
|
|
beforeAction = ensureIsUser
|
|
|
|
action ApiKeysAction { apiConsumerId } = do
|
|
-- Redirect to consumer show page which displays keys
|
|
redirectTo (ShowApiConsumerAction apiConsumerId)
|
|
|
|
action NewApiKeyAction { apiConsumerId } = do
|
|
consumer <- fetch apiConsumerId
|
|
let apiKey = newRecord @ApiKey
|
|
render NewView { apiKey, consumer }
|
|
|
|
action CreateApiKeyAction = do
|
|
apiConsumerId <- param @(Id ApiConsumer) "apiConsumerId"
|
|
consumer <- fetch apiConsumerId
|
|
scopes <- fromMaybe "" <$> paramOrNothing @Text "scopes"
|
|
|
|
-- Generate a random 32-byte key, encode as hex (64 chars)
|
|
rawBytes <- liftIO $ Random.random 32
|
|
let fullKey = TE.decodeUtf8 (Base16.encode rawBytes)
|
|
let prefix = T.take 8 fullKey
|
|
let keyHash = TE.decodeUtf8 $ Base16.encode $ SHA256.hash (TE.encodeUtf8 fullKey)
|
|
|
|
_key <- newRecord @ApiKey
|
|
|> set #apiConsumerId consumer.id
|
|
|> set #keyPrefix prefix
|
|
|> set #keyHash keyHash
|
|
|> set #scopes scopes
|
|
|> set #tokenType "static"
|
|
|> createRecord
|
|
|
|
-- Show full key once; never again
|
|
render CreatedView { consumer, fullKey }
|
|
|
|
action RevokeApiKeyAction { apiKeyId } = do
|
|
apiKey <- fetch apiKeyId
|
|
now <- getCurrentTime
|
|
apiKey |> set #revokedAt (Just now) |> updateRecord
|
|
consumer <- fetch apiKey.apiConsumerId
|
|
redirectTo (ShowApiConsumerAction consumer.id)
|