Documentation
¶
Index ¶
- type PresenceStore
- type ProfileService
- func (ps *ProfileService) GetProfile(ctx context.Context, r *pb.ProfileRequest) (*pb.ProfileResponse, error)
- func (ps *ProfileService) GetRatings(ctx context.Context, r *pb.RatingsRequest) (*pb.RatingsResponse, error)
- func (ps *ProfileService) GetStats(ctx context.Context, r *pb.StatsRequest) (*pb.StatsResponse, error)
- type SessionStore
- type Store
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type PresenceStore ¶
type PresenceStore interface { SetPresence(ctx context.Context, uuid, channel string) error GetInChannel(ctx context.Context, channel string) ([]*entity.User, error) // BatchGetPresence returns a list of the users with their presence. BatchGetPresence(ctx context.Context, users []*entity.User) ([]*entity.User, error) }
PresenceStore stores user presence
type ProfileService ¶
type ProfileService struct {
// contains filtered or unexported fields
}
func NewProfileService ¶
func NewProfileService(u Store) *ProfileService
func (*ProfileService) GetProfile ¶
func (ps *ProfileService) GetProfile(ctx context.Context, r *pb.ProfileRequest) (*pb.ProfileResponse, error)
func (*ProfileService) GetRatings ¶
func (ps *ProfileService) GetRatings(ctx context.Context, r *pb.RatingsRequest) (*pb.RatingsResponse, error)
func (*ProfileService) GetStats ¶
func (ps *ProfileService) GetStats(ctx context.Context, r *pb.StatsRequest) (*pb.StatsResponse, error)
type SessionStore ¶
type SessionStore interface { Get(ctx context.Context, sessionID string) (*entity.Session, error) New(ctx context.Context, user *entity.User) (*entity.Session, error) Delete(ctx context.Context, sess *entity.Session) error }
SessionStore is a session store
type Store ¶
type Store interface { Get(ctx context.Context, username string) (*entity.User, error) GetByUUID(ctx context.Context, uuid string) (*entity.User, error) // Username by UUID. Good for fast lookups. Username(ctx context.Context, uuid string) (string, error) New(ctx context.Context, user *entity.User) error SetPassword(ctx context.Context, uuid string, hashpass string) error SetRating(ctx context.Context, uuid string, variant entity.VariantKey, rating entity.SingleRating) error SetStats(ctx context.Context, uuid string, variant entity.VariantKey, stats *entity.Stats) error AddFollower(ctx context.Context, targetUser, follower uint) error RemoveFollower(ctx context.Context, targetUser, follower uint) error // GetFollows gets all the users that the passed-in DB ID is following. GetFollows(ctx context.Context, uid uint) ([]*entity.User, error) }
Store is an interface that user stores should implement.
Click to show internal directories.
Click to hide internal directories.