@leansdk/leanrc
Version:
LeanRC is a MVC framework for creating graceful applications
44 lines (38 loc) • 1.67 kB
text/coffeescript
# This file is part of LeanRC.
#
# LeanRC is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# LeanRC is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with LeanRC. If not, see <https://www.gnu.org/licenses/>.
module.exports = (Module)->
{
AnyT
FuncG, SubsetG, MaybeG
RecordInterface
Serializer, Mixin
Utils: { _, inflect }
} = Module::
Module.defineMixin Mixin 'HttpSerializerMixin', (BaseClass = Serializer) ->
class extends BaseClass
@inheritProtected()
@public @async normalize: FuncG([SubsetG(RecordInterface), MaybeG AnyT], RecordInterface),
default: (acRecord, ahPayload)->
ahPayload = JSON.parse ahPayload if _.isString ahPayload
return yield acRecord.normalize ahPayload, @collection
@public @async serialize: FuncG([MaybeG(RecordInterface), MaybeG Object], MaybeG AnyT),
default: (aoRecord, options = null)->
vcRecord = aoRecord.constructor
recordName = vcRecord.name.replace /Record$/, ''
singular = inflect.singularize inflect.underscore recordName
yield return {
"#{singular}": yield vcRecord.serialize aoRecord, options
}
@initializeMixin()