2
0
mirror of https://github.com/acepanel/panel.git synced 2026-02-04 04:22:33 +08:00

feat: 伪静态配置本地化

This commit is contained in:
2026-01-23 21:57:05 +08:00
parent a3827565c1
commit d173755f98
35 changed files with 235 additions and 76 deletions

View File

@@ -9,7 +9,6 @@ const (
CacheKeyApps CacheKey = "apps"
CacheKeyEnvironment CacheKey = "environment"
CacheKeyTemplates CacheKey = "templates"
CacheKeyRewrites CacheKey = "rewrites"
)
type Cache struct {
@@ -26,5 +25,4 @@ type CacheRepo interface {
UpdateApps() error
UpdateEnvironments() error
UpdateTemplates() error
UpdateRewrites() error
}

View File

@@ -110,17 +110,3 @@ func (r *cacheRepo) UpdateTemplates() error {
return r.Set(biz.CacheKeyTemplates, string(encoded))
}
func (r *cacheRepo) UpdateRewrites() error {
rewrites, err := r.api.RewritesByType("nginx")
if err != nil {
return err
}
encoded, err := json.Marshal(rewrites)
if err != nil {
return err
}
return r.Set(biz.CacheKeyRewrites, string(encoded))
}

View File

@@ -3,7 +3,6 @@ package data
import (
"bufio"
"context"
"encoding/json"
"errors"
"fmt"
"log/slog"
@@ -23,7 +22,6 @@ import (
"github.com/acepanel/panel/internal/biz"
"github.com/acepanel/panel/internal/http/request"
"github.com/acepanel/panel/pkg/acme"
"github.com/acepanel/panel/pkg/api"
"github.com/acepanel/panel/pkg/cert"
"github.com/acepanel/panel/pkg/embed"
"github.com/acepanel/panel/pkg/io"
@@ -64,19 +62,24 @@ func NewWebsiteRepo(t *gotext.Locale, db *gorm.DB, log *slog.Logger, cache biz.C
}
func (r *websiteRepo) GetRewrites() (map[string]string, error) {
cached, err := r.cache.Get(biz.CacheKeyRewrites)
webServer, err := r.setting.Get(biz.SettingKeyWebserver)
if err != nil {
return nil, err
return make(map[string]string), err
}
var rewrites api.Rewrites
if err = json.Unmarshal([]byte(cached), &rewrites); err != nil {
return nil, err
entries, err := embed.RewritesFS.ReadDir(webServer)
if err != nil {
return make(map[string]string), err
}
rw := make(map[string]string)
for rewrite := range slices.Values(rewrites) {
rw[rewrite.Name] = rewrite.Content
for _, entry := range entries {
if entry.IsDir() {
continue
}
if content, err := embed.RewritesFS.ReadFile(filepath.Join(webServer, entry.Name())); err == nil {
rw[strings.TrimSuffix(entry.Name(), filepath.Ext(entry.Name()))] = string(content)
}
}
return rw, nil

View File

@@ -77,7 +77,6 @@ func (r *PanelTask) Run() {
if offline, err := r.settingRepo.GetBool(biz.SettingKeyOfflineMode); err == nil && !offline {
r.updateCategories()
r.updateApps()
r.updateRewrites()
if autoUpdate, err := r.settingRepo.GetBool(biz.SettingKeyAutoUpdate); err == nil && autoUpdate {
r.updatePanel()
}
@@ -108,15 +107,6 @@ func (r *PanelTask) updateApps() {
})
}
// 更新伪静态缓存
func (r *PanelTask) updateRewrites() {
time.AfterFunc(time.Duration(rand.IntN(300))*time.Second, func() {
if err := r.cacheRepo.UpdateRewrites(); err != nil {
r.log.Warn("failed to update rewrites cache", slog.String("type", biz.OperationTypePanel), slog.Uint64("operator_id", 0), slog.Any("err", err))
}
})
}
// 更新面板
func (r *PanelTask) updatePanel() {
if r.taskRepo.HasRunningTask() {

View File

@@ -130,9 +130,6 @@ func (s *CliService) Sync(ctx context.Context, cmd *cli.Command) error {
if err := s.cacheRepo.UpdateTemplates(); err != nil {
return errors.New(s.t.Get("Failed to synchronize app data: %v", err))
}
if err := s.cacheRepo.UpdateRewrites(); err != nil {
return errors.New(s.t.Get("Failed to synchronize rewrite rules: %v", err))
}
fmt.Println(s.t.Get("Data synchronized successfully"))
return nil

View File

@@ -61,8 +61,3 @@ func (s *APITestSuite) TestTemplateCallback() {
err := s.api.TemplateCallback("nginx")
s.NoError(err)
}
func (s *APITestSuite) TestGetRewritesByType() {
_, err := s.api.RewritesByType("nginx")
s.NoError(err)
}

View File

@@ -1,33 +0,0 @@
package api
import (
"fmt"
"time"
)
type Rewrite struct {
CreatedAt time.Time `json:"created_at"`
UpdatedAt time.Time `json:"updated_at"`
Name string `json:"name"`
Type string `json:"type"`
Content string `json:"content"`
}
type Rewrites []Rewrite
func (r *API) RewritesByType(typ string) (*Rewrites, error) {
resp, err := r.client.R().SetResult(&Response{}).Get(fmt.Sprintf("/rewrites/%s", typ))
if err != nil {
return nil, err
}
if !resp.IsSuccess() {
return nil, fmt.Errorf("failed to get rewrites: %s", resp.String())
}
rewrites, err := getResponseData[Rewrites](resp)
if err != nil {
return nil, err
}
return rewrites, nil
}

View File

@@ -11,5 +11,8 @@ var WebsiteFS embed.FS
//go:embed all:locales/*
var LocalesFS embed.FS
//go:embed all:rewrites/*
var RewritesFS embed.FS
//go:embed all:error/*
var ErrorFS embed.FS

View File

@@ -0,0 +1,6 @@
location / {
if (!-e $request_filename) {
rewrite ^(.*)$ /index.php?s=/$1 last;
break;
}
}

View File

@@ -0,0 +1,5 @@
location / {
if (!-e $request_filename) {
rewrite ^/(.*)$ /index.php?q=$1 last;
}
}

View File

@@ -0,0 +1,3 @@
location / {
try_files $uri $uri/ /index.php$is_args$args;
}

View File

@@ -0,0 +1,10 @@
rewrite "^/list-([0-9]+).html$" /plus/list.php?tid=$1 last;
rewrite "^/list-([0-9]+)-([0-9]+)-([0-9]+).html$" /plus/list.php?tid=$1&totalresult=$2&PageNo=$3 last;
rewrite "^/view-([0-9]+)-1.html$" /plus/view.php?arcID=$1 last;
rewrite "^/view-([0-9]+)-([0-9]+).html$" /plus/view.php?aid=$1&pageno=$2 last;
rewrite "^/plus/list-([0-9]+).html$" /plus/list.php?tid=$1 last;
rewrite "^/plus/list-([0-9]+)-([0-9]+)-([0-9]+).html$" /plus/list.php?tid=$1&totalresult=$2&PageNo=$3 last;
rewrite "^/plus/view-([0-9]+)-1.html$" /plus/view.php?arcID=$1 last;
rewrite "^/plus/view-([0-9]+)-([0-9]+).html$" /plus/view.php?aid=$1&pageno=$2 last;
rewrite "^/tags.html$" /tags.php last;
rewrite "^/tag-([0-9]+)-([0-9]+).html$" /tags.php?/$1/$2/ last;

View File

@@ -0,0 +1,7 @@
location / {
rewrite ^/archiver/((fid|tid)-[w-]+.html)$ /archiver/index.php?$1 last;
rewrite ^/forum-([0-9]+)-([0-9]+).html$ /forumdisplay.php?fid=$1&page=$2 last;
rewrite ^/thread-([0-9]+)-([0-9]+)-([0-9]+).html$ /viewthread.php?tid=$1&extra=page%3D$3&page=$2 last;
rewrite ^/space-(username|uid)-(.+).html$ /space.php?$1=$2 last;
rewrite ^/tag-(.+).html$ /tag.php?name=$1 last;
}

View File

@@ -0,0 +1,3 @@
location / {
try_files $uri $uri/ /index.php$is_args$query_string;
}

View File

@@ -0,0 +1,14 @@
location / {
rewrite ^([^.]*)/topic-(.+).html$ $1/portal.php?mod=topic&topic=$2 last;
rewrite ^([^.]*)/article-([0-9]+)-([0-9]+).html$ $1/portal.php?mod=view&aid=$2&page=$3 last;
rewrite ^([^.]*)/forum-(w+)-([0-9]+).html$ $1/forum.php?mod=forumdisplay&fid=$2&page=$3 last;
rewrite ^([^.]*)/thread-([0-9]+)-([0-9]+)-([0-9]+).html$ $1/forum.php?mod=viewthread&tid=$2&extra=page%3D$4&page=$3 last;
rewrite ^([^.]*)/group-([0-9]+)-([0-9]+).html$ $1/forum.php?mod=group&fid=$2&page=$3 last;
rewrite ^([^.]*)/space-(username|uid)-(.+).html$ $1/home.php?mod=space&$2=$3 last;
rewrite ^([^.]*)/blog-([0-9]+)-([0-9]+).html$ $1/home.php?mod=space&uid=$2&do=blog&id=$3 last;
rewrite ^([^.]*)/(fid|tid)-([0-9]+).html$ $1/index.php?action=$2&value=$3 last;
rewrite ^([^.]*)/([a-z]+[a-z0-9_]*)-([a-z0-9_-]+).html$ $1/plugin.php?id=$2:$3 last;
if (!-e $request_filename) {
return 404;
}
}

View File

@@ -0,0 +1,3 @@
if (!-e $request_filename) {
rewrite ^/(.*)$ /index.php?q=$1 last;
}

View File

@@ -0,0 +1,37 @@
location / {
if (!-e $request_filename) {
rewrite "^/index.html" /index.php last;
rewrite "^/category$" /index.php last;
rewrite "^/feed-c([0-9]+).xml$" /feed.php?cat=$1 last;
rewrite "^/feed-b([0-9]+).xml$" /feed.php?brand=$1 last;
rewrite "^/feed.xml$" /feed.php last;
rewrite "^/category-([0-9]+)-b([0-9]+)-min([0-9]+)-max([0-9]+)-attr([^-]*)-([0-9]+)-(.+)-([a-zA-Z]+)(.*).html$" /category.php?id=$1&brand=$2&price_min=$3&price_max=$4&filter_attr=$5&page=$6&sort=$7&order=$8 last;
rewrite "^/category-([0-9]+)-b([0-9]+)-min([0-9]+)-max([0-9]+)-attr([^-]*)(.*).html$" /category.php?id=$1&brand=$2&price_min=$3&price_max=$4&filter_attr=$5 last;
rewrite "^/category-([0-9]+)-b([0-9]+)-([0-9]+)-(.+)-([a-zA-Z]+)(.*).html$" /category.php?id=$1&brand=$2&page=$3&sort=$4&order=$5 last;
rewrite "^/category-([0-9]+)-b([0-9]+)-([0-9]+)(.*).html$" /category.php?id=$1&brand=$2&page=$3 last;
rewrite "^/category-([0-9]+)-b([0-9]+)(.*).html$" /category.php?id=$1&brand=$2 last;
rewrite "^/category-([0-9]+)(.*).html$" /category.php?id=$1 last;
rewrite "^/goods-([0-9]+)(.*).html" /goods.php?id=$1 last;
rewrite "^/article_cat-([0-9]+)-([0-9]+)-(.+)-([a-zA-Z]+)(.*).html$" /article_cat.php?id=$1&page=$2&sort=$3&order=$4 last;
rewrite "^/article_cat-([0-9]+)-([0-9]+)(.*).html$" /article_cat.php?id=$1&page=$2 last;
rewrite "^/article_cat-([0-9]+)(.*).html$" /article_cat.php?id=$1 last;
rewrite "^/article-([0-9]+)(.*).html$" /article.php?id=$1 last;
rewrite "^/brand-([0-9]+)-c([0-9]+)-([0-9]+)-(.+)-([a-zA-Z]+).html" /brand.php?id=$1&cat=$2&page=$3&sort=$4&order=$5 last;
rewrite "^/brand-([0-9]+)-c([0-9]+)-([0-9]+)(.*).html" /brand.php?id=$1&cat=$2&page=$3 last;
rewrite "^/brand-([0-9]+)-c([0-9]+)(.*).html" /brand.php?id=$1&cat=$2 last;
rewrite "^/brand-([0-9]+)(.*).html" /brand.php?id=$1 last;
rewrite "^/tag-(.*).html" /search.php?keywords=$1 last;
rewrite "^/snatch-([0-9]+).html$" /snatch.php?id=$1 last;
rewrite "^/group_buy-([0-9]+).html$" /group_buy.php?act=view&id=$1 last;
rewrite "^/auction-([0-9]+).html$" /auction.php?act=view&id=$1 last;
rewrite "^/exchange-id([0-9]+)(.*).html$" /exchange.php?id=$1&act=view last;
rewrite "^/exchange-([0-9]+)-min([0-9]+)-max([0-9]+)-([0-9]+)-(.+)-([a-zA-Z]+)(.*).html$" /exchange.php?cat_id=$1&integral_min=$2&integral_max=$3&page=$4&sort=$5&order=$6 last;
rewrite "^/exchange-([0-9]+)-([0-9]+)-(.+)-([a-zA-Z]+)(.*).html$" /exchange.php?cat_id=$1&page=$2&sort=$3&order=$4 last;
rewrite "^/exchange-([0-9]+)-([0-9]+)(.*).html$" /exchange.php?cat_id=$1&page=$2 last;
rewrite "^/exchange-([0-9]+)(.*).html$" /exchange.php?cat_id=$1 last;
}
if (!-e $request_filename) {
return 404;
}
}

View File

@@ -0,0 +1,8 @@
location / {
index app.php;
try_files $uri @rewriteapp;
}
location @rewriteapp {
rewrite ^(.*)$ /app.php/$1 last;
}

View File

@@ -0,0 +1,3 @@
location / {
try_files $uri $uri/ /index.php$is_args$args;
}

View File

@@ -0,0 +1,8 @@
rewrite ^([^.]*)/listinfo-(.+?)-(.+?).html$ $1/e/action/ListInfo/index.php?classid=$2&page=$3 last;
rewrite ^([^.]*)/showinfo-(.+?)-(.+?)-(.+?).html$ $1/e/action/ShowInfo.php?classid=$2&id=$3&page=$4 last;
rewrite ^([^.]*)/infotype-(.+?)-(.+?).html$ $1/e/action/InfoType/index.php?ttid=$2&page=$3 last;
rewrite ^([^.]*)/tags-(.+?)-(.+?).html$ $1/e/tags/index.php?tagname=$2&page=$3 last;
rewrite ^([^.]*)/comment-(.+?)-(.+?)-(.+?)-(.+?)-(.+?)-(.+?).html$ $1/e/pl/index.php?doaction=$2&classid=$3&id=$4&page=$5&myorder=$6&tempid=$7 last;
if (!-e $request_filename) {
return 404;
}

View File

@@ -0,0 +1,3 @@
location / {
try_files $uri $uri/ /index.php$is_args$query_string;
}

View File

@@ -0,0 +1,5 @@
rewrite ^/vod-(.*)$ /index.php?m=vod-$1 break;
rewrite ^/art-(.*)$ /index.php?m=art-$1 break;
rewrite ^/gbook-(.*)$ /index.php?m=gbook-$1 break;
rewrite ^/label-(.*)$ /index.php?m=label-$1 break;
rewrite ^/map-(.*)$ /index.php?m=map-$1 break;

View File

@@ -0,0 +1,6 @@
location / {
if (!-e $request_filename) {
rewrite ^(.*)$ /index.php?s=$1 last;
break;
}
}

View File

@@ -0,0 +1,6 @@
location / {
if (!-e $request_filename) {
rewrite ^/index.php(.*)$ /index.php?p=$1 last;
rewrite ^(.*)$ /index.php?s=$1 last;
}
}

View File

@@ -0,0 +1,9 @@
location / {
###以下为PHPCMS伪静态
rewrite ^(.*)show-([0-9]+)-([0-9]+).html$ $1/show.php?itemid=$2&page=$3;
rewrite ^(.*)list-([0-9]+)-([0-9]+).html$ $1/list.php?catid=$2&page=$3;
rewrite ^(.*)show-([0-9]+).html$ $1/show.php?specialid=$2;
####以下为PHPWind伪静态
rewrite ^(.*)-htm-(.*)$ $1.php?$2 last;
rewrite ^(.*)/simple/([a-z0-9\_]+.html)$ $1/simple/index.php?$2 last;
}

View File

@@ -0,0 +1,4 @@
location / {
rewrite ^(.*)-htm-(.*)$ $1.php?$2 last;
rewrite ^(.*)/simple/([a-z0-9\_]+.html)$ $1/simple/index.php?$2 last;
}

View File

@@ -0,0 +1,16 @@
location / {
rewrite "^/date/([0-9]{6})/?([0-9]+)?/?$" /index.php?action=article&setdate=$1&page=$2 last;
rewrite ^/page/([0-9]+)?/?$ /index.php?action=article&page=$1 last;
rewrite ^/category/([0-9]+)/?([0-9]+)?/?$ /index.php?action=article&cid=$1&page=$2 last;
rewrite ^/category/([^/]+)/?([0-9]+)?/?$ /index.php?action=article&curl=$1&page=$2 last;
rewrite ^/(archives|search|article|links)/?$ /index.php?action=$1 last;
rewrite ^/(comments|tagslist|trackbacks|article)/?([0-9]+)?/?$ /index.php?action=$1&page=$2 last;
rewrite ^/tag/([^/]+)/?([0-9]+)?/?$ /index.php?action=article&item=$1&page=$2 last;
rewrite ^/archives/([0-9]+)/?([0-9]+)?/?$ /index.php?action=show&id=$1&page=$2 last;
rewrite ^/rss/([0-9]+)?/?$ /rss.php?cid=$1 last;
rewrite ^/rss/([^/]+)/?$ /rss.php?url=$1 last;
rewrite ^/uid/([0-9]+)/?([0-9]+)?/?$ /index.php?action=article&uid=$1&page=$2 last;
rewrite ^/user/([^/]+)/?([0-9]+)?/?$ /index.php?action=article&user=$1&page=$2 last;
rewrite sitemap.xml sitemap.php last;
rewrite ^(.*)/([0-9a-zA-Z-\_]+)/?([0-9]+)?/?$ $1/index.php?action=show&alias=$2&page=$3 last;
}

View File

@@ -0,0 +1,11 @@
location / {
rewrite ^/frim/index(.+?).html$ /list/index.php?$1 last;
rewrite ^/movie/index(.+?).html$ /detail/index.php?$1 last;
rewrite ^/play/([0-9]+)-([0-9]+)-([0-9]+).html$ /video/index.php?$1-$2-$3 last;
rewrite ^/topic/index(.+?).html$ /topic/index.php?$1 last;
rewrite ^/topiclist/index(.+?).html$ /topiclist/index.php?$1 last;
rewrite ^/index.html$ index.php permanent;
rewrite ^/news.html$ news/ permanent;
rewrite ^/part/index(.+?).html$ /articlelist/index.php?$1 last;
rewrite ^/article/index(.+?).html$ /article/index.php?$1 last;
}

View File

@@ -0,0 +1,5 @@
location / {
if (!-e $request_filename) {
rewrite ^/(.+.(html|xml|json|htm|php|jsp|asp|shtml))$ /index.php?$1 last;
}
}

View File

@@ -0,0 +1,14 @@
location / {
#Redirect everything that isn't a real file to index.php
try_files $uri $uri/ /index.php$is_args$args;
}
#If you want a single domain name at the front and back ends
location /admin {
try_files $uri $uri/ /admin/index.php$is_args$args;
}
location /mobile {
try_files $uri $uri/ /mobile/index.php$is_args$args;
}
location /api {
try_files $uri $uri/ /api/index.php$is_args$args;
}

View File

@@ -0,0 +1,8 @@
location ~* (runtime|application)/ {
return 403;
}
location / {
if (!-e $request_filename) {
rewrite ^(.*)$ /index.php?s=$1 last; break;
}
}

View File

@@ -0,0 +1,3 @@
location / {
try_files $uri $uri/ /index.php$is_args$args;
}

View File

@@ -0,0 +1,9 @@
location / {
try_files $uri $uri/ /index.php$is_args$args ;
}
if (!-e $request_filename) {
rewrite /wp-admin$ $scheme://$host$request_uri/ permanent;
rewrite ^/([^/]+)?(/wp-(content|admin|includes).*) $2 last;
rewrite ^/([^/]+)?(/[^/]+.php)$ $2 last;
}

View File

@@ -0,0 +1,5 @@
location / {
try_files $uri $uri/ /index.php$is_args$args;
}
rewrite /wp-admin$ $scheme://$host$uri/ permanent;

View File

@@ -0,0 +1,9 @@
if (-f $request_filename/index.html) {
rewrite (.*) $1/index.html break;
}
if (-f $request_filename/index.php) {
rewrite (.*) $1/index.php;
}
if (!-f $request_filename) {
rewrite (.*) /index.php;
}