You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
771 B
Go
45 lines
771 B
Go
package lista_utenti
|
|
|
|
import (
|
|
"encoding/json"
|
|
"log"
|
|
"os"
|
|
|
|
"git.phc.dm.unipi.it/phc/website/model"
|
|
"git.phc.dm.unipi.it/phc/website/util"
|
|
)
|
|
|
|
type jsonListaUtenti struct {
|
|
Path string
|
|
|
|
Macchinisti util.Set[string]
|
|
}
|
|
|
|
func newJsonListaUtenti(path string) (Service, error) {
|
|
macchinisti, err := loadMacchinisti()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return &jsonListaUtenti{path, macchinisti}, nil
|
|
}
|
|
|
|
func (j *jsonListaUtenti) GetUtenti() ([]*model.ListUser, error) {
|
|
var users []*model.ListUser
|
|
|
|
f, err := os.Open(j.Path)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
if err := json.NewDecoder(f).Decode(&users); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
mergeMacchinisti(users, j.Macchinisti)
|
|
|
|
log.Printf("Caricata lista di %d utenti", len(users))
|
|
|
|
return users, nil
|
|
}
|