Browse Source

Remove old unused function

pull/1309/head
Gabe Kangas 4 years ago
parent
commit
53d0e8653e
  1. 22
      core/stats.go

22
core/stats.go

@ -8,7 +8,6 @@ import ( @@ -8,7 +8,6 @@ import (
log "github.com/sirupsen/logrus"
"github.com/owncast/owncast/core/data"
"github.com/owncast/owncast/geoip"
"github.com/owncast/owncast/models"
)
@ -53,27 +52,6 @@ func IsStreamConnected() bool { @@ -53,27 +52,6 @@ func IsStreamConnected() bool {
return _stats.StreamConnected
}
// SetChatClientActive sets a client as active and connected.
func SetChatClientActive(client models.Client) {
l.Lock()
defer l.Unlock()
// If this clientID already exists then update it.
// Otherwise set a new one.
if existingClient, ok := _stats.ChatClients[client.ClientID]; ok {
existingClient.LastSeen = time.Now()
existingClient.Username = client.Username
existingClient.MessageCount = client.MessageCount
existingClient.Geo = geoip.GetGeoFromIP(existingClient.IPAddress)
_stats.ChatClients[client.ClientID] = existingClient
} else {
if client.Geo == nil {
geoip.FetchGeoForIP(client.IPAddress)
}
_stats.ChatClients[client.ClientID] = client
}
}
// RemoveChatClient removes a client from the active clients record.
func RemoveChatClient(clientID string) {
log.Trace("Removing the client:", clientID)

Loading…
Cancel
Save