miniflux-v2/http/route/route.go

38 lines
850 B
Go
Raw Normal View History

2017-11-20 06:10:04 +01:00
// Copyright 2017 Frédéric Guillot. All rights reserved.
// Use of this source code is governed by the Apache 2.0
// license that can be found in the LICENSE file.
2018-08-25 06:51:50 +02:00
package route // import "miniflux.app/http/route"
2017-11-20 06:10:04 +01:00
import (
"strconv"
"github.com/gorilla/mux"
2018-08-25 06:51:50 +02:00
"miniflux.app/logger"
2017-11-20 06:10:04 +01:00
)
2017-11-28 06:30:04 +01:00
// Path returns the defined route based on given arguments.
func Path(router *mux.Router, name string, args ...interface{}) string {
2017-11-20 06:10:04 +01:00
route := router.Get(name)
if route == nil {
2017-12-16 03:55:57 +01:00
logger.Fatal("[Route] Route not found: %s", name)
2017-11-20 06:10:04 +01:00
}
var pairs []string
2021-03-23 05:04:10 +01:00
for _, arg := range args {
switch param := arg.(type) {
2017-11-20 06:10:04 +01:00
case string:
2021-03-23 05:04:10 +01:00
pairs = append(pairs, param)
2017-11-20 06:10:04 +01:00
case int64:
2021-03-23 05:04:10 +01:00
pairs = append(pairs, strconv.FormatInt(param, 10))
2017-11-20 06:10:04 +01:00
}
}
result, err := route.URLPath(pairs...)
if err != nil {
2017-12-16 03:55:57 +01:00
logger.Fatal("[Route] %v", err)
2017-11-20 06:10:04 +01:00
}
return result.String()
}