Library/models/authors_add_update.go

26 lines
505 B
Go
Raw Normal View History

package models
// AddOrUpdateAuthor adds a new author based on an author struct
func AddOrUpdateAuthor(author Author) (newAuthor Author, err error) {
// If the ID is 0, insert the author, otherwise update it
if author.ID == 0 {
_, err = x.Insert(&author)
if err != nil {
return Author{}, err
}
} else {
_, err = x.Where("id = ?", author.ID).Update(&author)
if err != nil {
return Author{}, err
}
}
// Get the newly inserted author
newAuthor = author
return newAuthor, err
}