| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- package toc
- import (
- "context"
- "github.com/google/uuid"
- "github.com/mk6i/retro-aim-server/config"
- "github.com/mk6i/retro-aim-server/state"
- "github.com/mk6i/retro-aim-server/wire"
- )
- type BuddyService interface {
- AddBuddies(ctx context.Context, sess *state.Session, inBody wire.SNAC_0x03_0x04_BuddyAddBuddies) error
- BroadcastBuddyDeparted(ctx context.Context, sess *state.Session) error
- DelBuddies(ctx context.Context, sess *state.Session, inBody wire.SNAC_0x03_0x05_BuddyDelBuddies) error
- RightsQuery(ctx context.Context, inFrame wire.SNACFrame) wire.SNACMessage
- }
- type ChatService interface {
- ChannelMsgToHost(ctx context.Context, sess *state.Session, inFrame wire.SNACFrame, inBody wire.SNAC_0x0E_0x05_ChatChannelMsgToHost) (*wire.SNACMessage, error)
- }
- type ChatNavService interface {
- CreateRoom(ctx context.Context, sess *state.Session, inFrame wire.SNACFrame, inBody wire.SNAC_0x0E_0x02_ChatRoomInfoUpdate) (wire.SNACMessage, error)
- ExchangeInfo(ctx context.Context, inFrame wire.SNACFrame, inBody wire.SNAC_0x0D_0x03_ChatNavRequestExchangeInfo) (wire.SNACMessage, error)
- RequestChatRights(ctx context.Context, inFrame wire.SNACFrame) wire.SNACMessage
- RequestRoomInfo(ctx context.Context, inFrame wire.SNACFrame, inBody wire.SNAC_0x0D_0x04_ChatNavRequestRoomInfo) (wire.SNACMessage, error)
- }
- type ICBMService interface {
- ChannelMsgToHost(ctx context.Context, sess *state.Session, inFrame wire.SNACFrame, inBody wire.SNAC_0x04_0x06_ICBMChannelMsgToHost) (*wire.SNACMessage, error)
- ClientEvent(ctx context.Context, sess *state.Session, inFrame wire.SNACFrame, inBody wire.SNAC_0x04_0x14_ICBMClientEvent) error
- EvilRequest(ctx context.Context, sess *state.Session, inFrame wire.SNACFrame, inBody wire.SNAC_0x04_0x08_ICBMEvilRequest) (wire.SNACMessage, error)
- ParameterQuery(ctx context.Context, inFrame wire.SNACFrame) wire.SNACMessage
- ClientErr(ctx context.Context, sess *state.Session, frame wire.SNACFrame, body wire.SNAC_0x04_0x0B_ICBMClientErr) error
- }
- type OServiceService interface {
- ClientOnline(ctx context.Context, service uint16, bodyIn wire.SNAC_0x01_0x02_OServiceClientOnline, sess *state.Session) error
- IdleNotification(ctx context.Context, sess *state.Session, bodyIn wire.SNAC_0x01_0x11_OServiceIdleNotification) error
- ServiceRequest(ctx context.Context, service uint16, sess *state.Session, frame wire.SNACFrame, bodyIn wire.SNAC_0x01_0x04_OServiceServiceRequest, listener config.Listener) (wire.SNACMessage, error)
- }
- type AuthService interface {
- BUCPChallenge(ctx context.Context, bodyIn wire.SNAC_0x17_0x06_BUCPChallengeRequest, newUUID func() uuid.UUID) (wire.SNACMessage, error)
- BUCPLogin(ctx context.Context, bodyIn wire.SNAC_0x17_0x02_BUCPLoginRequest, newUserFn func(screenName state.DisplayScreenName) (state.User, error), advertisedHost string) (wire.SNACMessage, error)
- CrackCookie(authCookie []byte) (state.ServerCookie, error)
- FLAPLogin(ctx context.Context, frame wire.FLAPSignonFrame, newUserFn func(screenName state.DisplayScreenName) (state.User, error), here string) (wire.TLVRestBlock, error)
- RegisterBOSSession(ctx context.Context, authCookie state.ServerCookie) (*state.Session, error)
- RegisterChatSession(ctx context.Context, authCookie state.ServerCookie) (*state.Session, error)
- RetrieveBOSSession(ctx context.Context, authCookie state.ServerCookie) (*state.Session, error)
- Signout(ctx context.Context, sess *state.Session)
- SignoutChat(ctx context.Context, sess *state.Session)
- }
- type LocateService interface {
- SetDirInfo(ctx context.Context, sess *state.Session, inFrame wire.SNACFrame, inBody wire.SNAC_0x02_0x09_LocateSetDirInfo) (wire.SNACMessage, error)
- SetInfo(ctx context.Context, sess *state.Session, inBody wire.SNAC_0x02_0x04_LocateSetInfo) error
- UserInfoQuery(ctx context.Context, sess *state.Session, inFrame wire.SNACFrame, inBody wire.SNAC_0x02_0x05_LocateUserInfoQuery) (wire.SNACMessage, error)
- DirInfo(ctx context.Context, inFrame wire.SNACFrame, body wire.SNAC_0x02_0x0B_LocateGetDirInfo) (wire.SNACMessage, error)
- }
- type DirSearchService interface {
- InfoQuery(_ context.Context, inFrame wire.SNACFrame, inBody wire.SNAC_0x0F_0x02_InfoQuery) (wire.SNACMessage, error)
- }
- type PermitDenyService interface {
- AddDenyListEntries(ctx context.Context, sess *state.Session, body wire.SNAC_0x09_0x07_PermitDenyAddDenyListEntries) error
- AddPermListEntries(ctx context.Context, sess *state.Session, body wire.SNAC_0x09_0x05_PermitDenyAddPermListEntries) error
- DelDenyListEntries(ctx context.Context, sess *state.Session, body wire.SNAC_0x09_0x08_PermitDenyDelDenyListEntries) error
- DelPermListEntries(ctx context.Context, sess *state.Session, body wire.SNAC_0x09_0x06_PermitDenyDelPermListEntries) error
- RightsQuery(_ context.Context, frame wire.SNACFrame) wire.SNACMessage
- }
- // BuddyListRegistry is the interface for keeping track of users with active
- // buddy lists. Once registered, a user becomes visible to other users' buddy
- // lists and vice versa.
- type BuddyListRegistry interface {
- RegisterBuddyList(ctx context.Context, user state.IdentScreenName) error
- UnregisterBuddyList(ctx context.Context, user state.IdentScreenName) error
- }
- type TOCConfigStore interface {
- // SetTOCConfig sets the user's TOC config. The TOC config is the server-side
- // buddy list functionality for TOC. This configuration is not available to
- // OSCAR clients.
- SetTOCConfig(ctx context.Context, user state.IdentScreenName, config string) error
- User(ctx context.Context, screenName state.IdentScreenName) (*state.User, error)
- }
- // CookieBaker defines methods for issuing and verifying AIM authentication tokens ("cookies").
- // These tokens are used for authenticating client sessions with AIM services.
- type CookieBaker interface {
- // Crack verifies and decodes a previously issued authentication token.
- // Returns the original payload if the token is valid.
- Crack(data []byte) ([]byte, error)
- // Issue creates a new authentication token from the given payload.
- // The resulting token can later be verified using Crack.
- Issue(data []byte) ([]byte, error)
- }
- type AdminService interface {
- InfoChangeRequest(ctx context.Context, sess *state.Session, frame wire.SNACFrame, body wire.SNAC_0x07_0x04_AdminInfoChangeRequest) (wire.SNACMessage, error)
- }
|