Compare commits
No commits in common. "8ccc631883c0035d574aa80b6809c3a6422a52dc" and "da523ea1b2b390a3a28fef1f01057032e8405a45" have entirely different histories.
8ccc631883
...
da523ea1b2
|
@ -1,11 +1,6 @@
|
|||
name: CI2
|
||||
|
||||
on:
|
||||
push:
|
||||
tags:
|
||||
- "v*"
|
||||
pull_request:
|
||||
|
||||
on: [push, pull_request]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
|
|
@ -57,7 +57,7 @@ func study() *grumble.Command {
|
|||
l.Init()
|
||||
defer l.Quit()
|
||||
l.LearnArticle(user)
|
||||
l.RadioStation(user)
|
||||
l.LearnVideo(user)
|
||||
if config.Model == 2 {
|
||||
l.RespondDaily(user, "daily")
|
||||
} else if config.Model == 3 {
|
||||
|
|
52
go.mod
52
go.mod
|
@ -8,10 +8,10 @@ require (
|
|||
github.com/Lyrics-you/sail-logrus-formatter v1.3.1
|
||||
github.com/desertbit/grumble v1.1.3
|
||||
github.com/dustin/go-humanize v1.0.0
|
||||
github.com/fsnotify/fsnotify v1.6.0
|
||||
github.com/fsnotify/fsnotify v1.5.4
|
||||
github.com/getlantern/systray v1.2.1
|
||||
github.com/gin-contrib/gzip v0.0.6
|
||||
github.com/gin-gonic/gin v1.9.1
|
||||
github.com/gin-gonic/gin v1.8.1
|
||||
github.com/go-telegram-bot-api/telegram-bot-api/v5 v5.4.0-beta.0
|
||||
github.com/google/uuid v1.3.0
|
||||
github.com/huoxue1/xdaemon v0.0.0-20221003093816-b336469d0ae8
|
||||
|
@ -25,7 +25,7 @@ require (
|
|||
github.com/playwright-community/playwright-go v0.2000.1
|
||||
github.com/robfig/cron/v3 v3.0.0
|
||||
github.com/sirupsen/logrus v1.9.0
|
||||
github.com/spf13/viper v1.16.0
|
||||
github.com/spf13/viper v1.12.0
|
||||
github.com/tidwall/gjson v1.12.1
|
||||
gopkg.in/yaml.v3 v3.0.1
|
||||
modernc.org/sqlite v1.15.2
|
||||
|
@ -33,15 +33,12 @@ require (
|
|||
)
|
||||
|
||||
require (
|
||||
github.com/bytedance/sonic v1.9.1 // indirect
|
||||
github.com/chenzhuoyu/base64x v0.0.0-20221115062448-fe3a3abad311 // indirect
|
||||
github.com/danwakefield/fnmatch v0.0.0-20160403171240-cbb64ac3d964 // indirect
|
||||
github.com/desertbit/closer/v3 v3.1.2 // indirect
|
||||
github.com/desertbit/columnize v2.1.0+incompatible // indirect
|
||||
github.com/desertbit/go-shlex v0.1.1 // indirect
|
||||
github.com/desertbit/readline v1.5.1 // indirect
|
||||
github.com/fatih/color v1.13.0 // indirect
|
||||
github.com/gabriel-vasile/mimetype v1.4.2 // indirect
|
||||
github.com/getlantern/context v0.0.0-20190109183933-c447772a6520 // indirect
|
||||
github.com/getlantern/errors v0.0.0-20190325191628-abdb3e3e36f7 // indirect
|
||||
github.com/getlantern/golog v0.0.0-20190830074920-4ef2e798c2d7 // indirect
|
||||
|
@ -49,11 +46,11 @@ require (
|
|||
github.com/getlantern/hidden v0.0.0-20190325191715-f02dbb02be55 // indirect
|
||||
github.com/getlantern/ops v0.0.0-20190325191751-d70cb0d6f85f // indirect
|
||||
github.com/gin-contrib/sse v0.1.0 // indirect
|
||||
github.com/go-playground/locales v0.14.1 // indirect
|
||||
github.com/go-playground/universal-translator v0.18.1 // indirect
|
||||
github.com/go-playground/validator/v10 v10.14.0 // indirect
|
||||
github.com/go-playground/locales v0.14.0 // indirect
|
||||
github.com/go-playground/universal-translator v0.18.0 // indirect
|
||||
github.com/go-playground/validator/v10 v10.11.0 // indirect
|
||||
github.com/go-stack/stack v1.8.1 // indirect
|
||||
github.com/goccy/go-json v0.10.2 // indirect
|
||||
github.com/goccy/go-json v0.9.11 // indirect
|
||||
github.com/golang/snappy v0.0.4 // indirect
|
||||
github.com/hashicorp/errwrap v1.1.0 // indirect
|
||||
github.com/hashicorp/go-multierror v1.1.1 // indirect
|
||||
|
@ -61,38 +58,35 @@ require (
|
|||
github.com/jonboulle/clockwork v0.2.2 // indirect
|
||||
github.com/json-iterator/go v1.1.12 // indirect
|
||||
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 // indirect
|
||||
github.com/klauspost/cpuid/v2 v2.2.4 // indirect
|
||||
github.com/leodido/go-urn v1.2.4 // indirect
|
||||
github.com/leodido/go-urn v1.2.1 // indirect
|
||||
github.com/lestrrat-go/strftime v1.0.5 // indirect
|
||||
github.com/magiconair/properties v1.8.7 // indirect
|
||||
github.com/magiconair/properties v1.8.6 // indirect
|
||||
github.com/mattn/go-colorable v0.1.12 // indirect
|
||||
github.com/mattn/go-isatty v0.0.19 // indirect
|
||||
github.com/mattn/go-isatty v0.0.16 // indirect
|
||||
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
|
||||
github.com/modern-go/reflect2 v1.0.2 // indirect
|
||||
github.com/oxtoacart/bpool v0.0.0-20190530202638-03653db5a59c // indirect
|
||||
github.com/pelletier/go-toml v1.9.5 // indirect
|
||||
github.com/pelletier/go-toml/v2 v2.0.8 // indirect
|
||||
github.com/pelletier/go-toml/v2 v2.0.5 // indirect
|
||||
github.com/pkg/errors v0.9.1 // indirect
|
||||
github.com/remyoudompheng/bigfft v0.0.0-20200410134404-eec4a21b6bb0 // indirect
|
||||
github.com/spf13/afero v1.9.5 // indirect
|
||||
github.com/spf13/cast v1.5.1 // indirect
|
||||
github.com/spf13/afero v1.8.2 // indirect
|
||||
github.com/spf13/cast v1.5.0 // indirect
|
||||
github.com/spf13/jwalterweatherman v1.1.0 // indirect
|
||||
github.com/spf13/pflag v1.0.5 // indirect
|
||||
github.com/subosito/gotenv v1.4.2 // indirect
|
||||
github.com/subosito/gotenv v1.3.0 // indirect
|
||||
github.com/syndtr/goleveldb v1.0.0 // indirect
|
||||
github.com/tidwall/match v1.1.1 // indirect
|
||||
github.com/tidwall/pretty v1.2.0 // indirect
|
||||
github.com/twitchyliquid64/golang-asm v0.15.1 // indirect
|
||||
github.com/ugorji/go/codec v1.2.11 // indirect
|
||||
golang.org/x/arch v0.3.0 // indirect
|
||||
golang.org/x/crypto v0.9.0 // indirect
|
||||
golang.org/x/mod v0.8.0 // indirect
|
||||
golang.org/x/net v0.10.0 // indirect
|
||||
golang.org/x/sys v0.8.0 // indirect
|
||||
golang.org/x/text v0.9.0 // indirect
|
||||
golang.org/x/tools v0.6.0 // indirect
|
||||
google.golang.org/protobuf v1.30.0 // indirect
|
||||
gopkg.in/ini.v1 v1.67.0 // indirect
|
||||
github.com/ugorji/go/codec v1.2.7 // indirect
|
||||
golang.org/x/crypto v0.0.0-20220829220503-c86fa9a7ed90 // indirect
|
||||
golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4 // indirect
|
||||
golang.org/x/net v0.7.0 // indirect
|
||||
golang.org/x/sys v0.5.0 // indirect
|
||||
golang.org/x/text v0.7.0 // indirect
|
||||
golang.org/x/tools v0.1.12 // indirect
|
||||
google.golang.org/protobuf v1.28.1 // indirect
|
||||
gopkg.in/ini.v1 v1.66.4 // indirect
|
||||
gopkg.in/square/go-jose.v2 v2.6.0 // indirect
|
||||
gopkg.in/yaml.v2 v2.4.0 // indirect
|
||||
lukechampine.com/uint128 v1.1.1 // indirect
|
||||
|
|
108
go.sum
108
go.sum
|
@ -68,16 +68,10 @@ github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973/go.mod h1:Dwedo/Wpr24
|
|||
github.com/beorn7/perks v1.0.0/go.mod h1:KWe93zE9D1o94FZ5RNwFwVgaQK1VOXiVxmqh+CedLV8=
|
||||
github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw=
|
||||
github.com/bgentry/speakeasy v0.1.0/go.mod h1:+zsyZBPWlz7T6j88CTgSN5bM796AkVf0kBD4zp0CCIs=
|
||||
github.com/bytedance/sonic v1.5.0/go.mod h1:ED5hyg4y6t3/9Ku1R6dU/4KyJ48DZ4jPhfY1O2AihPM=
|
||||
github.com/bytedance/sonic v1.9.1 h1:6iJ6NqdoxCDr6mbY8h18oSO+cShGSMRGCEo7F2h0x8s=
|
||||
github.com/bytedance/sonic v1.9.1/go.mod h1:i736AoUSYt75HyZLoJW9ERYxcy6eaN6h4BZXU064P/U=
|
||||
github.com/casbin/casbin/v2 v2.1.2/go.mod h1:YcPU1XXisHhLzuxH9coDNf2FbKpjGlbCg3n9yuLkIJQ=
|
||||
github.com/cenkalti/backoff v2.2.1+incompatible/go.mod h1:90ReRw6GdpyfrHakVjL/QHaoyV4aDUVVkXQJJJ3NXXM=
|
||||
github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU=
|
||||
github.com/cespare/xxhash/v2 v2.1.1/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs=
|
||||
github.com/chenzhuoyu/base64x v0.0.0-20211019084208-fb5309c8db06/go.mod h1:DH46F32mSOjUmXrMHnKwZdA8wcEefY7UVqBKYGjpdQY=
|
||||
github.com/chenzhuoyu/base64x v0.0.0-20221115062448-fe3a3abad311 h1:qSGYFH7+jGhDF8vLC+iwCD4WpbV1EBDSzWkJODFLams=
|
||||
github.com/chenzhuoyu/base64x v0.0.0-20221115062448-fe3a3abad311/go.mod h1:b583jCggY9gE99b6G5LEC39OIiVsWj+R97kbl5odCEk=
|
||||
github.com/chzyer/logex v1.1.10 h1:Swpa1K6QvQznwJRcfTfQJmTE72DqScAa40E+fbHEXEE=
|
||||
github.com/chzyer/logex v1.1.10/go.mod h1:+Ywpsq7O8HXn0nuIou7OrIPyXbp3wmkHB+jjWRnGsAI=
|
||||
github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e/go.mod h1:nSuG5e5PlCu98SY8svDHJxuZscDgtXS6KTTbou5AhLI=
|
||||
|
@ -139,14 +133,9 @@ github.com/flynn/go-shlex v0.0.0-20150515145356-3f9db97f8568/go.mod h1:xEzjJPgXI
|
|||
github.com/franela/goblin v0.0.0-20200105215937-c9ffbefa60db/go.mod h1:7dvUGVsVBjqR7JHJk0brhHOZYGmfBYOrK0ZhYMEtBr4=
|
||||
github.com/franela/goreq v0.0.0-20171204163338-bcd34c9993f8/go.mod h1:ZhphrRTfi2rbfLwlschooIH4+wKKDR4Pdxhh+TRoA20=
|
||||
github.com/frankban/quicktest v1.14.3 h1:FJKSZTDHjyhriyC81FLQ0LY93eSai0ZyR/ZIkd3ZUKE=
|
||||
github.com/frankban/quicktest v1.14.4 h1:g2rn0vABPOOXmZUj+vbmUp0lPoXEMuhTpIluN0XL9UY=
|
||||
github.com/fsnotify/fsnotify v1.4.7/go.mod h1:jwhsz4b93w/PPRr/qN1Yymfu8t87LnFCMoQvtojpjFo=
|
||||
github.com/fsnotify/fsnotify v1.5.4 h1:jRbGcIw6P2Meqdwuo0H1p6JVLbL5DHKAKlYndzMwVZI=
|
||||
github.com/fsnotify/fsnotify v1.5.4/go.mod h1:OVB6XrOHzAwXMpEM7uPOzcehqUV2UqJxmVXmkdnm1bU=
|
||||
github.com/fsnotify/fsnotify v1.6.0 h1:n+5WquG0fcWoWp6xPWfHdbskMCQaFnG6PfBrh1Ky4HY=
|
||||
github.com/fsnotify/fsnotify v1.6.0/go.mod h1:sl3t1tCWJFWoRz9R8WJCbQihKKwmorjAbSClcnxKAGw=
|
||||
github.com/gabriel-vasile/mimetype v1.4.2 h1:w5qFW6JKBz9Y393Y4q372O9A7cUSequkh1Q7OhCmWKU=
|
||||
github.com/gabriel-vasile/mimetype v1.4.2/go.mod h1:zApsH/mKG4w07erKIaJPFiX0Tsq9BFQgN3qGY5GnNgA=
|
||||
github.com/getlantern/context v0.0.0-20190109183933-c447772a6520 h1:NRUJuo3v3WGC/g5YiyF790gut6oQr5f3FBI88Wv0dx4=
|
||||
github.com/getlantern/context v0.0.0-20190109183933-c447772a6520/go.mod h1:L+mq6/vvYHKjCX2oez0CgEAJmbq1fbb/oNJIWQkBybY=
|
||||
github.com/getlantern/errors v0.0.0-20190325191628-abdb3e3e36f7 h1:6uJ+sZ/e03gkbqZ0kUG6mfKoqDb4XMAzMIwlajq19So=
|
||||
|
@ -166,9 +155,8 @@ github.com/gin-contrib/gzip v0.0.6 h1:NjcunTcGAj5CO1gn4N8jHOSIeRFHIbn51z6K+xaN4d
|
|||
github.com/gin-contrib/gzip v0.0.6/go.mod h1:QOJlmV2xmayAjkNS2Y8NQsMneuRShOU/kjovCXNuzzk=
|
||||
github.com/gin-contrib/sse v0.1.0 h1:Y/yl/+YNO8GZSjAhjMsSuLt29uWRFHdHYUb5lYOV9qE=
|
||||
github.com/gin-contrib/sse v0.1.0/go.mod h1:RHrZQHXnP2xjPF+u1gW/2HnVO7nvIa9PG3Gm+fLHvGI=
|
||||
github.com/gin-gonic/gin v1.8.1 h1:4+fr/el88TOO3ewCmQr8cx/CtZ/umlIRIs5M4NTNjf8=
|
||||
github.com/gin-gonic/gin v1.8.1/go.mod h1:ji8BvRH1azfM+SYow9zQ6SZMvR8qOMZHmsCuWR9tTTk=
|
||||
github.com/gin-gonic/gin v1.9.1 h1:4idEAncQnU5cB7BeOkPtxjfCSye0AAm1R0RVIqJ+Jmg=
|
||||
github.com/gin-gonic/gin v1.9.1/go.mod h1:hPrL7YrpYKXt5YId3A/Tnip5kqbEAP+KLuI3SUcPTeU=
|
||||
github.com/go-gl/glfw v0.0.0-20190409004039-e6da0acd62b1/go.mod h1:vR7hzQXu2zJy9AVAgeJqvqgH9Q5CA+iKCZ2gyEVpxRU=
|
||||
github.com/go-gl/glfw/v3.3/glfw v0.0.0-20191125211704-12ad95a8df72/go.mod h1:tQ2UAYgL5IevRw8kRxooKSPJfGvJ9fJQFa0TUsXzTg8=
|
||||
github.com/go-gl/glfw/v3.3/glfw v0.0.0-20200222043503-6f7a984d4dc4/go.mod h1:tQ2UAYgL5IevRw8kRxooKSPJfGvJ9fJQFa0TUsXzTg8=
|
||||
|
@ -178,17 +166,15 @@ github.com/go-kit/kit v0.10.0/go.mod h1:xUsJbQ/Fp4kEt7AFgCuvyX4a71u8h9jB8tj/ORgO
|
|||
github.com/go-logfmt/logfmt v0.3.0/go.mod h1:Qt1PoO58o5twSAckw1HlFXLmHsOX5/0LbT9GBnD5lWE=
|
||||
github.com/go-logfmt/logfmt v0.4.0/go.mod h1:3RMwSq7FuexP4Kalkev3ejPJsZTpXXBr9+V4qmtdjCk=
|
||||
github.com/go-logfmt/logfmt v0.5.0/go.mod h1:wCYkCAKZfumFQihp8CzCvQ3paCTfi41vtzG1KdI/P7A=
|
||||
github.com/go-playground/assert/v2 v2.0.1 h1:MsBgLAaY856+nPRTKrp3/OZK38U/wa0CcBYNjji3q3A=
|
||||
github.com/go-playground/assert/v2 v2.0.1/go.mod h1:VDjEfimB/XKnb+ZQfWdccd7VUvScMdVu0Titje2rxJ4=
|
||||
github.com/go-playground/assert/v2 v2.2.0 h1:JvknZsQTYeFEAhQwI4qEt9cyV5ONwRHC+lYKSsYSR8s=
|
||||
github.com/go-playground/locales v0.14.0 h1:u50s323jtVGugKlcYeyzC0etD1HifMjqmJqb8WugfUU=
|
||||
github.com/go-playground/locales v0.14.0/go.mod h1:sawfccIbzZTqEDETgFXqTho0QybSa7l++s0DH+LDiLs=
|
||||
github.com/go-playground/locales v0.14.1 h1:EWaQ/wswjilfKLTECiXz7Rh+3BjFhfDFKv/oXslEjJA=
|
||||
github.com/go-playground/locales v0.14.1/go.mod h1:hxrqLVvrK65+Rwrd5Fc6F2O76J/NuW9t0sjnWqG1slY=
|
||||
github.com/go-playground/universal-translator v0.18.0 h1:82dyy6p4OuJq4/CByFNOn/jYrnRPArHwAcmLoJZxyho=
|
||||
github.com/go-playground/universal-translator v0.18.0/go.mod h1:UvRDBj+xPUEGrFYl+lu/H90nyDXpg0fqeB/AQUGNTVA=
|
||||
github.com/go-playground/universal-translator v0.18.1 h1:Bcnm0ZwsGyWbCzImXv+pAJnYK9S473LQFuzCbDbfSFY=
|
||||
github.com/go-playground/universal-translator v0.18.1/go.mod h1:xekY+UJKNuX9WP91TpwSH2VMlDf28Uj24BCp08ZFTUY=
|
||||
github.com/go-playground/validator/v10 v10.10.0/go.mod h1:74x4gJWsvQexRdW8Pn3dXSGrTK4nAUsbPlLADvpJkos=
|
||||
github.com/go-playground/validator/v10 v10.14.0 h1:vgvQWe3XCz3gIeFDm/HnTIbj6UGmg/+t63MyGU2n5js=
|
||||
github.com/go-playground/validator/v10 v10.14.0/go.mod h1:9iXMNT7sEkjXb0I+enO7QXmzG6QCsPWY4zveKFVRSyU=
|
||||
github.com/go-playground/validator/v10 v10.11.0 h1:0W+xRM511GY47Yy3bZUbJVitCNg2BOGlCyvTqsp/xIw=
|
||||
github.com/go-playground/validator/v10 v10.11.0/go.mod h1:i+3WkQ1FvaUjjxh1kSvIA4dMGDBiPU55YFDl0WbKdWU=
|
||||
github.com/go-sql-driver/mysql v1.4.0/go.mod h1:zAC/RDZ24gD3HViQzih4MyKcchzm+sOG5ZlKdlhCg5w=
|
||||
github.com/go-sql-driver/mysql v1.6.0 h1:BCTh4TKNUYmOmMUcQ3IipzF5prigylS7XXjEkfCHuOE=
|
||||
github.com/go-sql-driver/mysql v1.6.0/go.mod h1:DCzpHaOWr8IXmIStZouvnhqoel9Qv2LBy8hT2VhHyBg=
|
||||
|
@ -199,8 +185,8 @@ github.com/go-telegram-bot-api/telegram-bot-api/v5 v5.4.0-beta.0 h1:mbEDV1g6RBzK
|
|||
github.com/go-telegram-bot-api/telegram-bot-api/v5 v5.4.0-beta.0/go.mod h1:5+h9c5l1Z/+Pi+5boa1Fmr4Q+FImsXYnifor92ljaVs=
|
||||
github.com/goccy/go-json v0.8.1/go.mod h1:6MelG93GURQebXPDq3khkgXZkazVtN9CRI+MGFi0w8I=
|
||||
github.com/goccy/go-json v0.9.7/go.mod h1:6MelG93GURQebXPDq3khkgXZkazVtN9CRI+MGFi0w8I=
|
||||
github.com/goccy/go-json v0.10.2 h1:CrxCmQqYDkv1z7lO7Wbh2HN93uovUHgrECaO5ZrCXAU=
|
||||
github.com/goccy/go-json v0.10.2/go.mod h1:6MelG93GURQebXPDq3khkgXZkazVtN9CRI+MGFi0w8I=
|
||||
github.com/goccy/go-json v0.9.11 h1:/pAaQDLHEoCq/5FFmSKBswWmK6H0e8g4159Kc/X/nqk=
|
||||
github.com/goccy/go-json v0.9.11/go.mod h1:6MelG93GURQebXPDq3khkgXZkazVtN9CRI+MGFi0w8I=
|
||||
github.com/gofrs/uuid v3.2.0+incompatible/go.mod h1:b2aQJv3Z4Fp6yNu3cdSllBxTCLRxnplIgP/c0N/04lM=
|
||||
github.com/gofrs/uuid v4.0.0+incompatible/go.mod h1:b2aQJv3Z4Fp6yNu3cdSllBxTCLRxnplIgP/c0N/04lM=
|
||||
github.com/gogo/googleapis v1.1.0/go.mod h1:gf4bu3Q80BeJ6H1S1vYPm8/ELATdvryBaNFGgqEef3s=
|
||||
|
@ -395,9 +381,6 @@ github.com/kisielk/errcheck v1.1.0/go.mod h1:EZBBE59ingxPouuu3KfxchcWSUPOHkagtvW
|
|||
github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck=
|
||||
github.com/klauspost/compress v1.15.10 h1:Ai8UzuomSCDw90e1qNMtb15msBXsNpH6gzkkENQNcJo=
|
||||
github.com/klauspost/compress v1.15.10/go.mod h1:QPwzmACJjUTFsnSHH934V6woptycfrDDJnH7hvFVbGM=
|
||||
github.com/klauspost/cpuid/v2 v2.0.9/go.mod h1:FInQzS24/EEf25PyTYn52gqo7WaD8xa0213Md/qVLRg=
|
||||
github.com/klauspost/cpuid/v2 v2.2.4 h1:acbojRNwl3o09bUq+yDCtZFc1aiwaAAxtcn8YkZXnvk=
|
||||
github.com/klauspost/cpuid/v2 v2.2.4/go.mod h1:RVVoqg1df56z8g3pUjL/3lE5UfnlrJX8tyFgg4nqhuY=
|
||||
github.com/konsorten/go-windows-terminal-sequences v1.0.1/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ=
|
||||
github.com/konsorten/go-windows-terminal-sequences v1.0.2/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ=
|
||||
github.com/kr/fs v0.1.0/go.mod h1:FFnZGqtBN9Gxj7eW1uZ42v5BccTP0vu6NEaFoC2HwRg=
|
||||
|
@ -406,15 +389,13 @@ github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORN
|
|||
github.com/kr/pretty v0.2.1/go.mod h1:ipq/a2n7PKx3OHsz4KJII5eveXtPO4qwEXGdVfWzfnI=
|
||||
github.com/kr/pretty v0.3.0 h1:WgNl7dwNpEZ6jJ9k1snq4pZsg7DOEN8hP9Xw0Tsjwk0=
|
||||
github.com/kr/pretty v0.3.0/go.mod h1:640gp4NfQd8pI5XOwp5fnNeVWj67G7CFk/SaSQn7NBk=
|
||||
github.com/kr/pretty v0.3.1 h1:flRD4NNwYAUpkphVc1HcthR4KEIFJ65n8Mw5qdRn3LE=
|
||||
github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ=
|
||||
github.com/kr/pty v1.1.8/go.mod h1:O1sed60cT9XZ5uDucP5qwvh+TE3NnUj51EiZO/lmSfw=
|
||||
github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI=
|
||||
github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY=
|
||||
github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE=
|
||||
github.com/leodido/go-urn v1.2.1 h1:BqpAaACuzVSgi/VLzGZIobT2z4v53pjosyNd9Yv6n/w=
|
||||
github.com/leodido/go-urn v1.2.1/go.mod h1:zt4jvISO2HfUBqxjfIshjdMTYS56ZS/qv49ictyFfxY=
|
||||
github.com/leodido/go-urn v1.2.4 h1:XlAE/cm/ms7TE/VMVoduSpNBoyc2dOxHs5MZSwAN63Q=
|
||||
github.com/leodido/go-urn v1.2.4/go.mod h1:7ZrI8mTSeBSHl/UaRyKQW1qZeMgak41ANeCNaVckg+4=
|
||||
github.com/lestrrat-go/envload v0.0.0-20180220234015-a3eb8ddeffcc h1:RKf14vYWi2ttpEmkA4aQ3j4u9dStX2t4M8UM6qqNsG8=
|
||||
github.com/lestrrat-go/envload v0.0.0-20180220234015-a3eb8ddeffcc/go.mod h1:kopuH9ugFRkIXf3YoqHKyrJ9YfUFsckUU9S7B+XP+is=
|
||||
github.com/lestrrat-go/file-rotatelogs v2.4.0+incompatible h1:Y6sqxHMyB1D2YSzWkLibYKgg+SwmyFU9dF2hn6MdTj4=
|
||||
|
@ -431,8 +412,6 @@ github.com/lightstep/lightstep-tracer-go v0.18.1/go.mod h1:jlF1pusYV4pidLvZ+XD0U
|
|||
github.com/lyft/protoc-gen-validate v0.0.13/go.mod h1:XbGvPuh87YZc5TdIa2/I4pLk0QoUACkjt2znoq26NVQ=
|
||||
github.com/magiconair/properties v1.8.6 h1:5ibWZ6iY0NctNGWo87LalDlEZ6R41TqbbDamhfG/Qzo=
|
||||
github.com/magiconair/properties v1.8.6/go.mod h1:y3VJvCyxH9uVvJTWEGAELF3aiYNyPKd5NZ3oSwXrF60=
|
||||
github.com/magiconair/properties v1.8.7 h1:IeQXZAiQcpL9mgcAe1Nu6cX9LLw6ExEHKjN0VQdvPDY=
|
||||
github.com/magiconair/properties v1.8.7/go.mod h1:Dhd985XPs7jluiymwWYZ0G4Z61jb3vdS329zhj2hYo0=
|
||||
github.com/mattn/go-colorable v0.0.9/go.mod h1:9vuHe8Xs5qXnSaW/c/ABM9alt+Vo+STaOChaDxuIBZU=
|
||||
github.com/mattn/go-colorable v0.1.1/go.mod h1:FuOcm+DKB9mbwrcAfNl7/TZVBZ6rcnceauSikq3lYCQ=
|
||||
github.com/mattn/go-colorable v0.1.2/go.mod h1:U0ppj6V5qS13XJ6of8GYAs25YV2eR4EVcfRqFIhoBtE=
|
||||
|
@ -449,8 +428,8 @@ github.com/mattn/go-isatty v0.0.8/go.mod h1:Iq45c/XA43vh69/j3iqttzPXn0bhXyGjM0Hd
|
|||
github.com/mattn/go-isatty v0.0.9/go.mod h1:YNRxwqDuOph6SZLI9vUUz6OYw3QyUt7WiY2yME+cCiQ=
|
||||
github.com/mattn/go-isatty v0.0.12/go.mod h1:cbi8OIDigv2wuxKPP5vlRcQ1OAZbq2CE4Kysco4FUpU=
|
||||
github.com/mattn/go-isatty v0.0.14/go.mod h1:7GGIvUiUoEMVVmxf/4nioHXj79iQHKdU27kJ6hsGG94=
|
||||
github.com/mattn/go-isatty v0.0.19 h1:JITubQf0MOLdlGRuRq+jtsDlekdYPia9ZFsB8h/APPA=
|
||||
github.com/mattn/go-isatty v0.0.19/go.mod h1:W+V8PltTTMOvKvAeJH7IuucS94S2C6jfK/D7dTCTo3Y=
|
||||
github.com/mattn/go-isatty v0.0.16 h1:bq3VjFmv/sOjHtdEhmkEV4x1AJtvUvOJ2PFAZ5+peKQ=
|
||||
github.com/mattn/go-isatty v0.0.16/go.mod h1:kYGgaQfpe5nmfYZH+SKPsOc2e4SrIfOl2e/yFXSvRLM=
|
||||
github.com/mattn/go-runewidth v0.0.2/go.mod h1:LwmH8dsx7+W8Uxz3IHJYH5QSwggIsqBzpuz5H//U1FU=
|
||||
github.com/mattn/go-sqlite3 v1.14.9/go.mod h1:NyWgC/yNuGj7Q9rpYnZvas74GogHl5/Z4A/KQRfk6bU=
|
||||
github.com/mattn/go-sqlite3 v1.14.10 h1:MLn+5bFRlWMGoSRmJour3CL1w/qL96mvipqpwQW/Sfk=
|
||||
|
@ -510,8 +489,8 @@ github.com/pborman/uuid v1.2.0/go.mod h1:X/NO0urCmaxf9VXbdlT7C2Yzkj2IKimNn4k+gtP
|
|||
github.com/pelletier/go-toml v1.9.5 h1:4yBQzkHv+7BHq2PQUZF3Mx0IYxG7LsP222s7Agd3ve8=
|
||||
github.com/pelletier/go-toml v1.9.5/go.mod h1:u1nR/EPcESfeI/szUZKdtJ0xRNbUoANCkoOuaOx1Y+c=
|
||||
github.com/pelletier/go-toml/v2 v2.0.1/go.mod h1:r9LEWfGN8R5k0VXJ+0BkIe7MYkRdwZOjgMj2KwnJFUo=
|
||||
github.com/pelletier/go-toml/v2 v2.0.8 h1:0ctb6s9mE31h0/lhu+J6OPmVeDxJn+kYnJc2jZR9tGQ=
|
||||
github.com/pelletier/go-toml/v2 v2.0.8/go.mod h1:vuYfssBdrU2XDZ9bYydBu6t+6a6PYNcZljzZR9VXg+4=
|
||||
github.com/pelletier/go-toml/v2 v2.0.5 h1:ipoSadvV8oGUjnUbMub59IDPPwfxF694nG/jwbMiyQg=
|
||||
github.com/pelletier/go-toml/v2 v2.0.5/go.mod h1:OMHamSCAODeSsVrwwvcJOaoN0LIUIaFVNZzmWyNfXas=
|
||||
github.com/performancecopilot/speed v3.0.0+incompatible/go.mod h1:/CLtqpZ5gBg1M9iaPbIdPPGyKcA8hKdoy6hAWba7Yac=
|
||||
github.com/pierrec/lz4 v1.0.2-0.20190131084431-473cd7ce01a1/go.mod h1:3/3N9NVKO0jef7pBehbT1qWhCMrIgbYNnFAZCqQ5LRc=
|
||||
github.com/pierrec/lz4 v2.0.5+incompatible/go.mod h1:pdkljMzZIN41W+lC3N2tnIh5sFi+IEE17M5jbnwPHcY=
|
||||
|
@ -553,7 +532,6 @@ github.com/rogpeppe/go-internal v1.3.0/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFR
|
|||
github.com/rogpeppe/go-internal v1.6.1/go.mod h1:xXDCJY+GAPziupqXw64V24skbSoqbTEfhy4qGm1nDQc=
|
||||
github.com/rogpeppe/go-internal v1.8.0 h1:FCbCCtXNOY3UtUuHUYaghJg4y7Fd14rXifAYUAtL9R8=
|
||||
github.com/rogpeppe/go-internal v1.8.0/go.mod h1:WmiCO8CzOY8rg0OYDC4/i/2WRWAB6poM+XZ2dLUbcbE=
|
||||
github.com/rogpeppe/go-internal v1.9.0 h1:73kH8U+JUqXU8lRuOHeVHaa/SZPifC7BkcraZVejAe8=
|
||||
github.com/rs/xid v1.2.1/go.mod h1:+uKXf+4Djp6Md1KODXJxgGQPKngRmWyn10oCKFzNHOQ=
|
||||
github.com/rs/zerolog v1.13.0/go.mod h1:YbFCdg8HfsridGWAh22vktObvhZbQsZXe4/zB0OKkWU=
|
||||
github.com/rs/zerolog v1.15.0/go.mod h1:xYTKnLHcpfU2225ny5qZjxnj9NvkumZYjJHlAThCjNc=
|
||||
|
@ -577,12 +555,8 @@ github.com/soheilhy/cmux v0.1.4/go.mod h1:IM3LyeVVIOuxMH7sFAkER9+bJ4dT7Ms6E4xg4k
|
|||
github.com/sony/gobreaker v0.4.1/go.mod h1:ZKptC7FHNvhBz7dN2LGjPVBz2sZJmc0/PkyDJOjmxWY=
|
||||
github.com/spf13/afero v1.8.2 h1:xehSyVa0YnHWsJ49JFljMpg1HX19V6NDZ1fkm1Xznbo=
|
||||
github.com/spf13/afero v1.8.2/go.mod h1:CtAatgMJh6bJEIs48Ay/FOnkljP3WeGUG0MC1RfAqwo=
|
||||
github.com/spf13/afero v1.9.5 h1:stMpOSZFs//0Lv29HduCmli3GUfpFoF3Y1Q/aXj/wVM=
|
||||
github.com/spf13/afero v1.9.5/go.mod h1:UBogFpq8E9Hx+xc5CNTTEpTnuHVmXDwZcZcE1eb/UhQ=
|
||||
github.com/spf13/cast v1.5.0 h1:rj3WzYc11XZaIZMPKmwP96zkFEnnAmV8s6XbB2aY32w=
|
||||
github.com/spf13/cast v1.5.0/go.mod h1:SpXXQ5YoyJw6s3/6cMTQuxvgRl3PCJiyaX9p6b155UU=
|
||||
github.com/spf13/cast v1.5.1 h1:R+kOtfhWQE6TVQzY+4D7wJLBgkdVasCEFxSUBYBYIlA=
|
||||
github.com/spf13/cast v1.5.1/go.mod h1:b9PdjNptOpzXr7Rq1q9gJML/2cdGQAo69NKzQ10KN48=
|
||||
github.com/spf13/cobra v0.0.3/go.mod h1:1l0Ry5zgKvJasoi3XT1TypsSe7PqH0Sj9dhYf7v3XqQ=
|
||||
github.com/spf13/jwalterweatherman v1.1.0 h1:ue6voC5bR5F8YxI5S67j9i582FU4Qvo2bmqnqMYADFk=
|
||||
github.com/spf13/jwalterweatherman v1.1.0/go.mod h1:aNWZUN0dPAAO/Ljvb5BEdw96iTZ0EXowPYD95IqWIGo=
|
||||
|
@ -591,8 +565,6 @@ github.com/spf13/pflag v1.0.5 h1:iy+VFUOCP1a+8yFto/drg2CJ5u0yRoB7fZw3DKv/JXA=
|
|||
github.com/spf13/pflag v1.0.5/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An2Bg=
|
||||
github.com/spf13/viper v1.12.0 h1:CZ7eSOd3kZoaYDLbXnmzgQI5RlciuXBMA+18HwHRfZQ=
|
||||
github.com/spf13/viper v1.12.0/go.mod h1:b6COn30jlNxbm/V2IqWiNWkJ+vZNiMNksliPCiuKtSI=
|
||||
github.com/spf13/viper v1.16.0 h1:rGGH0XDZhdUOryiDWjmIvUSWpbNqisK8Wk0Vyefw8hc=
|
||||
github.com/spf13/viper v1.16.0/go.mod h1:yg78JgCJcbrQOvV9YLXgkLaZqUidkY9K+Dd1FofRzQg=
|
||||
github.com/streadway/amqp v0.0.0-20190404075320-75d898a42a94/go.mod h1:AZpEONHx3DKn8O/DFsRAY58/XVQiIPMTMB1SddzLXVw=
|
||||
github.com/streadway/amqp v0.0.0-20190827072141-edfb9018d271/go.mod h1:AZpEONHx3DKn8O/DFsRAY58/XVQiIPMTMB1SddzLXVw=
|
||||
github.com/streadway/handy v0.0.0-20190108123426-d5acb3125c2a/go.mod h1:qNTQ5P5JnDBl6z3cMAg/SywNDC5ABu5ApDIw6lUbRmI=
|
||||
|
@ -600,7 +572,6 @@ github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+
|
|||
github.com/stretchr/objx v0.1.1/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
|
||||
github.com/stretchr/objx v0.2.0/go.mod h1:qt09Ya8vawLte6SNmTgCsAVtYtaKzEcn8ATUoHMkEqE=
|
||||
github.com/stretchr/objx v0.4.0/go.mod h1:YvHI0jy2hoMjB+UWwv71VJQ9isScKT/TqJzVSSt89Yw=
|
||||
github.com/stretchr/objx v0.5.0/go.mod h1:Yh+to48EsGEfYuaHDzXPcE3xhTkx73EhmCGUpEOglKo=
|
||||
github.com/stretchr/testify v1.2.1/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs=
|
||||
github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs=
|
||||
github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI=
|
||||
|
@ -609,15 +580,10 @@ github.com/stretchr/testify v1.5.1/go.mod h1:5W2xD1RspED5o8YsWQXVCued0rvSQ+mT+I5
|
|||
github.com/stretchr/testify v1.6.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
|
||||
github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
|
||||
github.com/stretchr/testify v1.7.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
|
||||
github.com/stretchr/testify v1.8.0 h1:pSgiaMZlXftHpm5L7V1+rVB+AZJydKsMxsQBIJw4PKk=
|
||||
github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO+kdMU+MU=
|
||||
github.com/stretchr/testify v1.8.1/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4=
|
||||
github.com/stretchr/testify v1.8.2/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4=
|
||||
github.com/stretchr/testify v1.8.3 h1:RP3t2pwF7cMEbC1dqtB6poj3niw/9gnV4Cjg5oW5gtY=
|
||||
github.com/stretchr/testify v1.8.3/go.mod h1:sz/lmYIOXD/1dqDmKjjqLyZ2RngseejIcXlSw2iwfAo=
|
||||
github.com/subosito/gotenv v1.3.0 h1:mjC+YW8QpAdXibNi+vNWgzmgBH4+5l5dCXv8cNysBLI=
|
||||
github.com/subosito/gotenv v1.3.0/go.mod h1:YzJjq/33h7nrwdY+iHMhEOEEbW0ovIz0tB6t6PwAXzs=
|
||||
github.com/subosito/gotenv v1.4.2 h1:X1TuBLAMDFbaTAChgCBLu3DU3UPyELpnF2jjJ2cz/S8=
|
||||
github.com/subosito/gotenv v1.4.2/go.mod h1:ayKnFf/c6rvx/2iiLrJUk1e6plDbT3edrFNGqEflhK0=
|
||||
github.com/syndtr/goleveldb v1.0.0 h1:fBdIW9lB4Iz0n9khmH8w27SJ3QEJ7+IgjPEwGSZiFdE=
|
||||
github.com/syndtr/goleveldb v1.0.0/go.mod h1:ZVVdQEZoIme9iO1Ch2Jdy24qqXrMMOU6lpPAyBWyWuQ=
|
||||
github.com/tidwall/gjson v1.12.1 h1:ikuZsLdhr8Ws0IdROXUS1Gi4v9Z4pGqpX/CvJkxvfpo=
|
||||
|
@ -627,12 +593,9 @@ github.com/tidwall/match v1.1.1/go.mod h1:eRSPERbgtNPcGhD8UCthc6PmLEQXEWd3PRB5JT
|
|||
github.com/tidwall/pretty v1.2.0 h1:RWIZEg2iJ8/g6fDDYzMpobmaoGh5OLl4AXtGUGPcqCs=
|
||||
github.com/tidwall/pretty v1.2.0/go.mod h1:ITEVvHYasfjBbM0u2Pg8T2nJnzm8xPwvNhhsoaGGjNU=
|
||||
github.com/tmc/grpc-websocket-proxy v0.0.0-20170815181823-89b8d40f7ca8/go.mod h1:ncp9v5uamzpCO7NfCPTXjqaC+bZgJeR0sMTm6dMHP7U=
|
||||
github.com/twitchyliquid64/golang-asm v0.15.1 h1:SU5vSMR7hnwNxj24w34ZyCi/FmDZTkS4MhqMhdFk5YI=
|
||||
github.com/twitchyliquid64/golang-asm v0.15.1/go.mod h1:a1lVb/DtPvCB8fslRZhAngC2+aY1QWCk3Cedj/Gdt08=
|
||||
github.com/ugorji/go v1.2.7/go.mod h1:nF9osbDWLy6bDVv/Rtoh6QgnvNDpmCalQV5urGCCS6M=
|
||||
github.com/ugorji/go/codec v1.2.7 h1:YPXUKf7fYbp/y8xloBqZOw2qaVggbfwMlI8WM3wZUJ0=
|
||||
github.com/ugorji/go/codec v1.2.7/go.mod h1:WGN1fab3R1fzQlVQTkfxVtIBhWDRqOviHU95kRgeqEY=
|
||||
github.com/ugorji/go/codec v1.2.11 h1:BMaWp1Bb6fHwEtbplGBGJ498wD+LKlNSl25MjdZY4dU=
|
||||
github.com/ugorji/go/codec v1.2.11/go.mod h1:UNopzCgEMSXjBc6AOMqYvWC1ktqTAfzJZUZgYf6w6lg=
|
||||
github.com/urfave/cli v1.20.0/go.mod h1:70zkFmudgCuE/ngEzBv17Jvp/497gISqfk5gWijbERA=
|
||||
github.com/urfave/cli v1.22.1/go.mod h1:Gos4lmkARVdJ6EkW0WaNv/tZAAMe9V7XWyB60NtXRu0=
|
||||
github.com/xiang90/probing v0.0.0-20190116061207-43a291ad63a2/go.mod h1:UETIi67q53MR2AWcXfiuqkDkRtnGDLqkBTpCHuJHxtU=
|
||||
|
@ -663,9 +626,6 @@ go.uber.org/tools v0.0.0-20190618225709-2cfd321de3ee/go.mod h1:vJERXedbb3MVM5f9E
|
|||
go.uber.org/zap v1.9.1/go.mod h1:vwi/ZaCAaUcBkycHslxD9B2zi4UTXhF60s6SWpuDF0Q=
|
||||
go.uber.org/zap v1.10.0/go.mod h1:vwi/ZaCAaUcBkycHslxD9B2zi4UTXhF60s6SWpuDF0Q=
|
||||
go.uber.org/zap v1.13.0/go.mod h1:zwrFLgMcdUuIBviXEYEH1YKNaOBnKXsx2IPda5bBwHM=
|
||||
golang.org/x/arch v0.0.0-20210923205945-b76863e36670/go.mod h1:5om86z9Hs0C8fWVUuoMHwpExlXzs5Tkyp9hOrfG7pp8=
|
||||
golang.org/x/arch v0.3.0 h1:02VY4/ZcO/gBOH6PUaoiptASxtXU10jazRCP865E97k=
|
||||
golang.org/x/arch v0.3.0/go.mod h1:5om86z9Hs0C8fWVUuoMHwpExlXzs5Tkyp9hOrfG7pp8=
|
||||
golang.org/x/crypto v0.0.0-20180904163835-0709b304e793/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4=
|
||||
golang.org/x/crypto v0.0.0-20181029021203-45a5f77698d3/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4=
|
||||
golang.org/x/crypto v0.0.0-20190123085648-057139ce5d2b/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4=
|
||||
|
@ -686,9 +646,9 @@ golang.org/x/crypto v0.0.0-20210421170649-83a5a9bb288b/go.mod h1:T9bdIzuCu7OtxOm
|
|||
golang.org/x/crypto v0.0.0-20210616213533-5ff15b29337e/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc=
|
||||
golang.org/x/crypto v0.0.0-20210711020723-a769d52b0f97/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc=
|
||||
golang.org/x/crypto v0.0.0-20211108221036-ceb1ce70b4fa/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc=
|
||||
golang.org/x/crypto v0.0.0-20220722155217-630584e8d5aa/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4=
|
||||
golang.org/x/crypto v0.9.0 h1:LF6fAI+IutBocDJ2OT0Q1g8plpYljMZ4+lty+dsqw3g=
|
||||
golang.org/x/crypto v0.9.0/go.mod h1:yrmDGqONDYtNj3tH8X9dzUun2m2lzPa9ngI6/RUPGR0=
|
||||
golang.org/x/crypto v0.0.0-20211215153901-e495a2d5b3d3/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4=
|
||||
golang.org/x/crypto v0.0.0-20220829220503-c86fa9a7ed90 h1:Y/gsMcFOcR+6S6f3YeMKl5g+dZMEWqcz5Czj/GWYbkM=
|
||||
golang.org/x/crypto v0.0.0-20220829220503-c86fa9a7ed90/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4=
|
||||
golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA=
|
||||
golang.org/x/exp v0.0.0-20190306152737-a1d7652674e8/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA=
|
||||
golang.org/x/exp v0.0.0-20190510132918-efd6b22b2522/go.mod h1:ZjyILWgesfNpC6sMxTJOJm9Kp84zZh5NQWvqDGG3Qr8=
|
||||
|
@ -722,8 +682,8 @@ golang.org/x/mod v0.2.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA=
|
|||
golang.org/x/mod v0.3.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA=
|
||||
golang.org/x/mod v0.4.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA=
|
||||
golang.org/x/mod v0.4.1/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA=
|
||||
golang.org/x/mod v0.8.0 h1:LUYupSeNrTNCGzR/hVBk2NHZO4hXcVaW1k4Qx7rjPx8=
|
||||
golang.org/x/mod v0.8.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs=
|
||||
golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4 h1:6zppjxzCulZykYSLyVDYbneBfbaBIQPYMevg0bEwv2s=
|
||||
golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4/go.mod h1:jJ57K6gSWd91VN4djpZkiMVwK6gcyfeH4XE8wZrZaV4=
|
||||
golang.org/x/net v0.0.0-20180724234803-3673e40ba225/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
|
||||
golang.org/x/net v0.0.0-20180826012351-8a410e7b638d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
|
||||
golang.org/x/net v0.0.0-20180906233101-161cd47e91fd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
|
||||
|
@ -765,8 +725,8 @@ golang.org/x/net v0.0.0-20201224014010-6772e930b67b/go.mod h1:m0MpNAwzfU5UDzcl9v
|
|||
golang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg=
|
||||
golang.org/x/net v0.0.0-20211112202133-69e39bad7dc2/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y=
|
||||
golang.org/x/net v0.0.0-20220111093109-d55c255bac03/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y=
|
||||
golang.org/x/net v0.10.0 h1:X2//UzNDwYmtCLn7To6G58Wr6f5ahEAQgKNzv9Y951M=
|
||||
golang.org/x/net v0.10.0/go.mod h1:0qNGK6F8kojg2nk9dLZ2mShWaEBan6FAoqfSigmmuDg=
|
||||
golang.org/x/net v0.7.0 h1:rJrUqqhjsgNp7KqAIc25s9pZnjU7TUcSY7HcVZjdn1g=
|
||||
golang.org/x/net v0.7.0/go.mod h1:2Tu9+aMcznHK/AK1HMvgo6xiTLG5rD5rZLDS+rp2Bjs=
|
||||
golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U=
|
||||
golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw=
|
||||
golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw=
|
||||
|
@ -786,7 +746,6 @@ golang.org/x/sync v0.0.0-20200317015054-43a5402ce75a/go.mod h1:RxMgew5VJxzue5/jJ
|
|||
golang.org/x/sync v0.0.0-20200625203802-6e8e738ad208/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
|
||||
golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
|
||||
golang.org/x/sync v0.0.0-20201207232520-09787c993a3a/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
|
||||
golang.org/x/sync v0.1.0 h1:wsuoTGHzEhffawBOhz5CYhcrV4IdKZbEyZjBMuTp12o=
|
||||
golang.org/x/sys v0.0.0-20180606202747-9527bec2660b/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
|
||||
golang.org/x/sys v0.0.0-20180823144017-11551d06cbcc/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
|
||||
golang.org/x/sys v0.0.0-20180830151530-49385e6e1522/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
|
||||
|
@ -847,12 +806,10 @@ golang.org/x/sys v0.0.0-20210902050250-f475640dd07b/go.mod h1:oPkhp1MJrh7nUepCBc
|
|||
golang.org/x/sys v0.0.0-20210927094055-39ccf1dd6fa6/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
||||
golang.org/x/sys v0.0.0-20211007075335-d3039528d8ac/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
||||
golang.org/x/sys v0.0.0-20220412211240-33da011f77ad/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
||||
golang.org/x/sys v0.0.0-20220704084225-05e143d24a9e/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
||||
golang.org/x/sys v0.0.0-20220715151400-c0bba94af5f8/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
||||
golang.org/x/sys v0.0.0-20220908164124-27713097b956/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
||||
golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
||||
golang.org/x/sys v0.8.0 h1:EBmGv8NaZBZTWvrbjNoL6HVt+IVy3QDQpJs7VRIw3tU=
|
||||
golang.org/x/sys v0.8.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
||||
golang.org/x/sys v0.0.0-20220811171246-fbc7d0a398ab/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
||||
golang.org/x/sys v0.5.0 h1:MUK/U/4lj1t1oPg0HfuXDN/Z1wv31ZJ/YcPiGccS4DU=
|
||||
golang.org/x/sys v0.5.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
||||
golang.org/x/term v0.0.0-20201117132131-f5c789dd3221/go.mod h1:Nr5EML6q2oocZ2LXRh80K7BxOlk5/8JxuGnuhpl+muw=
|
||||
golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo=
|
||||
golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
|
||||
|
@ -863,8 +820,8 @@ golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=
|
|||
golang.org/x/text v0.3.4/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=
|
||||
golang.org/x/text v0.3.6/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=
|
||||
golang.org/x/text v0.3.7/go.mod h1:u+2+/6zg+i71rQMx5EYifcz6MCKuco9NR6JIITiCfzQ=
|
||||
golang.org/x/text v0.9.0 h1:2sjJmO8cDvYveuX97RDLsxlyUxLl+GHoLxBiRdHllBE=
|
||||
golang.org/x/text v0.9.0/go.mod h1:e1OnstbJyHTd6l/uOt8jFFHp6TRDWZR/bV3emEE/zU8=
|
||||
golang.org/x/text v0.7.0 h1:4BRB4x83lYWy72KwLD/qYDuTu7q9PjSagHvijDw7cLo=
|
||||
golang.org/x/text v0.7.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8=
|
||||
golang.org/x/time v0.0.0-20180412165947-fbb02b2291d2/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ=
|
||||
golang.org/x/time v0.0.0-20181108054448-85acf8d2951c/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ=
|
||||
golang.org/x/time v0.0.0-20190308202827-9d24e82272b4/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ=
|
||||
|
@ -925,8 +882,8 @@ golang.org/x/tools v0.0.0-20201208233053-a543418bbed2/go.mod h1:emZCQorbCU4vsT4f
|
|||
golang.org/x/tools v0.0.0-20210105154028-b0ab187a4818/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA=
|
||||
golang.org/x/tools v0.0.0-20210108195828-e2f9c7f1fc8e/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA=
|
||||
golang.org/x/tools v0.1.0/go.mod h1:xkSsbof2nBLbhDlRMhhhyNLN/zl3eTqcnHD5viDpcZ0=
|
||||
golang.org/x/tools v0.6.0 h1:BOw41kyTf3PuCW1pVQf8+Cyg8pMlkYB1oo9iJ6D/lKM=
|
||||
golang.org/x/tools v0.6.0/go.mod h1:Xwgl3UAJ/d3gWutnCtw505GrjyAbvKui8lOU390QaIU=
|
||||
golang.org/x/tools v0.1.12 h1:VveCTK38A2rkS8ZqFY25HIDFscX5X9OoEhJd3quQmXU=
|
||||
golang.org/x/tools v0.1.12/go.mod h1:hNGJHUnrk76NpqgfD5Aqm5Crs+Hm0VOH/i9J2+nxYbc=
|
||||
golang.org/x/xerrors v0.0.0-20190410155217-1f06c39b4373/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
|
||||
golang.org/x/xerrors v0.0.0-20190513163551-3ee3066db522/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
|
||||
golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
|
||||
|
@ -1031,8 +988,8 @@ google.golang.org/protobuf v1.24.0/go.mod h1:r/3tXBNzIEhYS9I1OUVjXDlt8tc493IdKGj
|
|||
google.golang.org/protobuf v1.25.0/go.mod h1:9JNX74DMeImyA3h4bdi1ymwjUzf21/xIlbajtzgsN7c=
|
||||
google.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw=
|
||||
google.golang.org/protobuf v1.28.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I=
|
||||
google.golang.org/protobuf v1.30.0 h1:kPPoIgf3TsEvrm0PFe15JQ+570QVxYzEvvHqChK+cng=
|
||||
google.golang.org/protobuf v1.30.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I=
|
||||
google.golang.org/protobuf v1.28.1 h1:d0NfwRgPtno5B1Wa6L2DAG+KivqkdutMf1UhdNx175w=
|
||||
google.golang.org/protobuf v1.28.1/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I=
|
||||
gopkg.in/AlecAivazis/survey.v1 v1.8.5/go.mod h1:iBNOmqKz/NUbZx3bA+4hAGLRC7fSK7tgtVDT4tB22XA=
|
||||
gopkg.in/alecthomas/kingpin.v2 v2.2.6/go.mod h1:FMv+mEhP44yOT+4EoQTLFTRgOQ1FBLkstjWtayDeSgw=
|
||||
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
|
||||
|
@ -1047,8 +1004,6 @@ gopkg.in/gcfg.v1 v1.2.3/go.mod h1:yesOnuUOFQAhST5vPY4nbZsb/huCgGGXlipJsBn0b3o=
|
|||
gopkg.in/inconshreveable/log15.v2 v2.0.0-20180818164646-67afb5ed74ec/go.mod h1:aPpfJ7XW+gOuirDoZ8gHhLh3kZ1B08FtV2bbmy7Jv3s=
|
||||
gopkg.in/ini.v1 v1.66.4 h1:SsAcf+mM7mRZo2nJNGt8mZCjG8ZRaNGMURJw7BsIST4=
|
||||
gopkg.in/ini.v1 v1.66.4/go.mod h1:pNLf8WUiyNEtQjuu5G5vTm06TEv9tsIgeAvK8hOrP4k=
|
||||
gopkg.in/ini.v1 v1.67.0 h1:Dgnx+6+nfE+IfzjUEISNeydPJh9AXNNsWbGP9KzCsOA=
|
||||
gopkg.in/ini.v1 v1.67.0/go.mod h1:pNLf8WUiyNEtQjuu5G5vTm06TEv9tsIgeAvK8hOrP4k=
|
||||
gopkg.in/resty.v1 v1.12.0/go.mod h1:mDo4pnntr5jdWRML875a/NmxYqAlA73dVijT2AXvQQo=
|
||||
gopkg.in/square/go-jose.v2 v2.6.0 h1:NGk74WTnPKBNUhNzQX7PYcTLUjoq7mzKk2OKbvwk2iI=
|
||||
gopkg.in/square/go-jose.v2 v2.6.0/go.mod h1:M9dMgbHiYLoDGQrXy7OpJDJWiKiU//h+vD76mk0e1AI=
|
||||
|
@ -1218,7 +1173,6 @@ modernc.org/z v1.2.19/go.mod h1:+ZpP0pc4zz97eukOzW3xagV/lS82IpPN9NGG5pNF9vY=
|
|||
modernc.org/z v1.3.2 h1:4GWBVMa48UDC7KQ9tnaggN/yTlXg+CdCX9bhgHPQ9AM=
|
||||
modernc.org/z v1.3.2/go.mod h1:PEU2oK2OEA1CfzDTd+8E908qEXhC9s0MfyKp5LZsd+k=
|
||||
rsc.io/binaryregexp v0.2.0/go.mod h1:qTv7/COck+e2FymRvadv62gMdZztPaShugOCi3I+8D8=
|
||||
rsc.io/pdf v0.1.1/go.mod h1:n8OzWcQ6Sp37PL01nO98y4iUCRdTGarVfzxY20ICaU4=
|
||||
rsc.io/quote/v3 v3.1.0/go.mod h1:yEA65RcK8LyAZtP9Kv3t0HmxON59tX3rD+tICJqUlj0=
|
||||
rsc.io/sampler v1.3.0/go.mod h1:T1hPZKmBbMNahiBKFy5HrXp6adAjACjK9JXDnKaTXpA=
|
||||
sigs.k8s.io/yaml v1.1.0/go.mod h1:UJmg0vDUVViEyp3mgSv9WPwZCDxu4rQW1olrI1uml+o=
|
||||
|
|
28
lib/core.go
28
lib/core.go
|
@ -63,7 +63,11 @@ type checkQrCodeResp struct {
|
|||
Data string `json:"data"`
|
||||
}
|
||||
|
||||
// 初始化
|
||||
// Init
|
||||
/**
|
||||
* @Description:
|
||||
* @receiver c
|
||||
*/
|
||||
func (c *Core) Init() {
|
||||
if runtime.GOOS == "windows" {
|
||||
c.initWindows()
|
||||
|
@ -72,7 +76,6 @@ func (c *Core) Init() {
|
|||
}
|
||||
}
|
||||
|
||||
// 获取Token
|
||||
func GetToken(code, sign, pushId string) (bool, error) {
|
||||
client := utils.GetClient()
|
||||
response, err := client.R().SetQueryParams(map[string]string{
|
||||
|
@ -110,7 +113,13 @@ func GetToken(code, sign, pushId string) (bool, error) {
|
|||
return true, err
|
||||
}
|
||||
|
||||
// 生成二维码
|
||||
// GenerateCode
|
||||
/* @Description: 生成二维码
|
||||
* @receiver c
|
||||
* @return string 二维码连接
|
||||
* @return string 二维码回调查询的code
|
||||
* @return error
|
||||
*/
|
||||
func (c *Core) GenerateCode(pushID string) (string, string, error) {
|
||||
client := utils.GetClient()
|
||||
g := new(gennerateResp)
|
||||
|
@ -127,7 +136,6 @@ func (c *Core) GenerateCode(pushID string) (string, string, error) {
|
|||
return codeURL, g.Result, err
|
||||
}
|
||||
|
||||
// 检查二维码状态
|
||||
func (c *Core) CheckQrCode(code, pushID string) (*model.User, bool, error) {
|
||||
client := utils.GetClient()
|
||||
checkQrCode := func() (bool, string) {
|
||||
|
@ -183,7 +191,13 @@ func (c *Core) CheckQrCode(code, pushID string) (*model.User, bool, error) {
|
|||
}
|
||||
}
|
||||
|
||||
// 轮询
|
||||
// L
|
||||
/**
|
||||
* @Description:
|
||||
* @receiver c
|
||||
* @return *model.User
|
||||
* @return error
|
||||
*/
|
||||
func (c *Core) L(retryTimes int, pushID string) (*model.User, error) {
|
||||
_, codeData, err := c.GenerateCode(pushID)
|
||||
if err != nil {
|
||||
|
@ -204,7 +218,6 @@ func (c *Core) L(retryTimes int, pushID string) (*model.User, error) {
|
|||
return c.L(retryTimes-1, pushID)
|
||||
}
|
||||
|
||||
// 初始化Windows系统
|
||||
func (c *Core) initWindows() {
|
||||
_, err := os.Stat("C:\\Program Files (x86)\\Microsoft\\Edge\\Application\\msedge.exe")
|
||||
if err != nil {
|
||||
|
@ -284,7 +297,6 @@ func (c *Core) initWindows() {
|
|||
c.browser = browser
|
||||
}
|
||||
|
||||
// 初始化非Windows系统
|
||||
func (c *Core) initNotWindows() {
|
||||
dir, err := os.Getwd()
|
||||
if err != nil {
|
||||
|
@ -357,7 +369,6 @@ func (c *Core) initNotWindows() {
|
|||
c.browser = browser
|
||||
}
|
||||
|
||||
// 关闭浏览器
|
||||
func (c *Core) Quit() {
|
||||
err := c.browser.Close()
|
||||
if err != nil {
|
||||
|
@ -370,7 +381,6 @@ func (c *Core) Quit() {
|
|||
}
|
||||
}
|
||||
|
||||
// 检查浏览器是否关闭
|
||||
func (c *Core) IsQuit() bool {
|
||||
return !c.browser.IsConnected()
|
||||
}
|
||||
|
|
|
@ -23,11 +23,14 @@ func Study(core2 *Core, u *model.User) {
|
|||
|
||||
core2.LearnArticle(u)
|
||||
|
||||
core2.RadioStation(u)
|
||||
core2.LearnVideo(u)
|
||||
|
||||
core2.LearnVideo(u)
|
||||
if config.Model == 2 {
|
||||
core2.RespondDaily(u, "daily")
|
||||
} else if config.Model == 3 {
|
||||
core2.RespondDaily(u, "daily")
|
||||
core2.RespondDaily(u, "weekly")
|
||||
core2.RespondDaily(u, "special")
|
||||
}
|
||||
endTime := time.Now()
|
||||
|
@ -38,6 +41,7 @@ func Study(core2 *Core, u *model.User) {
|
|||
return
|
||||
}
|
||||
|
||||
score, _ = GetUserScore(u.ToCookies())
|
||||
message := fmt.Sprintf("%v 学习完成,用时%.1f分钟\n%v", u.Nick, endTime.Sub(startTime).Minutes(), FormatScoreShort(score))
|
||||
core2.Push(u.PushId, "flush", message)
|
||||
}
|
||||
|
|
|
@ -25,12 +25,20 @@ import (
|
|||
const (
|
||||
MyPointsUri = "https://pc.xuexi.cn/points/my-points.html"
|
||||
|
||||
DailyBUTTON = `#app > div > div.layout-body > div > div.my-points-section > div.my-points-content > div:nth-child(4) > div.my-points-card-footer > div.buttonbox > div`
|
||||
WEEKEND = `#app > div > div.layout-body > div > div.my-points-section > div.my-points-content > div:nth-child(7) > div.my-points-card-footer > div.buttonbox > div`
|
||||
SPECIALBUTTON = `#app > div > div.layout-body > div > div.my-points-section > div.my-points-content > div:nth-child(6) > div.my-points-card-footer > div.buttonbox > div`
|
||||
DailyBUTTON = `#app > div > div.layout-body > div >
|
||||
div.my-points-section > div.my-points-content > div:nth-child(5) > div.my-points-card-footer > div.buttonbox > div`
|
||||
WEEKEND = `#app > div > div.layout-body > div > div.my-points-section > div.my-points-content >
|
||||
div:nth-child(7) > div.my-points-card-footer > div.buttonbox > div`
|
||||
SPECIALBUTTON = `#app > div > div.layout-body >
|
||||
div > div.my-points-section > div.my-points-content > div:nth-child(6) > div.my-points-card-footer > div.buttonbox > div`
|
||||
)
|
||||
|
||||
// 每日答题
|
||||
// RespondDaily
|
||||
/* @Description:
|
||||
* @receiver c
|
||||
* @param user
|
||||
* @param model
|
||||
*/
|
||||
func (c *Core) RespondDaily(user *model.User, model string) {
|
||||
|
||||
var title string
|
||||
|
@ -152,6 +160,19 @@ func (c *Core) RespondDaily(user *model.User, model string) {
|
|||
}
|
||||
case "special":
|
||||
{
|
||||
// 检测是否已经完成
|
||||
if score.Content["special"].CurrentScore >= score.Content["special"].MaxScore {
|
||||
log.Infoln("检测到特殊答题已经完成,即将退出答题")
|
||||
|
||||
return
|
||||
}
|
||||
// err = page.Click(SPECIALBUTTON)
|
||||
// if err != nil {
|
||||
// log.Errorln("跳转到积分页面错误")
|
||||
//
|
||||
// return
|
||||
//}
|
||||
|
||||
//获取专项答题ID
|
||||
id, err = getSpecialID(user.ToCookies())
|
||||
if err != nil {
|
||||
|
@ -256,7 +277,7 @@ func (c *Core) RespondDaily(user *model.User, model string) {
|
|||
case "special":
|
||||
{
|
||||
// 检测是否已经完成
|
||||
if score.TodayScore >= 34 {
|
||||
if score.Content["special"].CurrentScore >= score.Content["special"].MaxScore {
|
||||
log.Infoln("检测到特殊答题已经完成,即将退出答题")
|
||||
|
||||
return
|
||||
|
@ -434,7 +455,7 @@ func (c *Core) RespondDaily(user *model.User, model string) {
|
|||
}
|
||||
}
|
||||
|
||||
func GetAnswerPage(page playwright.Page, model string) bool {
|
||||
func getAnswerPage(page playwright.Page, model string) bool {
|
||||
selectPages, err := page.QuerySelectorAll(`#app .ant-pagination .ant-pagination-item`)
|
||||
if err != nil {
|
||||
log.Errorln("获取到页码失败")
|
||||
|
@ -544,7 +565,6 @@ func radioCheck(page playwright.Page, answer []string) error {
|
|||
return nil
|
||||
}
|
||||
|
||||
// 获取选项
|
||||
func getOptions(page playwright.Page) ([]string, error) {
|
||||
handles, err := page.QuerySelectorAll(`.q-answer.choosable`)
|
||||
if err != nil {
|
||||
|
@ -562,7 +582,6 @@ func getOptions(page playwright.Page) ([]string, error) {
|
|||
return options, err
|
||||
}
|
||||
|
||||
// 获取问题提示
|
||||
func getTips(data string) []string {
|
||||
data = strings.ReplaceAll(data, " ", "")
|
||||
data = strings.ReplaceAll(data, "\n", "")
|
||||
|
@ -578,7 +597,6 @@ func getTips(data string) []string {
|
|||
return tips
|
||||
}
|
||||
|
||||
// 填空题
|
||||
func FillBlank(page playwright.Page, tips []string) error {
|
||||
video := false
|
||||
var answer []string
|
||||
|
@ -633,13 +651,12 @@ func FillBlank(page playwright.Page, tips []string) error {
|
|||
r := rand2.Intn(4) + 1
|
||||
time.Sleep(time.Duration(r) * time.Second)
|
||||
}
|
||||
r := rand2.Intn(2)
|
||||
r := rand2.Intn(1) + 1
|
||||
time.Sleep(time.Duration(r) * time.Second)
|
||||
checkNextBotton(page)
|
||||
return nil
|
||||
}
|
||||
|
||||
// 检查下一题按钮
|
||||
func checkNextBotton(page playwright.Page) {
|
||||
btns, err := page.QuerySelectorAll(`#app .action-row > button`)
|
||||
if err != nil {
|
||||
|
@ -690,7 +707,6 @@ func RemoveRepByLoop(slc []string) []string {
|
|||
return result
|
||||
}
|
||||
|
||||
// 获取专项答题ID
|
||||
func getSpecialID(cookies []*http.Cookie) (int, error) {
|
||||
c := req.C()
|
||||
c.SetCommonCookies(cookies...)
|
||||
|
@ -741,7 +757,6 @@ func getSpecialID(cookies []*http.Cookie) (int, error) {
|
|||
return 0, errors.New("未找到专项答题")
|
||||
}
|
||||
|
||||
// 获取每周答题ID
|
||||
func getweekID(cookies []*http.Cookie) (int, error) {
|
||||
c := req.C()
|
||||
c.SetCommonCookies(cookies...)
|
||||
|
@ -807,8 +822,7 @@ func GetSpecialContent(cookies []*http.Cookie, id int) *SpecialContent {
|
|||
return content
|
||||
}
|
||||
|
||||
// 获取每周答题ID列表
|
||||
func GetweekIDs(cookies []*http.Cookie) []int {
|
||||
func getweekIDs(cookies []*http.Cookie) []int {
|
||||
c := req.C()
|
||||
c.SetCommonCookies(cookies...)
|
||||
repo, err := c.R().SetQueryParams(map[string]string{"pageSize": "500", "pageNo": "1"}).Get(queryWeekList)
|
||||
|
@ -841,9 +855,7 @@ func GetweekIDs(cookies []*http.Cookie) []int {
|
|||
}
|
||||
return ids
|
||||
}
|
||||
|
||||
// 获取专项答题ID列表
|
||||
func GetSpecialIDs(cookies []*http.Cookie) []int {
|
||||
func getSpecialIDs(cookies []*http.Cookie) []int {
|
||||
c := req.C()
|
||||
|
||||
c.SetCommonCookies(cookies...)
|
||||
|
|
39
lib/score.go
39
lib/score.go
|
@ -22,7 +22,6 @@ type Data struct {
|
|||
MaxScore int `json:"max_score"`
|
||||
}
|
||||
|
||||
// 获取用户总分
|
||||
func GetUserScore(cookies []*http.Cookie) (Score, error) {
|
||||
var score Score
|
||||
var resp []byte
|
||||
|
@ -42,7 +41,7 @@ func GetUserScore(cookies []*http.Cookie) (Score, error) {
|
|||
|
||||
response, err = client.R().SetCookies(cookies...).SetHeaders(header).Get(userTodaytotalscoreUrl)
|
||||
if err != nil {
|
||||
log.Errorln("获取用户今日得分错误" + err.Error())
|
||||
log.Errorln("获取用户总分错误" + err.Error())
|
||||
return Score{}, err
|
||||
}
|
||||
resp = response.Bytes()
|
||||
|
@ -50,12 +49,12 @@ func GetUserScore(cookies []*http.Cookie) (Score, error) {
|
|||
|
||||
response, err = client.R().SetCookies(cookies...).SetHeaders(header).Get(userRatescoreUrl)
|
||||
if err != nil {
|
||||
log.Errorln("获取用户详情得分错误" + err.Error())
|
||||
log.Errorln("获取用户总分错误" + err.Error())
|
||||
return Score{}, err
|
||||
}
|
||||
resp = response.Bytes()
|
||||
datas := gjson.GetBytes(resp, "data.taskProgress").Array()
|
||||
m := make(map[string]Data, 4)
|
||||
m := make(map[string]Data, 6)
|
||||
m["article"] = Data{
|
||||
CurrentScore: int(datas[0].Get("currentScore").Int()),
|
||||
MaxScore: int(datas[0].Get("dayMaxScore").Int()),
|
||||
|
@ -64,21 +63,32 @@ func GetUserScore(cookies []*http.Cookie) (Score, error) {
|
|||
CurrentScore: int(datas[1].Get("currentScore").Int()),
|
||||
MaxScore: int(datas[1].Get("dayMaxScore").Int()),
|
||||
}
|
||||
// m["weekly"] = Data{
|
||||
// CurrentScore: int(datas[2].Get("currentScore").Int()),
|
||||
// MaxScore: int(datas[2].Get("dayMaxScore").Int()),
|
||||
// }
|
||||
// m["video_time"] = Data{
|
||||
// CurrentScore: int(datas[2].Get("currentScore").Int()),
|
||||
// MaxScore: int(datas[2].Get("dayMaxScore").Int()),
|
||||
// }
|
||||
m["login"] = Data{
|
||||
CurrentScore: int(datas[2].Get("currentScore").Int()),
|
||||
MaxScore: int(datas[2].Get("dayMaxScore").Int()),
|
||||
}
|
||||
m["daily"] = Data{
|
||||
CurrentScore: int(datas[3].Get("currentScore").Int()),
|
||||
MaxScore: int(datas[3].Get("dayMaxScore").Int()),
|
||||
}
|
||||
// m["special"] = Data{
|
||||
// CurrentScore: int(datas[4].Get("currentScore").Int()),
|
||||
// MaxScore: int(datas[4].Get("dayMaxScore").Int()),
|
||||
// }
|
||||
m["daily"] = Data{
|
||||
CurrentScore: int(datas[5].Get("currentScore").Int()),
|
||||
MaxScore: int(datas[5].Get("dayMaxScore").Int()),
|
||||
}
|
||||
|
||||
score.Content = m
|
||||
|
||||
return score, err
|
||||
}
|
||||
|
||||
// 输出总分
|
||||
func PrintScore(score Score) string {
|
||||
result := ""
|
||||
result += fmt.Sprintf("当前学习总积分:%d\n今日得分:%d\n", score.TotalScore, score.TodayScore)
|
||||
|
@ -87,14 +97,16 @@ func PrintScore(score Score) string {
|
|||
score.Content["login"].CurrentScore, score.Content["login"].MaxScore,
|
||||
score.Content["article"].CurrentScore, score.Content["article"].MaxScore,
|
||||
score.Content["video"].CurrentScore, score.Content["video"].MaxScore,
|
||||
// score.Content["video_time"].CurrentScore, score.Content["video_time"].MaxScore,
|
||||
time.Now().Format("2006-01-02 15:04:05"),
|
||||
score.Content["daily"].CurrentScore, score.Content["daily"].MaxScore,
|
||||
// score.Content["weekly"].CurrentScore, score.Content["weekly"].MaxScore,
|
||||
// score.Content["special"].CurrentScore, score.Content["special"].MaxScore,
|
||||
)
|
||||
log.Infoln(result)
|
||||
return result
|
||||
}
|
||||
|
||||
// 格式化总分
|
||||
func FormatScore(score Score) string {
|
||||
result := ""
|
||||
result += fmt.Sprintf("当前学习总积分:%d\n今日得分:%d\n", score.TotalScore, score.TodayScore)
|
||||
|
@ -102,12 +114,14 @@ func FormatScore(score Score) string {
|
|||
score.Content["login"].CurrentScore, score.Content["login"].MaxScore,
|
||||
score.Content["article"].CurrentScore, score.Content["article"].MaxScore,
|
||||
score.Content["video"].CurrentScore, score.Content["video"].MaxScore,
|
||||
// score.Content["video_time"].CurrentScore, score.Content["video_time"].MaxScore,
|
||||
score.Content["daily"].CurrentScore, score.Content["daily"].MaxScore,
|
||||
// score.Content["weekly"].CurrentScore, score.Content["weekly"].MaxScore,
|
||||
// score.Content["special"].CurrentScore, score.Content["special"].MaxScore,
|
||||
)
|
||||
return result
|
||||
}
|
||||
|
||||
// 格式化短格式总分
|
||||
func FormatScoreShort(score Score) string {
|
||||
result := ""
|
||||
result += fmt.Sprintf("当前学习总积分:%d\n今日得分:%d\n", score.TotalScore, score.TodayScore)
|
||||
|
@ -115,7 +129,10 @@ func FormatScoreShort(score Score) string {
|
|||
score.Content["login"].CurrentScore, score.Content["login"].MaxScore,
|
||||
score.Content["article"].CurrentScore, score.Content["article"].MaxScore,
|
||||
score.Content["video"].CurrentScore, score.Content["video"].MaxScore,
|
||||
// score.Content["video_time"].CurrentScore, score.Content["video_time"].MaxScore,
|
||||
score.Content["daily"].CurrentScore, score.Content["daily"].MaxScore,
|
||||
// score.Content["weekly"].CurrentScore, score.Content["weekly"].MaxScore,
|
||||
// score.Content["special"].CurrentScore, score.Content["special"].MaxScore,
|
||||
)
|
||||
return result
|
||||
}
|
||||
|
|
128
lib/study.go
128
lib/study.go
|
@ -36,14 +36,6 @@ var (
|
|||
"https://www.xuexi.cn/lgdata/3o3ufqgl8rsn.json",
|
||||
"https://www.xuexi.cn/lgdata/525pi8vcj24p.json",
|
||||
"https://www.xuexi.cn/lgdata/1742g60067k.json"}
|
||||
|
||||
yp_url_list = []string{
|
||||
"https://www.xuexi.cn/lgdata/1ode6kjlu7m.json",
|
||||
"https://www.xuexi.cn/lgdata/1ggb81u8f7m.json",
|
||||
"https://www.xuexi.cn/lgdata/139993ri8nm.json",
|
||||
"https://www.xuexi.cn/lgdata/u07dubuq7m.json",
|
||||
"https://www.xuexi.cn/lgdata/spisr390nm.json",
|
||||
"https://www.xuexi.cn/lgdata/1elt18mm57m.json"}
|
||||
)
|
||||
|
||||
type Link struct {
|
||||
|
@ -67,7 +59,6 @@ type Link struct {
|
|||
DataValid bool `json:"dataValid"`
|
||||
}
|
||||
|
||||
// 获取学习链接列表
|
||||
func getLinks(model string) ([]Link, error) {
|
||||
UID := rand.Intn(20000000) + 10000000
|
||||
learnUrl := ""
|
||||
|
@ -75,8 +66,6 @@ func getLinks(model string) ([]Link, error) {
|
|||
learnUrl = article_url_list[rand.Intn(7)]
|
||||
} else if model == "video" {
|
||||
learnUrl = video_url_list[rand.Intn(7)]
|
||||
} else if model == "yp" {
|
||||
learnUrl = yp_url_list[rand.Intn(7)]
|
||||
} else {
|
||||
return nil, errors.New("model选择出现错误")
|
||||
}
|
||||
|
@ -100,7 +89,12 @@ func getLinks(model string) ([]Link, error) {
|
|||
return links, err
|
||||
}
|
||||
|
||||
// 文章学习
|
||||
// LearnArticle
|
||||
/**
|
||||
* @Description: 文章学习
|
||||
* @receiver c
|
||||
* @param cookies
|
||||
*/
|
||||
func (c *Core) LearnArticle(user *model.User) {
|
||||
defer func() {
|
||||
err := recover()
|
||||
|
@ -212,7 +206,12 @@ func (c *Core) LearnArticle(user *model.User) {
|
|||
}
|
||||
}
|
||||
|
||||
// 视频学习
|
||||
// LearnVideo
|
||||
/**
|
||||
* @Description: 视频学习
|
||||
* @receiver c
|
||||
* @param cookies
|
||||
*/
|
||||
func (c *Core) LearnVideo(user *model.User) {
|
||||
defer func() {
|
||||
err := recover()
|
||||
|
@ -317,106 +316,3 @@ func (c *Core) LearnVideo(user *model.User) {
|
|||
log.Infoln("检测到视频学习已经完成")
|
||||
}
|
||||
}
|
||||
|
||||
// 音频学习
|
||||
func (c *Core) RadioStation(user *model.User) {
|
||||
defer func() {
|
||||
err := recover()
|
||||
if err != nil {
|
||||
log.Errorln("电台学习模块异常结束")
|
||||
log.Errorln(err)
|
||||
}
|
||||
}()
|
||||
if c.IsQuit() {
|
||||
return
|
||||
}
|
||||
score, err := GetUserScore(user.ToCookies())
|
||||
if err != nil {
|
||||
log.Errorln(err.Error())
|
||||
return
|
||||
}
|
||||
links, _ := getLinks("yp")
|
||||
if !(score.Content["video"].CurrentScore >= score.Content["video"].MaxScore && score.Content["video_time"].CurrentScore >= score.Content["video_time"].MaxScore) {
|
||||
log.Infoln("开始加载音频学习模块")
|
||||
context, err := c.browser.NewContext(playwright.BrowserNewContextOptions{
|
||||
Viewport: &playwright.BrowserNewContextOptionsViewport{
|
||||
Width: playwright.Int(1920),
|
||||
Height: playwright.Int(1080),
|
||||
}})
|
||||
_ = context.AddInitScript(playwright.BrowserContextAddInitScriptOptions{
|
||||
Script: playwright.String("Object.defineProperties(navigator, {webdriver:{get:()=>undefined}});")})
|
||||
if err != nil {
|
||||
log.Errorln("创建实例对象错误" + err.Error())
|
||||
return
|
||||
}
|
||||
defer func(context playwright.BrowserContext) {
|
||||
err := context.Close()
|
||||
if err != nil {
|
||||
log.Errorln("错误的关闭了实例对象" + err.Error())
|
||||
}
|
||||
}(context)
|
||||
|
||||
page, err := context.NewPage()
|
||||
if err != nil {
|
||||
return
|
||||
}
|
||||
defer func() {
|
||||
page.Close()
|
||||
}()
|
||||
|
||||
err = context.AddCookies(user.ToBrowserCookies()...)
|
||||
if err != nil {
|
||||
log.Errorln("添加cookie失败" + err.Error())
|
||||
return
|
||||
}
|
||||
tryCount := 0
|
||||
for {
|
||||
if tryCount < 20 {
|
||||
PrintScore(score)
|
||||
n := rand.Intn(len(links))
|
||||
_, err := page.Goto(links[n].Url, playwright.PageGotoOptions{
|
||||
Referer: playwright.String(links[rand.Intn(len(links))].Url),
|
||||
Timeout: playwright.Float(10000),
|
||||
WaitUntil: playwright.WaitUntilStateDomcontentloaded,
|
||||
})
|
||||
if err != nil {
|
||||
log.Errorln("页面跳转失败")
|
||||
}
|
||||
log.Infoln("正在收听:" + links[n].Title)
|
||||
c.Push(user.PushId, "text", "正在收听:"+links[n].Title)
|
||||
log.Infoln("音频发布时间:" + links[n].PublishTime)
|
||||
log.Infoln("音频学习链接:" + links[n].Url)
|
||||
learnTime := 60 + rand.Intn(10)
|
||||
for i := 0; i < learnTime; i++ {
|
||||
if c.IsQuit() {
|
||||
return
|
||||
}
|
||||
fmt.Printf("\r[%v] [INFO]: 正在进行音频学习中,剩余%d个,当前剩余时间%d秒", time.Now().Format("2006-01-02 15:04:05"), score.Content["video"].MaxScore-score.Content["video"].CurrentScore, learnTime-i)
|
||||
|
||||
if rand.Float32() > 0.5 {
|
||||
go func() {
|
||||
_, err := page.Evaluate(fmt.Sprintf(`let h = document.body.scrollHeight/120*%d;document.documentElement.scrollTop=h;`, i))
|
||||
if err != nil {
|
||||
log.Errorln("视频滑动失败")
|
||||
}
|
||||
}()
|
||||
}
|
||||
time.Sleep(1 * time.Second)
|
||||
}
|
||||
fmt.Println()
|
||||
score, _ = GetUserScore(user.ToCookies())
|
||||
if score.Content["video"].CurrentScore >= score.Content["video"].MaxScore && score.Content["video_time"].CurrentScore >= score.Content["video_time"].MaxScore {
|
||||
log.Infoln("检测到本次音频学习分数已满,退出学习")
|
||||
break
|
||||
}
|
||||
|
||||
tryCount++
|
||||
} else {
|
||||
log.Errorln("音频学习出现异常,稍后可重新学习")
|
||||
return
|
||||
}
|
||||
}
|
||||
} else {
|
||||
log.Infoln("检测到音频学习已经完成")
|
||||
}
|
||||
}
|
||||
|
|
|
@ -11,7 +11,6 @@ const (
|
|||
queryWeekList = "https://pc-proxy-api.xuexi.cn/api/exam/service/practice/pc/weekly/more"
|
||||
)
|
||||
|
||||
// 专项答题JSON结构
|
||||
type SpecialList struct {
|
||||
PageNo int `json:"pageNo"`
|
||||
PageSize int `json:"pageSize"`
|
||||
|
|
16
lib/user.go
16
lib/user.go
|
@ -10,7 +10,14 @@ import (
|
|||
"github.com/sjkhsl/study_xxqg/utils"
|
||||
)
|
||||
|
||||
// 获取用户信息
|
||||
// GetUserInfo
|
||||
/**
|
||||
* @Description: 获取用户信息
|
||||
* @param cookies
|
||||
* @return string
|
||||
* @return string
|
||||
* @return error
|
||||
*/
|
||||
func GetUserInfo(cookies []*http.Cookie) (string, string, error) {
|
||||
var resp []byte
|
||||
response, err := utils.GetClient().R().SetCookies(cookies...).SetHeader("Cache-Control", "no-cache").Get(userInfoUrl)
|
||||
|
@ -26,7 +33,12 @@ func GetUserInfo(cookies []*http.Cookie) (string, string, error) {
|
|||
return uid, nick, err
|
||||
}
|
||||
|
||||
// 获取用户成绩
|
||||
// CheckUserCookie
|
||||
/**
|
||||
* @Description: 获取用户成绩
|
||||
* @param user
|
||||
* @return bool
|
||||
*/
|
||||
func CheckUserCookie(user *model.User) bool {
|
||||
_, err := GetUserScore(user.ToCookies())
|
||||
if err != nil && err.Error() == "token check failed" {
|
||||
|
|
|
@ -6,7 +6,7 @@ import (
|
|||
"github.com/playwright-community/playwright-go"
|
||||
)
|
||||
|
||||
func CookieToJar(cookies []Cookie) []*http.Cookie {
|
||||
func cookieToJar(cookies []Cookie) []*http.Cookie {
|
||||
var (
|
||||
cooks []*http.Cookie
|
||||
)
|
||||
|
@ -28,7 +28,7 @@ func CookieToJar(cookies []Cookie) []*http.Cookie {
|
|||
return cooks
|
||||
}
|
||||
|
||||
func CookieToParam(cookies []Cookie) []playwright.BrowserContextAddCookiesOptionsCookies {
|
||||
func cookieToParam(cookies []Cookie) []playwright.BrowserContextAddCookiesOptionsCookies {
|
||||
var (
|
||||
cooks []playwright.BrowserContextAddCookiesOptionsCookies
|
||||
)
|
||||
|
|
|
@ -119,7 +119,7 @@ func qqStudy(event *Event, args []string) {
|
|||
if len(users) == 1 {
|
||||
user = users[0]
|
||||
} else {
|
||||
if len(args) <= 0 {
|
||||
if len(args) < 0 {
|
||||
event.Send("缺少序号参数,请输入 .study 序号")
|
||||
return
|
||||
} else {
|
||||
|
|
45
push/tg.go
45
push/tg.go
|
@ -75,6 +75,7 @@ func TgInit() {
|
|||
|
||||
// Telegram
|
||||
// @Description:
|
||||
//
|
||||
type Telegram struct {
|
||||
Token string
|
||||
ChatId int64
|
||||
|
@ -92,11 +93,11 @@ type Mather struct {
|
|||
handle func(bot *Telegram, from int64, args []string)
|
||||
}
|
||||
|
||||
func (m Mather) GetCommand() string {
|
||||
func (m Mather) getCommand() string {
|
||||
return m.command
|
||||
}
|
||||
|
||||
func (m Mather) Execute(bot *Telegram, from int64, args []string) {
|
||||
func (m Mather) execute(bot *Telegram, from int64, args []string) {
|
||||
m.handle(bot, from, args)
|
||||
}
|
||||
|
||||
|
@ -262,21 +263,25 @@ func getFailUser(bot *Telegram, from int64, args []string) {
|
|||
bot.SendMsg(from, "当前过期用户:\n"+msg)
|
||||
}
|
||||
|
||||
// checkVersion
|
||||
// @Description: 检查版本信息
|
||||
// @param bot
|
||||
// @param from
|
||||
// @param args
|
||||
//
|
||||
// checkVersion
|
||||
// @Description: 检查版本信息
|
||||
// @param bot
|
||||
// @param from
|
||||
// @param args
|
||||
//
|
||||
func checkVersion(bot *Telegram, from int64, args []string) {
|
||||
about := utils.GetAbout()
|
||||
bot.SendMsg(from, about)
|
||||
}
|
||||
|
||||
// botRestart
|
||||
// @Description: 重启程序
|
||||
// @param bot
|
||||
// @param from
|
||||
// @param args
|
||||
//
|
||||
// botRestart
|
||||
// @Description: 重启程序
|
||||
// @param bot
|
||||
// @param from
|
||||
// @param args
|
||||
//
|
||||
func botRestart(bot *Telegram, from int64, args []string) {
|
||||
if from != conf.GetConfig().TG.ChatID {
|
||||
bot.SendMsg(from, "请联系管理员解决!!")
|
||||
|
@ -286,11 +291,13 @@ func botRestart(bot *Telegram, from int64, args []string) {
|
|||
utils.Restart()
|
||||
}
|
||||
|
||||
// botUpdate
|
||||
// @Description: 更新程序
|
||||
// @param bot
|
||||
// @param from
|
||||
// @param args
|
||||
//
|
||||
// botUpdate
|
||||
// @Description: 更新程序
|
||||
// @param bot
|
||||
// @param from
|
||||
// @param args
|
||||
//
|
||||
func botUpdate(bot *Telegram, from int64, args []string) {
|
||||
if from != conf.GetConfig().TG.ChatID {
|
||||
bot.SendMsg(from, "请联系管理员解决!!")
|
||||
|
@ -402,9 +409,9 @@ func studyAll(bot *Telegram, from int64, args []string) {
|
|||
core.Init()
|
||||
defer core.Quit()
|
||||
core.LearnArticle(user)
|
||||
core.RadioStation(user)
|
||||
core.LearnVideo(user)
|
||||
core.RespondDaily(user, "daily")
|
||||
// core.RespondDaily(user, "weekly")
|
||||
core.RespondDaily(user, "weekly")
|
||||
core.RespondDaily(user, "special")
|
||||
c <- 1
|
||||
}()
|
||||
|
|
54
push/wx.go
54
push/wx.go
|
@ -103,6 +103,8 @@ func initWechat() {
|
|||
log.Errorln("添加客服失败" + err.Error())
|
||||
return
|
||||
}
|
||||
} else {
|
||||
|
||||
}
|
||||
wx.HandleFunc("eventCLICK", func(wx *mp.WeiXin, w http.ResponseWriter, r *request.WeiXinRequest, timestamp, nonce string) {
|
||||
if lastNonce == nonce {
|
||||
|
@ -379,17 +381,21 @@ func handleGetOpenID(id string, msg string) {
|
|||
sendMsg(id, "你的open_id为"+id)
|
||||
}
|
||||
|
||||
// handleCheckUpdate
|
||||
// @Description: 检查更新
|
||||
// @param id
|
||||
//
|
||||
// handleCheckUpdate
|
||||
// @Description: 检查更新
|
||||
// @param id
|
||||
//
|
||||
func handleCheckUpdate(id string, msg string) {
|
||||
about := utils.GetAbout()
|
||||
sendMsg(id, about)
|
||||
}
|
||||
|
||||
// handleUpdate
|
||||
// @Description: 开始更新
|
||||
// @param id
|
||||
//
|
||||
// handleUpdate
|
||||
// @Description: 开始更新
|
||||
// @param id
|
||||
//
|
||||
func handleUpdate(id string, msg string) {
|
||||
if conf.GetConfig().Wechat.SuperOpenID != id {
|
||||
sendMsg(id, "请联系管理员处理!")
|
||||
|
@ -400,9 +406,11 @@ func handleUpdate(id string, msg string) {
|
|||
utils.Restart()
|
||||
}
|
||||
|
||||
// handleRestart
|
||||
// @Description: 重启程序
|
||||
// @param id
|
||||
//
|
||||
// handleRestart
|
||||
// @Description: 重启程序
|
||||
// @param id
|
||||
//
|
||||
func handleRestart(id string, msg string) {
|
||||
if conf.GetConfig().Wechat.SuperOpenID != id {
|
||||
sendMsg(id, "请联系管理员处理!")
|
||||
|
@ -412,10 +420,12 @@ func handleRestart(id string, msg string) {
|
|||
utils.Restart()
|
||||
}
|
||||
|
||||
// sendMsg
|
||||
// @Description: 发送消息
|
||||
// @param id
|
||||
// @param message
|
||||
//
|
||||
// sendMsg
|
||||
// @Description: 发送消息
|
||||
// @param id
|
||||
// @param message
|
||||
//
|
||||
func sendMsg(id, message string) {
|
||||
|
||||
if wx == nil {
|
||||
|
@ -517,9 +527,11 @@ func HandleWechat(rep http.ResponseWriter, req *http.Request) {
|
|||
wx.ServeHTTP(rep, req)
|
||||
}
|
||||
|
||||
// handleLogin
|
||||
// @Description: 用户登录
|
||||
// @param id
|
||||
//
|
||||
// handleLogin
|
||||
// @Description: 用户登录
|
||||
// @param id
|
||||
//
|
||||
func handleLogin(id string, msg string) {
|
||||
core := &lib.Core{Push: func(id1 string, kind, message string) {
|
||||
if kind == "flush" && strings.Contains(message, "login.xuexi.cn") {
|
||||
|
@ -543,9 +555,11 @@ func handleLogin(id string, msg string) {
|
|||
sendMsg(id, "登录成功")
|
||||
}
|
||||
|
||||
// handleStartStudy
|
||||
// @Description: 开始学习
|
||||
// @param id
|
||||
//
|
||||
// handleStartStudy
|
||||
// @Description: 开始学习
|
||||
// @param id
|
||||
//
|
||||
func handleStartStudy(id string, msg string) {
|
||||
users, err := model.QueryByPushID(id)
|
||||
if err != nil {
|
||||
|
@ -569,7 +583,7 @@ func handleStartStudy(id string, msg string) {
|
|||
}
|
||||
sendMsg(id, fmt.Sprintf("开始学习第%d个用户,用户名:%v", i+1, user.Nick))
|
||||
core.LearnArticle(user)
|
||||
core.RadioStation(user)
|
||||
core.LearnVideo(user)
|
||||
if conf.GetConfig().Model == 2 {
|
||||
core.RespondDaily(user, "daily")
|
||||
} else if conf.GetConfig().Model == 3 {
|
||||
|
|
|
@ -48,7 +48,7 @@ func GetAbout() string {
|
|||
*/
|
||||
func CheckUserCookie(cookies []*http.Cookie) (bool, error) {
|
||||
client := GetClient()
|
||||
response, err := client.R().SetCookies(cookies...).Get("https://pc-proxy-api.xuexi.cn/delegate/score/get")
|
||||
response, err := client.R().SetCookies(cookies...).Get("https://pc-api.xuexi.cn/open/api/score/get")
|
||||
if err != nil {
|
||||
log.Errorln("获取用户总分错误" + err.Error())
|
||||
return true, err
|
||||
|
@ -151,7 +151,7 @@ func DownloadDbFile() {
|
|||
}
|
||||
}()
|
||||
log.Infoln("正在从github下载题库文件!")
|
||||
response, err := http.Get("https://github.com/sjkhsl/study_xxqg/releases/download/v1.0.39/QuestionBank.db")
|
||||
response, err := http.Get("https://github.com/sjkhsl/study_xxqg/releases/download/v1.0.37-beta3/QuestionBank.db")
|
||||
if err != nil {
|
||||
log.Errorln("下载db文件错误" + err.Error())
|
||||
return
|
||||
|
|
|
@ -311,12 +311,12 @@ func study() gin.HandlerFunc {
|
|||
config := conf.GetConfig()
|
||||
go func() {
|
||||
core.LearnArticle(user)
|
||||
core.RadioStation(user)
|
||||
core.LearnVideo(user)
|
||||
if config.Model == 2 {
|
||||
core.RespondDaily(user, "daily")
|
||||
} else if config.Model == 3 {
|
||||
core.RespondDaily(user, "daily")
|
||||
// core.RespondDaily(user, "weekly")
|
||||
core.RespondDaily(user, "weekly")
|
||||
core.RespondDaily(user, "special")
|
||||
}
|
||||
state.Delete(uid)
|
||||
|
|
Loading…
Reference in New Issue