commit 233d0d557cdc3f9d29e7e505578b39020401b921 Author: Líng Yì Date: Tue Feb 20 00:49:52 2024 +0700 Initial commit diff --git a/bcat.go b/bcat.go new file mode 100644 index 0000000..66e0dad --- /dev/null +++ b/bcat.go @@ -0,0 +1,246 @@ +package bcat + +import ( + "encoding/json" + "net/http" + "net/url" + "regexp" + "strconv" + "strings" + + "github.com/antchfx/htmlquery" + "github.com/imroc/req/v3" + "golang.org/x/net/html" +) + +// ChapterContent represents the content of a chapter. +type ChapterContent struct { + Content string `json:"content"` +} + +// ChapterList represents a list of chapters in a novel. +type ChapterLists struct { + Title string `json:"title"` + Slug string `json:"slug"` + URL string `json:"url"` +} + +// NovelDirectoryList represents a list of novels in the directory. +type NovelDirectoryLists struct { + Title string `json:"title"` + Slug string `json:"slug"` + URL string `json:"url"` +} + +// ParseContent parses the content of a chapter based on its slug. +func ParseContent(slug string) (*ChapterContent, error) { + contentURL := "https://bcatranslation.com/" + slug + "/" + resp, err := makeGetRequest(contentURL) + if err != nil { + return &ChapterContent{}, err + } + + doc, err := html.Parse(resp.Body) + if err != nil { + return &ChapterContent{}, err + } + + content := htmlquery.FindOne(doc, "//div[@class='entry-content']") + emptyPTags := htmlquery.Find(content, "./p[not(node())]") + for _, p := range emptyPTags { + content.RemoveChild(p) + } + junkTags := htmlquery.Find(content, "./*[not(self::p)]") + for _, tags := range junkTags { + content.RemoveChild(tags) + } + cleanTitle := htmlquery.Find(content, "./p[starts-with(text(),'Chapter')]") + for _, title := range cleanTitle { + content.RemoveChild(title) + } + cleanWatermark := htmlquery.Find(content, "./p[contains(text(),'bcatranslation')]") + for _, watermark := range cleanWatermark { + content.RemoveChild(watermark) + } + cleanLinks := htmlquery.Find(content, "./p[descendant::a]") + for _, link := range cleanLinks { + content.RemoveChild(link) + } + contents := &ChapterContent{ + Content: strings.TrimSpace(getCombinedPTagsString(content)), + } + + return contents, nil +} + +// ToJSON converts ChapterContent to JSON with optional indentation. +func (chapterContents *ChapterContent) ToJSON(indent ...int) ([]byte, error) { + customIndent := 2 + if len(indent) > 0 { + requestedIndent := indent[0] + if requestedIndent > 0 && requestedIndent <= 8 { + customIndent = requestedIndent + } + } + + jsonOutput, err := json.MarshalIndent(chapterContents, "", strings.Repeat(" ", customIndent)) + if err != nil { + return nil, err + } + return jsonOutput, nil +} + +// ToHTML converts ChapterContent to HTML format. +func (chapterContents *ChapterContent) ToHTML() string { + lines := strings.Split(chapterContents.Content, "\n") + + var contentHTML string + for _, line := range lines { + contentHTML += "

" + line + "

