iris/_future/ipel/README.md
Gerasimos (Makis) Maropoulos a95a02a16a Nothing special here (yet)
Former-commit-id: 826d7c370481b78afd9ba92f4ae8bef1fb85a567
2017-03-27 04:09:44 +03:00

3.8 KiB

Iris Path Expression Language (_future)

Ideas & Goals

  • Optional.
  • No Breaking Changes.
  • No performance cost if not used.
  • Can convert a path for the existing routers, if no router is being used, then it will use its own, new, router.
  • 4+1 basic parameter types: int, string, alphabetical, path, (wildcard), any based on regexp.
  • Each type has unlimited functions of its own, they should be able to be overriden.
  • Give devs the ability to parse their function's arguments before use them and return a func which is the validator.
  • Function will be a generic type(interface{}) in order to devs be able to use any type without boilerplate code for conversions, can be done using reflection and reflect.Call, on .Boot time to parse the function automatically, and keep the returning validator function (already tested and worked).
  • The any will be the default if dev use functions to the named path parameter but missing a type.
  • If a type doesnt't contains a function of its own, then it will use the any's, so any will contain global-use functions too.

Preview

/api/users/{id:int min(1)}/posts

minValidator := func(min int) func(string) bool {
    return func(paramValue string) bool {
       	paramValueInt, err := strconv.Atoi(paramValue)
		if err != nil {
			return false
		}
        if paramValueInt < min {
            return false
        }
        return true
    }
}

app := iris.New()
app.Int.Set("min", minValidator)

/api/{version:string len(2) isVersion()}

isVersionStrValidator := func() func(string) bool {
    versions := []string("v1","v2")
    return func(paramValue string) bool {
        for _, s := range versions {
            if s == paramValue {
                return true
            }
        }
        return false
    }
}

lenStrValidator := func(i int) func(string) bool {
    if i <= 0 {
        i = 1
    }
    return func(paramValue string) bool {
       return len(paramValue) != i
    }
}


app := iris.New()
app.String.Set("isVersion", isVersionStrValidator)
app.String.Set("len", lenStrValidator)

/uploads/{filepath:tail contains(.) else 403}

[...]

[...]

/api/validate/year/{year:int range(1970,2017) else 500}

[...]

[...]

Resources