zitadel/internal/protoc/protoc-gen-authoption
Livio Amstutz a4763b1e4c
feat: features (#1427)
* features

* features

* features

* fix json tags

* add features handler to auth

* mocks for tests

* add setup step

* fixes

* add featurelist to auth api

* grandfather state and typos

* typo

* merge new-eventstore

* fix login policy tests

* label policy in features

* audit log retention
2021-03-25 17:26:21 +01:00
..
authoption feat: features (#1427) 2021-03-25 17:26:21 +01:00
templates feat: features (#1427) 2021-03-25 17:26:21 +01:00
generate.go feat: protos refactoring 2021-03-09 10:30:11 +01:00
main.go feat: add protoc pkg 2020-03-23 11:53:12 +01:00
README.md feat: add protoc pkg 2020-03-23 11:53:12 +01:00

protoc-gen-authoption

Proto options to annotate auth methods in protos

Generate protos/templates

protos: go generate authoption/generate.go
templates/install: go generate generate.go

Usage

// proto file
import "authoption/options.proto";

service MyService {

    rpc Hello(Hello) returns (google.protobuf.Empty) {
        option (google.api.http) = {
        get: "/hello"
        };

        option (caos.zitadel.utils.v1.auth_option) = {
            zitadel_permission: "hello.read"
            zitadel_check_param: "id"
        };
    }

    message Hello {
        string id = 1;
    }
}

Caos Auth Option is used for granting groups On each zitadel role is specified which auth methods are allowed to call

Get protoc-get-authoption: go get github.com/caos/zitadel/internal/protoc/protoc-gen-authoption

Protc-Flag: --authoption_out=.