Skip to main content

Backend

Overview:

We have developed the 0account library based on Web Components standards, ensuring excellent compatibility across various platforms. This library offers a wide range of customization options to suit your needs. Additionally, we have implemented an event-based system that allows seamless manipulation of the user interface within the library.

Install the library SDK:

go get "github.com/oila-gmbh/0account-go"

Connect 0account middleware

package main

import (
"encoding/json"
"net/http"
"os"

"github.com/go-redis/redis/v9"
zero "github.com/oila-gmbh/0account-go"
)

func main() {
var redisClient = redis.NewClient(&redis.Options{})
// This is the secret from 0account app, we created earlier
zero.SetAppSecret(os.Getenv("ZERO_APP_SECRET"))
// If engine is not provided, an in-memory engine will be used.
// For production, it is recommended to provide an engine:
// for this example we will use redis but any other database could be used
zero.SetEngineSetterAndGetter(
func(ctx context.Context, k string, v []byte) error {
// For the best results the timeout should match the timeout
// set in frontend (updateInterval option, default: 3 minutes)
return redisClient.Set(ctx, k, v, 3*time.Minute)
},
func(ctx context.Context, k string) ([]byte, error) {
return redisClient.Get(ctx, k)
},
)

// The route URL is the callback URL you have set when you created 0account app.
http.Handle("/zero/auth", func(w http.ResponseWriter, r *http.Request) {
// We can get any data we defined in the requested data section in the admin panel
// NOTE: all json data should be camel-cased, e.g. Last Name should be lastName
type User struct {
FirstName string `json:"firstName"`
}
user, metadata, err := zero.Auth[User](context.Background(), r.Header, r.Body))
if err != nil {
http.Error(w, "User is not authorized", http.StatusUnauthorized)
return
}
// If the request comes from 0account webhook, we must return success,
// so it knows that the library saved the data
if metadata.IsWebhookRequest() {
w.WriteHeader(http.StatusOK)
return
}

// any data returned here would be sent to 0account-authenticated event on front-end e.g.:
w.Header().Set("Content-Type", "application/json")
w.WriteHeader(http.StatusOK)
userData := map[string]string{"firstName": user.FirstName}
json.NewEncoder(w).Encode(userData)
})
}

That's it! Enjoy flawless authentication your users will love.