os-js/osjs-server

View on GitHub
src/utils/core.js

Summary

Maintainability
A
0 mins
Test Coverage
C
71%
/*
 * OS.js - JavaScript Cloud/Web Desktop Platform
 *
 * Copyright (c) Anders Evenrud <andersevenrud@gmail.com>
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions are met:
 *
 * 1. Redistributions of source code must retain the above copyright notice, this
 *    list of conditions and the following disclaimer
 * 2. Redistributions in binary form must reproduce the above copyright notice,
 *    this list of conditions and the following disclaimer in the documentation
 *    and/or other materials provided with the distribution
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
 * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 *
 * @author  Anders Evenrud <andersevenrud@gmail.com>
 * @licence Simplified BSD License
 */

const express_session = require('express-session');
const express_ws = require('express-ws');

/*
 * Converts an input argument to configuration entry
 * Overrides the user-created configuration file
 */
module.exports.argvToConfig = {
  'logging': logging => ({logging}),
  'development': development => ({development}),
  'port': port => ({port}),
  'ws-port': port => ({ws: {port}}),
  'secret': secret => ({session: {options: {secret}}}),
  'morgan': morgan => ({morgan}),
  'discovery': discovery => ({packages: {discovery}}),
  'manifest': manifest => ({packages: {manifest}})
};

/*
 * Create session parser
 */
module.exports.createSession = (app, configuration) => {
  const Store = require(configuration.session.store.module)(express_session);
  const store = new Store(configuration.session.store.options);

  return express_session({
    store,
    ...configuration.session.options
  });
};

/*
 * Create WebSocket server
 */
module.exports.createWebsocket = (app, configuration, session, httpServer) => express_ws(app, httpServer, {
  wsOptions: {
    ...configuration.ws,
    verifyClient: (info, done) => {
      session(info.req, {}, () => {
        done(true);
      });
    }
  }
});

/*
 * Wrapper for parsing json
 */
module.exports.parseJson = str => {
  try {
    return JSON.parse(str);
  } catch (e) {
    return str;
  }
};

/*
 * Checks groups for a request
 */
const validateGroups = (req, groups, all) => {
  if (groups instanceof Array && groups.length) {
    const userGroups = req.session.user.groups;

    const method = all ? 'every' : 'some';

    return groups[method](g => userGroups.indexOf(g) !== -1);
  }

  return true;
};

/*
 * Authentication middleware wrapper
 */
module.exports.isAuthenticated = (groups = [], all = false) => (req, res, next) => {
  if (req.session.user && validateGroups(req, groups, all)) {
    return next();
  }

  return res
    .status(403)
    .send('Access denied');
};

/**
 * Closes an array of watches
 */
module.exports.closeWatches = (watches) => Promise.all(
  watches.map((w) => {
    return w.close()
      .catch(error => console.warn(error));
  })
);