From cc0b73d7a49e79c6263197dd18545b90ba715191 Mon Sep 17 00:00:00 2001 From: hz <1532246395@qq.com> Date: Fri, 7 Mar 2025 17:30:28 +0800 Subject: [PATCH] =?UTF-8?q?add=EF=BC=9A=E7=94=9F=E6=88=90=E7=9F=AD?= =?UTF-8?q?=E9=93=BE=E6=94=AF=E6=8C=81=E8=87=AA=E5=AE=9A=E4=B9=89id?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- api/handler/short_link.go | 43 ++++++++++++++++++++++++++++++++++----- api/static/index.html | 15 ++++++++------ api/static/index.js | 28 ++++++++++++++++++++++--- validator/short_link.go | 1 + 4 files changed, 73 insertions(+), 14 deletions(-) diff --git a/api/handler/short_link.go b/api/handler/short_link.go index 0969b29..61699bd 100644 --- a/api/handler/short_link.go +++ b/api/handler/short_link.go @@ -32,10 +32,27 @@ func GenerateLinkHandler(c *gin.Context) { return } - hash, err := generateUniqueHash() - if err != nil { - respondWithError(c, http.StatusInternalServerError, "生成短链接失败") - return + var hash string + var err error + + if params.CustomID != "" { + // 检查自定义ID是否已存在 + exists, err := database.CheckShortLinkHashExists(params.CustomID) + if err != nil { + respondWithError(c, http.StatusInternalServerError, "数据库错误") + return + } + if exists { + respondWithError(c, http.StatusBadRequest, "自定义ID已存在") + return + } + hash = params.CustomID + } else { + hash, err = generateUniqueHash() + if err != nil { + respondWithError(c, http.StatusInternalServerError, "生成短链接失败") + return + } } shortLink := model.ShortLink{ @@ -74,11 +91,27 @@ func UpdateLinkHandler(c *gin.Context) { respondWithError(c, http.StatusBadRequest, "参数错误: "+err.Error()) return } + + // 先获取原有的短链接 + existingLink, err := database.FindShortLinkByHash(params.Hash) + if err != nil { + respondWithError(c, http.StatusNotFound, "未找到短链接") + return + } + + // 验证密码 + if existingLink.Password != params.Password { + respondWithError(c, http.StatusUnauthorized, "密码错误") + return + } + + // 更新URL,但保持原密码不变 shortLink := model.ShortLink{ Hash: params.Hash, Url: params.Url, - Password: params.Password, + Password: existingLink.Password, // 保持原密码不变 } + if err := database.SaveShortLink(&shortLink); err != nil { respondWithError(c, http.StatusInternalServerError, "数据库错误") return diff --git a/api/static/index.html b/api/static/index.html index 5f6fe49..af31215 100644 --- a/api/static/index.html +++ b/api/static/index.html @@ -152,19 +152,22 @@ 复制链接 -