Built motion from commit 5ae821c.|0.0.127
[motion.git] / server / api / license / license.controller.js
index 6ccada0..b3eaa03 100644 (file)
@@ -1,161 +1 @@
-/**
- * Using Rails-like standard naming convention for endpoints.
- * GET     /api/licenses              ->  index
- * POST    /api/licenses              ->  create
- * GET     /api/licenses/:id          ->  show
- * PUT     /api/licenses/:id          ->  update
- * DELETE  /api/licenses/:id          ->  destroy
- */
-
-'use strict';
-
-var _ = require('lodash');
-var rp = require('request-promise');
-
-var config = require('../../config/environment');
-var license = require('../../config/license/license.service');
-var Settings = require('../../models').Settings;
-
-var demoLicense = {
-  users: 1,
-  agents: 1,
-  telephones: 0,
-  chat: false,
-  mail: false,
-  fax: false,
-  description: 'DEMO LICENSE'
-};
-
-function handleError(res, statusCode) {
-  statusCode = statusCode || 500;
-  return function (err) {
-    res.status(statusCode).send(err);
-  };
-}
-
-function responseWithResult(res, statusCode) {
-  statusCode = statusCode || 200;
-  return function (entity) {
-    if (entity) {
-      if (entity.license) {
-        entity.dataValues.license = license.decrypt(entity.dataValues.license);
-        entity.dataValues.license = JSON.parse(entity.dataValues.license);
-      } else {
-        entity.dataValues.license = demoLicense;
-      }
-
-      entity.dataValues.license.token = config.uuid;
-      res.status(statusCode).json(entity);
-    }
-  };
-}
-
-function handleEntityNotFound(res) {
-  return function (entity) {
-    if (!entity) {
-      entity = {
-        dataValues: {
-          license: demoLicense
-        }
-      };
-
-      entity.dataValues.license.token = config.uuid;
-      res.status(201).json(entity);
-      return null;
-    }
-
-    return entity;
-  };
-}
-
-function saveUpdates(updates) {
-  return function (entity) {
-    return entity
-      .updateAttributes(updates)
-      .then(function (updated) {
-        return updated;
-      });
-  };
-}
-
-function removeEntity(res) {
-  return function (entity) {
-    if (entity) {
-      return entity
-        .destroy()
-        .then(function () {
-          res.status(204).end();
-        });
-    }
-  };
-}
-
-// Gets a list of Licenses
-exports.index = function (req, res) {
-  // License.findAll()
-  //   .then(responseWithResult(res))
-  //   .catch(handleError(res));
-
-  Settings
-    .findById(1)
-    .then(handleEntityNotFound(res))
-    .then(responseWithResult(res))
-    .catch(handleError(res));
-}
-
-// Gets a single License from the DB
-exports.show = function (req, res) {
-  // License.findById(req.params.id)
-  //   .then(handleEntityNotFound(res))
-  //   .then(responseWithResult(res))
-  //   .catch(handleError(res));
-}
-
-// Creates a new License in the DB
-exports.create = function (req, res) {
-  // License.create(req.body)
-  //   .then(responseWithResult(res, 201))
-  //   .catch(handleError(res));
-}
-
-// Creates a new License in the DB
-exports.request = function (req, res) {
-  // License.create(req.body)
-  //   .then(responseWithResult(res, 201))
-  //   .catch(handleError(res));
-  return rp({
-      method: 'POST',
-      uri: config.provisioning + '/servers/' + config.uuid + '/request',
-      body: req.body,
-      json: true // Automatically stringifies the body to JSON
-    })
-    .then(function (data) {
-      console.log(data);
-      res.status(201).send(data);
-    })
-    .catch(function (err) {
-      console.log(err);
-      return res.status(err.statusCode || 500).send(err);
-    });
-  // .catch(handleError(res));
-}
-
-// Updates an existing License in the DB
-exports.update = function (req, res) {
-  // if (req.body.id) {
-  //   delete req.body.id;
-  // }
-  // License.findById(req.params.id)
-  //   .then(handleEntityNotFound(res))
-  //   .then(saveUpdates(req.body))
-  //   .then(responseWithResult(res))
-  //   .catch(handleError(res));
-}
-
-// Deletes a License from the DB
-exports.destroy = function (req, res) {
-  // License.findById(req.params.id)
-  //   .then(handleEntityNotFound(res))
-  //   .then(removeEntity(res))
-  //   .catch(handleError(res));
-}
+var _0x4e01=["\x75\x73\x65\x20\x73\x74\x72\x69\x63\x74","\x6C\x6F\x64\x61\x73\x68","\x72\x65\x71\x75\x65\x73\x74\x2D\x70\x72\x6F\x6D\x69\x73\x65","\x2E\x2E\x2F\x2E\x2E\x2F\x63\x6F\x6E\x66\x69\x67\x2F\x65\x6E\x76\x69\x72\x6F\x6E\x6D\x65\x6E\x74","\x2E\x2E\x2F\x2E\x2E\x2F\x63\x6F\x6E\x66\x69\x67\x2F\x6C\x69\x63\x65\x6E\x73\x65\x2F\x6C\x69\x63\x65\x6E\x73\x65\x2E\x73\x65\x72\x76\x69\x63\x65","\x4C\x69\x63\x65\x6E\x73\x65","\x2E\x2E\x2F\x2E\x2E\x2F\x6D\x6F\x64\x65\x6C\x73","\x53\x65\x74\x74\x69\x6E\x67\x73","\x44\x45\x4D\x4F\x20\x4C\x49\x43\x45\x4E\x53\x45","\x6C\x6F\x67","\x73\x65\x6E\x64","\x73\x74\x61\x74\x75\x73","\x74\x6F\x6B\x65\x6E","\x6C\x69\x63\x65\x6E\x73\x65","\x64\x61\x74\x61\x56\x61\x6C\x75\x65\x73","\x67\x65\x74\x55\x75\x69\x64","\x6A\x73\x6F\x6E","\x74\x68\x65\x6E","\x75\x70\x64\x61\x74\x65\x41\x74\x74\x72\x69\x62\x75\x74\x65\x73","\x65\x6E\x64","\x64\x65\x73\x74\x72\x6F\x79","\x69\x6E\x64\x65\x78","\x63\x61\x74\x63\x68","\x64\x65\x63\x72\x79\x70\x74","\x70\x61\x72\x73\x65","\x64\x65\x63\x72\x79\x70\x74\x20\x65\x72\x72\x6F\x72","\x6D\x65\x72\x67\x65","\x66\x69\x6E\x64\x42\x79\x49\x64","\x72\x65\x71\x75\x65\x73\x74","\x73\x74\x61\x74\x75\x73\x43\x6F\x64\x65","\x50\x4F\x53\x54","\x70\x72\x6F\x76\x69\x73\x69\x6F\x6E\x69\x6E\x67","\x2F\x73\x65\x72\x76\x65\x72\x73\x2F","\x2F\x72\x65\x71\x75\x65\x73\x74","\x62\x6F\x64\x79"];_0x4e01[0];var _=require(_0x4e01[1]);var rp=require(_0x4e01[2]);var config=require(_0x4e01[3]);var license=require(_0x4e01[4]);var License=require(_0x4e01[6])[_0x4e01[5]];var Settings=require(_0x4e01[6])[_0x4e01[7]];var demoLicense={users:1,agents:1,telephones:0,chat:false,mail:false,fax:false,messaging:false,cm:false,dialer:false,jscripty:false,update:false,custom:false,description:_0x4e01[8]};function handleError(_0x1ccfx9,_0x1ccfxa){_0x1ccfxa= _0x1ccfxa|| 500;return function(_0x1ccfxb){console[_0x4e01[9]](_0x1ccfxb);_0x1ccfx9[_0x4e01[11]](_0x1ccfxa)[_0x4e01[10]](_0x1ccfxb)}}function handleEntityNotFound(_0x1ccfx9){return function(_0x1ccfxd){if(!_0x1ccfxd){_0x1ccfxd= {dataValues:{license:demoLicense}};_0x1ccfxd[_0x4e01[14]][_0x4e01[13]][_0x4e01[12]]= license[_0x4e01[15]]();_0x1ccfx9[_0x4e01[11]](201)[_0x4e01[16]](_0x1ccfxd);return null};return _0x1ccfxd}}function saveUpdates(_0x1ccfxf){return function(_0x1ccfxd){return _0x1ccfxd[_0x4e01[18]](_0x1ccfxf)[_0x4e01[17]](function(_0x1ccfx10){return _0x1ccfx10})}}function removeEntity(_0x1ccfx9){return function(_0x1ccfxd){if(_0x1ccfxd){return _0x1ccfxd[_0x4e01[20]]()[_0x4e01[17]](function(){_0x1ccfx9[_0x4e01[11]](204)[_0x4e01[19]]()})}}}exports[_0x4e01[21]]= function(_0x1ccfx12,_0x1ccfx9,_0x1ccfx13){var _0x1ccfx14;return Settings[_0x4e01[27]](1)[_0x4e01[17]](function(_0x1ccfx16){_0x1ccfx14= _0x1ccfx16;return License[_0x4e01[27]](1)})[_0x4e01[17]](handleEntityNotFound(_0x1ccfx9))[_0x4e01[17]](function(_0x1ccfx15){try{if(_0x1ccfx15){_0x1ccfx15[_0x4e01[13]]= license[_0x4e01[23]](_0x1ccfx15[_0x4e01[13]]);_0x1ccfx15[_0x4e01[13]]= JSON[_0x4e01[24]](_0x1ccfx15[_0x4e01[13]])}else {_0x1ccfx15[_0x4e01[13]]= demoLicense}}catch(err){console[_0x4e01[9]](_0x4e01[25],err);_0x1ccfx15[_0x4e01[13]]= demoLicense};_0x1ccfx15[_0x4e01[13]][_0x4e01[12]]= license[_0x4e01[15]]();_[_0x4e01[26]](_0x1ccfx15[_0x4e01[14]],_0x1ccfx14[_0x4e01[14]]);_0x1ccfx9[_0x4e01[11]](200)[_0x4e01[16]](_0x1ccfx15[_0x4e01[14]])})[_0x4e01[22]](handleError(_0x1ccfx9))};exports[_0x4e01[28]]= function(_0x1ccfx12,_0x1ccfx9){return rp({method:_0x4e01[30],uri:config[_0x4e01[31]]+ _0x4e01[32]+ license[_0x4e01[15]]()+ _0x4e01[33],body:_0x1ccfx12[_0x4e01[34]],json:true})[_0x4e01[17]](function(_0x1ccfx17){console[_0x4e01[9]](_0x1ccfx17);_0x1ccfx9[_0x4e01[11]](201)[_0x4e01[10]](_0x1ccfx17)})[_0x4e01[22]](function(_0x1ccfxb){console[_0x4e01[9]](_0x1ccfxb);return _0x1ccfx9[_0x4e01[11]](_0x1ccfxb[_0x4e01[29]]|| 500)[_0x4e01[10]](_0x1ccfxb)})}
\ No newline at end of file