#type #wasm-plugin #json #context #create #otoroshi

otoroshi_rust_types

用于创建和构建WASM二进制的命令行界面

8个版本 (2个稳定版)

1.0.1 2024年6月20日
1.0.0 2024年6月19日
0.0.6 2024年6月19日
0.0.1 2024年4月29日

WebAssembly中排名215

Download history 139/week @ 2024-04-28 4/week @ 2024-05-05 7/week @ 2024-05-19 517/week @ 2024-06-16 21/week @ 2024-06-23 23/week @ 2024-06-30

每月下载量317

MIT/Apache

41KB
996

用于使用Rust编写Wasm插件的Otoroshi Types

mod main;

use extism_pdk::*;
use otoroshi_rust_types::*;

#[plugin_fn]
pub fn execute(Json(_context): Json<WasmAccessValidatorContext>) -> FnResult<Json<WasmAccessValidatorResponse>> {
    let out = WasmAccessValidatorResponse { 
        result: false, 
        error: Some(WasmAccessValidatorError { 
            message: "you're not authorized".to_owned(),  
            status: 401
        })  
    };
    Ok(Json(out))
}

/*

// WasmRouteMatcher

#[plugin_fn]
pub fn matches_route(Json(_context): Json<WasmMatchRouteContext>) -> FnResult<Json<WasmMatchRouteResponse>> {
    ///
}

// -------------------------

// WasmPreRoute

#[plugin_fn]
pub fn pre_route(Json(_context): Json<WasmPreRouteContext>) -> FnResult<Json<WasmPreRouteResponse>> {
    ///
}

// -------------------------

// WasmAccessValidator

#[plugin_fn]
pub fn can_access(Json(_context): Json<WasmAccessValidatorContext>) -> FnResult<Json<WasmAccessValidatorResponse>> {
    ///
}

// -------------------------

// WasmRequestTransformer


#[plugin_fn]
pub fn transform_request(Json(_context): Json<WasmRequestTransformerContext>) -> FnResult<Json<WasmTransformerResponse>> {
    ///
}

// -------------------------

// WasmBackend

#[plugin_fn]
pub fn call_backend(Json(_context): Json<WasmQueryContext>) -> FnResult<Json<WasmQueryResponse>> {
    ///
}

// -------------------------

// WasmResponseTransformer

#[plugin_fn]
pub fn transform_response(Json(_context): Json<WasmResponseTransformerContext>) -> FnResult<Json<WasmTransformerResponse>> {
    ///
}

// -------------------------

// WasmSink

#[plugin_fn]
pub fn sink_matches(Json(_context): Json<WasmSinkContext>) -> FnResult<Json<WasmSinkMatchesResponse>> {
    ///
}

#[plugin_fn]
pub fn sink_handle(Json(_context): Json<WasmSinkContext>) -> FnResult<Json<WasmSinkHandleResponse>> {
    ///
}

// -------------------------

// WasmRequestHandler

#[plugin_fn]
pub fn handle_request(Json(_context): Json<WasmRequestHandlerContext>) -> FnResult<Json<WasmRequestHandlerResponse>> {
    ///
}

// -------------------------

// WasmJob

#[plugin_fn]
pub fn job_run(Json(_context): Json<WasmJobContext>) -> FnResult<Json<WasmJobResult>> {
    ///
}

*/

依赖项

~5MB
~74K SLoC