Merge "VNF_Catalogue Codebase"
[samplevnf.git] / VNF_Catalogue / routes / search_vnf.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 Search Vnf 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 vnf_name from vnf where vnf_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             if(results == null) {
23                 connection.release();
24                 res.end(JSON.stringify({}));
25             } else {
26                 var data=[];
27                 for(i = 0; i < results.length; i++) {
28                     data.push(results[i].vnf_name.replace(/\r?\n|\r/g, ''));
29                 }
30                 console.log(results);
31                 connection.release();
32                 res.end(JSON.stringify(results));
33             }
34             //if (error) throw error;
35         });
36     });
37 });
38
39 module.exports = router;