From 2331cd4d18b0a4cca80f7bff80ed24ce528def56 Mon Sep 17 00:00:00 2001 From: hz <1532246395@qq.com> Date: Sat, 8 Mar 2025 19:02:23 +0800 Subject: [PATCH] =?UTF-8?q?modify:=20=E7=9F=AD=E9=93=BE=E5=92=8C=E5=AF=86?= =?UTF-8?q?=E7=A0=81=E4=BF=AE=E6=94=B9=E4=B8=BA=E5=90=8E=E7=AB=AF=E7=94=9F?= =?UTF-8?q?=E6=88=90?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- api/handler/short_link.go | 20 +++++++--- api/static/index.html | 4 +- api/static/index.js | 77 ++++++++++++++++++++++++++++++++------- 3 files changed, 80 insertions(+), 21 deletions(-) diff --git a/api/handler/short_link.go b/api/handler/short_link.go index 61699bd..650b052 100644 --- a/api/handler/short_link.go +++ b/api/handler/short_link.go @@ -33,6 +33,7 @@ func GenerateLinkHandler(c *gin.Context) { } var hash string + var password string var err error if params.CustomID != "" { @@ -43,22 +44,29 @@ func GenerateLinkHandler(c *gin.Context) { return } if exists { - respondWithError(c, http.StatusBadRequest, "自定义ID已存在") + respondWithError(c, http.StatusBadRequest, "短链已存在") return } hash = params.CustomID + password = params.Password } else { + // 自动生成短链ID和密码 hash, err = generateUniqueHash() if err != nil { respondWithError(c, http.StatusInternalServerError, "生成短链接失败") return } + if params.Password == "" { + password = common.RandomString(8) // 生成8位随机密码 + } else { + password = params.Password + } } shortLink := model.ShortLink{ Hash: hash, Url: params.Url, - Password: params.Password, + Password: password, } if err := database.SaveShortLink(&shortLink); err != nil { @@ -66,10 +74,12 @@ func GenerateLinkHandler(c *gin.Context) { return } - if params.Password != "" { - hash += "?password=" + params.Password + // 返回生成的短链ID和密码 + response := map[string]string{ + "hash": hash, + "password": password, } - c.String(http.StatusOK, hash) + c.JSON(http.StatusOK, response) } func generateUniqueHash() (string, error) { diff --git a/api/static/index.html b/api/static/index.html index d80d409..3bb78f4 100644 --- a/api/static/index.html +++ b/api/static/index.html @@ -147,13 +147,13 @@
- +
- +