A short link service system suitable for small and medium-sized community websites.
Support short link production, query and 302 redirection, and have its own click statistics, independent IP statistics, access log query.
go install -u -v github.com/houseme/url-shortenter@latest
默认帐号:shortenter
默认密码:B9Mazv5M2J6%1zU2@nxC
数据库中存储的是加密后的密码,在 document\structure.sql
中标有注释,如果需要自定义其他密码,可以修改这里
加密规则 utility/helper.go
中
func (u *utilHelper) PasswordBase58Hash(password string) (string, error) {
data, err := u.Sha256OfShort(password)
if err != nil {
err = gerror.Wrap(err, "utilHelper PasswordBase58Hash Sha256OfShort error")
return "", err
}
return u.Base58Encode(data), nil
}
所有 /console/api/*
接口需要通过 Bearer Token
方式验证权限,亦即:每个请求 Header 须携带
Authorization: Bearer {sha256_of_password}
所在文件 utility/helper.go
func (u *utilHelper) GenerateShortLink(ctx context.Context, url string) (string, error) {
var (
err error
urlHash []byte
logger = u.Logger(ctx)
)
g.Log(logger).Debug(ctx, "utilHelper GenerateShortLink url:", url)
if urlHash, err = u.Sha256OfShort(url); err != nil {
err = gerror.Wrap(err, "utilHelper GenerateShortLink Sha256OfShort err")
return "", err
}
// number := new(big.Int).SetBytes(urlHash).Uint64()
// str := u.Base58Encode(gconv.Bytes(number))
str := u.Base58Encode(urlHash)
g.Log(logger).Debug(ctx, "utilHelper GenerateShortLink str:", str, " number:", number)
return str[:8], nil
}
URL-Shortenter
is licensed under the MIT License, 100% free and open-source, forever.