2018-09-19 09:20:57 +02:00
|
|
|
package models
|
|
|
|
|
|
|
|
import (
|
2018-09-19 11:16:18 +02:00
|
|
|
"github.com/gosimple/slug"
|
2018-09-19 09:20:57 +02:00
|
|
|
"github.com/jinzhu/gorm"
|
|
|
|
)
|
|
|
|
|
|
|
|
type Country struct {
|
2018-09-19 11:16:18 +02:00
|
|
|
ID string `gorm:"primary_key"`
|
|
|
|
CountrySlug string
|
2018-09-19 09:20:57 +02:00
|
|
|
CountryName string
|
|
|
|
CountryDescription string `gorm:"type:text;"`
|
|
|
|
CountryNotes string `gorm:"type:text;"`
|
|
|
|
CountryPhoto *Photo
|
|
|
|
CountryPhotoID uint
|
|
|
|
}
|
2018-09-19 11:16:18 +02:00
|
|
|
|
2018-11-06 19:02:03 +01:00
|
|
|
// Create a new country
|
2018-09-19 11:16:18 +02:00
|
|
|
func NewCountry(countryCode string, countryName string) *Country {
|
|
|
|
if countryCode == "" {
|
|
|
|
countryCode = "zz"
|
|
|
|
}
|
|
|
|
|
|
|
|
if countryName == "" {
|
|
|
|
countryName = "Unknown"
|
|
|
|
}
|
|
|
|
|
|
|
|
countrySlug := slug.MakeLang(countryName, "en")
|
|
|
|
|
|
|
|
result := &Country{
|
|
|
|
ID: countryCode,
|
|
|
|
CountryName: countryName,
|
|
|
|
CountrySlug: countrySlug,
|
|
|
|
}
|
|
|
|
|
|
|
|
return result
|
|
|
|
}
|
|
|
|
|
2019-06-04 18:26:35 +02:00
|
|
|
func (m *Country) FirstOrCreate(db *gorm.DB) *Country {
|
|
|
|
db.FirstOrCreate(m, "id = ?", m.ID)
|
2018-09-19 11:16:18 +02:00
|
|
|
|
2019-06-04 18:26:35 +02:00
|
|
|
return m
|
2018-09-19 11:16:18 +02:00
|
|
|
}
|