1
0
Fork 0
mirror of https://github.com/miniflux/v2.git synced 2025-08-06 17:41:00 +00:00

refactor(subscription): replace a regex with strings.CutPrefix

This commit is contained in:
jvoisin 2025-07-06 00:56:19 +02:00 committed by Frédéric Guillot
parent dcfe0a7d94
commit 7a394b0bf8

View file

@ -9,7 +9,6 @@ import (
"io"
"log/slog"
"net/url"
"regexp"
"strings"
"miniflux.app/v2/internal/config"
@ -24,10 +23,6 @@ import (
"github.com/PuerkitoBio/goquery"
)
var (
youtubeChannelRegex = regexp.MustCompile(`channel/(.*)$`)
)
type SubscriptionFinder struct {
requestBuilder *fetcher.RequestBuilder
feedDownloaded bool
@ -300,8 +295,8 @@ func (f *SubscriptionFinder) FindSubscriptionsFromYouTubeChannelPage(websiteURL
return nil, nil
}
if matches := youtubeChannelRegex.FindStringSubmatch(decodedUrl.Path); len(matches) == 2 {
feedURL := fmt.Sprintf(`https://www.youtube.com/feeds/videos.xml?channel_id=%s`, matches[1])
if _, after, found := strings.Cut(decodedUrl.Path, "channel/"); found {
feedURL := "https://www.youtube.com/feeds/videos.xml?channel_id=" + after
return Subscriptions{NewSubscription(websiteURL, feedURL, parser.FormatAtom)}, nil
}