aboutsummaryrefslogtreecommitdiff
path: root/internal/http/route/route.go
blob: c5e3b36fa5c41c88884846475f2e1fabcf5552fb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
// SPDX-FileCopyrightText: Copyright The Miniflux Authors. All rights reserved.
// SPDX-License-Identifier: Apache-2.0

package route // import "miniflux.app/v2/internal/http/route"

import (
	"strconv"

	"github.com/gorilla/mux"
)

// Path returns the defined route based on given arguments.
func Path(router *mux.Router, name string, args ...any) string {
	route := router.Get(name)
	if route == nil {
		panic("route not found: " + name)
	}

	var pairs []string
	for _, arg := range args {
		switch param := arg.(type) {
		case string:
			pairs = append(pairs, param)
		case int64:
			pairs = append(pairs, strconv.FormatInt(param, 10))
		}
	}

	result, err := route.URLPath(pairs...)
	if err != nil {
		panic(err)
	}

	return result.String()
}