ricochet-go/core/contactlist.go

343 lines
9.7 KiB
Go

package core
import (
"errors"
"fmt"
"github.com/ricochet-im/ricochet-go/core/utils"
"github.com/ricochet-im/ricochet-go/rpc"
"strconv"
"sync"
"time"
)
type ContactList struct {
core *Ricochet
mutex sync.RWMutex
events *utils.Publisher
contacts map[int]*Contact
inboundRequests map[string]*InboundContactRequest
}
func LoadContactList(core *Ricochet) (*ContactList, error) {
list := &ContactList{
core: core,
events: utils.CreatePublisher(),
inboundRequests: make(map[string]*InboundContactRequest),
}
config := core.Config.OpenRead()
defer config.Close()
list.contacts = make(map[int]*Contact, len(config.Contacts))
for idStr, data := range config.Contacts {
id, err := strconv.Atoi(idStr)
if err != nil {
return nil, fmt.Errorf("Invalid contact id '%s'", idStr)
}
if _, exists := list.contacts[id]; exists {
return nil, fmt.Errorf("Duplicate contact id '%d'", id)
}
contact, err := ContactFromConfig(core, id, data, list.events)
if err != nil {
return nil, err
}
list.contacts[id] = contact
}
return list, nil
}
func (this *ContactList) EventMonitor() utils.Subscribable {
return this.events
}
func (this *ContactList) Contacts() []*Contact {
this.mutex.RLock()
defer this.mutex.RUnlock()
re := make([]*Contact, 0, len(this.contacts))
for _, contact := range this.contacts {
re = append(re, contact)
}
return re
}
func (this *ContactList) ContactById(id int) *Contact {
this.mutex.RLock()
defer this.mutex.RUnlock()
return this.contacts[id]
}
func (this *ContactList) ContactByAddress(address string) *Contact {
this.mutex.RLock()
defer this.mutex.RUnlock()
for _, contact := range this.contacts {
if contact.Address() == address {
return contact
}
}
return nil
}
func (cl *ContactList) InboundRequestByAddress(address string) *InboundContactRequest {
cl.mutex.RLock()
defer cl.mutex.RUnlock()
for _, request := range cl.inboundRequests {
if request.Address == address {
return request
}
}
return nil
}
// AddNewContact adds a new contact to the persistent contact list, broadcasts a
// contact add RPC event, and returns a newly constructed Contact. AddNewContact
// does not create contact requests or trigger any other protocol behavior.
//
// Generally, you will use AddContactRequest (for outbound requests) and
// AddOrUpdateInboundContactRequest plus InboundContactRequest.Accept() instead of
// using this function directly.
func (this *ContactList) AddNewContact(configContact ConfigContact) (*Contact, error) {
this.mutex.Lock()
defer this.mutex.Unlock()
address, ok := AddressFromOnion(configContact.Hostname)
if !ok {
return nil, errors.New("Invalid ricochet address")
}
for _, contact := range this.contacts {
if contact.Address() == address {
return nil, errors.New("Contact already exists with this address")
}
if contact.Nickname() == configContact.Nickname {
return nil, errors.New("Contact already exists with this nickname")
}
}
// XXX check inbound requests (but this can be called for an inbound req too)
// Write new contact into config
config := this.core.Config.OpenWrite()
maxContactId := 0
for idstr, _ := range config.Contacts {
if id, err := strconv.Atoi(idstr); err == nil {
if maxContactId < id {
maxContactId = id
}
}
}
contactId := maxContactId + 1
config.Contacts[strconv.Itoa(contactId)] = configContact
if err := config.Save(); err != nil {
return nil, err
}
// Create Contact
contact, err := ContactFromConfig(this.core, contactId, configContact, this.events)
if err != nil {
return nil, err
}
this.contacts[contactId] = contact
event := ricochet.ContactEvent{
Type: ricochet.ContactEvent_ADD,
Subject: &ricochet.ContactEvent_Contact{
Contact: contact.Data(),
},
}
this.events.Publish(event)
// XXX Should this be here? Is it ok for inbound where we might pass conn over momentarily?
contact.StartConnection()
return contact, nil
}
// AddContactRequest creates a new outbound contact request with the given parameters,
// adds it to the contact list, and returns the newly constructed Contact.
//
// If an inbound request already exists for this address, that request will be automatically
// accepted, and the returned contact will already be fully established.
func (cl *ContactList) AddContactRequest(address, name, fromName, text string) (*Contact, error) {
onion, valid := OnionFromAddress(address)
if !valid {
return nil, errors.New("Invalid ricochet address")
}
if !IsNicknameAcceptable(name) {
return nil, errors.New("Invalid nickname")
}
if len(fromName) > 0 && !IsNicknameAcceptable(fromName) {
return nil, errors.New("Invalid 'from' nickname")
}
if len(text) > 0 && !IsMessageAcceptable(text) {
return nil, errors.New("Invalid message")
}
configContact := ConfigContact{
Hostname: onion,
Nickname: name,
WhenCreated: time.Now().Format(time.RFC3339),
Request: ConfigContactRequest{
Pending: true,
MyNickname: fromName,
Message: text,
},
}
contact, err := cl.AddNewContact(configContact)
if err != nil {
return nil, err
}
if inboundRequest := cl.InboundRequestByAddress(address); inboundRequest != nil {
contact.UpdateContactRequest("Accepted")
inboundRequest.AcceptWithContact(contact)
}
return contact, nil
}
func (this *ContactList) RemoveContact(contact *Contact) error {
this.mutex.Lock()
defer this.mutex.Unlock()
if this.contacts[contact.Id()] != contact {
return errors.New("Not in contact list")
}
// XXX How do we safely make sure that the contact has stopped everything, and that
// nobody is going to block on it or keep referencing it..? This is insufficient, it
// leaves a goroutine up among other things.
contact.StopConnection()
config := this.core.Config.OpenWrite()
delete(config.Contacts, strconv.Itoa(contact.Id()))
if err := config.Save(); err != nil {
return err
}
delete(this.contacts, contact.Id())
event := ricochet.ContactEvent{
Type: ricochet.ContactEvent_DELETE,
Subject: &ricochet.ContactEvent_Contact{
Contact: &ricochet.Contact{
Id: int32(contact.Id()),
Address: contact.Address(),
},
},
}
this.events.Publish(event)
return nil
}
// AddOrUpdateInboundContactRequest creates or modifies an inbound contact request for
// the hostname, with an optional nickname suggestion and introduction message
//
// The nickname, message, and address must be validated before calling this function.
//
// This function may change the state of the request, and the caller is responsible for
// sending a reply message and closing the channel or connection as appropriate. If the
// request is still active when the state changes spontaneously later (e.g. it's accepted
// by the user), replies will be sent by InboundContactRequest.
//
// This function may return either an InboundContactRequest (which may be pending or already
// rejected), an existing contact (which should be treated as accepting the request), or
// neither, which is considered a rejection.
func (cl *ContactList) AddOrUpdateInboundContactRequest(address, nickname, message string) (*InboundContactRequest, *Contact) {
cl.mutex.Lock()
defer cl.mutex.Unlock()
// Look up existing request
if request := cl.inboundRequests[address]; request != nil {
// Errors in Update will change the state of the request, which the caller sends as a reply
request.Update(nickname, message)
return request, nil
}
// Check for existing contacts or outbound contact requests
for _, contact := range cl.contacts {
if contact.Address() == address {
if contact.IsRequest() {
contact.UpdateContactRequest("Accepted")
}
return nil, contact
}
}
// Create new request
request := CreateInboundContactRequest(cl.core, address, nickname, message)
request.StatusChanged = cl.inboundRequestChanged
cl.inboundRequests[address] = request
// XXX update config
requestData := request.Data()
event := ricochet.ContactEvent{
Type: ricochet.ContactEvent_ADD,
Subject: &ricochet.ContactEvent_Request{
Request: &requestData,
},
}
cl.events.Publish(event)
return request, nil
}
// RemoveInboundContactRequest removes the record of an inbound contact request,
// without taking any other actions. Generally you will want to act on a request with
// Accept() or Reject(), rather than call this function directly, but it is valid to
// call on any inbound request regardless.
func (cl *ContactList) RemoveInboundContactRequest(request *InboundContactRequest) error {
cl.mutex.Lock()
defer cl.mutex.Unlock()
requestData := request.Data()
if cl.inboundRequests[requestData.Address] != request {
return errors.New("Request is not in contact list")
}
// Close connection asynchronously to avoid potential deadlocking
go request.CloseConnection()
// XXX Remove from config
delete(cl.inboundRequests, requestData.Address)
event := ricochet.ContactEvent{
Type: ricochet.ContactEvent_DELETE,
Subject: &ricochet.ContactEvent_Request{
Request: &requestData,
},
}
cl.events.Publish(event)
return nil
}
// inboundRequestChanged is called by the StatusChanged callback of InboundContactRequest
// after the request has been modified, such as through Update() or Reject(). Accepted
// requests do not pass through this function, because they're immediately removed.
func (cl *ContactList) inboundRequestChanged(request *InboundContactRequest) {
// XXX update config
requestData := request.Data()
event := ricochet.ContactEvent{
Type: ricochet.ContactEvent_UPDATE,
Subject: &ricochet.ContactEvent_Request{
Request: &requestData,
},
}
cl.events.Publish(event)
}
func (this *ContactList) StartConnections() {
for _, contact := range this.Contacts() {
contact.StartConnection()
}
}
func (this *ContactList) StopConnections() {
for _, contact := range this.Contacts() {
contact.StopConnection()
}
}