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 1/3] =?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 @@
复制链接
-
diff --git a/api/static/index.js b/api/static/index.js
index fc64113..4b462ee 100644
--- a/api/static/index.js
+++ b/api/static/index.js
@@ -190,6 +190,7 @@ async function parseInputURL() {
url = new URL(window.location.href + response.data);
document.querySelector("#apiShortLink").value = inputURL;
document.querySelector("#password").value = password;
+ document.querySelector("#customId").value = hash;
} catch (error) {
console.log(error);
alert("获取短链失败,请检查密码!");
@@ -433,16 +434,27 @@ function generateURL() {
function generateShortLink() {
const apiShortLink = document.getElementById("apiShortLink");
const password = document.getElementById("password");
+ const customId = document.getElementById("customId");
let uri = generateURI();
if (uri === "") {
return;
}
+
+ // 如果用户没有输入自定义ID和密码,自动生成
+ if (!customId.value && !password.value) {
+ const randomId = Math.random().toString(36).substring(2, 8);
+ const randomPassword = Math.random().toString(36).substring(2, 8);
+ customId.value = randomId;
+ password.value = randomPassword;
+ }
+
axios
.post(
"./short",
{
url: uri,
password: password.value.trim(),
+ customId: customId.value.trim()
},
{
headers: {
@@ -455,7 +467,11 @@ function generateShortLink() {
})
.catch((error) => {
console.log(error);
- alert("生成短链失败,请重试!");
+ if (error.response && error.response.data) {
+ alert(error.response.data);
+ } else {
+ alert("生成短链失败,请重试!");
+ }
});
}
@@ -468,7 +484,7 @@ function updateShortLink() {
hash = u.pathname.substring(u.pathname.lastIndexOf("/s/") + 3);
}
if (password.value.trim() === "") {
- alert("请输入密码!");
+ alert("请输入原密码进行验证!");
return;
}
let uri = generateURI();
@@ -494,7 +510,13 @@ function updateShortLink() {
})
.catch((error) => {
console.log(error);
- alert(error.response.data);
+ if (error.response && error.response.status === 401) {
+ alert("密码错误,请输入正确的原密码!");
+ } else if (error.response && error.response.data) {
+ alert(error.response.data);
+ } else {
+ alert("更新短链失败,请重试!");
+ }
});
}
diff --git a/validator/short_link.go b/validator/short_link.go
index 4d7f436..f09c7b1 100644
--- a/validator/short_link.go
+++ b/validator/short_link.go
@@ -3,6 +3,7 @@ package validator
type ShortLinkGenValidator struct {
Url string `form:"url" binding:"required"`
Password string `form:"password"`
+ CustomID string `form:"customId"`
}
type GetUrlValidator struct {
From 88d8653ab5374c659381b7a30a7ad47aec0bebaa Mon Sep 17 00:00:00 2001
From: hz <1532246395@qq.com>
Date: Fri, 7 Mar 2025 17:41:42 +0800
Subject: [PATCH 2/3] =?UTF-8?q?fix=EF=BC=9A=E4=BF=AE=E5=A4=8Dua=E6=A0=87?=
=?UTF-8?q?=E8=AF=86=E7=AD=89=E4=B8=A4=E4=B8=AA=E5=89=8D=E7=AB=AF=E6=9C=AA?=
=?UTF-8?q?=E6=AD=A3=E5=B8=B8=E5=9B=9E=E6=98=BE=E9=97=AE=E9=A2=98?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
api/static/index.html | 2 +-
api/static/index.js | 11 +++++++++++
2 files changed, 12 insertions(+), 1 deletion(-)
diff --git a/api/static/index.html b/api/static/index.html
index af31215..d80d409 100644
--- a/api/static/index.html
+++ b/api/static/index.html
@@ -79,7 +79,7 @@
+ placeholder="用于获取订阅的http请求中的user-agent标识(可选)" rows="3">
diff --git a/api/static/index.js b/api/static/index.js
index 4b462ee..70bed2f 100644
--- a/api/static/index.js
+++ b/api/static/index.js
@@ -256,6 +256,17 @@ async function parseInputURL() {
);
}
+ if (params.has("userAgent")) {
+ document.getElementById("user-agent").value = decodeURIComponent(
+ params.get("userAgent")
+ );
+ }
+
+ if (params.has("ignoreCountryGroup")) {
+ document.getElementById("igcg").checked =
+ params.get("ignoreCountryGroup") === "true";
+ }
+
if (params.has("replace")) {
parseAndFillReplaceParams(decodeURIComponent(params.get("replace")));
}
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 3/3] =?UTF-8?q?modify:=20=E7=9F=AD=E9=93=BE=E5=92=8C?=
=?UTF-8?q?=E5=AF=86=E7=A0=81=E4=BF=AE=E6=94=B9=E4=B8=BA=E5=90=8E=E7=AB=AF?=
=?UTF-8?q?=E7=94=9F=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 @@