]> Sergey Matveev's repositories - tofuproxy.git/blob - rounds/transcodeWebP.go
a38b7f28402779ed51958a89132cdf18af60cd00
[tofuproxy.git] / rounds / transcodeWebP.go
1 /*
2 tofuproxy -- HTTP proxy with TLS certificates management
3 Copyright (C) 2021 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
18 package rounds
19
20 import (
21         "fmt"
22         "io"
23         "io/ioutil"
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 := ioutil.TempFile("", "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 }