update from RIFT as of 696b75d2fe9fb046261b08c616f1bcf6c0b54a9b third try
[osm/UI.git] / skyquake / plugins / accounts / routes.js
1 /*
2 *
3 * Copyright 2016 RIFT.IO Inc
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 *
17 */
18
19 var app = require('express').Router();
20 var cors = require('cors');
21 var utils = require('../../framework/core/api_utils/utils.js');
22 var accountsAPI = require('./api/accounts.js');
23 // Begin Accounts API
24 app.get('/all', cors(), function(req, res) {
25 accountsAPI.get(req).then(function(data) {
26 utils.sendSuccessResponse(data, res);
27 }, function(error) {
28 utils.sendErrorResponse(error, res);
29 });
30 });
31 app.get('/:type', cors(), function(req, res) {
32 accountsAPI.get(req).then(function(data) {
33 utils.sendSuccessResponse(data, res);
34 }, function(error) {
35 utils.sendErrorResponse(error, res);
36 });
37 });
38 app.get('/:type/:name', cors(), function(req, res) {
39 accountsAPI.get(req).then(function(data) {
40 utils.sendSuccessResponse(data.data, res);
41 }, function(error) {
42 utils.sendErrorResponse(error, res);
43 });
44 });
45 app.post('/:type', cors(), function(req, res) {
46 accountsAPI.create(req).then(function(data) {
47 utils.sendSuccessResponse(data, res);
48 }, function(error) {
49 utils.sendErrorResponse(error, res);
50 });
51 });
52 app.put('/:type/:id', cors(), function(req, res) {
53 accountsAPI.update(req).then(function(data) {
54 utils.sendSuccessResponse(data, res);
55 }, function(error) {
56 utils.sendErrorResponse(error, res);
57 });
58 });
59 app.delete('/:type/:id', cors(), function(req, res) {
60 accountsAPI.delete(req).then(function(data) {
61 utils.sendSuccessResponse(data, res);
62 }, function(error) {
63 utils.sendErrorResponse(error, res);
64 });
65 });
66 app.post('/:type/:name/refresh', cors(), function(req, res) {
67 accountsAPI.refreshAccountConnectionStatus(req).then(function(data) {
68 utils.sendSuccessResponse(data, res);
69 }, function(error) {
70 utils.sendErrorResponse(error, res);
71 });
72 })
73 //RO config routes
74
75 utils.passThroughConstructor(app);
76
77 module.exports = app;