accounts

package
v2.19.6 Latest Latest
Warning

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

Go to latest
Published: Apr 29, 2024 License: Apache-2.0 Imports: 6 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Account

type Account struct {
	ID           uint64
	Email        sql.NullString
	UserID       string
	DisplayName  sql.NullString
	Quota        sql.NullString
	LastLogin    int
	Backend      string
	Home         string
	State        int8
	PasswordHash string         // from oc_users
	Username     sql.NullString // optional comes from the oc_preferences
	OwnCloudUUID sql.NullString // optional comes from the oc_preferences
}

Account stores information about accounts.

type Accounts

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

Accounts represents oc10-style Accounts

func New

func New(driver string, sqldb *sql.DB, joinUsername, joinUUID, enableMedialSearch bool) (*Accounts, error)

New returns a new accounts instance connecting to the given sql.DB

func NewMysql

func NewMysql(dsn string, joinUsername, joinUUID, enableMedialSearch bool) (*Accounts, error)

NewMysql returns a new accounts instance connecting to a MySQL database

func (*Accounts) GetAccountByLogin

func (as *Accounts) GetAccountByLogin(ctx context.Context, login string) (*Account, error)

GetAccountByLogin fetches an account by mail or username

func (*Accounts) GetAccountGroups

func (as *Accounts) GetAccountGroups(ctx context.Context, uid string) ([]string, error)

GetAccountGroups reads the groups for an account

type Scannable

type Scannable interface {
	Scan(...interface{}) error
}

Scannable describes the interface providing a Scan method

Jump to

Keyboard shortcuts

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