types

package
v0.0.0-...-87a19a3 Latest Latest
Warning

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

Go to latest
Published: Jun 11, 2023 License: MIT Imports: 6 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func IsValidPassword

func IsValidPassword(encryptedPassword, password string) bool

Types

type Booking

type Booking struct {
	ID         string    `bson:"_id,omitempty"        json:"id,omitempty"`
	UserID     string    `bson:"userID,omitempty"     json:"userID,omitempty"`
	RoomID     string    `bson:"roomID,omitempty"     json:"roomID,omitempty"`
	NumPersons int       `bson:"numPersons,omitempty" json:"numPersons,omitempty"`
	FromDate   time.Time `bson:"fromDate,omitempty"   json:"fromDate,omitempty"`
	UntilDate  time.Time `bson:"untilDate,omitempty"  json:"untilDate,omitempty"`
	Canceled   bool      `bson:"canceled"             json:"canceled"`
}

type CreateUserParams

type CreateUserParams struct {
	FirstName string `json:"firstName"`
	LastName  string `json:"lastName"`
	Email     string `json:"email"`
	Password  string `json:"password"`
}

func (CreateUserParams) Validate

func (params CreateUserParams) Validate() map[string]string

type Hotel

type Hotel struct {
	ID       string               `bson:"_id,omitempty" json:"id,omitempty"`
	Name     string               `bson:"name"          json:"name"`
	Location string               `bson:"location"      json:"location"`
	Rooms    []primitive.ObjectID `bson:"rooms"         json:"rooms"`
	Rating   int                  `bson:"rating"        json:"rating"`
}

type Room

type Room struct {
	ID      string  `bson:"_id,omitempty" json:"id,omitempty"`
	Seaside bool    `bson:"seaside"       json:"seaside"`
	Size    string  `bson:"size"          json:"size"`
	Price   float64 `bson:"price"         json:"price"`
	HotelID string  `bson:"hotelID"       json:"hotelID"`
}

type UpdateUserParams

type UpdateUserParams struct {
	FirstName string `json:"firstName"`
	LastName  string `json:"lastName"`
}

func (UpdateUserParams) ToBSON

func (p UpdateUserParams) ToBSON() bson.M

type User

type User struct {
	ID                string `bson:"_id,omitempty"    json:"id,omitempty"`
	FirstName         string `bson:"firstName"        json:"firstName"`
	LastName          string `bson:"lastName"         json:"lastName"`
	Email             string `bson:"email"            json:"email"`
	EncryptedPassword string `bson:"encyptedPassword" json:"-"`
	IsAdmin           bool   `bson:"isAdmin"          json:"isAdmin"`
}

func NewUserFromParams

func NewUserFromParams(p CreateUserParams) (*User, error)

Jump to

Keyboard shortcuts

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