-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathapi.js
111 lines (97 loc) · 2.46 KB
/
api.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
var ElasticSearchClient = require('elasticsearchclient')
, _ = require('underscore')
, fs = require('fs')
, path = require('path')
, serverOptions = {
hosts: [
{
host: 'localhost',
port: 9200
}
]
}
var elasticSearchClient = new ElasticSearchClient(serverOptions);
exports.popular = function (req, res) {
fs.readFile(path.dirname(__dirname) + '/popular.json', function (err, content) {
if (err) {
res.api({success: false, error: 'Can not list popular.json'});
return;
}
var populars = JSON.parse(content);
elasticSearchClient.multiget('static', 'libs', populars)
.on('data', function (data) {
data = JSON.parse(data);
data = _.map(data.docs, function (lib) {
return lib._source;
});
res.api({libs: data});
})
.on('done', function () {
//always returns 0 right now
})
.on('error', function (error) {
res.api({success: false, error: error});
})
.exec()
});
}
exports.search = function (req, res) {
var q = req.query.q.toLowerCase();
var qryObj ={
query: {
'dis_max': {
'queries': [
{
'prefix': { 'name': q }
},
//{
// 'text': { 'name': q }
//},
{
'term': { 'keywords': q }
}
]
}
},
size: req.query.count || 30
};
elasticSearchClient.search('static', 'libs', qryObj)
.on('data', function (data) {
data = JSON.parse(data);
if (data.hits) {
data.hits.libs = _.map(data.hits.hits, function (lib) {
return lib._source;
});
delete data.hits.hits;
res.api(data.hits);
} else {
res.api({total: 0, max_score: 0, libs: []});
}
})
.on('done', function () {
//always returns 0 right now
})
.on('error', function (error) {
res.api({success: false, error: error});
})
.exec()
};
exports.show = function (req, res) {
var name = req.params.package;
elasticSearchClient.get('static', 'libs', name)
.on('data', function (data) {
data = JSON.parse(data);
if (!data.exists) {
res.statusCode = 404;
res.api({success: false, error: 'Non-exists package'});
return;
}
res.api(data._source);
})
.on('done', function () {
})
.on('error', function (error) {
res.api({success: false, error: error});
})
.exec()
};