]> Cypherpunks.ru repositories - govpn.git/blob - src/cypherpunks.ru/govpn/stats.go
golint fixes
[govpn.git] / src / cypherpunks.ru / govpn / stats.go
1 /*
2 GoVPN -- simple secure free software virtual private network daemon
3 Copyright (C) 2014-2017 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, either version 3 of the License, or
8 (at your option) any later version.
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 govpn
20
21 import (
22         "encoding/json"
23         "log"
24         "net"
25         "time"
26 )
27
28 const (
29         RWTimeout = 10 * time.Second
30 )
31
32 // KnownPeers map of all connected GoVPN peers
33 type KnownPeers map[string]**Peer
34
35 // StatsProcessor is assumed to be run in background. It accepts
36 // connection on statsPort, reads anything one send to them and show
37 // information about known peers in serialized JSON format. peers
38 // argument is a reference to the map with references to the peers as
39 // values. Map is used here because of ease of adding and removing
40 // elements in it.
41 func StatsProcessor(statsPort net.Listener, peers *KnownPeers) {
42         var conn net.Conn
43         var err error
44         var data []byte
45         buf := make([]byte, 2<<8)
46         for {
47                 conn, err = statsPort.Accept()
48                 if err != nil {
49                         log.Println("Error during accepting connection", err.Error())
50                         continue
51                 }
52                 conn.SetDeadline(time.Now().Add(RWTimeout))
53                 conn.Read(buf)
54                 conn.Write([]byte("HTTP/1.0 200 OK\r\nContent-Type: application/json\r\n\r\n"))
55                 var peersList []*Peer
56                 for _, peer := range *peers {
57                         peersList = append(peersList, *peer)
58                 }
59                 data, err = json.Marshal(peersList)
60                 if err != nil {
61                         panic(err)
62                 }
63                 conn.Write(data)
64                 conn.Close()
65         }
66 }