balena-cli/lib/hooks/auth.coffee
2014-11-26 13:35:01 -04:00

17 lines
326 B
CoffeeScript

_ = require('lodash')
resin = require('../resin')
exports.failIfNotLoggedIn = (fn, onError) ->
return ->
args = arguments
resin.auth.isLoggedIn (isLoggedIn) ->
if not isLoggedIn
error = new Error('You have to log in')
if onError?
return onError(error)
else
throw error
fn.apply(null, args)