Added support for int64 and uint64 primary id types

This commit is contained in:
Sharon Lourduraj 2016-01-07 15:14:57 -05:00
parent b2e454fb0a
commit 04bf04450b
1 changed files with 12 additions and 11 deletions

View File

@ -178,18 +178,19 @@ func visitModelNode(model interface{}, included *map[string]*Node, sideload bool
if annotation == "primary" {
id := fieldValue.Interface()
str, ok := id.(string)
if ok {
node.Id = str
} else {
j, ok := id.(int)
if ok {
node.Id = strconv.Itoa(j)
} else {
switch nId := id.(type) {
case string:
node.Id = nId
case int:
node.Id = strconv.Itoa(nId)
case int64:
node.Id = strconv.FormatInt(nId, 10)
case uint64:
node.Id = strconv.FormatUint(nId, 10)
default:
er = ErrBadJSONAPIID
break
}
}
node.Type = args[1]
} else if annotation == "client-id" {