Skip to content

Commit cea8a6b

Browse files
authored
Merge pull request #14 from authzed/8-update-contributing
Flesh out README and CONTRIBUTING
2 parents edcc3ef + c67e770 commit cea8a6b

File tree

2 files changed

+99
-19
lines changed

2 files changed

+99
-19
lines changed

CONTRIBUTING.md

+3-4
Original file line numberDiff line numberDiff line change
@@ -70,14 +70,13 @@ If you have already authored a commit that is missing the signed-off, you can am
7070
### Updating generated Protobuf code
7171

7272
All [Protobuf] code is managed using [buf].
73-
The [shebang] at the top of `buf.gen.yaml` contains the [Buf Registry ref] that will be generated.
74-
You can regenerate the code by executing `buf.gen.yaml`:
73+
The `input[].module` at the bottom of `buf.gen.yaml` contains the [Buf Registry ref] that will be generated.
74+
You can regenerate the code by executing:
7575

7676
[Protobuf]: https://developers.google.com/protocol-buffers/
7777
[buf]: https://docs.buf.build/installation
78-
[shebang]: https://en.wikipedia.org/wiki/Shebang_(Unix)
7978
[Buf Registry ref]: https://buf.build/authzed/api/history
8079

8180
```sh
82-
./buf.gen.yaml
81+
buf generate
8382
```

README.md

