Skip to content

Commit 1466191

Browse files
EzraRTxhofe
andauthored
feat: customize proxy ignore headers (close #2763 pr #2766)
* clean referer when use proxy * feat: customize proxy ignore headers Co-authored-by: Noah Hsu <i@nn.ci>
1 parent 3720300 commit 1466191

File tree

7 files changed

+30
-29
lines changed

7 files changed

+30
-29
lines changed

internal/bootstrap/data/setting.go

+1
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,7 @@ func InitialSettings() []model.SettingItem {
9797
{Key: conf.ImageTypes, Value: "jpg,tiff,jpeg,png,gif,bmp,svg,ico,swf,webp", Type: conf.TypeText, Group: model.PREVIEW, Flag: model.PRIVATE},
9898
//{Key: conf.OfficeTypes, Value: "doc,docx,xls,xlsx,ppt,pptx", Type: conf.TypeText, Group: model.PREVIEW, Flag: model.PRIVATE},
9999
{Key: conf.ProxyTypes, Value: "m3u8", Type: conf.TypeText, Group: model.PREVIEW, Flag: model.PRIVATE},
100+
{Key: conf.ProxyIgnoreHeaders, Value: "authorization,referer", Type: conf.TypeText, Group: model.PRIVATE, Flag: model.PRIVATE},
100101
{Key: "external_previews", Value: `{}`, Type: conf.TypeText, Group: model.PREVIEW},
101102
{Key: "iframe_previews", Value: `{
102103
"doc,docx,xls,xlsx,ppt,pptx": {

internal/conf/const.go

+9-11
Original file line numberDiff line numberDiff line change
@@ -15,23 +15,21 @@ const (
1515
BasePath = "base_path"
1616
SiteTitle = "site_title"
1717
Announcement = "announcement"
18-
AllowIndexed = "allow_indexed"
18+
AllowIndexed = "allow_indexed"
1919

2020
Logo = "logo"
2121
Favicon = "favicon"
2222
MainColor = "main_color"
2323

2424
// preview
25-
TextTypes = "text_types"
26-
AudioTypes = "audio_types"
27-
VideoTypes = "video_types"
28-
ImageTypes = "image_types"
29-
// OfficeTypes = "office_types"
30-
ProxyTypes = "proxy_types"
31-
OfficeViewers = "office_viewers"
32-
PdfViewers = "pdf_viewers"
33-
AudioAutoplay = "audio_autoplay"
34-
VideoAutoplay = "video_autoplay"
25+
TextTypes = "text_types"
26+
AudioTypes = "audio_types"
27+
VideoTypes = "video_types"
28+
ImageTypes = "image_types"
29+
ProxyTypes = "proxy_types"
30+
ProxyIgnoreHeaders = "proxy_ignore_headers"
31+
AudioAutoplay = "audio_autoplay"
32+
VideoAutoplay = "video_autoplay"
3533

3634
// global
3735
HideFiles = "hide_files"

internal/conf/var.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ var (
1515
Conf *Config
1616
)
1717

18-
var TypesMap = make(map[string][]string)
18+
var SlicesMap = make(map[string][]string)
1919
var FilenameCharMap = make(map[string]string)
2020
var PrivacyReg []*regexp.Regexp
2121

internal/op/hook.go

+9-6
Original file line numberDiff line numberDiff line change
@@ -33,26 +33,29 @@ type SettingItemHook func(item *model.SettingItem) error
3333

3434
var settingItemHooks = map[string]SettingItemHook{
3535
conf.VideoTypes: func(item *model.SettingItem) error {
36-
conf.TypesMap[conf.VideoTypes] = strings.Split(item.Value, ",")
36+
conf.SlicesMap[conf.VideoTypes] = strings.Split(item.Value, ",")
3737
return nil
3838
},
3939
conf.AudioTypes: func(item *model.SettingItem) error {
40-
conf.TypesMap[conf.AudioTypes] = strings.Split(item.Value, ",")
40+
conf.SlicesMap[conf.AudioTypes] = strings.Split(item.Value, ",")
4141
return nil
4242
},
4343
conf.ImageTypes: func(item *model.SettingItem) error {
44-
conf.TypesMap[conf.ImageTypes] = strings.Split(item.Value, ",")
44+
conf.SlicesMap[conf.ImageTypes] = strings.Split(item.Value, ",")
4545
return nil
4646
},
4747
conf.TextTypes: func(item *model.SettingItem) error {
48-
conf.TypesMap[conf.TextTypes] = strings.Split(item.Value, ",")
48+
conf.SlicesMap[conf.TextTypes] = strings.Split(item.Value, ",")
4949
return nil
5050
},
5151
conf.ProxyTypes: func(item *model.SettingItem) error {
52-
conf.TypesMap[conf.ProxyTypes] = strings.Split(item.Value, ",")
52+
conf.SlicesMap[conf.ProxyTypes] = strings.Split(item.Value, ",")
53+
return nil
54+
},
55+
conf.ProxyIgnoreHeaders: func(item *model.SettingItem) error {
56+
conf.SlicesMap[conf.ProxyIgnoreHeaders] = strings.Split(item.Value, ",")
5357
return nil
5458
},
55-
5659
conf.PrivacyRegs: func(item *model.SettingItem) error {
5760
regStrs := strings.Split(item.Value, "\n")
5861
regs := make([]*regexp.Regexp, 0, len(regStrs))

pkg/utils/file.go

+4-7
Original file line numberDiff line numberDiff line change
@@ -119,19 +119,16 @@ func CreateTempFile(r io.ReadCloser) (*os.File, error) {
119119
// GetFileType get file type
120120
func GetFileType(filename string) int {
121121
ext := strings.ToLower(Ext(filename))
122-
//if SliceContains(conf.TypesMap[conf.OfficeTypes], ext) {
123-
// return conf.OFFICE
124-
//}
125-
if SliceContains(conf.TypesMap[conf.AudioTypes], ext) {
122+
if SliceContains(conf.SlicesMap[conf.AudioTypes], ext) {
126123
return conf.AUDIO
127124
}
128-
if SliceContains(conf.TypesMap[conf.VideoTypes], ext) {
125+
if SliceContains(conf.SlicesMap[conf.VideoTypes], ext) {
129126
return conf.VIDEO
130127
}
131-
if SliceContains(conf.TypesMap[conf.ImageTypes], ext) {
128+
if SliceContains(conf.SlicesMap[conf.ImageTypes], ext) {
132129
return conf.IMAGE
133130
}
134-
if SliceContains(conf.TypesMap[conf.TextTypes], ext) {
131+
if SliceContains(conf.SlicesMap[conf.TextTypes], ext) {
135132
return conf.TEXT
136133
}
137134
return conf.UNKNOWN

server/common/proxy.go

+3-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,9 @@ import (
1010
"strconv"
1111
"strings"
1212

13+
"github.com/alist-org/alist/v3/internal/conf"
1314
"github.com/alist-org/alist/v3/internal/model"
15+
"github.com/alist-org/alist/v3/pkg/utils"
1416
"github.com/pkg/errors"
1517
log "github.com/sirupsen/logrus"
1618
)
@@ -67,7 +69,7 @@ func Proxy(w http.ResponseWriter, r *http.Request, link *model.Link, file model.
6769
return err
6870
}
6971
for h, val := range r.Header {
70-
if strings.ToLower(h) == "authorization" {
72+
if utils.SliceContains(conf.SlicesMap[conf.ProxyIgnoreHeaders], strings.ToLower(h)) {
7173
continue
7274
}
7375
req.Header[h] = val

server/handles/down.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ func shouldProxy(storage driver.Driver, filename string) bool {
9191
if storage.Config().MustProxy() || storage.GetStorage().WebProxy {
9292
return true
9393
}
94-
if utils.SliceContains(conf.TypesMap[conf.ProxyTypes], utils.Ext(filename)) {
94+
if utils.SliceContains(conf.SlicesMap[conf.ProxyTypes], utils.Ext(filename)) {
9595
return true
9696
}
9797
return false
@@ -108,10 +108,10 @@ func canProxy(storage driver.Driver, filename string) bool {
108108
if storage.Config().MustProxy() || storage.GetStorage().WebProxy || storage.GetStorage().WebdavProxy() {
109109
return true
110110
}
111-
if utils.SliceContains(conf.TypesMap[conf.ProxyTypes], utils.Ext(filename)) {
111+
if utils.SliceContains(conf.SlicesMap[conf.ProxyTypes], utils.Ext(filename)) {
112112
return true
113113
}
114-
if utils.SliceContains(conf.TypesMap[conf.TextTypes], utils.Ext(filename)) {
114+
if utils.SliceContains(conf.SlicesMap[conf.TextTypes], utils.Ext(filename)) {
115115
return true
116116
}
117117
return false

0 commit comments

Comments
 (0)