]> Sergey Matveev's repositories - tofuproxy.git/blob - fifos/log.go
Unify copyright comment format
[tofuproxy.git] / fifos / log.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 fifos
18
19 import (
20         "log"
21         "os"
22         "time"
23
24         "go.cypherpunks.ru/tai64n/v2"
25 )
26
27 var (
28         NoTAI bool
29
30         LogCert     = make(chan string)
31         LogDANE     = make(chan string)
32         LogErr      = make(chan string)
33         LogHTTPAuth = make(chan string)
34         LogNonOK    = make(chan string)
35         LogOK       = make(chan string)
36         LogRedir    = make(chan string)
37         LogReq      = make(chan string)
38         LogTLS      = make(chan string)
39         LogTLSAuth  = make(chan string)
40         LogVarious  = make(chan string)
41         LogWARC     = make(chan string)
42 )
43
44 func logger(c chan string, p string) {
45         tai := new(tai64n.TAI64N)
46         for {
47                 fd, err := os.OpenFile(p, os.O_WRONLY|os.O_APPEND, os.FileMode(0666))
48                 if err != nil {
49                         log.Fatalln(err)
50                 }
51                 for s := range c {
52                         if NoTAI {
53                                 _, err = fd.WriteString(s + "\n")
54                         } else {
55                                 tai.FromTime(time.Now())
56                                 _, err = fd.WriteString(tai64n.Encode(tai[:]) + " " + s + "\n")
57                         }
58                         if err != nil {
59                                 break
60                         }
61                 }
62                 fd.Close()
63         }
64 }