-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathelaserver.js
105 lines (96 loc) · 2.84 KB
/
elaserver.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
const { Client } = require('@elastic/elasticsearch');
const express = require('express');
const cors = require('cors');
const app = express();
const port = 3002;
// Create an Elasticsearch client
const client = new Client({
cloud: {
id: 'e979c66e01444994b94412f0362c3657:dXMtY2VudHJhbDEuZ2NwLmNsb3VkLmVzLmlvJDBjODk1MThhZjFiYTRhMzA5MGU3YzI0YWJhOGM5NDZlJDVmMjlmN2ZkMWQ5MzQxNzU4YzAyMjVhM2IwNjBhMjNl'
},
auth: {
username: 'elastic',
password: 'dZojjl4itYPwUzCfOYAEzxdw'
}
});
app.use(cors());
async function searchProducts(query) {
try {
const countResponse = await client.count({
index: 'products',
body: {
query: {
bool: {
should: [
{
match: {
name: {
query: query,
fuzziness: 'AUTO'
}
}
},
{
wildcard: {
name: `*${query}*`
}
}
]
}
}
}
});
const totalMatches = countResponse.count;
const body = await client.search({
index: 'products',
body: {
query: {
bool: {
should: [
{
match: {
name: {
query: query,
fuzziness: 'AUTO'
}
}
},
{
wildcard: {
name: `*${query}*`
}
}
]
}
},
size: totalMatches // Adjust size as needed
}
});
if (!body) {
throw new Error('No response body');
}
if (!body.hits) {
throw new Error('No hits found');
}
return body.hits.hits;
} catch (error) {
console.error(error);
throw error; // Re-throw error to handle it in the Express endpoint
}
}
app.get('/api/products/search', async (req, res) => {
const { q } = req.query;
console.log(q);
if (!q) {
return res.status(400).json({ error: 'Query parameter "q" is required' });
}
try {
const products = await searchProducts(q);
res.json(products);
} catch (error) {
res.status(500).json({ error: 'Internal server error' });
}
});
app.listen(port, () => {
console.log(`Server running on port ${port}`);
});