]> Sergey Matveev's repositories - tofuproxy.git/blob - fifos/log.go
Download link for 0.6.0 release
[tofuproxy.git] / fifos / log.go
1 /*
2 tofuproxy -- flexible HTTP/HTTPS proxy, TLS terminator, X.509 TOFU
3              manager, WARC/geminispace browser
4 Copyright (C) 2021-2023 Sergey Matveev <stargrave@stargrave.org>
5
6 This program is free software: you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation, version 3 of the License.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program.  If not, see <http://www.gnu.org/licenses/>.
17 */
18
19 package fifos
20
21 import (
22         "log"
23         "os"
24         "time"
25
26         "go.cypherpunks.ru/tai64n/v2"
27 )
28
29 var (
30         NoTAI bool
31
32         LogCert     = make(chan string)
33         LogDANE     = make(chan string)
34         LogErr      = make(chan string)
35         LogHTTPAuth = make(chan string)
36         LogNonOK    = make(chan string)
37         LogOK       = make(chan string)
38         LogRedir    = make(chan string)
39         LogReq      = make(chan string)
40         LogTLS      = make(chan string)
41         LogTLSAuth  = make(chan string)
42         LogVarious  = make(chan string)
43         LogWARC     = make(chan string)
44 )
45
46 func logger(c chan string, p string) {
47         tai := new(tai64n.TAI64N)
48         for {
49                 fd, err := os.OpenFile(p, os.O_WRONLY|os.O_APPEND, os.FileMode(0666))
50                 if err != nil {
51                         log.Fatalln(err)
52                 }
53                 for s := range c {
54                         if NoTAI {
55                                 _, err = fd.WriteString(s + "\n")
56                         } else {
57                                 tai.FromTime(time.Now())
58                                 _, err = fd.WriteString(tai64n.Encode(tai[:]) + " " + s + "\n")
59                         }
60                         if err != nil {
61                                 break
62                         }
63                 }
64                 fd.Close()
65         }
66 }