2021-02-09 14:44:55 +00:00
|
|
|
package locode
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/nspcc-dev/neofs-api-go/pkg/netmap"
|
|
|
|
"github.com/nspcc-dev/neofs-node/pkg/util/locode"
|
|
|
|
"github.com/pkg/errors"
|
|
|
|
)
|
|
|
|
|
|
|
|
var errMissingRequiredAttr = errors.New("missing required attribute in DB record")
|
|
|
|
|
2021-02-10 10:13:42 +00:00
|
|
|
// VerifyAndUpdate validates UN-LOCODE attribute of n
|
2021-02-09 14:44:55 +00:00
|
|
|
// and adds a group of related attributes.
|
|
|
|
//
|
2021-02-24 18:18:36 +00:00
|
|
|
// If n does not contain UN-LOCODE attribute, nil is returned
|
|
|
|
// without any actions. Otherwise, if UN-LOCODE value does not
|
2021-02-09 14:44:55 +00:00
|
|
|
// match the UN/LOCODE format, an error returns.
|
|
|
|
//
|
|
|
|
// New attributes are formed from the record of DB instance (Prm).
|
|
|
|
// If DB entry R was found w/o errors, then new attributes are:
|
|
|
|
// * CountryCode: R.CountryCode().String();
|
|
|
|
// * Country: R.CountryName();
|
2021-02-10 10:28:14 +00:00
|
|
|
// * LocationCode: R.LocationCode().String();
|
|
|
|
// * Location: Record.LocationName();
|
2021-02-09 14:44:55 +00:00
|
|
|
// * SubDivCode: R.SubDivCode();
|
|
|
|
// * SubDiv: R.SubDivName();
|
|
|
|
// * Continent: R.Continent().String().
|
|
|
|
//
|
2021-02-10 10:13:42 +00:00
|
|
|
// UN-LOCODE attribute remains untouched.
|
2021-02-09 14:44:55 +00:00
|
|
|
func (v *Validator) VerifyAndUpdate(n *netmap.NodeInfo) error {
|
|
|
|
mAttr := uniqueAttributes(n.Attributes())
|
|
|
|
|
2021-02-10 20:54:27 +00:00
|
|
|
attrLocode, ok := mAttr[netmap.AttrUNLOCODE]
|
2021-02-09 14:44:55 +00:00
|
|
|
if !ok {
|
2021-02-24 18:18:36 +00:00
|
|
|
return nil
|
2021-02-09 14:44:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
lc, err := locode.FromString(attrLocode.Value())
|
|
|
|
if err != nil {
|
|
|
|
return errors.Wrap(err, "invalid locode value")
|
|
|
|
}
|
|
|
|
|
|
|
|
record, err := v.db.Get(lc)
|
|
|
|
if err != nil {
|
|
|
|
return errors.Wrap(err, "could not get locode record from DB")
|
|
|
|
}
|
|
|
|
|
|
|
|
for attrKey, attrDesc := range v.mAttr {
|
|
|
|
attrVal := attrDesc.converter(record)
|
|
|
|
if attrVal == "" {
|
|
|
|
if !attrDesc.optional {
|
|
|
|
return errMissingRequiredAttr
|
|
|
|
}
|
|
|
|
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
a := netmap.NewNodeAttribute()
|
|
|
|
a.SetKey(attrKey)
|
|
|
|
a.SetValue(attrVal)
|
|
|
|
|
|
|
|
mAttr[attrKey] = a
|
|
|
|
}
|
|
|
|
|
|
|
|
as := n.Attributes()
|
|
|
|
as = as[:0]
|
|
|
|
|
|
|
|
for _, attr := range mAttr {
|
|
|
|
as = append(as, attr)
|
|
|
|
}
|
|
|
|
|
|
|
|
n.SetAttributes(as...)
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func uniqueAttributes(as []*netmap.NodeAttribute) map[string]*netmap.NodeAttribute {
|
|
|
|
mAttr := make(map[string]*netmap.NodeAttribute, len(as))
|
|
|
|
|
|
|
|
for _, attr := range as {
|
|
|
|
mAttr[attr.Key()] = attr
|
|
|
|
}
|
|
|
|
|
|
|
|
return mAttr
|
|
|
|
}
|