]> Sergey Matveev's repositories - tofuproxy.git/blobdiff - rounds/transcodeJXL.go
Raise copyright years
[tofuproxy.git] / rounds / transcodeJXL.go
index 2043fb189154a4e851fa8318faf8fa82dd9a9f1d..7c2da99f08747c409162a7e1184b7ac75535a16a 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"
@@ -38,7 +38,7 @@ func transcodeCmd2Png(
        if resp.Header.Get("Content-Type") != contentType {
                return true, nil
        }
-       tmpFd, err := ioutil.TempFile("", "tofuproxy.*."+ext)
+       tmpFd, err := os.CreateTemp("", "tofuproxy.*."+ext)
        if err != nil {
                log.Fatalln(err)
        }
@@ -57,19 +57,15 @@ func transcodeCmd2Png(
        if err != nil {
                return false, err
        }
-       data, err := ioutil.ReadFile(dstFn)
+       data, err := os.ReadFile(dstFn)
        if err != nil {
                return false, err
        }
        w.Header().Add("Content-Type", "image/png")
        w.WriteHeader(http.StatusOK)
        w.Write(data)
-       fifos.SinkOther <- fmt.Sprintf(
-               "%s %s\t%d\t%s transcoded to PNG",
-               req.Method,
-               req.URL.String(),
-               http.StatusOK,
-               contentType,
+       fifos.LogVarious <- fmt.Sprintf(
+               "%s %s\t%s transcoded to PNG", req.Method, req.URL, contentType,
        )
        return false, nil
 }