aboutsummaryrefslogblamecommitdiffhomepage
path: root/server/models/utils.js
blob: a961e8c5ba4b07fd47f1a19fa409f00e8c038975 (plain) (tree)





























                                                                              
'use strict'

const parallel = require('async/parallel')

const utils = {
  listForApiWithCount: listForApiWithCount
}

function listForApiWithCount (query, start, count, sort, callback) {
  const self = this

  parallel([
    function (asyncCallback) {
      self.find(query).skip(start).limit(count).sort(sort).exec(asyncCallback)
    },
    function (asyncCallback) {
      self.count(query, asyncCallback)
    }
  ], function (err, results) {
    if (err) return callback(err)

    const data = results[0]
    const total = results[1]
    return callback(null, data, total)
  })
}

// ---------------------------------------------------------------------------

module.exports = utils