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