2024-04-08 21:50:52 +07:00
|
|
|
package views
|
|
|
|
|
|
|
|
import (
|
2024-05-12 22:45:41 +07:00
|
|
|
"encoding/json"
|
2024-05-12 18:13:00 +07:00
|
|
|
"fmt"
|
2024-04-08 21:50:52 +07:00
|
|
|
"net/http"
|
2024-05-08 19:51:49 +07:00
|
|
|
"net/url"
|
2024-04-08 21:50:52 +07:00
|
|
|
|
2024-05-12 18:13:00 +07:00
|
|
|
"github.com/a-h/templ"
|
2024-04-08 21:50:52 +07:00
|
|
|
"github.com/tigorlazuardi/redmage/config"
|
|
|
|
)
|
|
|
|
|
|
|
|
type Context struct {
|
|
|
|
Config *config.Config
|
|
|
|
Request *http.Request
|
2024-05-08 19:51:49 +07:00
|
|
|
Query url.Values
|
2024-04-08 21:50:52 +07:00
|
|
|
}
|
|
|
|
|
2024-04-29 22:47:57 +07:00
|
|
|
func (c *Context) AppendQuery(keyValue ...string) string {
|
|
|
|
query := c.Request.URL.Query()
|
|
|
|
for i := 0; i < len(keyValue); i += 2 {
|
|
|
|
query.Add(keyValue[i], keyValue[i+1])
|
|
|
|
}
|
|
|
|
return query.Encode()
|
|
|
|
}
|
|
|
|
|
2024-05-12 18:13:00 +07:00
|
|
|
// URLWithExtraQuery creates a query based from baseUrl with queries joined between
|
|
|
|
// current context and extraQueries.
|
|
|
|
//
|
|
|
|
// extraKeyValues is an alternating key-value pair.
|
|
|
|
func (c *Context) URLWithExtraQuery(baseUrl string, extraKeyValues ...string) templ.SafeURL {
|
|
|
|
query := c.Request.URL.Query()
|
2024-05-13 10:41:23 +07:00
|
|
|
for k := range query {
|
|
|
|
if query.Get(k) == "" {
|
|
|
|
delete(query, k)
|
|
|
|
}
|
|
|
|
}
|
2024-05-12 18:13:00 +07:00
|
|
|
for i := 0; i < len(extraKeyValues); i += 2 {
|
|
|
|
query.Set(extraKeyValues[i], extraKeyValues[i+1])
|
|
|
|
}
|
|
|
|
return templ.SafeURL(fmt.Sprintf("%s?%s", baseUrl, query.Encode()))
|
|
|
|
}
|
|
|
|
|
2024-05-12 22:45:41 +07:00
|
|
|
func (c *Context) JSONQuery() string {
|
|
|
|
m := make(map[string]string, len(c.Query))
|
|
|
|
for k := range c.Query {
|
|
|
|
v := c.Query.Get(k)
|
|
|
|
if v != "" {
|
|
|
|
m[k] = v
|
|
|
|
}
|
|
|
|
}
|
|
|
|
v, _ := json.Marshal(m)
|
|
|
|
return string(v)
|
|
|
|
}
|
|
|
|
|
2024-04-08 21:50:52 +07:00
|
|
|
func NewContext(config *config.Config, request *http.Request) *Context {
|
|
|
|
return &Context{
|
|
|
|
Config: config,
|
|
|
|
Request: request,
|
2024-05-08 19:51:49 +07:00
|
|
|
Query: request.URL.Query(),
|
2024-04-08 21:50:52 +07:00
|
|
|
}
|
|
|
|
}
|