ygggo/internal/notify/notify.go

138 lines
2.7 KiB
Go
Raw Permalink Normal View History

- Inter-node Protocol: Implemented a custom communication protocol based on Protobuf structures. - Bridge Node Support: Added functionality to manage mail (send/receive) on remote nodes via a bridge node. Full transparent management requires a private key on the bridge, while the remote node can operate with only a public key. - End-to-End Encryption (E2EE): Integrated E2EE using age. Encryption and decryption occur strictly at the bridge level; node administrators cannot access message content. - New Addressing Schema: Transitioned from nodepub@yggmail to userpub@nodepub. - Key Adaptation: Implemented ed25519 to x25519 coordinate adaptation, allowing signing keys to be used for encryption. Changed - Address Encoding: Switched from hex16 to base32 for the address space. - Memory Optimization: Replaced direct memory allocations with streaming for mail processing to reduce RAM overhead. - Code Refactoring: Performed decomposition of the original inherited codebase to improve maintainability. Fixed - Mail Updates: Fixed the mail retrieval mechanism to ensure near-instant updates for incoming messages. Changes to be committed: modified: .gitignore modified: README.md modified: cmd/yggmail/main.go modified: go.mod modified: go.sum new file: internal/account/manager.go new file: internal/account/session.go modified: internal/imapserver/backend.go modified: internal/imapserver/imap.go modified: internal/imapserver/mailbox.go modified: internal/imapserver/notify.go modified: internal/imapserver/user.go new file: internal/notify/notify.go new file: internal/notify/remote/remote.go new file: internal/remote/client.go new file: internal/remote/handlers.go new file: internal/remote/io.go new file: internal/remote/server.go new file: internal/remote/sign.go new file: internal/remote/types/request.pb.go new file: internal/remote/types/request.proto new file: internal/remote/types/response.pb.go new file: internal/remote/types/response.proto new file: internal/shell/shell.go modified: internal/smtpsender/sender.go modified: internal/smtpserver/backend.go modified: internal/smtpserver/session_local.go modified: internal/smtpserver/session_remote.go modified: internal/smtpserver/smtp.go new file: internal/storage/filestore/filestore.go new file: internal/storage/local/storage.go new file: internal/storage/remote/mail.go new file: internal/storage/remote/mailbox.go new file: internal/storage/remote/queue.go new file: internal/storage/remote/storage.go new file: internal/storage/remote/watch.go modified: internal/storage/sqlite3/sqlite3.go new file: internal/storage/sqlite3/table_accounts.go modified: internal/storage/sqlite3/table_mailboxes.go modified: internal/storage/sqlite3/table_mails.go modified: internal/storage/sqlite3/table_queue.go modified: internal/storage/storage.go modified: internal/storage/types/types.go modified: internal/utils/address.go new file: internal/utils/age/age.go new file: internal/utils/age/bech32/bech32.go new file: internal/utils/crypt.go new file: internal/utils/e2ee/crypt.go new file: internal/utils/e2ee/e2ee_test.go new file: internal/utils/e2ee/msg.go new file: internal/utils/x25519.go modified: internal/welcome/welcome.go
2026-02-14 02:34:09 +05:00
/*
* Copyright (c) 2026 Kaiy Ragur
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
package notify
import (
"log"
"sync"
)
type EventType int
const (
EventMailNew EventType = iota
EventMailUpdate
EventMailPurge
EventFlagsUpdate
EventHeartbit
// ...
)
const AllUsers = "*"
type Event interface {
GetType() EventType
GetAccountPK() string
}
type HeartbitEvent struct {
Type EventType
AccountPK string
}
func (e *HeartbitEvent) GetAccountPK() string { return e.AccountPK }
func (e *HeartbitEvent) GetType() EventType { return EventHeartbit }
type EmailEvent struct {
Type EventType
MessageId, Count int64
AccountPK, MailBox string
done chan struct{}
}
func NewEmailEvent(pk, mailbox string, id, count int64) *EmailEvent {
return &EmailEvent{
AccountPK: pk,
MailBox: mailbox,
MessageId: id,
Count: count,
done: make(chan struct{}),
}
}
func (e *EmailEvent) GetAccountPK() string { return e.AccountPK }
func (e *EmailEvent) GetType() EventType { return e.Type }
// imap/backend/update interface
func (e *EmailEvent) Username() string { return e.AccountPK }
func (e *EmailEvent) Mailbox() string { return e.MailBox }
func (e *EmailEvent) Done() chan struct{} { return e.done }
type FlagsEvent struct {
AccountPK string
Mailbox string
MessageID int64
Seen bool
Answered bool
Flagged bool
Deleted bool
}
func (e *FlagsEvent) GetAccountPK() string { return e.AccountPK }
func (e *FlagsEvent) GetType() EventType { return EventFlagsUpdate }
type Notify struct {
log *log.Logger
mu sync.Mutex
listeners map[string]map[chan Event]struct{}
}
func NewNotifyBus(log *log.Logger) *Notify {
return &Notify{
log: log,
}
}
// Subscribe for any methods
func (n *Notify) Subscribe(pk string) chan Event {
n.mu.Lock()
defer n.mu.Unlock()
if n.listeners == nil {
n.listeners = make(map[string]map[chan Event]struct{})
}
if n.listeners[pk] == nil {
n.listeners[pk] = make(map[chan Event]struct{})
}
ch := make(chan Event, 10)
n.listeners[pk][ch] = struct{}{}
return ch
}
func (n *Notify) Unsubscribe(pk string, ch chan Event) {
n.mu.Lock()
defer n.mu.Unlock()
if subs, ok := n.listeners[pk]; ok {
delete(subs, ch)
if len(subs) == 0 {
delete(n.listeners, pk)
}
}
}
// Do Notification for clients
func (n *Notify) NotifyNew(pk string, event Event) error {
n.mu.Lock()
defer n.mu.Unlock()
go func() {
if subs, ok := n.listeners[pk]; ok {
for ch := range subs {
ch <- event
}
}
if subs, ok := n.listeners[AllUsers]; ok {
for ch := range subs {
ch <- event
}
}
}()
return nil
}