Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/sangkeon/java-opa-wasm


https://github.com/sangkeon/java-opa-wasm

Last synced: about 2 months ago
JSON representation

Awesome Lists containing this project

README

        

# OPA(Open Policy Agent) WebAssembly SDK for Java

## About
OPA(www.openpolicyagent.org) ia a awesome policy engine for Cloud Native Application and Micro Services.

This project is a very sample-grade sdk to illustrate how to use wasm compiled rego policy for Java application.

This project uses https://github.com/kawamuray/wasmtime-java for WASM runtime.

Inspired by and, borrowed many ideas+codes from following projects.
- golang-opa-wasm(https://github.com/open-policy-agent/golang-opa-wasm)
- npm-opa-wasm(https://github.com/open-policy-agent/npm-opa-wasm)
- dotnet-opa-wasm(https://github.com/christophwille/dotnet-opa-wasm)

Tested under OPA version 0.26.0

## Warning
- Very early stage project and almost sdk independent builtin functions not implemented(just place holder).
- If you are using an Apple Silicon Mac, see [FOR_APPLE_SILICON_USERS.md](./FOR_APPLE_SILICON_USERS.md) first./del>

## Usage

### Maven dependency ###
```

io.github.sangkeon
java-opa-wasm
0.2.5

```

### To load and evaluate for OPA wasm file
```
try (
OPAModule om = new OPAModule("./sample-policy/wasm/policy.wasm");
) {
String input = "{\"user\": \"john\"}";
String data = "{\"role\":{\"john\":\"admin\"}}";

om.setData(data);

String result = om.evaluate(input, "opa/wasm/test/allowed");

System.out.println("result=" + result);
}
```

### To load and evaluate for OPA bundle
When using bundle, policy.wasm and data.json inside bundle will be loaded.

```
try {
Bundle bundle = BundleUtil.extractBundle("./sample-policy/bundle/bundle.tar.gz");

try (
OPAModule om = new OPAModule(bundle);
) {
String input = "{\"user\": \"alice\"}";
String result = om.evaluate(input, "opa/wasm/test/allowed");

System.out.println("result=" + result);
}
} catch(Exception e) {
}

```