bf9c47b4ca1c54d11762b500a54bdfd8033e716c
[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('/login.html', cors(), function(req, res) {
41 res.render('login.html');
42 res.end();
43 });
44
45 Router.get('/', cors(), function(req, res) {
46 var api_server = req.query['api_server'] || (req.protocol + '://' + configurationAPI.globalConfiguration.get().api_server);
47 if (req.session && req.session.loggedIn) {
48 console.log('Logged in. Redirect to launchpad')
49 res.redirect('/launchpad/?api_server=' + api_server + '&upload_server=' + req.protocol + '://' + (configurationAPI.globalConfiguration.get().upload_server || req.hostname));
50 } else {
51 console.log('Redirect to login.html');
52 res.redirect('login.html?api_server=' + api_server + '&upload_server=' + req.protocol + '://' + (configurationAPI.globalConfiguration.get().upload_server || req.hostname));
53 }
54 });
55
56 Router.get('/nav', cors(), function(req, res) {
57 navAPI.get(req).then(function(data) {
58 utils.sendSuccessResponse(data, res);
59 }, function(error) {
60 utils.sendErrorResponse(error, res);
61 });
62 });
63
64 Router.get('/nav/:plugin_id', cors(), function(req, res) {
65 navAPI.get(req).then(function(data) {
66 utils.sendSuccessResponse(data, res);
67 }, function(error) {
68 utils.sendErrorResponse(error, res);
69 });
70 });
71
72 Router.post('/nav/:plugin_id', cors(), function(req, res) {
73 navAPI.create(req).then(function(data) {
74 utils.sendSuccessResponse(data, res);
75 }, function(error) {
76 utils.sendErrorResponse(error, res);
77 });
78 });
79
80 Router.put('/nav/:plugin_id/:route_id', cors(), function(req, res) {
81 navAPI.update(req).then(function(data) {
82 utils.sendSuccessResponse(data, res);
83 }, function(error) {
84 utils.sendErrorResponse(error, res);
85 });
86 });
87
88 Router.delete('/nav/:plugin_id/:route_id', cors(), function(req, res) {
89 navAPI.delete(req).then(function(data) {
90 utils.sendSuccessResponse(data, res);
91 }, function(error) {
92 utils.sendErrorResponse(error, res);
93 });
94 });
95
96
97 module.exports = Router;