Jobs on Compass often timeout
[releng.git] / utils / test / vnfcatalogue / VNF_Catalogue / routes / search_tag.js
1 /*******************************************************************************
2  * Copyright (c) 2017 Kumar Rishabh and others.
3  *
4  * All rights reserved. This program and the accompanying materials
5  * are made available under the terms of the Apache License, Version 2.0
6  * which accompanies this distribution, and is available at
7  * http://www.apache.org/licenses/LICENSE-2.0
8  *******************************************************************************/
9
10 var express = require('express');
11 var router = express.Router();
12
13 /* Post Controller for Tag autocomplete form */
14 router.get('/', function(req, res) {
15     tag_partial = req.param('key');
16     db_pool.getConnection(function(err, connection) {
17
18         sql_query = 'select tag_name from tag where tag_name like "%'+ tag_partial + '%" limit 5';
19         // TODO find why it works and not above
20         connection.query(sql_query, function (error, results, fields) {
21             console.log(results);
22
23             var data=[];
24             for(i = 0; i < results.length; i++) {
25                 data.push(results[i].tag_name.replace(/\r?\n|\r/g, ''));
26             }
27             console.log(results);
28             connection.release();
29             res.end(JSON.stringify(results));
30
31             if (error) throw error;
32         });
33     });
34 });
35
36 module.exports = router;