-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathquerySearch.js
143 lines (114 loc) · 3.92 KB
/
querySearch.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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
'use strict';
require('dotenv').config();
const request = require('request')
// const stringSimilarity = require('string-similarity');
// const knexConfig = require("./knexfile");
// const knex = require("knex")(knexConfig.development);
const yelpKey = process.env.yelpKey;
const movieKey = process.env.movieKey;
const bookKey = process.env.bookKey;
const walmartKey = process.env.walmartKey;
const walmart = require('walmart')(walmartKey);
const yelp = require('yelp-fusion');
const yelpClient = yelp.client(yelpKey);
function walmartSearch(searchTerm) {
walmart.search(searchTerm)
.then(function(item) {
var walmartArr = []
item.items.forEach(function (i){
walmartArr.push(i.name)
})
console.log(walmartArr);
})
};
// console.log(walmartSearch('harrypotter'));
function yelpSearch(searchTerm) {
yelpClient.search({
term: searchTerm,
location: 'toronto, on'
}).then(response => {
var yelpArr = []
response.jsonBody.businesses.forEach(function (i){
yelpArr.push(i.name)
});
console.log(yelpArr)
}).catch(e => {
console.log(e);
});
}
// console.log(yelpSearch('lighthouse'))
// function query(searchTerm){
// var searchURL = 'http://www.wolframalpha.com/queryrecognizer/query.jsp?appid=DEMO&mode=Default&i='+ searchTerm +'&output=json'
// request(searchURL, function(err, result, body){
// var info = JSON.parse(body);
// console.log(info.query[0].domain);
// console.log(info.query[0].resultsignificance);
// })
// }
// console.log(query("books"));
function bookSearch(searchTerm){
var booksURL = "https://www.googleapis.com/books/v1/volumes?q=" + searchTerm + "&orderBy=relevance&maxResults=10&key=" + bookKey;
request(booksURL, function(err, result, body){
var info = JSON.parse(body);
// console.log(body);
var booksArr = [];
// console.log(r)
for( var i=0; i < info.items.length; i++){
booksArr.push(info.items[i].volumeInfo.title);
}
console.log(booksArr);
})
}
// console.log(bookSearch("harry potter"));
function movieSearch(searchTerm){
var moviesURL = 'https://api.themoviedb.org/3/search/movie?query='+ searchTerm +'&api_key='+ movieKey + '&language=en-US&page=1&include_adult=false'
request(moviesURL, function(err, result, body){
var info = JSON.parse(body);
var moviesArr = []
info.results.forEach(function (i){
moviesArr.push(i.title)
})
console.log(moviesArr);
})
}
// console.log(movieSearch('test'));
function getWeather() {
var temp2 ='';
var url = 'http://api.openweathermap.org/data/2.5/weather?q=toronto&APPID=' +'33880363f19f1dfe20b7149702d5b9d4';
request(url, function (err, result, body){
var data = JSON.parse(body);
var temp = data.weather.main;
temp2 = temp;
console.log(temp2);
})
}
console.log(getWeather());
// weather.then((success)=>{
// console.log(success, 'temp');
// })
// function returnRelevant (searchTerm){
// return new Promise((resolve, reject) => {
// walmartSearch(searchTerm)
// .then(function(response){
// var result = [];
// response.forEach(function (i){
// result.push(i)
// })
// });
// })
// console.log(results);
// }
// function searchResults(searchTerm){
// console.log(searchTerm," is the query")
// var resultsArr = []
// return searchTerm
// }
// var promise1 = walmartSearch("test");
// var promise2 = 42;
// var promise3 = new Promise(function(resolve, reject) {
// setTimeout(resolve, 100, 'foo');
// });
// Promise.all([promise1, promise2, promise3]).then(function(values) {
// console.log(values);
// });
// expected output: Array [3, 42, "foo"]