models

package
v0.0.0-...-f0c032a Latest Latest
Warning

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

Go to latest
Published: Oct 19, 2020 License: MIT Imports: 9 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func GetDB

func GetDB() *gorm.DB

возвращает дескриптор объекта DB

func Login

func Login(email, password string) map[string]interface{}

Types

type Account

type Account struct {
	gorm.Model
	Email    string `json:"email"`
	Password string `json:"password"`
	Token    string `json:"token";sql:"-"`
}

структура для учётной записи пользователя

func GetUser

func GetUser(u uint) *Account

func (*Account) Create

func (account *Account) Create() map[string]interface{}

func (*Account) Validate

func (account *Account) Validate() (map[string]interface{}, bool)

Проверить входящие данные пользователя ...

type Contact

type Contact struct {
	gorm.Model
	Name   string `json:"name"`
	Phone  string `json:"phone"`
	UserId uint   `json:"user_id"` //Пользователь, которому принадлежит этот контакт
}

func GetContact

func GetContact(id uint) *Contact

func GetContacts

func GetContacts(user uint) []*Contact

func (*Contact) Create

func (contact *Contact) Create() map[string]interface{}

func (*Contact) Validate

func (contact *Contact) Validate() (map[string]interface{}, bool)
Эта структурная функция проверяет обязательные параметры, отправленные через тело http-запроса

возвращает сообщение и true, если требование выполнено

type Token

type Token struct {
	UserId uint
	jwt.StandardClaims
}

Структура прав доступа JWT

Jump to

Keyboard shortcuts

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