OpaDotNet.Wasm 2.5.1

There is a newer prerelease version of this package available.
See the version list below for details.
dotnet add package OpaDotNet.Wasm --version 2.5.1                
NuGet\Install-Package OpaDotNet.Wasm -Version 2.5.1                
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="OpaDotNet.Wasm" Version="2.5.1" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add OpaDotNet.Wasm --version 2.5.1                
#r "nuget: OpaDotNet.Wasm, 2.5.1"                
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install OpaDotNet.Wasm as a Cake Addin
#addin nuget:?package=OpaDotNet.Wasm&version=2.5.1

// Install OpaDotNet.Wasm as a Cake Tool
#tool nuget:?package=OpaDotNet.Wasm&version=2.5.1                

Open Policy Agent (OPA) WebAssembly dotnet core SDK

This is SDK for using WebAssembly (wasm) compiled Open Policy Agent policies with dotnet core.

Initial implementation was based on Open Policy Agent WebAssemby NPM Module

For more information check out the guide.

Key Features

Getting Started

Install nuget package

dotnet add package OpaDotNet.Wasm

Usage

To evaluate OPA policy you need to:

Load compiled policy

using using OpaDotNet.Wasm;

const string data = "{ \"world\": \"world\" }";

using var engine = OpaEvaluatorFactory.CreateFromWasm(
    File.OpenRead("policy.wasm")
    );

engine.SetDataFromRawJson(data);

Evaluate policy

IOpaEvaluator has several APIs for policy evaluation:

  • EvaluatePredicate - Evaluates named policy with specified input. Response interpreted as simple true/false result.
  • Evaluate - Evaluates named policy with specified input.
  • EvaluateRaw - Evaluates named policy with specified raw JSON input.
var policyResult = engine.EvaluatePredicate(inp);

Check result

if (policyResult.Result)
{
    // We've been authorized.
}
else
{
    // Can't do that.
}

Writing policy

See writing policy

Compiling policy

You have several options to compile rego policy into wasm module:

package example

default hello = false

hello {
    x := input.message
    x == data.world
}

Manually

Either use the Compile REST API or opa build CLI tool.

For example, with OPA v0.20.5 :

opa build -t wasm -e example/hello example.rego

Which is compiling the example.rego policy file. The result will be an OPA bundle with the policy.wasm binary included. See ./samples for a more comprehensive example.

See opa build --help for more details.

With OpaDotNet.Compilation

You can use SDK to do compilation for you. For more information see OpaDotNet.Compilation.

OpaDotNet.Compilation.Cli
dotnet add package OpaDotNet.Compilation.Cli
using OpaDotNet.Wasm;
using OpaDotNet.Compilation.Cli;

var compiler = new RegoCliCompiler();
var policyStream = await compiler.CompileFile("example.rego", new[] { "example/hello" });

// Use compiled policy.
using var engine = OpaEvaluatorFactory.CreateFromBundle(policyStream);
OpaDotNet.Compilation.Interop
dotnet add package OpaDotNet.Compilation.Interop
using OpaDotNet.Wasm;
using OpaDotNet.Compilation.Interop;

var compiler = new RegoInteropCompiler();
var policyStream = await compiler.CompileFile("example.rego", new[] { "example/hello" });

// Use compiled policy.
using var engine = OpaEvaluatorFactory.CreateFromBundle(policyStream);
Product Compatible and additional computed target framework versions.
.NET net7.0 is compatible.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on OpaDotNet.Wasm:

Package Downloads
OpaDotNet.Extensions.AspNetCore

Package Description

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
3.0.0-preview-0004 86 11/10/2024
3.0.0-preview-0001 85 10/25/2024
3.0.0-preview-0000 73 10/25/2024
2.5.1 135 11/8/2024
2.5.0 734 2/12/2024
2.4.1 153 1/26/2024
2.4.1-pre0004 102 1/23/2024
2.4.0 184 1/10/2024
2.3.0 239 11/21/2023
2.2.0 201 10/11/2023
2.2.0-preview0010 153 10/9/2023
2.2.0-preview0008 152 10/3/2023
2.1.1 165 9/29/2023
2.1.0 175 9/28/2023
2.0.0 295 8/18/2023
2.0.0-preview0012 130 8/18/2023
2.0.0-preview 128 8/17/2023
1.4.0 223 8/15/2023
1.3.0 165 8/9/2023
1.3.0-preview0010 143 8/7/2023
1.2.1 201 7/27/2023
1.2.0 207 7/26/2023
1.2.0-preview0033 148 7/25/2023
1.2.0-preview0028 136 7/24/2023
1.2.0-preview0012 157 7/20/2023
1.2.0-preview0009 137 7/19/2023
1.2.0-preview0007 140 7/19/2023
1.1.0 183 7/13/2023
1.1.0-preview0078 157 7/13/2023
1.1.0-preview0076 119 7/13/2023
1.1.0-preview0073 126 7/13/2023
1.1.0-preview0068 146 7/12/2023
1.1.0-preview0067 168 7/12/2023
1.1.0-preview0065 162 7/12/2023
1.1.0-preview0063 148 7/12/2023
1.1.0-preview0061 166 7/11/2023
1.1.0-preview0057 134 7/11/2023
1.1.0-preview0053 132 7/11/2023
1.1.0-preview0049 112 7/10/2023
1.1.0-preview0047 124 7/10/2023
1.1.0-preview0018 151 7/6/2023
1.1.0-preview0015 133 7/6/2023
1.1.0-preview0012 139 7/6/2023
1.1.0-preview0011 141 7/5/2023
1.1.0-preview0010 147 7/5/2023
1.1.0-preview0009 129 7/5/2023
1.1.0-preview0007 129 7/3/2023
1.0.0 168 6/27/2023
1.0.0-preview0059 149 6/27/2023
1.0.0-preview0058 134 6/27/2023
1.0.0-preview0056 131 6/27/2023
1.0.0-preview0049 126 6/23/2023
1.0.0-preview0048 131 6/23/2023
1.0.0-preview0047 116 6/23/2023
1.0.0-preview0045 141 6/23/2023
1.0.0-preview0043 127 6/23/2023
1.0.0-preview0041 94 6/22/2023
1.0.0-preview0040 139 6/22/2023
1.0.0-preview0037 113 6/22/2023
1.0.0-preview0036 131 6/22/2023
1.0.0-preview0032 137 6/22/2023
1.0.0-preview0031 136 6/22/2023
1.0.0-preview0029 121 6/21/2023
1.0.0-preview0027 136 6/21/2023
1.0.0-preview0025 131 6/21/2023
1.0.0-preview0023 145 6/21/2023
1.0.0-preview0021 110 6/20/2023
1.0.0-preview0012 116 6/20/2023
1.0.0-preview0011 142 6/20/2023