Full Go backend + Vue 3 frontend, OpenAI-compatible API, multi-provider account pools, billing/admin, Docker one-command deploy with auto HTTPS. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
82 lines
2.1 KiB
Go
82 lines
2.1 KiB
Go
package service
|
|
|
|
import (
|
|
"context"
|
|
"strings"
|
|
|
|
"backend/internal/repo"
|
|
)
|
|
|
|
type SiteService struct {
|
|
settings *repo.SiteSettingRepository
|
|
fallback string
|
|
}
|
|
|
|
func NewSiteService(settings *repo.SiteSettingRepository, fallback string) *SiteService {
|
|
return &SiteService{
|
|
settings: settings,
|
|
fallback: fallback,
|
|
}
|
|
}
|
|
|
|
func (s *SiteService) Title(ctx context.Context) (string, error) {
|
|
v, err := s.settings.GetValue(ctx, "site.title")
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
v = strings.TrimSpace(v)
|
|
if v == "" {
|
|
return s.fallback, nil
|
|
}
|
|
return v, nil
|
|
}
|
|
|
|
func (s *SiteService) SetTitle(ctx context.Context, title string) (string, error) {
|
|
title = strings.TrimSpace(title)
|
|
if title == "" {
|
|
return "", nil
|
|
}
|
|
if err := s.settings.UpsertValue(ctx, "site.title", title); err != nil {
|
|
return "", err
|
|
}
|
|
return title, nil
|
|
}
|
|
|
|
// Contact is the admin-editable "联系我们" info shown in the public 关于 section.
|
|
type Contact struct {
|
|
QQ string `json:"qq"`
|
|
QQLink string `json:"qq_link"`
|
|
QQGroup string `json:"qq_group"`
|
|
QQGroupLink string `json:"qq_group_link"`
|
|
Email string `json:"email"`
|
|
Shop string `json:"shop"`
|
|
}
|
|
|
|
func (s *SiteService) Contact(ctx context.Context) Contact {
|
|
get := func(k string) string { v, _ := s.settings.GetValue(ctx, k); return strings.TrimSpace(v) }
|
|
return Contact{
|
|
QQ: get("contact.qq"),
|
|
QQLink: get("contact.qq_link"),
|
|
QQGroup: get("contact.qq_group"),
|
|
QQGroupLink: get("contact.qq_group_link"),
|
|
Email: get("contact.email"),
|
|
Shop: get("contact.shop"),
|
|
}
|
|
}
|
|
|
|
func (s *SiteService) SetContact(ctx context.Context, c Contact) error {
|
|
for k, v := range map[string]string{
|
|
"contact.qq": strings.TrimSpace(c.QQ),
|
|
"contact.qq_link": strings.TrimSpace(c.QQLink),
|
|
"contact.qq_group": strings.TrimSpace(c.QQGroup),
|
|
"contact.qq_group_link": strings.TrimSpace(c.QQGroupLink),
|
|
"contact.email": strings.TrimSpace(c.Email),
|
|
"contact.shop": strings.TrimSpace(c.Shop),
|
|
} {
|
|
if err := s.settings.UpsertValue(ctx, k, v); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
return nil
|
|
}
|