ShortURL: Implement /goto with a sub-resource (#110972)

This commit is contained in:
Ryan McKinley
2025-09-15 16:56:20 +03:00
committed by GitHub
parent 2df39fc71a
commit a5bd313f5a
12 changed files with 319 additions and 98 deletions
+36 -31
View File
@@ -1,14 +1,15 @@
package api
import (
"encoding/json"
"fmt"
"net/http"
"time"
"k8s.io/apimachinery/pkg/api/errors"
v1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/runtime/schema"
"k8s.io/client-go/dynamic"
"k8s.io/client-go/kubernetes"
"github.com/grafana/grafana/apps/shorturl/pkg/apis/shorturl/v1alpha1"
"github.com/grafana/grafana/pkg/api/dtos"
@@ -152,47 +153,51 @@ func (sk8s *shortURLK8sHandler) getKubernetesShortURLsHandler(c *contextmodel.Re
}
func (sk8s *shortURLK8sHandler) getKubernetesRedirectFromShortURL(c *contextmodel.ReqContext) {
client, ok := sk8s.getClient(c)
if !ok {
return
}
shortURLUID := web.Params(c.Req)[":uid"]
if !util.IsValidShortUID(shortURLUID) {
c.Logger.Warn("Invalid short URL UID format", "uid", shortURLUID)
uid := web.Params(c.Req)[":uid"]
if !util.IsValidShortUID(uid) {
c.Logger.Warn("Invalid short URL UID format", "uid", uid)
c.Redirect(sk8s.cfg.AppURL, http.StatusFound)
return
}
// Get Object
obj, err := client.Get(c.Req.Context(), shortURLUID, v1.GetOptions{})
client, err := kubernetes.NewForConfig(sk8s.clientConfigProvider.GetDirectRestConfig(c))
if err != nil {
sk8s.writeError(c, err)
c.JsonApiErr(500, "client", err)
return
}
// Modify status
status := obj.Object["status"].(map[string]interface{})
newTimestamp := time.Now().Unix()
status["lastSeenAt"] = newTimestamp
result := client.RESTClient().Get().
Prefix("apis", v1alpha1.APIGroup, v1alpha1.APIVersion).
Namespace(sk8s.namespacer(c.OrgID)).
Resource(v1alpha1.ShortURLKind().Plural()).
Name(uid).
SubResource("goto").
Param("redirect", "false"). // returns the URL and then we will do the redirect
Do(c.Req.Context())
// Try status subresource first (works in Mode 5), fallback to main resource (works in Mode 0)
out, err := client.Update(c.Req.Context(), obj, v1.UpdateOptions{}, "status")
if err != nil {
c.Logger.Debug("Status subresource update failed, trying main resource", "error", err)
// Fallback to main resource update (for Mode 0)
out, err = client.Update(c.Req.Context(), obj, v1.UpdateOptions{})
if err != nil {
c.Logger.Error("Both status and main resource updates failed", "error", err)
sk8s.writeError(c, err)
return
}
if err = result.Error(); err != nil {
c.JsonApiErr(500, "goto", err)
return
}
spec := out.Object["spec"].(map[string]any)
path := spec["path"].(string)
c.Logger.Debug("Redirecting short URL", "uid", shortURLUID, "path", path)
c.Redirect(setting.ToAbsUrl(path), http.StatusFound)
body, err := result.Raw()
if err != nil {
c.JsonApiErr(500, "body", err)
return
}
value := &v1alpha1.GetGoto{}
if err = json.Unmarshal(body, value); err != nil {
c.JsonApiErr(500, "unmarshal", err)
return
}
if value.Url == "" {
c.JsonApiErr(500, "invalid", fmt.Errorf("expected url"))
return
}
c.Resp.Header().Add("Location", value.Url)
c.Resp.WriteHeader(http.StatusFound)
}
func (sk8s *shortURLK8sHandler) createKubernetesShortURLsHandler(c *contextmodel.ReqContext) {