2018-05-30 15:01:16 +00:00
|
|
|
|
# xfw: all-in-one REST API
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
**xfw** is a self-working API coded in *Go*:
|
|
|
|
|
|
|
|
|
|
- It allows anyone to create a fully featured REST API
|
|
|
|
|
- it can be used in *Go* as a library, or as a proxy to launch external commands (*e.g. php scripts*)
|
|
|
|
|
|
|
|
|
|
It is based on the *all-in-config* idea, where you only have a configuration file, and your implementation and it works without no further work.
|
|
|
|
|
|
|
|
|
|
|
2018-06-10 20:53:33 +00:00
|
|
|
|
> a working example is available [here](https://git.xdrm.io/xdrm-brackets/gfw-example)
|
2018-05-30 15:01:16 +00:00
|
|
|
|
|
2018-05-31 07:23:06 +00:00
|
|
|
|
|
|
|
|
|
##### changelog
|
|
|
|
|
|
|
|
|
|
- [x] human-readable json configuration
|
|
|
|
|
- [x] nested routes (*i.e. `/user/:id:` and `/user/post/:id:`*)
|
|
|
|
|
- [ ] nested URL arguments (*i.e. `/user/:id:` and `/user/:id:/post/:id:`*)
|
|
|
|
|
- [x] useful http methods: GET, POST, PUT, DELETE
|
|
|
|
|
- [x] manage URL, query and body arguments:
|
|
|
|
|
- [x] multipart/form-data (variables and file uploads)
|
|
|
|
|
- [x] application/x-www-form-urlencoded
|
|
|
|
|
- [x] application/json
|
|
|
|
|
- [x] required vs. optional parameters with a default value
|
|
|
|
|
- [x] parameter renaming
|
|
|
|
|
- [ ] generic authentication system (*i.e. you can override the built-in one*)
|
|
|
|
|
- [x] generic type check (*i.e. implement custom types alongside built-in ones*)
|
|
|
|
|
- [ ] built-in types
|
|
|
|
|
- [x] `any` - wildcard matching all values
|
|
|
|
|
- [x] `int` - any number (*e.g. float, int, uint*)
|
|
|
|
|
- [x] `string` - any text
|
|
|
|
|
- [x] `varchar(min, max)` - any string with a length between `min` and `max`
|
|
|
|
|
- [ ] `<a>` - array containing **only** elements matching `a` type
|
|
|
|
|
- [ ] `<a:b>` - map containing **only** keys of type `a` and values of type `b` (*a or b can be ommited*)
|
2018-06-01 09:08:31 +00:00
|
|
|
|
- [x] generic controllers implementation (shared objects)
|
|
|
|
|
- [x] response interface
|