mirror of
https://github.com/ergochat/ergo.git
synced 2024-11-10 22:19:31 +01:00
registration: Hook up reg to actual accounts
This commit is contained in:
parent
5269dc8776
commit
e3fbdebc48
@ -18,5 +18,5 @@ type ClientAccount struct {
|
|||||||
// RegisteredAt represents the time that the account was registered.
|
// RegisteredAt represents the time that the account was registered.
|
||||||
RegisteredAt time.Time
|
RegisteredAt time.Time
|
||||||
// Clients that are currently logged into this account (useful for notifications).
|
// Clients that are currently logged into this account (useful for notifications).
|
||||||
Clients []Client
|
Clients []*Client
|
||||||
}
|
}
|
||||||
|
@ -149,6 +149,15 @@ const (
|
|||||||
ERR_NOOPERHOST = "491"
|
ERR_NOOPERHOST = "491"
|
||||||
ERR_UMODEUNKNOWNFLAG = "501"
|
ERR_UMODEUNKNOWNFLAG = "501"
|
||||||
ERR_USERSDONTMATCH = "502"
|
ERR_USERSDONTMATCH = "502"
|
||||||
|
RPL_LOGGEDIN = "900"
|
||||||
|
RPL_LOGGEDOUT = "901"
|
||||||
|
ERR_NICKLOCKED = "902"
|
||||||
|
RPL_SASLSUCCESS = "903"
|
||||||
|
ERR_SASLFAIL = "904"
|
||||||
|
ERR_SASLTOOLONG = "905"
|
||||||
|
ERR_SASLABORTED = "906"
|
||||||
|
ERR_SASLALREADY = "907"
|
||||||
|
RPL_SASLMECHS = "908"
|
||||||
RPL_REGISTRATION_SUCCESS = "920"
|
RPL_REGISTRATION_SUCCESS = "920"
|
||||||
ERR_ACCOUNT_ALREADY_EXISTS = "921"
|
ERR_ACCOUNT_ALREADY_EXISTS = "921"
|
||||||
ERR_REG_UNSPECIFIED_ERROR = "922"
|
ERR_REG_UNSPECIFIED_ERROR = "922"
|
||||||
|
@ -19,6 +19,7 @@ import (
|
|||||||
const (
|
const (
|
||||||
keyAccountExists = "account %s exists"
|
keyAccountExists = "account %s exists"
|
||||||
keyAccountVerified = "account %s verified"
|
keyAccountVerified = "account %s verified"
|
||||||
|
keyAccountName = "account %s name" // stores the 'preferred name' of the account, casemapped appropriately
|
||||||
keyAccountRegTime = "account %s registered.time"
|
keyAccountRegTime = "account %s registered.time"
|
||||||
keyAccountCredentials = "account %s credentials"
|
keyAccountCredentials = "account %s credentials"
|
||||||
)
|
)
|
||||||
@ -94,6 +95,7 @@ func regCreateHandler(server *Server, client *Client, msg ircmsg.IrcMessage) boo
|
|||||||
|
|
||||||
// get and sanitise account name
|
// get and sanitise account name
|
||||||
account := NewName(msg.Params[1])
|
account := NewName(msg.Params[1])
|
||||||
|
//TODO(dan): probably don't need explicit check for "*" here... until we actually casemap properly as per rfc7700
|
||||||
if !account.IsNickname() || msg.Params[1] == "*" {
|
if !account.IsNickname() || msg.Params[1] == "*" {
|
||||||
client.Send(nil, server.nameString, ERR_REG_UNSPECIFIED_ERROR, client.nickString, msg.Params[1], "Account name is not valid")
|
client.Send(nil, server.nameString, ERR_REG_UNSPECIFIED_ERROR, client.nickString, msg.Params[1], "Account name is not valid")
|
||||||
return false
|
return false
|
||||||
@ -115,6 +117,7 @@ func regCreateHandler(server *Server, client *Client, msg ircmsg.IrcMessage) boo
|
|||||||
registeredTimeKey := fmt.Sprintf(keyAccountRegTime, accountString)
|
registeredTimeKey := fmt.Sprintf(keyAccountRegTime, accountString)
|
||||||
|
|
||||||
tx.Set(accountKey, "1", nil)
|
tx.Set(accountKey, "1", nil)
|
||||||
|
tx.Set(fmt.Sprintf(keyAccountName, accountString), strings.TrimSpace(msg.Params[1]), nil)
|
||||||
tx.Set(registeredTimeKey, strconv.FormatInt(time.Now().Unix(), 10), nil)
|
tx.Set(registeredTimeKey, strconv.FormatInt(time.Now().Unix(), 10), nil)
|
||||||
return nil
|
return nil
|
||||||
})
|
})
|
||||||
@ -230,6 +233,20 @@ func regCreateHandler(server *Server, client *Client, msg ircmsg.IrcMessage) boo
|
|||||||
if callbackNamespace == "*" {
|
if callbackNamespace == "*" {
|
||||||
err = server.store.Update(func(tx *buntdb.Tx) error {
|
err = server.store.Update(func(tx *buntdb.Tx) error {
|
||||||
tx.Set(keyAccountVerified, "1", nil)
|
tx.Set(keyAccountVerified, "1", nil)
|
||||||
|
|
||||||
|
// load acct info inside store tx
|
||||||
|
account := ClientAccount{
|
||||||
|
Name: strings.TrimSpace(msg.Params[1]),
|
||||||
|
RegisteredAt: time.Now(),
|
||||||
|
Clients: []*Client{client},
|
||||||
|
}
|
||||||
|
//TODO(dan): Consider creating ircd-wide account adding/removing/affecting lock for protecting access to these sorts of variables
|
||||||
|
server.accounts[accountString] = &account
|
||||||
|
client.account = &account
|
||||||
|
|
||||||
|
client.Send(nil, server.nameString, RPL_REGISTRATION_SUCCESS, client.nickString, accountString, "Account created")
|
||||||
|
client.Send(nil, server.nameString, RPL_LOGGEDIN, client.nickString, client.nickMaskString, accountString, fmt.Sprintf("You are now logged in as %s", accountString))
|
||||||
|
client.Send(nil, server.nameString, RPL_SASLSUCCESS, client.nickString, "Authentication successful")
|
||||||
return nil
|
return nil
|
||||||
})
|
})
|
||||||
if err != nil {
|
if err != nil {
|
||||||
@ -239,7 +256,6 @@ func regCreateHandler(server *Server, client *Client, msg ircmsg.IrcMessage) boo
|
|||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
|
|
||||||
client.Notice("Account creation was successful!")
|
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -27,7 +27,7 @@ import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
type Server struct {
|
type Server struct {
|
||||||
accounts map[string]ClientAccount
|
accounts map[string]*ClientAccount
|
||||||
channels ChannelNameMap
|
channels ChannelNameMap
|
||||||
clients *ClientLookupSet
|
clients *ClientLookupSet
|
||||||
commands chan Command
|
commands chan Command
|
||||||
@ -67,7 +67,7 @@ type clientConn struct {
|
|||||||
|
|
||||||
func NewServer(config *Config) *Server {
|
func NewServer(config *Config) *Server {
|
||||||
server := &Server{
|
server := &Server{
|
||||||
accounts: make(map[string]ClientAccount),
|
accounts: make(map[string]*ClientAccount),
|
||||||
channels: make(ChannelNameMap),
|
channels: make(ChannelNameMap),
|
||||||
clients: NewClientLookupSet(),
|
clients: NewClientLookupSet(),
|
||||||
commands: make(chan Command),
|
commands: make(chan Command),
|
||||||
|
Loading…
Reference in New Issue
Block a user