mirror of
https://github.com/miniflux/v2.git
synced 2025-08-01 17:38:37 +00:00
feat: replace xurls
third-party module with an ad-hoc regexp
This commit is contained in:
parent
191f3a7ad7
commit
5c5ad19c43
3 changed files with 5 additions and 6 deletions
|
@ -5,6 +5,7 @@ package ui // import "miniflux.app/v2/internal/ui"
|
|||
|
||||
import (
|
||||
"net/http"
|
||||
"regexp"
|
||||
|
||||
"miniflux.app/v2/internal/config"
|
||||
"miniflux.app/v2/internal/http/request"
|
||||
|
@ -12,10 +13,11 @@ import (
|
|||
"miniflux.app/v2/internal/ui/form"
|
||||
"miniflux.app/v2/internal/ui/session"
|
||||
"miniflux.app/v2/internal/ui/view"
|
||||
|
||||
"mvdan.cc/xurls/v2"
|
||||
)
|
||||
|
||||
// Best effort url extraction regexp
|
||||
var urlRe = regexp.MustCompile(`(?i)(?:https?://)?[0-9a-z.]+[.][a-z]+(?::[0-9]+)?(?:/[^ ]+|/)?`)
|
||||
|
||||
func (h *handler) bookmarklet(w http.ResponseWriter, r *http.Request) {
|
||||
user, err := h.store.UserByID(request.UserID(r))
|
||||
if err != nil {
|
||||
|
@ -39,7 +41,7 @@ func (h *handler) bookmarklet(w http.ResponseWriter, r *http.Request) {
|
|||
// See https://bugs.chromium.org/p/chromium/issues/detail?id=789379.
|
||||
text := request.QueryStringParam(r, "text", "")
|
||||
if text != "" && bookmarkletURL == "" {
|
||||
bookmarkletURL = xurls.Relaxed().FindString(text)
|
||||
bookmarkletURL = urlRe.FindString(text)
|
||||
}
|
||||
|
||||
sess := session.New(h.store, request.SessionID(r))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue