| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- package models
- import (
- "errors"
- "time"
- )
- // Typed errors
- var (
- ErrAccountNotFound = errors.New("Account not found")
- )
- type Account struct {
- Id int64
- Login string `xorm:"UNIQUE NOT NULL"`
- Email string `xorm:"UNIQUE NOT NULL"`
- Name string
- FullName string
- Password string
- IsAdmin bool
- Salt string `xorm:"VARCHAR(10)"`
- Company string
- NextDashboardId int
- UsingAccountId int64
- Created time.Time
- Updated time.Time
- }
- // api projection
- type OtherAccountDTO struct {
- Id int64 `json:"id"`
- Email string `json:"email"`
- Role string `json:"role"`
- IsUsing bool `json:"isUsing"`
- }
- // api projection model
- type CollaboratorDTO struct {
- AccountId int64 `json:"accountId"`
- Email string `json:"email"`
- Role string `json:"role"`
- }
- // api view projection
- type AccountDTO struct {
- Email string `json:"email"`
- Name string `json:"name"`
- Collaborators []*CollaboratorDTO `json:"collaborators"`
- }
- type CreateAccountCommand struct {
- Email string `json:"email" binding:"required"`
- Login string `json:"login"`
- Password string `json:"password" binding:"required"`
- Name string `json:"name"`
- Company string `json:"company"`
- Result Account `json:"-"`
- }
- type SetUsingAccountCommand struct {
- AccountId int64
- UsingAccountId int64
- }
- // returns a view projection
- type GetAccountInfoQuery struct {
- Id int64
- Result AccountDTO
- }
- // returns a view projection
- type GetOtherAccountsQuery struct {
- AccountId int64
- Result []*OtherAccountDTO
- }
- type GetAccountByIdQuery struct {
- Id int64
- Result *Account
- }
- type GetAccountByLoginQuery struct {
- Login string
- Result *Account
- }
|