miniflux-v2/server/route/route.go

39 lines
856 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.
package route
import (
"strconv"
"github.com/gorilla/mux"
2017-12-16 03:55:57 +01:00
"github.com/miniflux/miniflux/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
for _, param := range args {
switch param.(type) {
case string:
pairs = append(pairs, param.(string))
case int64:
val := param.(int64)
pairs = append(pairs, strconv.FormatInt(val, 10))
}
}
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()
}