]> Sergey Matveev's repositories - tofuproxy.git/blob - rounds/transcodeWebP.go
7c4995d46c962dd11bbb1a6ef4c508adcf0e28f2
[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
29         "go.stargrave.org/tofuproxy/fifos"
30 )
31
32 const CmdDWebP = "dwebp"
33
34 func RoundTranscodeWebP(
35         host string,
36         resp *http.Response,
37         w http.ResponseWriter,
38         req *http.Request,
39 ) (bool, error) {
40         if resp.Header.Get("Content-Type") != "image/webp" {
41                 return true, nil
42         }
43         tmpFd, err := os.CreateTemp("", "tofuproxy.*.webp")
44         if err != nil {
45                 log.Fatalln(err)
46         }
47         defer os.Remove(tmpFd.Name())
48         defer tmpFd.Close()
49         defer resp.Body.Close()
50         if _, err = io.Copy(tmpFd, resp.Body); err != nil {
51                 log.Printf("Error during %s: %+v\n", req.URL, err)
52                 return false, err
53         }
54         tmpFd.Close()
55         cmd := exec.Command(CmdDWebP, tmpFd.Name(), "-o", "-")
56         data, err := cmd.Output()
57         if err != nil {
58                 return false, err
59         }
60         w.Header().Add("Content-Type", "image/png")
61         w.WriteHeader(http.StatusOK)
62         w.Write(data)
63         fifos.LogVarious <- fmt.Sprintf(
64                 "%s %s\tWebP transcoded to PNG", req.Method, req.URL,
65         )
66         return false, nil
67 }