miniflux-v2/internal/http/route/route.go

37 lines
827 B
Go
Raw Normal View History

// SPDX-FileCopyrightText: Copyright The Miniflux Authors. All rights reserved.
// SPDX-License-Identifier: Apache-2.0
2017-11-20 06:10:04 +01:00
package route // import "miniflux.app/v2/internal/http/route"
2017-11-20 06:10:04 +01:00
import (
"strconv"
"github.com/gorilla/mux"
"miniflux.app/v2/internal/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()
}