Rift.IO OSM R1 Initial Submission
[osm/UI.git] / skyquake / plugins / composer / 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 var router = require('express').Router();
19 var cors = require('cors');
20 var utils = require('../../framework/core/api_utils/utils.js')
21 var Composer = require('./api/composer.js');
22 router.get('/api/catalog', cors(), function(req, res) {
23 Composer.get(req).then(function(data) {
24 utils.sendSuccessResponse(data, res);
25 }, function(error) {
26 utils.sendErrorResponse(error, res);
27 });
28 });
29 router.delete('/api/catalog/:catalogType/:id', cors(), function(req, res) {
30 Composer.delete(req).then(function(response) {
31 res.status(response.statusCode);
32 res.send({});
33 }, function(error) {
34 res.status(error.statusCode);
35 res.send(error.errorMessage);
36 });
37 });
38 router.post('/api/catalog/:catalogType', cors(), function(req, res) {
39 Composer.create(req).then(function(data) {
40 res.send(data);
41 }, function(error) {
42 res.status(error.statusCode);
43 res.send(error.errorMessage);
44 });
45 });
46 router.put('/api/catalog/:catalogType/:id', cors(), function(req, res) {
47 Composer.update(req).then(function(data) {
48 res.send(data);
49 }, function(error) {
50 res.status(error.statusCode);
51 res.send(error.errorMessage);
52 });
53 });
54
55 module.exports = router;