Grails REST API - 使用params中的分页,元数据和自定义包含字段呈现JSON

时间:2014-10-29 16:15:06

标签: json rest grails

我正在寻找一种最佳方法,可以根据此Design Beautiful REST + JSON APIs Les Hazlewood的演示文稿为Grails中的RESTful API设计自定义JSON响应。

这是我的Domain类

class TaxiType {

    Date dateCreated, lastUpdated
    String description
    User createdBy

    static hasMany = [taxis: Taxi]

    static constraints = {
    }
}

列表所需的响应格式为

{
  "meta": {
    "href": "https://api.mydomain.com/taxi-types",
    "otherData": "..."
  },
  "paging": {
    "offset": 0,
    "limit": 10,
    "total": 100,
    "first": "https://api.mydomain.com/taxi-types?offset=0&limit=10",
    "previous": null,
    "next": "https://api.mydomain.com/taxi-types?offset=90&limit=10",
    "last": "https://api.mydomain.com/taxi-types?offset=90&limit=10"
  },
  "data": [
    {
      "href": "https://api.mydomain.com/taxi-types/1",
      "id": 1,
      "description": "description 1",
      "taxis": {
        "href": "https://api.mydomain.com/taxi-types/1/taxis"
      }
    },
    ...
  ]
}

TaxiTypeController.groovy

def index(Integer limit) {
    params.max = Math.min(limit ?  : 10, 100)
        params.offset = params ? .offset ? .toInteger()
        withFormat {
        json {
            respond TaxiType.list(params),
            [includes : includeFields,
                paging : [total : TaxiType.count(), limit : params ? .max, offset : params ? .offset ?  : 0]
            ]
        }
    }
}
private getIncludeFields() {
    params.fields ? .tokenize(', ')
}

SumoJsonCollectionRenderer.groovy

class SumoJsonCollectionRenderer extends JsonCollectionRenderer {
    SumoJsonCollectionRenderer(Class componentType) {
        super(componentType)
    }
    public SumoJsonCollectionRenderer(Class componentType, MimeType...mimeTypes) {
        super(componentType, mimeTypes)
    }
     @ CompileStatic(SKIP)
     @ Override
    protected void renderJson(object, RenderContext context) {
        log.debug(object)
        log.debug(object.size())
        log.debug(object.getTotalCount())
        Map tObject = ['data' : object]
        if (context.arguments ? .paging) {
            tObject['paging'] = context ? .arguments ? .paging
        }
        super.renderJson(tObject, context)
    }
}

所需的功能是:

1)API用户应该只能获取必填字段(部分表示)

GET https://api.mydomain.com/taxi-types??fields=id,description,taxis

此请求的所需响应应为

{
    "meta" : {...}
    "paging" : {...}
    "data" : [{
            "href" : "https://api.mydomain.com/taxi-types/1",
            "id" : 1,
            "description" : "Taxi Type1",
            "taxis" : [{
                    "href" : "https://api.mydomain.com/taxis/123"
                },
                ...
            ]
        },
        ...
    ]
}

我得到的是

{
    "data" : [{
            "id" : 1,
            "description" : "Taxi Type1",
            "taxis" : [{
                    "class" : "com.domain.project.Taxi",
                    "id" : 1
                }
            ]
        },
        ...
    ],
    "paging" : {
        "total" : 80,
        "limit" : 10,
        "offset" : 0
    }
}

我提到了这个问题的答案Render metadata for pagination from Grails RestfulController index/search actions

但仍然需要在分页中包含first, previous, next & last的链接,如上面所需的格式所述。

2)自定义输出

例如,

具有taxis关系的hasMany属性应默认呈现为

"taxis": {
    "href": "https://api.mydomain.com/taxis/12345"
}

如果用户更喜欢展开taxis属性,例如:GET /taxi-types?expand=taxis,则JSON格式应为

"taxis": {
    "href": "https://api.mydomain.com/taxis/12345"
    "name": "Taxi name",
    "type": "https://api.mydomain.com/taxi-types/1"
    ...
}

3)将meta对象添加到所有回复

"meta": {
     "href": "https://api.mydomain.com/taxi-types",
     ...
}

我试过Json Marshaller来定制响应。这是我的Marshaller代码

JSON.registerObjectMarshaller(TaxiType) {TaxiType taxiType->
    return [
        id : taxiType ? .id,
        description : taxiType ? .description
    ]
}

但它始终使用返回数组id & description中的这两个属性进行渲染,即使我需要其他属性,例如taxis

如何实施以上3项要求?提前谢谢。

2 个答案:

答案 0 :(得分:0)

我创建了一个plugin for grails 3,允许您为api添加分页,自定义元数据和其他有用的功能。您可以使用LinkGenerators以及我的插件添加HAL功能。

答案 1 :(得分:0)

Beapi-API-Framework 插件是 grails 的#1 api 插件,默认提供分页。有关所有功能、文档和安装说明的完整列表,请参阅 the github repo