#graphql #policy #cloud #policies #sdk #shisho #graphql-schema

test-shisho-policy-sdk

This is the SDK of Shisho Cloud policies to write your custom policies in Rust

15 releases

0.1.16 Nov 9, 2022
0.1.14 Nov 7, 2022

#397 in HTTP server

Download history 6/week @ 2024-02-25 15/week @ 2024-03-10 2/week @ 2024-03-17 1/week @ 2024-03-24 188/week @ 2024-03-31

206 downloads per month
Used in test-shisho-gql-derive

Apache-2.0

180KB
5K SLoC

Shisho Policy Rust SDK

This is a helper crate for Shisho Cloud workflows to write custom policies.

This is the core library to write custom policies.

  • decision includes the structs of output data(=decsion results).
  • gqlgen includes the functionalities of converting from geraphql schema and queries. The original code comes from graphql-client/graphql_client_codegen
  • schema includes the string of datasource graphql query. The schema is generated by the codegen.

Required crate

This required the helper crate, shisho-gql-derive

Example usage

use shisho_gql_derive::*;
pub use shisho_policy_sdk::decision::data_entry::*;
pub use shisho_policy_sdk::decision::github::organization::org_owners::*;
pub use shisho_policy_sdk::decision::*;

use self::input::InputGithubOrganizations;

#[allow(dead_code)]
#[derive(ShishoGraphQLQuery)]
#[shisho_graphql(
    query_path = "src/policies/organization/org_owners/query.graphql",
    response_derives = "Debug, PartialEq"
)]
pub struct Input;

pub fn decisions(input: input::InputData) -> Vec<Decision<OrgOwnersEntryData>> {
    input
        .github
        .organizations
        .into_iter()
        .map(|o: InputGithubOrganizations| decide_on_each_org(o))
        .collect()
}

pub fn decide_on_each_org(o: InputGithubOrganizations) -> Decision<OrgOwnersEntryData> {
    ...
}

Reference

Dependencies

~3.5MB
~75K SLoC