avatar

package
v1.23.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Mar 22, 2024 License: MIT Imports: 34 Imported by: 25

Documentation

Overview

Package avatar implements avatart proxy for oauth and defines store interface and implements local (fs), gridfs (mongo) and boltdb stores.

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func GenerateAvatar added in v0.5.0

func GenerateAvatar(user string) ([]byte, error)

GenerateAvatar for give user with identicon

func GetGravatarURL added in v0.6.1

func GetGravatarURL(email string) (res string, err error)

GetGravatarURL returns url to gravatar picture for given email

func Migrate

func Migrate(dst, src Store) (int, error)

Migrate avatars between stores

Types

type BoltDB

type BoltDB struct {
	// contains filtered or unexported fields
}

BoltDB implements avatar store with bolt using separate db (file) with "avatars" bucket to keep image bin and "metas" bucket to keep sha1 of picture. avatarID (base file name) used as a key for both.

func NewBoltDB

func NewBoltDB(fileName string, options bolt.Options) (*BoltDB, error)

NewBoltDB makes bolt avatar store

func (*BoltDB) Close

func (b *BoltDB) Close() error

Close bolt store

func (*BoltDB) Get

func (b *BoltDB) Get(avatarID string) (reader io.ReadCloser, size int, err error)

Get avatar reader for avatar id.image, avatarID used as the direct key

func (*BoltDB) ID

func (b *BoltDB) ID(avatarID string) (id string)

ID returns a fingerprint of the avatar content.

func (*BoltDB) List

func (b *BoltDB) List() (ids []string, err error)

List all avatars (ids) from metas bucket note: id includes .image suffix

func (*BoltDB) Put

func (b *BoltDB) Put(userID string, reader io.Reader) (avatar string, err error)

Put avatar to bolt, key by avatarID. Trying to resize image and lso calculates sha1 of the file for ID func

func (*BoltDB) Remove

func (b *BoltDB) Remove(avatarID string) (err error)

Remove avatar from bolt

func (*BoltDB) String added in v0.8.1

func (b *BoltDB) String() string

type GridFS

type GridFS struct {
	// contains filtered or unexported fields
}

GridFS implements Store for GridFS

func NewGridFS

func NewGridFS(client *mongo.Client, dbName, bucketName string, timeout time.Duration) *GridFS

NewGridFS makes gridfs (mongo) avatar store

func (*GridFS) Close

func (gf *GridFS) Close() error

Close gridfs store

func (*GridFS) Get

func (gf *GridFS) Get(avatar string) (reader io.ReadCloser, size int, err error)

Get avatar reader for avatar id.image

func (*GridFS) ID

func (gf *GridFS) ID(avatar string) (id string)

ID returns a fingerprint of the avatar content. Uses MD5 because gridfs provides it directly

func (*GridFS) List

func (gf *GridFS) List() (ids []string, err error)

List all avatars (ids) on gfs note: id includes .image suffix

func (*GridFS) Put

func (gf *GridFS) Put(userID string, reader io.Reader) (avatar string, err error)

Put avatar to gridfs object, try to resize

func (*GridFS) Remove

func (gf *GridFS) Remove(avatar string) error

Remove avatar from gridfs

func (*GridFS) String added in v0.8.1

func (gf *GridFS) String() string

type LocalFS

type LocalFS struct {
	// contains filtered or unexported fields
}

LocalFS implements Store for local file system

func NewLocalFS

func NewLocalFS(storePath string) *LocalFS

NewLocalFS makes file-system avatar store

func (*LocalFS) Close

func (fs *LocalFS) Close() error

Close LocalFS does nothing but satisfies interface

func (*LocalFS) Get

func (fs *LocalFS) Get(avatar string) (reader io.ReadCloser, size int, err error)

Get avatar reader for avatar id.image

func (*LocalFS) ID

func (fs *LocalFS) ID(avatar string) (id string)

ID returns a fingerprint of the avatar content.

func (*LocalFS) List

func (fs *LocalFS) List() (ids []string, err error)

List all avatars (ids) on local file system note: id includes .image suffix

func (*LocalFS) Put

func (fs *LocalFS) Put(userID string, reader io.Reader) (avatar string, err error)

Put avatar for userID to file and return avatar's file name (base), like 12345678.image userID can be avatarID as well, in this case encoding just strip .image prefix

func (*LocalFS) Remove

func (fs *LocalFS) Remove(avatar string) error

Remove avatar file

func (*LocalFS) String added in v0.8.1

func (fs *LocalFS) String() string

type NoOp added in v0.10.0

type NoOp struct{}

NoOp is an empty (no-op) implementation of Store interface

func NewNoOp added in v0.10.0

func NewNoOp() *NoOp

NewNoOp provides an empty (no-op) implementation of Store interface

func (*NoOp) Close added in v0.10.0

func (s *NoOp) Close() error

Close is a NoOp implementation

func (*NoOp) Get added in v0.10.0

func (s *NoOp) Get(string) (reader io.ReadCloser, size int, err error)

Get is a NoOp implementation

func (*NoOp) ID added in v0.10.0

func (s *NoOp) ID(string) (id string)

ID is a NoOp implementation

func (*NoOp) List added in v0.10.0

func (s *NoOp) List() (ids []string, err error)

List is a NoOp implementation

func (*NoOp) Put added in v0.10.0

func (s *NoOp) Put(string, io.Reader) (avatarID string, err error)

Put is a NoOp implementation

func (*NoOp) Remove added in v0.10.0

func (s *NoOp) Remove(string) error

Remove is a NoOp implementation

func (*NoOp) String added in v0.10.0

func (s *NoOp) String() string

String is a NoOp implementation

type Proxy

type Proxy struct {
	logger.L
	Store       Store
	RoutePath   string
	URL         string
	ResizeLimit int
}

Proxy provides http handler for avatars from avatar.Store On user login token will call Put and it will retrieve and save picture locally.

func (*Proxy) Handler

func (p *Proxy) Handler(w http.ResponseWriter, r *http.Request)

Handler returns token routes for given provider

func (*Proxy) Put

func (p *Proxy) Put(u token.User, client *http.Client) (avatarURL string, err error)

Put stores retrieved avatar to avatar.Store. Gets image from user info. Returns proxied url

type Store

type Store interface {
	fmt.Stringer
	Put(userID string, reader io.Reader) (avatarID string, err error) // save avatar data from the reader and return base name
	Get(avatarID string) (reader io.ReadCloser, size int, err error)  // load avatar via reader
	ID(avatarID string) (id string)                                   // unique id of stored avatar's data
	Remove(avatarID string) error                                     // remove avatar data
	List() (ids []string, err error)                                  // list all avatar ids
	Close() error                                                     // close store
}

Store defines interface to store and load avatars

func NewStore added in v0.8.1

func NewStore(uri string) (Store, error)

NewStore provides factory for all supported stores making the one based on uri protocol. Default (no protocol) is file-system

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL