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