This repository has been archived by the owner on Apr 11, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fresh.go
77 lines (68 loc) · 1.81 KB
/
fresh.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
// Copyright 2018 tree xie
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package fresh
import (
"net/http"
"github.com/vicanso/elton"
"github.com/vicanso/fresh"
)
type (
// Config fresh config
Config struct {
Skipper elton.Skipper
}
)
// NewDefault create a default ETag middleware
func NewDefault() elton.Handler {
return New(Config{})
}
// New create a fresh checker
func New(config Config) elton.Handler {
skipper := config.Skipper
if skipper == nil {
skipper = elton.DefaultSkipper
}
return func(c *elton.Context) (err error) {
if skipper(c) {
return c.Next()
}
err = c.Next()
if err != nil {
return
}
// 如果空数据或者已经是304,则跳过
bodyBuf := c.BodyBuffer
if bodyBuf == nil || bodyBuf.Len() == 0 || c.StatusCode == http.StatusNotModified {
return
}
// 如果非GET HEAD请求,则跳过
method := c.Request.Method
if method != http.MethodGet && method != http.MethodHead {
return
}
// 如果响应状态码不为0 而且( < 200 或者 >= 300),则跳过
// 如果未设置状态码,最终则为200
statusCode := c.StatusCode
if statusCode != 0 &&
(statusCode < http.StatusOK ||
statusCode >= http.StatusMultipleChoices) {
return
}
// 304的处理
if fresh.Fresh(c.Request.Header, c.Headers) {
c.NotModified()
}
return
}
}