REST in peace
Look at the examples.
The smallest/simplest is the one with the GORM provider.
Creating RESTful API in Go is in a way simple and fun in the first time, but also repetitive and error prone the more resources you handle.
Copy pasting nearly the same code for each resource you want to GET or POST to except for the request and response types is not that cool, and interface{}
neither.
Let's get the best of both worlds with GENERICS 🎆 everybody screams 😱
The idea would be to use the classic net/http
package with handlers created from Go types.
http.HandleFunc(rip.HandleEntities("/users", NewUserProvider(), nil))
and it would generate all the necessary boilerplate to have some sane (IMO) HTTP routes.
// HandleEntities associates an urlPath with an entity provider, and handles all HTTP requests in a RESTful way:
//
// POST /entities/ : creates the entity
// GET /entities/:id : get the entity
// PUT /entities/:id : updates the entity (needs to pass the full entity data)
// DELETE /entities/:id : deletes the entity
// GET /entities/ : lists the entities (accepts page and page_size query param)
//
// It also handles fields
//
// GET /entities/:id/name : get only the name field of the entity
// PUT /entities/:id/name : updates only the name entity field
given that UserProvider
implements the rip.EntityProvider
interface
type EntityProvider[Ent any] interface {
Create(ctx context.Context, ent Ent) (Ent, error)
Get(ctx context.Context, id string) (Ent, error)
Update(ctx context.Context, ent Ent) error
Delete(ctx context.Context, id string) error
List(ctx context.Context, offset, limit int) ([]Ent, error)
}
A few providers are already available in providers and allow for 1-line implementation of a CRUD backend for a custom type. With:
p := gormprovider.New[Album](db, logger)
You have a provider you can pass to rip.HandleEntities()
and get a full REST server running, querying and saving data in a database.
* Final code may differ from actual shown footage
go run github.com/dolanor/rip/examples/srv-example@latest
// open your browser to http://localhost:8888/users/ and start editing users
- support for multiple encoding automatically selected with
Accept
andContent-Type
headers, or entity extension/entities/1.json
- JSON
- protobuf
- YAML
- XML
- msgpack
- HTML (read version)
- HTML forms (write version)
- middlewares
- automatic generation of HTML forms for live editing of entities
You can add your own encoding for your own mime type (I plan on adding some domain type encoding for specific entities, see #13).
It is quite easy to create if your encoding API follows generic standard library encoding packages like encoding/json
. Here is how encoding/json
codec is implemented for RIP
I gave a talk at GoLab 2023. I presented it again at FOSDEM 2024.
The slides are in my talks repository
(The FOSDEM talk present the more up-to-date API (per-route handler options), demo video (instead of live coding), + a live 3D demo, BUT, I couldn't display my note, so a lot of hesitation and parasite words, sorry about that)
- middleware support
- I'd like to have more composability in the entity provider (some are read-only, some can't list, some are write only…), haven't figured out the right way to design that, yet.
- it should work for nested entities
- improve the error API
- support for hypermedia discoverability
- support for multiple data representation
- add automatic OpenAPI schema
- add automatic API client
- logo from Thierry Pfeiffer