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

https://github.com/catmullet/one

🚥 Idempotency Handler, for making sure incoming requests are idempotent. Useful for payments, "at least once delivery" systems and more.
https://github.com/catmullet/one

delivery golang idempotence idempotency idempotency-handler idempotency-key idempotent idempotent-requests payment redis storage

Last synced: 5 months ago
JSON representation

🚥 Idempotency Handler, for making sure incoming requests are idempotent. Useful for payments, "at least once delivery" systems and more.

Awesome Lists containing this project

README

          

![one logo](https://github.com/catmullet/one/blob/assets/one_logo.png)
# _(īdəmˌpōtənt)_ Idempotency Handler
## Description
Easily check if you have recieved/processed an object before. Some examples may be:
* Where PubSub services use _"at least once delivery"_
* Cases of accepting requests to make payment
* Deduping requests to your services

## Getting Started
import the repo by running:
```sh
go get github.com/catmullet/one
```
import into your project
```go
import github.com/catmullet/one
```
## Creating Keys
The `one.MakeKey()` function takes in an array of any type and creates a key. This key is specific to the parameters you have passed in. If you pass in the exact same fields you will get the exact same key. Its how we tell if we are getting the same request. Choose Something that will give you a good indication that this is not the same object. you can be as strict or relaxed as you want with it.

Take for example this event from cloud storage
```go
type Event struct {
Bucket string
Object string
Version int
UpdateTime time.Time
}
```
If you wanted to make sure that you never processed this storage object again you would use this:
```go
key := one.MakeKey(event.Bucket, event.Object)
```
If you wanted to make sure you processed on every version update you would use this:
```go
key := one.MakeKey(event.Bucket, event.Object, event.Version)
```
If you wanted to process based on any change to the storage object you could pass in the entire object like this:
```go
key := one.MakeKey(event)
```

#### Redis
```go
// import "gopkg.in/redis.v5" for redis.Options

options := &redis.Options{
Network: "tcp",
Addr: "localhost:6379",
Dialer: nil,
Password: "",
DB: 0,
}

var oneStore OneStore
oneStore = redisstore.NewRedisOneStore(options, time.Second * 30)
```
## Add Keys
```go
ok, err := oneStore.Add(key)
if !ok {
// Key already exists, so handle that here.
}

// Key doesn't exist and was added to the one store
```