mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
* users: add cache to service * reflect review comments * add oauth * move profile picture genaration * reflect review comments * move default bot image to users package * add missing wraps and apply suggestions * add comment for app.GetSession
83 lines
2.1 KiB
Go
83 lines
2.1 KiB
Go
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
package users
|
|
|
|
import (
|
|
"errors"
|
|
"fmt"
|
|
"runtime"
|
|
"sync"
|
|
|
|
"github.com/mattermost/mattermost-server/v5/einterfaces"
|
|
"github.com/mattermost/mattermost-server/v5/model"
|
|
"github.com/mattermost/mattermost-server/v5/services/cache"
|
|
"github.com/mattermost/mattermost-server/v5/store"
|
|
)
|
|
|
|
type UserService struct {
|
|
store store.UserStore
|
|
sessionStore store.SessionStore
|
|
oAuthStore store.OAuthStore
|
|
sessionCache cache.Cache
|
|
sessionPool sync.Pool
|
|
metrics einterfaces.MetricsInterface
|
|
cluster einterfaces.ClusterInterface
|
|
config func() *model.Config
|
|
}
|
|
|
|
// ServiceConfig is used to initialize the UserService.
|
|
type ServiceConfig struct {
|
|
// Mandatory fields
|
|
UserStore store.UserStore
|
|
SessionStore store.SessionStore
|
|
OAuthStore store.OAuthStore
|
|
ConfigFn func() *model.Config
|
|
// Optional fields
|
|
Metrics einterfaces.MetricsInterface
|
|
Cluster einterfaces.ClusterInterface
|
|
}
|
|
|
|
func New(c ServiceConfig) (*UserService, error) {
|
|
if err := c.validate(); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
cacheProvider := cache.NewProvider()
|
|
if err := cacheProvider.Connect(); err != nil {
|
|
return nil, fmt.Errorf("could not connect to cache provider: %w", err)
|
|
}
|
|
|
|
sessionCache, err := cacheProvider.NewCache(&cache.CacheOptions{
|
|
Size: model.SESSION_CACHE_SIZE,
|
|
Striped: true,
|
|
StripedBuckets: maxInt(runtime.NumCPU()-1, 1),
|
|
})
|
|
if err != nil {
|
|
return nil, fmt.Errorf("could not create session cache: %w", err)
|
|
}
|
|
|
|
return &UserService{
|
|
store: c.UserStore,
|
|
sessionStore: c.SessionStore,
|
|
oAuthStore: c.OAuthStore,
|
|
config: c.ConfigFn,
|
|
metrics: c.Metrics,
|
|
cluster: c.Cluster,
|
|
sessionCache: sessionCache,
|
|
sessionPool: sync.Pool{
|
|
New: func() interface{} {
|
|
return &model.Session{}
|
|
},
|
|
},
|
|
}, nil
|
|
}
|
|
|
|
func (c *ServiceConfig) validate() error {
|
|
if in := c; in.ConfigFn == nil || in.UserStore == nil || in.SessionStore == nil || in.OAuthStore == nil {
|
|
return errors.New("required parameters are not provided")
|
|
}
|
|
|
|
return nil
|
|
}
|