exports.playlist = function (req, res, next, id) {
  Playlist.load(id, function (err, playlist) {
    if (err) {
      return next(err);
    }