2023-06-19 14:42:47 -07:00
|
|
|
// SPDX-FileCopyrightText: Copyright The Miniflux Authors. All rights reserved.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0
|
2017-11-19 21:10:04 -08:00
|
|
|
|
2023-08-10 19:46:45 -07:00
|
|
|
package route // import "miniflux.app/v2/internal/http/route"
|
2017-11-19 21:10:04 -08:00
|
|
|
|
|
|
|
import (
|
|
|
|
"strconv"
|
|
|
|
|
|
|
|
"github.com/gorilla/mux"
|
|
|
|
)
|
|
|
|
|
2017-11-27 21:30:04 -08:00
|
|
|
// Path returns the defined route based on given arguments.
|
2023-09-24 16:32:09 -07:00
|
|
|
func Path(router *mux.Router, name string, args ...any) string {
|
2017-11-19 21:10:04 -08:00
|
|
|
route := router.Get(name)
|
|
|
|
if route == nil {
|
2023-09-24 16:32:09 -07:00
|
|
|
panic("route not found: " + name)
|
2017-11-19 21:10:04 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
var pairs []string
|
2021-03-22 21:04:10 -07:00
|
|
|
for _, arg := range args {
|
|
|
|
switch param := arg.(type) {
|
2017-11-19 21:10:04 -08:00
|
|
|
case string:
|
2021-03-22 21:04:10 -07:00
|
|
|
pairs = append(pairs, param)
|
2017-11-19 21:10:04 -08:00
|
|
|
case int64:
|
2021-03-22 21:04:10 -07:00
|
|
|
pairs = append(pairs, strconv.FormatInt(param, 10))
|
2017-11-19 21:10:04 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
result, err := route.URLPath(pairs...)
|
|
|
|
if err != nil {
|
2023-09-24 16:32:09 -07:00
|
|
|
panic(err)
|
2017-11-19 21:10:04 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
return result.String()
|
|
|
|
}
|