]> Sergey Matveev's repositories - tofuproxy.git/blobdiff - rounds/transcodeWebP.go
Raise copyright years
[tofuproxy.git] / rounds / transcodeWebP.go
index ff1fd8c7b3c673c0216e4436db6333619c694054..95b409a3c3ffbfd97426b3dece6875eea5f65689 100644 (file)
@@ -1,6 +1,7 @@
 /*
-tofuproxy -- HTTP proxy with TLS certificates management
-Copyright (C) 2021 Sergey Matveev <stargrave@stargrave.org>
+tofuproxy -- flexible HTTP/HTTPS proxy, TLS terminator, X.509 TOFU
+             manager, WARC/geminispace browser
+Copyright (C) 2021-2023 Sergey Matveev <stargrave@stargrave.org>
 
 This program is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
@@ -20,7 +21,6 @@ package rounds
 import (
        "fmt"
        "io"
-       "io/ioutil"
        "log"
        "net/http"
        "os"
@@ -45,7 +45,7 @@ func RoundTranscodeWebP(
        if resp.Header.Get("Content-Type") != "image/webp" || isXombrero(req) {
                return true, nil
        }
-       tmpFd, err := ioutil.TempFile("", "tofuproxy.*.webp")
+       tmpFd, err := os.CreateTemp("", "tofuproxy.*.webp")
        if err != nil {
                log.Fatalln(err)
        }
@@ -65,11 +65,6 @@ func RoundTranscodeWebP(
        w.Header().Add("Content-Type", "image/png")
        w.WriteHeader(http.StatusOK)
        w.Write(data)
-       fifos.SinkOther <- fmt.Sprintf(
-               "%s %s\t%d\tWebP transcoded to PNG",
-               req.Method,
-               req.URL.String(),
-               http.StatusOK,
-       )
+       fifos.LogVarious <- fmt.Sprintf("%s %s\tWebP transcoded to PNG", req.Method, req.URL)
        return false, nil
 }