mirror of
https://github.com/onsonr/sonr.git
synced 2025-03-10 21:09:11 +00:00
* fix: update commitizen version * feat: add WASM build tags to db actions * feat: Update all actions to follow `AddAsset` for error handling * feat: remove database dependency in dwn and motr commands * feat: add basic info form to registration view * feat: implement basic browser navigation component * refactor: move database related files to middleware * fix: remove unused test command * fix: update source directory for buf-publish workflow * feat: embed dwn config data * feat: add Sync RPC to query service * refactor: rename package to for better organization * feat: add new javascript exception handling for server requests * refactor: move dwn.wasm to embed directory * refactor: move server files to a new directory * refactor: move session related code to client package * refactor: Update dwn.wasm build path * refactor: move dwn wasm build to vfs * feat: introduce config loading middleware * feat: introduce DWN config and address JSON * refactor: move dwn wasm build output to embed directory * feat: introduce config and IndexedDB model * refactor: move DWN config file generation to vfs * refactor: move config package to * feat: add Sonr.ID IPFS gateway proxy * feat: add SWT data structure * feat: update index.html to use Sonr styles and scripts * feat(dwn): remove index.html server endpoint * feat: add Navigator API for web credential management
52 lines
1.2 KiB
Go
52 lines
1.2 KiB
Go
package keeper
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/onsonr/sonr/x/did/types"
|
|
)
|
|
|
|
var _ types.QueryServer = Querier{}
|
|
|
|
type Querier struct {
|
|
Keeper
|
|
}
|
|
|
|
func NewQuerier(keeper Keeper) Querier {
|
|
return Querier{Keeper: keeper}
|
|
}
|
|
|
|
// Params returns the total set of did parameters.
|
|
func (k Querier) Params(
|
|
goCtx context.Context,
|
|
req *types.QueryRequest,
|
|
) (*types.QueryParamsResponse, error) {
|
|
ctx := k.CurrentCtx(goCtx)
|
|
return &types.QueryParamsResponse{Params: k.GetParams(ctx.SDK())}, nil
|
|
}
|
|
|
|
// Resolve implements types.QueryServer.
|
|
func (k Querier) Resolve(
|
|
goCtx context.Context,
|
|
req *types.QueryRequest,
|
|
) (*types.QueryResolveResponse, error) {
|
|
_ = k.CurrentCtx(goCtx)
|
|
return &types.QueryResolveResponse{}, nil
|
|
}
|
|
|
|
// Service implements types.QueryServer.
|
|
func (k Querier) Service(
|
|
goCtx context.Context,
|
|
req *types.QueryRequest,
|
|
) (*types.QueryServiceResponse, error) {
|
|
ctx := k.CurrentCtx(goCtx)
|
|
return &types.QueryServiceResponse{Service: ctx.GetServiceInfo(req.GetOrigin())}, nil
|
|
}
|
|
|
|
// Sync implements types.QueryServer.
|
|
func (k Querier) Sync(goCtx context.Context, req *types.SyncRequest) (*types.SyncResponse, error) {
|
|
// ctx := sdk.UnwrapSDKContext(goCtx)
|
|
panic("Sync is unimplemented")
|
|
return &types.SyncResponse{}, nil
|
|
}
|