All checks were successful
Build / build (push) Successful in 5m28s
Refactor the gRPC client and task handling logic to improve modularity, error handling, and observability. - Split `grpc/handler.go` into specialized handler files (login, classroom, exams, grades, schedule) to reduce complexity. - Replace standard `log` with `log/slog` throughout the project for structured logging. - Refactor `grpc/client.go` to use a thread-safe connection management pattern with `sync.RWMutex`. - Remove the legacy `service` package and HTTP server implementation, transitioning the application to a pure gRPC runner mode. - Clean up `config` and `pkg/errors` to remove unused utilities and simplify the API. - Improve error reporting in parsers and HTTP clients by checking response status codes.
48 lines
717 B
Go
48 lines
717 B
Go
package config
|
|
|
|
import (
|
|
"os"
|
|
"sync"
|
|
)
|
|
|
|
type Config struct {
|
|
BaseURL string
|
|
Username string
|
|
Password string
|
|
Semester string
|
|
TWFID string
|
|
}
|
|
|
|
var (
|
|
cfg *Config
|
|
cfgOnce sync.Once
|
|
)
|
|
|
|
func Load() *Config {
|
|
cfgOnce.Do(func() {
|
|
cfg = &Config{
|
|
BaseURL: getEnv("JWTS_BASE_URL", "http://jwts.hitwh.edu.cn"),
|
|
Username: getEnv("JWTS_USERNAME", ""),
|
|
Password: getEnv("JWTS_PASSWORD", ""),
|
|
Semester: getEnv("JWTS_SEMESTER", "2025-20262"),
|
|
TWFID: getEnv("JWTS_TWFID", ""),
|
|
}
|
|
})
|
|
return cfg
|
|
}
|
|
|
|
func Get() *Config {
|
|
if cfg == nil {
|
|
return Load()
|
|
}
|
|
return cfg
|
|
}
|
|
|
|
func getEnv(key, defaultValue string) string {
|
|
val := os.Getenv(key)
|
|
if val == "" {
|
|
return defaultValue
|
|
}
|
|
return val
|
|
}
|