mirror of
https://github.com/ergochat/ergo.git
synced 2024-11-22 03:49:27 +01:00
Merge pull request #2156 from slingamn/throttle.1
fix login throttle handling
This commit is contained in:
commit
5ee32cda1c
@ -207,13 +207,6 @@ func authenticateHandler(server *Server, client *Client, msg ircmsg.Message, rb
|
|||||||
|
|
||||||
// start new sasl session: parameter is the authentication mechanism
|
// start new sasl session: parameter is the authentication mechanism
|
||||||
if session.sasl.mechanism == "" {
|
if session.sasl.mechanism == "" {
|
||||||
throttled, remainingTime := client.loginThrottle.Touch()
|
|
||||||
if throttled {
|
|
||||||
rb.Add(nil, server.name, ERR_SASLFAIL, client.Nick(),
|
|
||||||
fmt.Sprintf(client.t("Please wait at least %v and try again"), remainingTime.Round(time.Millisecond)))
|
|
||||||
return false
|
|
||||||
}
|
|
||||||
|
|
||||||
mechanism := strings.ToUpper(msg.Params[0])
|
mechanism := strings.ToUpper(msg.Params[0])
|
||||||
_, mechanismIsEnabled := EnabledSaslMechanisms[mechanism]
|
_, mechanismIsEnabled := EnabledSaslMechanisms[mechanism]
|
||||||
|
|
||||||
@ -384,6 +377,12 @@ func authScramHandler(server *Server, client *Client, session *Session, value []
|
|||||||
|
|
||||||
// first message? if so, initialize the SCRAM conversation
|
// first message? if so, initialize the SCRAM conversation
|
||||||
if session.sasl.scramConv == nil {
|
if session.sasl.scramConv == nil {
|
||||||
|
if throttled, remainingTime := client.checkLoginThrottle(); throttled {
|
||||||
|
rb.Add(nil, server.name, ERR_SASLFAIL, client.Nick(),
|
||||||
|
fmt.Sprintf(client.t("Please wait at least %v and try again"), remainingTime.Round(time.Millisecond)))
|
||||||
|
continueAuth = false
|
||||||
|
return false
|
||||||
|
}
|
||||||
session.sasl.scramConv = server.accounts.NewScramConversation()
|
session.sasl.scramConv = server.accounts.NewScramConversation()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user