+96-15
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,33 @@
1-
# authzed dotnet
2-
[![](https://img.shields.io/badge/discord-spicedb-7289da?style=flat-square "Discord Badge")](https://discord.gg/spicedb)
3-
[![](https://img.shields.io/badge/[email protected]?style=flat-square "Twitter Badge")](https://twitter.com/authzed)
4-
[![](https://img.shields.io/badge/linkedin-+authzed-2D65BC.svg?style=flat-square "LinkedIn Badge")](https://linkedin.com/company/authzed)
1+
# Authzed.Net
2+
[![Nuget](https://img.shields.io/nuget/v/Authzed.Api?color=%23006dad)](https://www.nuget.org/packages/Authzed.Net)
3+
[![License](https://img.shields.io/badge/license-Apache--2.0-blue.svg)](https://www.apache.org/licenses/LICENSE-2.0.html)
4+
[![Build Status](https://github.com/authzed/authzed-dotnet/workflows/Test/badge.svg)](https://github.com/authzed/authzed-dotnet/actions)
5+
[![Mailing List](https://img.shields.io/badge/email-google%20groups-4285F4)](https://groups.google.com/g/authzed-oss)
6+
[![Discord Server](https://img.shields.io/badge/discord-spicedb-7289da?style=flat-square "Discord Badge")](https://discord.gg/spicedb)
7+
[![Twitter](https://img.shields.io/badge/[email protected]?style=flat-square "Twitter Badge")](https://twitter.com/authzed)
8+
[![LinkedIn](https://img.shields.io/badge/linkedin-+authzed-2D65BC.svg?style=flat-square "LinkedIn Badge")](https://linkedin.com/company/authzed)
59

610
This repository houses the official .NET (generated in C#) client library for Authzed and SpiceDB.
711

8-
This project is intended to be a canonical source of generated ProtoBuf messages for gRPC communication.
12+
[Authzed] is a database and service that stores, computes, and validates your application's permissions.
913

10-
[SpiceDB] is a database system for managing security-critical permissions checking.
14+
Developers create a schema that models their permissions requirements and use a client library, such as this one, to apply the schema to the database, insert data into the database, and query the data to efficiently check permissions in their applications.
1115

12-
SpiceDB acts as a centralized service that stores authorization data.
13-
Once stored, data can be performantly queried to answer questions such as "Does this user have access to this resource?" and "What are all the resources this user has access to?".
16+
Supported client API versions:
1417

15-
[Authzed] operates the globally available, serverless database platform for SpiceDB.
18+
- [v1](https://docs.authzed.com/reference/api#authzedapiv1)
1619

17-
You can find more info about the API in the [Authzed Documentation API Reference] or the [Authzed API Buf Registry repository].
20+
You can find more info on each API on the [Authzed API reference documentation].
21+
Additionally, Protobuf API documentation can be found on the [Buf Registry Authzed API repository].
1822

1923
See [CONTRIBUTING.md] for instructions on how to contribute and perform common tasks like building the project and running tests.
2024

21-
[SpiceDB]: https://github.com/authzed/spicedb
2225
[Authzed]: https://authzed.com
23-
[Authzed Documentation API Reference]: https://docs.authzed.com/reference/api
24-
[Authzed API Buf Registry repository]: https://buf.build/authzed/api
26+
[Authzed API Reference documentation]: https://docs.authzed.com/reference/api
27+
[Buf Registry Authzed API repository]: https://buf.build/authzed/api/docs/main
2528
[CONTRIBUTING.md]: CONTRIBUTING.md
29+
30+
[SpiceDB]: https://github.com/authzed/spicedb
2631
[Discord]: https://authzed.com/discord
2732
[Urgent]: https://github.com/authzed/authzed-rb/labels/priority%2F0%20urgent
2833
[High]: https://github.com/authzed/authzed-rb/labels/priority%2F1%20high
@@ -31,8 +36,84 @@ See [CONTRIBUTING.md] for instructions on how to contribute and perform common t
3136
[Maybe]: https://github.com/authzed/authzed-rb/labels/priority%2F4%20maybe
3237
[good first issues]: https://github.com/authzed-rb/spicedb/labels/hint%2Fgood%20first%20issue
3338

34-
## Installation
39+
## Getting Started
40+
41+
We highly recommend following the **[Protecting Your First App]** guide to learn the latest best practice to integrate an application with Authzed.
42+
43+
If you're interested in example usages, including integration with a Kestrel API, they can be found in their respective folders in the [examples directory].
44+
45+
[Protecting Your First App]: https://docs.authzed.com/guides/first-app
46+
[examples directory]: /examples
3547

48+
## Basic Usage
49+
### Installation
50+
51+
With [`dotnet`](https://learn.microsoft.com/en-us/dotnet/core/install/):
52+
```sh
53+
dotnet add package Authzed.Net
54+
```
55+
56+
With [`nuget`](https://www.nuget.org/downloads):
3657
```sh
37-
nuget install authzed-dot
58+
nuget install Authzed.Net
59+
```
60+
61+
### Initializing a Client
62+
63+
Currently, everything required to connect and make API calls is located in a module respective to API version.
64+
65+
In order to successfully connect, you will have to provide a [Bearer Token] with your own API Token from the [Authzed dashboard] in place of `t_your_token_here_1234567deadbeef` in the following example.
66+
67+
[grpc]: https://grpc.io
68+
[Bearer Token]: https://datatracker.ietf.org/doc/html/rfc6750#section-2.1
69+
[Authzed Dashboard]: https://app.authzed.com
70+
71+
```csharp
72+
using Authzed.Api.V1;
73+
using Grpc.Core;
74+
using Grpc.Net.Client;
75+
using System;
76+
77+
// In some other block
78+
var token = "my super secret key"
79+
var credentials = CallCredentials.FromInterceptor((context, metadata) =>
80+
{
81+
metadata.Add("Authorization", $"Bearer {token}");
82+
return Task.CompletedTask;
83+
});
84+
85+
var options = new GrpcChannelOptions
86+
{
87+
Credentials = ChannelCredentials.Create(new SslCredentials(), credentials),
88+
};
89+
var channel = GrpcChannel.ForAddress("https://my.spicedb.service:50051", options);
90+
var client = new PermissionsService.PermissionsServiceClient(channel);
91+
```
92+
93+
Note that the above example shows the Permission client specifically; a fully working flow will also require the Schema service.
94+
95+
Also note that we're using TLS. For an example that does not use TLS, see the API in the [examples directory].
96+
97+
### Performing an API Request
98+
```csharp
99+
using Authzed.Api.V1;
100+
using Grpc.Core;
101+
using Google.Protobuf.WellKnownTypes;
102+
103+
// Continuing from above
104+
var response = await client.CheckPermissionAsync(new CheckPermissionRequest
105+
{
106+
Resource = new ObjectReference { ObjectType = "post", ObjectId = "post-one" },
107+
Permission = "view",
108+
Subject = new SubjectReference
109+
{
110+
Object = new ObjectReference
111+
{
112+
ObjectType = "user",
113+
ObjectId = "emilia"
114+
}
115+
},
116+
Consistency = new Consistency { FullyConsistent = true }
117+
});
118+
Console.WriteLine(response.Permissionship)
38119
```

0 commit comments

Comments
 (0)