2023-06-19 23:42:47 +02:00
|
|
|
// SPDX-FileCopyrightText: Copyright The Miniflux Authors. All rights reserved.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0
|
2017-11-20 06:10:04 +01:00
|
|
|
|
2023-08-11 04:46:45 +02:00
|
|
|
package route // import "miniflux.app/v2/internal/http/route"
|
2017-11-20 06:10:04 +01:00
|
|
|
|
|
|
|
import (
|
|
|
|
"strconv"
|
|
|
|
|
|
|
|
"github.com/gorilla/mux"
|
|
|
|
)
|
|
|
|
|
2017-11-28 06:30:04 +01:00
|
|
|
// Path returns the defined route based on given arguments.
|
2023-09-25 01:32:09 +02:00
|
|
|
func Path(router *mux.Router, name string, args ...any) string {
|
2017-11-20 06:10:04 +01:00
|
|
|
route := router.Get(name)
|
|
|
|
if route == nil {
|
2023-09-25 01:32:09 +02:00
|
|
|
panic("route not found: " + 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 {
|
2023-09-25 01:32:09 +02:00
|
|
|
panic(err)
|
2017-11-20 06:10:04 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return result.String()
|
|
|
|
}
|