remove server's operatorMap, stub out code for requesting to op ourselves
--HG-- branch : nmdc-ircfrontend
This commit is contained in:
parent
cb3ba59cf7
commit
37d61b3193
16
server.go
16
server.go
@ -6,8 +6,6 @@ import (
|
||||
"net"
|
||||
"regexp"
|
||||
"strings"
|
||||
|
||||
"golang.org/x/crypto/bcrypt"
|
||||
)
|
||||
|
||||
var (
|
||||
@ -20,7 +18,6 @@ func NewServer() *Server {
|
||||
name: "",
|
||||
clientMap: make(map[string]*Client),
|
||||
channelMap: make(map[string]*Channel),
|
||||
operatorMap: make(map[string][]byte),
|
||||
motd: "",
|
||||
}
|
||||
}
|
||||
@ -240,19 +237,18 @@ func (s *Server) handleCommand(client *Client, command string, args []string) {
|
||||
return
|
||||
}
|
||||
|
||||
username := args[0]
|
||||
password := args[1]
|
||||
//username := args[0]
|
||||
//password := args[1]
|
||||
|
||||
if hashedPassword, exists := s.operatorMap[username]; exists {
|
||||
//nil means the passwords matched
|
||||
if err := bcrypt.CompareHashAndPassword(hashedPassword, []byte(password)); err == nil {
|
||||
if false { // op the user
|
||||
client.operator = true
|
||||
client.reply(rplOper)
|
||||
return
|
||||
}
|
||||
}
|
||||
} else {
|
||||
client.reply(errPassword)
|
||||
|
||||
}
|
||||
|
||||
case "KILL":
|
||||
if client.registered == false {
|
||||
client.reply(errNotReg)
|
||||
|
@ -14,7 +14,6 @@ type Server struct {
|
||||
name string
|
||||
clientMap map[string]*Client //Map of nicks → clients
|
||||
channelMap map[string]*Channel //Map of channel names → channels
|
||||
operatorMap map[string][]byte //Map of usernames → bcrypt hashed passwords
|
||||
motd string
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user