\n" + } + + return strings.TrimSpace(contentHTML) +} + +// ChapterList fetches a list of chapters from the index URL up to 'n' chapters. +func ChapterList(slug string, n int) ([]*ChapterLists, error) { + indexURL := "https://bcatranslation.com/" + slug + "/" + resp, err := makeGetRequest(indexURL) + if err != nil { + return []*ChapterLists{}, err + } + + return parseChapterList(resp, n) +} + +// NovelDirectoryList fetches a list of novels from the directory. +func NovelDirectoryList() ([]*NovelDirectoryLists, error) { + indexURL := "https://bcatranslation.com/" + resp, err := makeGetRequest(indexURL) + if err != nil { + return []*NovelDirectoryLists{}, err + } + + return parseNovelDirectoryList(resp) +} + +func parseChapterList(resp *http.Response, n int) ([]*ChapterLists, error) { + doc, err := htmlquery.Parse(resp.Body) + if err != nil { + return []*ChapterLists{}, err + } + + chapters := []*ChapterLists{} + + body := htmlquery.FindOne(doc, ".//div[@class='entry-content']") + xpathExpr := ".//p[descendant::a]/a" + nodes := htmlquery.Find(body, xpathExpr) + maxChapters := n + if n == 0 { + maxChapters = len(nodes) + } + for i, node := range nodes { + if i >= maxChapters { + break + } + title := htmlquery.InnerText(node) + url := htmlquery.SelectAttr(node, "href") + chapter := &ChapterLists{ + Title: title, + Slug: extractSlug(url), + URL: url, + } + chapters = append(chapters, chapter) + } + + return chapters, nil +} + +func parseNovelDirectoryList(resp *http.Response) ([]*NovelDirectoryLists, error) { + doc, err := htmlquery.Parse(resp.Body) + if err != nil { + return []*NovelDirectoryLists{}, err + } + + results := []*NovelDirectoryLists{} + + for _, result := range htmlquery.Find(doc, "//li[@id='menu-item-9952']//ul/li") { + body := htmlquery.FindOne(result, "//li") + title := strings.TrimSpace(htmlquery.InnerText(htmlquery.FindOne(body, "//a"))) + url := htmlquery.SelectAttr(htmlquery.FindOne(body, "//a"), "href") + + resultStruct := &NovelDirectoryLists{ + Title: title, + Slug: extractSlug(url), + URL: url, + } + + results = append(results, resultStruct) + } + + return results, nil +} + +// GetLatestChapter retrieves the latest chapter number for a given title. +func GetLatestChapter(title string) (int, error) { + apiURL := "https://bcatranslation.com/wp-json/wp/v2/posts?search=" + url.QueryEscape(title) + "&per_page=1" + resp, err := makeGetRequest(apiURL) + if err != nil { + return 0, err + } + + var data []map[string]interface{} + decoder := json.NewDecoder(resp.Body) + if err := decoder.Decode(&data); err != nil { + return 0, err + } + + if len(data) > 0 { + if slug, ok := data[0]["slug"].(string); ok { + pattern := regexp.MustCompile(`chapter-(\d+)`) + match := pattern.FindStringSubmatch(slug) + n, err := strconv.Atoi(match[1]) + if err != nil { + return 0, err + } + return n, nil + } else { + return 0, err + } + } else { + return 0, err + } +} + +// getCombinedPTagsString extracts text content of all

