package writer

import "github.com/open-policy-agent/opa/v1/server/writer"

Package writer contains utilities for writing responses in the server.

Index

Functions

func Bytes

func Bytes(w http.ResponseWriter, code int, bs []byte)

Bytes writes a response with the specified status code and bytes. Deprecated: Unused in OPA, will be removed in the future.

func Error

func Error(w http.ResponseWriter, status int, err *types.ErrorV1)

Error writes a response with specified status and error response.

func ErrorAuto

func ErrorAuto(w http.ResponseWriter, err error)

ErrorAuto writes a response with status and code set automatically based on the type of err.

func ErrorString

func ErrorString(w http.ResponseWriter, status int, code string, err error)

ErrorString writes a response with specified status, code, and message set to the err's string representation.

func HTTPStatus

func HTTPStatus(code int) http.HandlerFunc

HTTPStatus is used to set a specific status code Adapted from https://stackoverflow.com/questions/27711154/what-response-code-to-return-on-a-non-supported-http-method-on-rest

func JSON

func JSON(w http.ResponseWriter, code int, v interface{}, pretty bool)

JSON writes a response with the specified status code and object. The object will be JSON serialized. Deprecated: This method is problematic when using a non-200 status `code`: if encoding the payload fails, it'll print "superfluous call to WriteHeader()" logs.

func JSONOK

func JSONOK(w http.ResponseWriter, v interface{}, pretty bool)

JSONOK is a helper for status "200 OK" responses

Source Files

writer.go

Version
v1.4.2 (latest)
Published
May 2, 2025
Platform
linux/amd64
Imports
5 packages
Last checked
5 hours ago

Tools for package owners.