]> Sergey Matveev's repositories - tofuproxy.git/blob - rounds/denyFonts.go
Unify copyright comment format
[tofuproxy.git] / rounds / denyFonts.go
1 // tofuproxy -- flexible HTTP/HTTPS proxy, TLS terminator, X.509 TOFU
2 //              manager, WARC/geminispace browser
3 // Copyright (C) 2021-2024 Sergey Matveev <stargrave@stargrave.org>
4 //
5 // This program is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, version 3 of the License.
8 //
9 // This program is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 // GNU General Public License for more details.
13 //
14 // You should have received a copy of the GNU General Public License
15 // along with this program.  If not, see <http://www.gnu.org/licenses/>.
16
17 package rounds
18
19 import (
20         "fmt"
21         "net/http"
22
23         "go.stargrave.org/tofuproxy/fifos"
24 )
25
26 func RoundDenyFonts(
27         host string,
28         resp *http.Response,
29         w http.ResponseWriter,
30         req *http.Request,
31 ) (bool, error) {
32         switch resp.Header.Get("Content-Type") {
33         case "application/font-woff", "application/font-sfnt":
34                 // Those are deprecated types
35                 fallthrough
36         case "font/otf", "font/ttf", "font/woff", "font/woff2":
37                 http.NotFound(w, req)
38                 fifos.LogVarious <- fmt.Sprintf("%s %s\tdeny fonts", req.Method, req.URL)
39                 resp.Body.Close()
40                 return false, nil
41         }
42         return true, nil
43 }