tags in the HTML document and returns it as a single string. +func getCombinedPTagsString(doc *html.Node) string { + var sb strings.Builder + + pTags := htmlquery.Find(doc, "./p") + for idx, p := range pTags { + if idx > 0 { + sb.WriteString("\n") + } + sb.WriteString(strings.TrimSpace(htmlquery.InnerText(p))) + } + + return sb.String() +} + +func makeGetRequest(url string) (*http.Response, error) { + client := req.C().ImpersonateChrome() + resp, err := client.R().Get(url) + if err != nil { + return nil, err + } + return resp.Response, nil +} + +func extractSlug(url string) string { + re := regexp.MustCompile(`([^/]+)\/$`) + matches := re.FindStringSubmatch(url) + if len(matches) > 1 { + return matches[1] + } + return "" +} diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..435b0f9 --- /dev/null +++ b/go.mod @@ -0,0 +1,33 @@ +module git.disroot.org/ancientcatz/bcat + +go 1.21.6 + +require ( + github.com/antchfx/htmlquery v1.3.0 + github.com/imroc/req/v3 v3.42.3 + golang.org/x/net v0.21.0 +) + +require ( + github.com/andybalholm/brotli v1.0.6 // indirect + github.com/antchfx/xpath v1.2.3 // indirect + github.com/cloudflare/circl v1.3.7 // indirect + github.com/go-task/slim-sprig v0.0.0-20230315185526-52ccab3ef572 // indirect + github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect + github.com/google/pprof v0.0.0-20231229205709-960ae82b1e42 // indirect + github.com/hashicorp/errwrap v1.1.0 // indirect + github.com/hashicorp/go-multierror v1.1.1 // indirect + github.com/klauspost/compress v1.17.4 // indirect + github.com/onsi/ginkgo/v2 v2.13.2 // indirect + github.com/quic-go/qpack v0.4.0 // indirect + github.com/quic-go/qtls-go1-20 v0.4.1 // indirect + github.com/quic-go/quic-go v0.40.1 // indirect + github.com/refraction-networking/utls v1.6.0 // indirect + go.uber.org/mock v0.4.0 // indirect + golang.org/x/crypto v0.19.0 // indirect + golang.org/x/exp v0.0.0-20240103183307-be819d1f06fc // indirect + golang.org/x/mod v0.14.0 // indirect + golang.org/x/sys v0.17.0 // indirect + golang.org/x/text v0.14.0 // indirect + golang.org/x/tools v0.16.1 // indirect +) diff --git a/go.sum b/go.sum new file mode 100644 index 0000000..6556705 --- /dev/null +++ b/go.sum @@ -0,0 +1,98 @@ +github.com/andybalholm/brotli v1.0.6 h1:Yf9fFpf49Zrxb9NlQaluyE92/+X7UVHlhMNJN2sxfOI= +github.com/andybalholm/brotli v1.0.6/go.mod h1:fO7iG3H7G2nSZ7m0zPUDn85XEX2GTukHGRSepvi9Eig= +github.com/antchfx/htmlquery v1.3.0 h1:5I5yNFOVI+egyia5F2s/5Do2nFWxJz41Tr3DyfKD25E= +github.com/antchfx/htmlquery v1.3.0/go.mod h1:zKPDVTMhfOmcwxheXUsx4rKJy8KEY/PU6eXr/2SebQ8= +github.com/antchfx/xpath v1.2.3 h1:CCZWOzv5bAqjVv0offZ2LVgVYFbeldKQVuLNbViZdes= +github.com/antchfx/xpath v1.2.3/go.mod h1:i54GszH55fYfBmoZXapTHN8T8tkcHfRgLyVwwqzXNcs= +github.com/cloudflare/circl v1.3.7 h1:qlCDlTPz2n9fu58M0Nh1J/JzcFpfgkFHHX3O35r5vcU= +github.com/cloudflare/circl v1.3.7/go.mod h1:sRTcRWXGLrKw6yIGJ+l7amYJFfAXbZG0kBSc8r4zxgA= +github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= +github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= +github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= +github.com/go-logr/logr v1.3.0 h1:2y3SDp0ZXuc6/cjLSZ+Q3ir+QB9T/iG5yYRXqsagWSY= +github.com/go-logr/logr v1.3.0/go.mod h1:9T104GzyrTigFIr8wt5mBrctHMim0Nb2HLGrmQ40KvY= +github.com/go-task/slim-sprig v0.0.0-20230315185526-52ccab3ef572 h1:tfuBGBXKqDEevZMzYi5KSi8KkcZtzBcTgAUUtapy0OI= +github.com/go-task/slim-sprig v0.0.0-20230315185526-52ccab3ef572/go.mod h1:9Pwr4B2jHnOSGXyyzV8ROjYa2ojvAY6HCGYYfMoC3Ls= +github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da h1:oI5xCqsCo564l8iNU+DwB5epxmsaqB+rhGL0m5jtYqE= +github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= +github.com/golang/protobuf v1.5.3 h1:KhyjKVUg7Usr/dYsdSqoFveMYd5ko72D+zANwlG1mmg= +github.com/golang/protobuf v1.5.3/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY= +github.com/google/go-cmp v0.6.0 h1:ofyhxvXcZhMsU5ulbFiLKl/XBFqE1GSq7atu8tAmTRI= +github.com/google/go-cmp v0.6.0/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY= +github.com/google/pprof v0.0.0-20231229205709-960ae82b1e42 h1:dHLYa5D8/Ta0aLR2XcPsrkpAgGeFs6thhMcQK0oQ0n8= +github.com/google/pprof v0.0.0-20231229205709-960ae82b1e42/go.mod h1:czg5+yv1E0ZGTi6S6vVK1mke0fV+FaUhNGcd6VRS9Ik= +github.com/hashicorp/errwrap v1.0.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4= +github.com/hashicorp/errwrap v1.1.0 h1:OxrOeh75EUXMY8TBjag2fzXGZ40LB6IKw45YeGUDY2I= +github.com/hashicorp/errwrap v1.1.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4= +github.com/hashicorp/go-multierror v1.1.1 h1:H5DkEtf6CXdFp0N0Em5UCwQpXMWke8IA0+lD48awMYo= +github.com/hashicorp/go-multierror v1.1.1/go.mod h1:iw975J/qwKPdAO1clOe2L8331t/9/fmwbPZ6JB6eMoM= +github.com/imroc/req/v3 v3.42.3 h1:ryPG2AiwouutAopwPxKpWKyxgvO8fB3hts4JXlh3PaE= +github.com/imroc/req/v3 v3.42.3/go.mod h1:Axz9Y/a2b++w5/Jht3IhQsdBzrG1ftJd1OJhu21bB2Q= +github.com/klauspost/compress v1.17.4 h1:Ej5ixsIri7BrIjBkRZLTo6ghwrEtHFk7ijlczPW4fZ4= +github.com/klauspost/compress v1.17.4/go.mod h1:/dCuZOvVtNoHsyb+cuJD3itjs3NbnF6KH9zAO4BDxPM= +github.com/onsi/ginkgo/v2 v2.13.2 h1:Bi2gGVkfn6gQcjNjZJVO8Gf0FHzMPf2phUei9tejVMs= +github.com/onsi/ginkgo/v2 v2.13.2/go.mod h1:XStQ8QcGwLyF4HdfcZB8SFOS/MWCgDuXMSBe6zrvLgM= +github.com/onsi/gomega v1.29.0 h1:KIA/t2t5UBzoirT4H9tsML45GEbo3ouUnBHsCfD2tVg= +github.com/onsi/gomega v1.29.0/go.mod h1:9sxs+SwGrKI0+PWe4Fxa9tFQQBG5xSsSbMXOI8PPpoQ= +github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= +github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= +github.com/quic-go/qpack v0.4.0 h1:Cr9BXA1sQS2SmDUWjSofMPNKmvF6IiIfDRmgU0w1ZCo= +github.com/quic-go/qpack v0.4.0/go.mod h1:UZVnYIfi5GRk+zI9UMaCPsmZ2xKJP7XBUvVyT1Knj9A= +github.com/quic-go/qtls-go1-20 v0.4.1 h1:D33340mCNDAIKBqXuAvexTNMUByrYmFYVfKfDN5nfFs= +github.com/quic-go/qtls-go1-20 v0.4.1/go.mod h1:X9Nh97ZL80Z+bX/gUXMbipO6OxdiDi58b/fMC9mAL+k= +github.com/quic-go/quic-go v0.40.1 h1:X3AGzUNFs0jVuO3esAGnTfvdgvL4fq655WaOi1snv1Q= +github.com/quic-go/quic-go v0.40.1/go.mod h1:PeN7kuVJ4xZbxSv/4OX6S1USOX8MJvydwpTx31vx60c= +github.com/refraction-networking/utls v1.6.0 h1:X5vQMqVx7dY7ehxxqkFER/W6DSjy8TMqSItXm8hRDYQ= +github.com/refraction-networking/utls v1.6.0/go.mod h1:kHJ6R9DFFA0WsRgBM35iiDku4O7AqPR6y79iuzW7b10= +github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= +github.com/stretchr/testify v1.6.1 h1:hDPOHmpOpP40lSULcqw7IrRb/u7w6RpDC9399XyoNd0= +github.com/stretchr/testify v1.6.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= +github.com/yuin/goldmark v1.4.13/go.mod h1:6yULJ656Px+3vBD8DxQVa3kxgyrAnzto9xy5taEt/CY= +go.uber.org/mock v0.4.0 h1:VcM4ZOtdbR4f6VXfiOpwpVJDL6lCReaZ6mw31wqh7KU= +go.uber.org/mock v0.4.0/go.mod h1:a6FSlNadKUHUa9IP5Vyt1zh4fC7uAwxMutEAscFbkZc= +golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= +golang.org/x/crypto v0.0.0-20210921155107-089bfa567519/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= +golang.org/x/crypto v0.19.0 h1:ENy+Az/9Y1vSrlrvBSyna3PITt4tiZLf7sgCjZBX7Wo= +golang.org/x/crypto v0.19.0/go.mod h1:Iy9bg/ha4yyC70EfRS8jz+B6ybOBKMaSxLj6P6oBDfU= +golang.org/x/exp v0.0.0-20240103183307-be819d1f06fc h1:ao2WRsKSzW6KuUY9IWPwWahcHCgR0s52IfwutMfEbdM= +golang.org/x/exp v0.0.0-20240103183307-be819d1f06fc/go.mod h1:iRJReGqOEeBhDZGkGbynYwcHlctCvnjTYIamk7uXpHI= +golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4/go.mod h1:jJ57K6gSWd91VN4djpZkiMVwK6gcyfeH4XE8wZrZaV4= +golang.org/x/mod v0.14.0 h1:dGoOF9QVLYng8IHTm7BAyWqCqSheQ5pYWGhzW00YJr0= +golang.org/x/mod v0.14.0/go.mod h1:hTbmBsO62+eylJbnUtE2MGJUyE7QWk4xUqPFrRgJ+7c= +golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= +golang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= +golang.org/x/net v0.0.0-20220722155237-a158d28d115b/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c= +golang.org/x/net v0.5.0/go.mod h1:DivGGAXEgPSlEBzxGzZI+ZLohi+xUj054jfeKui00ws= +golang.org/x/net v0.21.0 h1:AQyQV4dYCvJ7vGmJyKki9+PBdyvhkSd8EIx/qb0AYv4= +golang.org/x/net v0.21.0/go.mod h1:bIjVDfnllIU7BJ2DNgfnXvpSvtn8VRwhlsaeUTyUS44= +golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20220722155255-886fb9371eb4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= +golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.4.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.17.0 h1:25cE3gD+tdBA7lp7QfhuV+rJiE9YXTcS3VG1SqssI/Y= +golang.org/x/sys v0.17.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= +golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= +golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= +golang.org/x/term v0.4.0/go.mod h1:9P2UbLfCdcvo3p/nzKvsmas4TnlujnuoV9hGgYzW1lQ= +golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= +golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= +golang.org/x/text v0.3.7/go.mod h1:u+2+/6zg+i71rQMx5EYifcz6MCKuco9NR6JIITiCfzQ= +golang.org/x/text v0.6.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8= +golang.org/x/text v0.14.0 h1:ScX5w1eTa3QqT8oi6+ziP7dTV1S2+ALU0bI+0zXKWiQ= +golang.org/x/text v0.14.0/go.mod h1:18ZOQIKpY8NJVqYksKHtTdi31H5itFRjB5/qKTNYzSU= +golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= +golang.org/x/tools v0.0.0-20191119224855-298f0cb1881e/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.1.12/go.mod h1:hNGJHUnrk76NpqgfD5Aqm5Crs+Hm0VOH/i9J2+nxYbc= +golang.org/x/tools v0.16.1 h1:TLyB3WofjdOEepBHAU20JdNC1Zbg87elYofWYAY5oZA= +golang.org/x/tools v0.16.1/go.mod h1:kYVVN6I1mBNoB1OX+noeBjbRk4IUEPa7JJ+TJMEooJ0= +golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= +google.golang.org/protobuf v1.28.0 h1:w43yiav+6bVFTBQFZX0r7ipe9JQ1QsbMgHwbBziscLw= +google.golang.org/protobuf v1.28.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= +gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= +gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= +gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA= +gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=