2019-12-11 16:55:18 +01:00
|
|
|
package entity
|
2018-09-19 09:20:57 +02:00
|
|
|
|
|
|
|
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"
|
2019-12-28 20:24:20 +01:00
|
|
|
"github.com/photoprism/photoprism/internal/maps"
|
2020-01-08 19:51:21 +01:00
|
|
|
"github.com/photoprism/photoprism/internal/mutex"
|
2018-09-19 09:20:57 +02:00
|
|
|
)
|
|
|
|
|
2020-02-21 01:14:45 +01:00
|
|
|
// altCountryNames defines mapping between different names for the same countriy
|
2019-12-16 20:22:46 +01:00
|
|
|
var altCountryNames = map[string]string{
|
|
|
|
"United States of America": "USA",
|
|
|
|
"United States": "USA",
|
|
|
|
"": "Unknown",
|
|
|
|
}
|
|
|
|
|
2020-02-21 01:14:45 +01:00
|
|
|
// Country represents a country location, used for labeling photos.
|
2018-09-19 09:20:57 +02:00
|
|
|
type Country struct {
|
2020-04-25 16:23:16 +02:00
|
|
|
ID string `gorm:"type:varbinary(2);primary_key"`
|
2020-01-06 02:14:17 +01:00
|
|
|
CountrySlug string `gorm:"type:varbinary(128);unique_index;"`
|
2018-09-19 09:20:57 +02:00
|
|
|
CountryName string
|
|
|
|
CountryDescription string `gorm:"type:text;"`
|
|
|
|
CountryNotes string `gorm:"type:text;"`
|
|
|
|
CountryPhoto *Photo
|
|
|
|
CountryPhotoID uint
|
2019-12-11 04:12:54 +01:00
|
|
|
New bool `gorm:"-"`
|
2018-09-19 09:20:57 +02:00
|
|
|
}
|
2018-09-19 11:16:18 +02:00
|
|
|
|
2020-04-25 14:22:47 +02:00
|
|
|
// UnknownCountry is defined here to use it as a default
|
|
|
|
var UnknownCountry = Country{
|
|
|
|
ID: "zz",
|
|
|
|
CountryName: maps.CountryNames["zz"],
|
|
|
|
CountrySlug: "zz",
|
|
|
|
}
|
2019-12-28 20:24:20 +01:00
|
|
|
|
2020-02-21 01:14:45 +01:00
|
|
|
// CreateUnknownCountry is used to initialize the database with the default country
|
2019-12-28 20:24:20 +01:00
|
|
|
func CreateUnknownCountry(db *gorm.DB) {
|
|
|
|
UnknownCountry.FirstOrCreate(db)
|
|
|
|
}
|
|
|
|
|
2020-02-21 01:14:45 +01:00
|
|
|
// NewCountry creates a new country, with default country code if not provided
|
2018-09-19 11:16:18 +02:00
|
|
|
func NewCountry(countryCode string, countryName string) *Country {
|
|
|
|
if countryCode == "" {
|
2020-04-25 14:22:47 +02:00
|
|
|
return &UnknownCountry
|
2018-09-19 11:16:18 +02:00
|
|
|
}
|
|
|
|
|
2019-12-16 20:22:46 +01:00
|
|
|
if altName, ok := altCountryNames[countryName]; ok {
|
|
|
|
countryName = altName
|
2018-09-19 11:16:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
countrySlug := slug.MakeLang(countryName, "en")
|
|
|
|
|
|
|
|
result := &Country{
|
|
|
|
ID: countryCode,
|
|
|
|
CountryName: countryName,
|
|
|
|
CountrySlug: countrySlug,
|
|
|
|
}
|
|
|
|
|
|
|
|
return result
|
|
|
|
}
|
|
|
|
|
2020-02-21 01:14:45 +01:00
|
|
|
// FirstOrCreate checks wether the country exist already in the database (using countryCode)
|
2019-06-04 18:26:35 +02:00
|
|
|
func (m *Country) FirstOrCreate(db *gorm.DB) *Country {
|
2020-01-08 19:51:21 +01:00
|
|
|
mutex.Db.Lock()
|
|
|
|
defer mutex.Db.Unlock()
|
|
|
|
|
2019-12-19 09:37:10 +01:00
|
|
|
if err := db.FirstOrCreate(m, "id = ?", m.ID).Error; err != nil {
|
|
|
|
log.Errorf("country: %s", err)
|
|
|
|
}
|
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
|
|
|
}
|
2019-12-11 04:12:54 +01:00
|
|
|
|
2020-02-21 01:14:45 +01:00
|
|
|
// AfterCreate sets the New column used for database callback
|
2019-12-11 04:12:54 +01:00
|
|
|
func (m *Country) AfterCreate(scope *gorm.Scope) error {
|
|
|
|
return scope.SetColumn("New", true)
|
|
|
|
}
|
2019-12-28 20:24:20 +01:00
|
|
|
|
2020-02-21 01:14:45 +01:00
|
|
|
// Code returns country code
|
2019-12-28 20:24:20 +01:00
|
|
|
func (m *Country) Code() string {
|
|
|
|
return m.ID
|
|
|
|
}
|
|
|
|
|
2020-02-21 01:14:45 +01:00
|
|
|
// Name returns country name
|
2019-12-28 20:24:20 +01:00
|
|
|
func (m *Country) Name() string {
|
|
|
|
return m.CountryName
|
|
|
|
}
|