]> Sergey Matveev's repositories - tofuproxy.git/blob - rounds/transcodeWebP.go
Raise copyright years
[tofuproxy.git] / rounds / transcodeWebP.go
1 /*
2 tofuproxy -- flexible HTTP/HTTPS proxy, TLS terminator, X.509 TOFU
3              manager, WARC/geminispace browser
4 Copyright (C) 2021-2023 Sergey Matveev <stargrave@stargrave.org>
5
6 This program is free software: you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation, version 3 of the License.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program.  If not, see <http://www.gnu.org/licenses/>.
17 */
18
19 package rounds
20
21 import (
22         "fmt"
23         "io"
24         "log"
25         "net/http"
26         "os"
27         "os/exec"
28         "strings"
29
30         "go.stargrave.org/tofuproxy/fifos"
31 )
32
33 const CmdDWebP = "dwebp"
34
35 func isXombrero(req *http.Request) bool {
36         return strings.Contains(req.Header.Get("User-Agent"), "AppleWebKit/538.15")
37 }
38
39 func RoundTranscodeWebP(
40         host string,
41         resp *http.Response,
42         w http.ResponseWriter,
43         req *http.Request,
44 ) (bool, error) {
45         if resp.Header.Get("Content-Type") != "image/webp" || isXombrero(req) {
46                 return true, nil
47         }
48         tmpFd, err := os.CreateTemp("", "tofuproxy.*.webp")
49         if err != nil {
50                 log.Fatalln(err)
51         }
52         defer os.Remove(tmpFd.Name())
53         defer tmpFd.Close()
54         defer resp.Body.Close()
55         if _, err = io.Copy(tmpFd, resp.Body); err != nil {
56                 log.Printf("Error during %s: %+v\n", req.URL, err)
57                 return false, err
58         }
59         tmpFd.Close()
60         cmd := exec.Command(CmdDWebP, tmpFd.Name(), "-o", "-")
61         data, err := cmd.Output()
62         if err != nil {
63                 return false, err
64         }
65         w.Header().Add("Content-Type", "image/png")
66         w.WriteHeader(http.StatusOK)
67         w.Write(data)
68         fifos.LogVarious <- fmt.Sprintf("%s %s\tWebP transcoded to PNG", req.Method, req.URL)
69         return false, nil
70 }