82c7ec58023668875ce1537ec851cc2d86fd5cac
[osm/UI.git] / skyquake / framework / core / modules / routes / navigation.js
1
2 /*
3 *
4 * Copyright 2016 RIFT.IO Inc
5 *
6 * Licensed under the Apache License, Version 2.0 (the "License");
7 * you may not use this file except in compliance with the License.
8 * You may obtain a copy of the License at
9 *
10 * http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing, software
13 * distributed under the License is distributed on an "AS IS" BASIS,
14 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 * See the License for the specific language governing permissions and
16 * limitations under the License.
17 *
18 */
19
20 /**
21 * navigation routes module. Provides a RESTful API for this
22 * skyquake instance's navigation state.
23 * @module framework/core/modules/routes/navigation
24 * @author Kiran Kashalkar <kiran.kashalkar@riftio.com>
25 */
26
27 var cors = require('cors');
28 var bodyParser = require('body-parser');
29 var navAPI = require('../api/navigation');
30 var Router = require('express').Router();
31 var utils = require('../../api_utils/utils');
32 var configurationAPI = require('../api/configuration');
33
34 Router.use(bodyParser.json());
35 Router.use(cors());
36 Router.use(bodyParser.urlencoded({
37 extended: true
38 }));
39
40 Router.get('/', cors(), function(req, res, next) {
41 res.redirect('/launchpad/?api_server=' + req.protocol + '://' + configurationAPI.globalConfiguration.get().api_server + '&upload_server=' + req.protocol + '://' + (configurationAPI.globalConfiguration.get().upload_server || req.hostname));
42 });
43
44 Router.get('/nav', cors(), function(req, res) {
45 navAPI.get(req).then(function(data) {
46 utils.sendSuccessResponse(data, res);
47 }, function(error) {
48 utils.sendErrorResponse(error, res);
49 });
50 });
51
52 Router.get('/nav/:plugin_id', cors(), function(req, res) {
53 navAPI.get(req).then(function(data) {
54 utils.sendSuccessResponse(data, res);
55 }, function(error) {
56 utils.sendErrorResponse(error, res);
57 });
58 });
59
60 Router.post('/nav/:plugin_id', cors(), function(req, res) {
61 navAPI.create(req).then(function(data) {
62 utils.sendSuccessResponse(data, res);
63 }, function(error) {
64 utils.sendErrorResponse(error, res);
65 });
66 });
67
68 Router.put('/nav/:plugin_id/:route_id', cors(), function(req, res) {
69 navAPI.update(req).then(function(data) {
70 utils.sendSuccessResponse(data, res);
71 }, function(error) {
72 utils.sendErrorResponse(error, res);
73 });
74 });
75
76 Router.delete('/nav/:plugin_id/:route_id', cors(), function(req, res) {
77 navAPI.delete(req).then(function(data) {
78 utils.sendSuccessResponse(data, res);
79 }, function(error) {
80 utils.sendErrorResponse(error, res);
81 });
82 });
83
84
85 module.exports = Router;