ictgj-voting/admin_clients.go

93 lines
2.2 KiB
Go
Raw Normal View History

2017-06-08 17:20:43 +00:00
package main
import (
"net"
"net/http"
"github.com/gorilla/mux"
)
func handleAdminClients(w http.ResponseWriter, req *http.Request, page *pageData) {
vars := mux.Vars(req)
page.SubTitle = "Clients"
clientId := vars["id"]
clientIp, _, _ := net.SplitHostPort(req.RemoteAddr)
if clientId == "" {
type clientsPageData struct {
Clients []Client
}
page.TemplateData = clientsPageData{Clients: dbGetAllClients()}
page.SubTitle = "Clients"
page.show("admin-clients.html", w)
} else {
switch vars["function"] {
case "add":
2017-07-28 19:36:14 +00:00
page.SubTitle = "Authenticate Client"
cli := dbGetClient(clientId)
if cli.IP == "" {
cli.IP = clientIp
}
2017-06-08 17:20:43 +00:00
type actClientPageData struct {
2017-07-28 19:36:14 +00:00
Id string
Ip string
Name string
2017-06-08 17:20:43 +00:00
}
2017-07-28 19:36:14 +00:00
page.TemplateData = actClientPageData{Id: cli.UUID, Ip: cli.IP, Name: cli.Name}
2017-06-08 17:20:43 +00:00
page.show("admin-activateclient.html", w)
case "auth":
email := req.FormValue("email")
password := req.FormValue("password")
2017-07-28 19:36:14 +00:00
clientName := req.FormValue("clientname")
if clientName != "" {
dbSetClientName(clientId, clientName)
}
dbUpdateClientIP(clientId, clientIp)
if page.LoggedIn || doLogin(email, password) == nil {
2017-06-08 17:20:43 +00:00
// Received a valid login
// Authenticate the client
if dbAuthClient(clientId, clientIp) == nil {
page.session.setFlashMessage("Client Authenticated", "success")
} else {
page.session.setFlashMessage("Client Authentication Failed", "error")
}
2017-07-28 19:36:14 +00:00
if page.LoggedIn {
2017-06-08 17:20:43 +00:00
redirect("/admin/clients", w, req)
}
}
redirect("/", w, req)
case "deauth":
dbDeAuthClient(clientId)
redirect("/admin/clients", w, req)
}
}
}
2017-06-15 17:35:53 +00:00
func clientIsAuthenticated(cid string, req *http.Request) bool {
2017-07-28 19:36:14 +00:00
return dbClientIsAuth(cid)
//return clientIsServer(req) || dbClientIsAuth(cid)
2017-06-15 17:35:53 +00:00
}
func clientIsServer(req *http.Request) bool {
clientIp, _, _ := net.SplitHostPort(req.RemoteAddr)
ifaces, err := net.Interfaces()
if err == nil {
for _, i := range ifaces {
if addrs, err := i.Addrs(); err == nil {
for _, addr := range addrs {
var ip net.IP
switch v := addr.(type) {
case *net.IPNet:
ip = v.IP
case *net.IPAddr:
ip = v.IP
}
if clientIp == ip.String() {
return true
}
}
}
}
}
return false
}