type metaAssigner interface {
setTitle(title string)
setName(name string)
- setParams(params map[string]interface{})
+ updateParams(params map[string]interface{})
}
// Resource represents a linkable resource, i.e. a content page, image etc.
l.name = name
}
-func (l *genericResource) setParams(params map[string]interface{}) {
- l.params = params
+func (l *genericResource) updateParams(params map[string]interface{}) {
+ if l.params == nil {
+ l.params = params
+ return
+ }
+
+ // Sets the params not already set
+ for k, v := range params {
+ if _, found := l.params[k]; !found {
+ l.params[k] = v
+ }
+ }
}
// Implement the Cloner interface.
}
var (
- nameSet, titleSet, paramsSet bool
- currentCounter = 0
- resourceSrcKey = strings.ToLower(r.Name())
+ nameSet, titleSet bool
+ currentCounter = 0
+ resourceSrcKey = strings.ToLower(r.Name())
)
ma := r.(metaAssigner)
for _, meta := range metadata {
- if nameSet && titleSet && paramsSet {
- // No need to look further
- break
- }
-
src, found := meta["src"]
if !found {
return fmt.Errorf("missing 'src' in metadata for resource")
}
}
- if !paramsSet {
- params, found := meta["params"]
- if found {
- m := cast.ToStringMap(params)
- // Needed for case insensitive fetching of params values
- helpers.ToLowerMap(m)
- ma.setParams(m)
-
- if currentCounter == 0 {
- currentCounter = counters[srcKey] + 1
- counters[srcKey] = currentCounter
- }
-
- paramsSet = true
- }
+ params, found := meta["params"]
+ if found {
+ m := cast.ToStringMap(params)
+ // Needed for case insensitive fetching of params values
+ helpers.ToLowerMap(m)
+ ma.updateParams(m)
}
}
}
"src": "*loGo*",
"params": map[string]interface{}{
"Param1": true,
+ "icon": "logo",
},
},
map[string]interface{}{
"src": "*",
"params": map[string]interface{}{
"Param2": true,
+ "icon": "resource",
},
},
}, func(err error) {
assert.Equal("My Resource", foo3.Title())
_, p1 := logo2.Params()["param1"]
_, p2 := foo2.Params()["param2"]
+ _, p1_2 := foo2.Params()["param1"]
+ _, p2_2 := logo2.Params()["param2"]
+
+ icon1, _ := logo2.Params()["icon"]
+ icon2, _ := foo2.Params()["icon"]
+
assert.True(p1)
assert.True(p2)
+ // Check merge
+ assert.True(p2_2)
+ assert.False(p1_2)
+
+ assert.Equal("logo", icon1)
+ assert.Equal("resource", icon2)
+
}},
{[]map[string]interface{}{
map[string]interface{}{