325 lines
8.6 KiB
Go
325 lines
8.6 KiB
Go
package main
|
|
|
|
import (
|
|
"database/sql"
|
|
"encoding/json"
|
|
"errors"
|
|
"fmt"
|
|
"net/http"
|
|
"net/url"
|
|
"strings"
|
|
)
|
|
|
|
var (
|
|
ErrSpeciesNotFound = errors.New("Species not found")
|
|
ErrSpeciesNotFoundJSON = newJSONError(ErrSpeciesNotFound, http.StatusNotFound)
|
|
ErrSpeciesNotUpdated = errors.New("Species not updated")
|
|
ErrSpeciesNotUpdatedJSON = newJSONError(ErrSpeciesNotUpdated, http.StatusBadRequest)
|
|
)
|
|
|
|
func init() {
|
|
DB.AddTableWithName(SpeciesBase{}, "species").SetKeys(true, "Id")
|
|
}
|
|
|
|
type SpeciesService struct{}
|
|
|
|
// SpeciesBase is what the DB expects to see for inserts/updates
|
|
type SpeciesBase struct {
|
|
Id int64 `db:"id" json:"id"`
|
|
GenusID int64 `db:"genus_id" json:"-"`
|
|
SubspeciesSpeciesID NullInt64 `db:"subspecies_species_id" json:"-"`
|
|
SpeciesName string `db:"species_name" json:"speciesName"`
|
|
TypeSpecies NullBool `db:"type_species" json:"typeSpecies"`
|
|
Etymology NullString `db:"etymology" json:"etymology"`
|
|
CreatedAt NullTime `db:"created_at" json:"createdAt"`
|
|
UpdatedAt NullTime `db:"updated_at" json:"updatedAt"`
|
|
DeletedAt NullTime `db:"deleted_at" json:"deletedAt"`
|
|
CreatedBy int64 `db:"created_by" json:"createdBy"`
|
|
UpdatedBy int64 `db:"updated_by" json:"updatedBy"`
|
|
DeletedBy NullInt64 `db:"deleted_by" json:"deletedBy"`
|
|
}
|
|
|
|
type Species struct {
|
|
*SpeciesBase
|
|
GenusName string `db:"genus_name" json:"genusName"`
|
|
Strains NullSliceInt64 `db:"strains" json:"strains"`
|
|
TotalStrains int64 `db:"total_strains" json:"totalStrains"`
|
|
SortOrder int64 `db:"sort_order" json:"sortOrder"`
|
|
}
|
|
|
|
type ManySpecies []*Species
|
|
|
|
type SpeciesMeta struct {
|
|
CanAdd bool `json:"canAdd"`
|
|
CanEdit []int64 `json:"canEdit"`
|
|
}
|
|
|
|
type SpeciesPayload struct {
|
|
Species *Species `json:"species"`
|
|
Strains *Strains `json:"strains"`
|
|
Meta *SpeciesMeta `json:"meta"`
|
|
}
|
|
|
|
type ManySpeciesPayload struct {
|
|
Species *ManySpecies `json:"species"`
|
|
Strains *Strains `json:"strains"`
|
|
Meta *SpeciesMeta `json:"meta"`
|
|
}
|
|
|
|
func (s *SpeciesPayload) marshal() ([]byte, error) {
|
|
return json.Marshal(s)
|
|
}
|
|
|
|
func (s *ManySpeciesPayload) marshal() ([]byte, error) {
|
|
return json.Marshal(s)
|
|
}
|
|
|
|
func (s SpeciesService) unmarshal(b []byte) (entity, error) {
|
|
var sj SpeciesPayload
|
|
err := json.Unmarshal(b, &sj)
|
|
return &sj, err
|
|
}
|
|
|
|
func (s SpeciesService) list(val *url.Values, claims Claims) (entity, *appError) {
|
|
if val == nil {
|
|
return nil, ErrMustProvideOptionsJSON
|
|
}
|
|
var opt ListOptions
|
|
if err := schemaDecoder.Decode(&opt, *val); err != nil {
|
|
return nil, newJSONError(err, http.StatusInternalServerError)
|
|
}
|
|
|
|
species, err := listSpecies(opt)
|
|
if err != nil {
|
|
return nil, newJSONError(err, http.StatusInternalServerError)
|
|
}
|
|
|
|
strains_opt, err := strainOptsFromSpecies(opt)
|
|
if err != nil {
|
|
return nil, newJSONError(err, http.StatusInternalServerError)
|
|
}
|
|
|
|
strains, err := listStrains(*strains_opt)
|
|
if err != nil {
|
|
return nil, newJSONError(err, http.StatusInternalServerError)
|
|
}
|
|
|
|
edit_list := make(map[int64]int64)
|
|
|
|
for _, v := range *species {
|
|
edit_list[v.Id] = v.CreatedBy
|
|
}
|
|
|
|
payload := ManySpeciesPayload{
|
|
Species: species,
|
|
Strains: strains,
|
|
Meta: &SpeciesMeta{
|
|
CanAdd: canAdd(claims),
|
|
CanEdit: canEdit(claims, edit_list),
|
|
},
|
|
}
|
|
|
|
return &payload, nil
|
|
}
|
|
|
|
func (s SpeciesService) get(id int64, genus string, claims Claims) (entity, *appError) {
|
|
species, err := getSpecies(id, genus)
|
|
if err != nil {
|
|
return nil, newJSONError(err, http.StatusInternalServerError)
|
|
}
|
|
|
|
strains, err := strainsFromSpeciesId(id, genus)
|
|
if err != nil {
|
|
return nil, newJSONError(err, http.StatusInternalServerError)
|
|
}
|
|
|
|
payload := SpeciesPayload{
|
|
Species: species,
|
|
Strains: strains,
|
|
Meta: &SpeciesMeta{
|
|
CanAdd: canAdd(claims),
|
|
CanEdit: canEdit(claims, map[int64]int64{species.Id: species.CreatedBy}),
|
|
},
|
|
}
|
|
|
|
return &payload, nil
|
|
}
|
|
|
|
func (s SpeciesService) update(id int64, e *entity, genus string, claims Claims) *appError {
|
|
payload := (*e).(*SpeciesPayload)
|
|
payload.Species.UpdatedBy = claims.Sub
|
|
payload.Species.UpdatedAt = currentTime()
|
|
payload.Species.Id = id
|
|
|
|
genus_id, err := genusIdFromName(genus)
|
|
if err != nil {
|
|
return newJSONError(err, http.StatusInternalServerError)
|
|
}
|
|
payload.Species.SpeciesBase.GenusID = genus_id
|
|
|
|
count, err := DBH.Update(payload.Species.SpeciesBase)
|
|
if err != nil {
|
|
return newJSONError(err, http.StatusInternalServerError)
|
|
}
|
|
if count != 1 {
|
|
return ErrSpeciesNotUpdatedJSON
|
|
}
|
|
|
|
// Reload to send back down the wire
|
|
species, err := getSpecies(id, genus)
|
|
if err != nil {
|
|
return newJSONError(err, http.StatusInternalServerError)
|
|
}
|
|
|
|
strains, err := strainsFromSpeciesId(id, genus)
|
|
if err != nil {
|
|
return newJSONError(err, http.StatusInternalServerError)
|
|
}
|
|
|
|
payload.Species = species
|
|
payload.Strains = strains
|
|
payload.Meta = &SpeciesMeta{
|
|
CanAdd: canAdd(claims),
|
|
CanEdit: canEdit(claims, map[int64]int64{species.Id: species.CreatedBy}),
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (s SpeciesService) create(e *entity, genus string, claims Claims) *appError {
|
|
payload := (*e).(*SpeciesPayload)
|
|
ct := currentTime()
|
|
payload.Species.CreatedBy = claims.Sub
|
|
payload.Species.CreatedAt = ct
|
|
payload.Species.UpdatedBy = claims.Sub
|
|
payload.Species.UpdatedAt = ct
|
|
|
|
genus_id, err := genusIdFromName(genus)
|
|
if err != nil {
|
|
return newJSONError(err, http.StatusInternalServerError)
|
|
}
|
|
payload.Species.SpeciesBase.GenusID = genus_id
|
|
|
|
err = DBH.Insert(payload.Species.SpeciesBase)
|
|
if err != nil {
|
|
return newJSONError(err, http.StatusInternalServerError)
|
|
}
|
|
|
|
// Reload to send back down the wire
|
|
species, err := getSpecies(payload.Species.Id, genus)
|
|
if err != nil {
|
|
return newJSONError(err, http.StatusInternalServerError)
|
|
}
|
|
|
|
// Note, no strains when new species
|
|
|
|
payload.Species = species
|
|
payload.Meta = &SpeciesMeta{
|
|
CanAdd: canAdd(claims),
|
|
CanEdit: canEdit(claims, map[int64]int64{species.Id: species.CreatedBy}),
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func genusIdFromName(genus_name string) (int64, error) {
|
|
var genus_id struct{ Id int64 }
|
|
q := `SELECT id FROM genera WHERE LOWER(genus_name) = LOWER($1);`
|
|
if err := DBH.SelectOne(&genus_id, q, genus_name); err != nil {
|
|
return 0, err
|
|
}
|
|
return genus_id.Id, nil
|
|
}
|
|
|
|
func strainOptsFromSpecies(opt ListOptions) (*ListOptions, error) {
|
|
relatedStrainIds := make([]int64, 0)
|
|
|
|
if opt.Ids == nil {
|
|
q := `SELECT DISTINCT st.id
|
|
FROM strains st
|
|
INNER JOIN species sp ON sp.id=st.species_id
|
|
INNER JOIN genera g ON g.id=sp.genus_id AND LOWER(g.genus_name)=LOWER($1);`
|
|
if err := DBH.Select(&relatedStrainIds, q, opt.Genus); err != nil {
|
|
return nil, err
|
|
}
|
|
} else {
|
|
var vals []interface{}
|
|
var count int64 = 1
|
|
q := fmt.Sprintf("SELECT DISTINCT id FROM strains WHERE %s;", valsIn("species_id", opt.Ids, &vals, &count))
|
|
|
|
if err := DBH.Select(&relatedStrainIds, q, vals...); err != nil {
|
|
return nil, err
|
|
}
|
|
}
|
|
|
|
return &ListOptions{Genus: opt.Genus, Ids: relatedStrainIds}, nil
|
|
}
|
|
|
|
func strainsFromSpeciesId(id int64, genus string) (*Strains, error) {
|
|
opt := ListOptions{
|
|
Genus: genus,
|
|
Ids: []int64{id},
|
|
}
|
|
|
|
strains_opt, err := strainOptsFromSpecies(opt)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
strains, err := listStrains(*strains_opt)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return strains, nil
|
|
}
|
|
|
|
func listSpecies(opt ListOptions) (*ManySpecies, error) {
|
|
var vals []interface{}
|
|
|
|
q := `SELECT sp.*, g.genus_name, array_agg(st.id) AS strains,
|
|
COUNT(st) AS total_strains,
|
|
rank() OVER (ORDER BY sp.species_name ASC) AS sort_order
|
|
FROM species sp
|
|
INNER JOIN genera g ON g.id=sp.genus_id AND LOWER(g.genus_name)=LOWER($1)
|
|
LEFT OUTER JOIN strains st ON st.species_id=sp.id`
|
|
vals = append(vals, opt.Genus)
|
|
|
|
if len(opt.Ids) != 0 {
|
|
var conds []string
|
|
s := "sp.id IN ("
|
|
for i, id := range opt.Ids {
|
|
s = s + fmt.Sprintf("$%v,", i+2) // start param index at 2
|
|
vals = append(vals, id)
|
|
}
|
|
s = s[:len(s)-1] + ")"
|
|
conds = append(conds, s)
|
|
q += " WHERE (" + strings.Join(conds, ") AND (") + ")"
|
|
}
|
|
|
|
q += " GROUP BY sp.id, g.genus_name;"
|
|
|
|
species := make(ManySpecies, 0)
|
|
err := DBH.Select(&species, q, vals...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return &species, nil
|
|
}
|
|
|
|
func getSpecies(id int64, genus string) (*Species, error) {
|
|
var species Species
|
|
q := `SELECT sp.*, g.genus_name, array_agg(st.id) AS strains,
|
|
COUNT(st) AS total_strains, 0 AS sort_order
|
|
FROM species sp
|
|
INNER JOIN genera g ON g.id=sp.genus_id AND LOWER(g.genus_name)=LOWER($1)
|
|
LEFT OUTER JOIN strains st ON st.species_id=sp.id
|
|
WHERE sp.id=$2
|
|
GROUP BY sp.id, g.genus_name;`
|
|
if err := DBH.SelectOne(&species, q, genus, id); err != nil {
|
|
if err == sql.ErrNoRows {
|
|
return nil, ErrSpeciesNotFound
|
|
}
|
|
return nil, err
|
|
}
|
|
return &species, nil
|
|
}
|