This repository was archived by the owner on Sep 16, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.js
More file actions
268 lines (238 loc) · 9.26 KB
/
main.js
File metadata and controls
268 lines (238 loc) · 9.26 KB
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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
/*All of the modules required*/
var firebase = require('firebase');
var request = require('request');
var cheerio = require('cheerio');
var URL = require('url-parse');
/*All of the global variables*/
var database;
var sitesRef;
var sitesToVisitRef;
var relativeLinks;
var siteNumber;
var maxNumber;
var sitesToVisitRefPath;
/*The config function*/
exports.config = function(config) {
firebase.initializeApp(config);
database = firebase.database();
};
/*The pathSet function*/
exports.pathSet = function(sites, sitesToVisit) {
sitesRef = firebase.database().ref(sites);
sitesToVisitRef = firebase.database().ref(sitesToVisit);
sitesToVisitRefPath = sitesToVisit;
};
/*The databaseTest function*/
exports.databaseTest = function() {
var randomTestRefValue;
if (database !== null) { /*if the database works*/
firebase.database().ref('randomTestRef').set({
value: 1
});
console.log("initial database set");
firebase.database().ref('randomTestRef').once('value').then(function(snapshot) {
randomTestRefValue = snapshot.val().value;
randomTestRefValue = randomTestRefValue + 1;
console.log("set appears to have worked");
firebase.database().ref('randomTestRef').set({
value: randomTestRefValue
});
console.log("second success");
firebase.database().ref('randomTestRef').once('value').then(function(snapshot) {
if (snapshot.val().value === 2) {
console.log("all set!");
} else {
console.log("There's a problem");
}
});
});
} else { /*otherwise throw error*/
console.log("Database not working");
}
}; /*End of exports.databaseTest*/
/*Function siteContained*/
exports.siteContained = function(url, baseOnly) {
var inputUrl = new URL(url);
var inputUrlHostname = inputUrl.hostname;
var inputUrlHostnameKey = inputUrlHostname.replace(/\./g, '-');
var inputUrlPath = inputUrl.pathname;
var inputUrlPathKey = inputUrlPath.replace(/\/|\./g, '-');
sitesRef.once("value")
.then(function(snapshot) {
if (baseOnly) {
if (snapshot.child(inputUrlHostnameKey).exists()) {
console.log("baseUrlContained");
return true;
} else {
return false;
}
} else { /*if not baseOnly*/
if (snapshot.child(inputUrlHostnameKey + "/pages/" + inputUrlPathKey).exists()) {
console.log("regUrlContained");
return true;
} else {
return false;
}
}
});
};
/*Function siteToVisitContained*/
exports.siteToVisitContained = function(url, baseOnly) {
var inputUrl = new URL(url);
var inputUrlHostname = inputUrl.hostname;
var inputUrlHostnameKey = inputUrlHostname.replace(/\./g, '-');
var inputUrlPath = inputUrl.pathname;
var inputUrlPathKey = inputUrlPath.replace(/\/|\./g, '-');
sitesToVisitRef.once("value")
.then(function(snapshot) {
if (baseOnly) {
if (snapshot.child(inputUrlHostnameKey).exists()) {
console.log("baseUrlContained");
return true;
} else {
return false;
}
} else { /*if not baseOnly*/
if (snapshot.child(inputUrlHostnameKey + "/" + inputUrlPathKey).exists()) {
console.log("regUrlContained");
return true;
} else {
return false;
}
}
});
};
/*queueSiteIfNotContained function*/
exports.queueSiteIfNotContained = function(url, baseOnly) {
console.log("queueing site...");
var inputUrl = new URL(url);
var inputUrlHostname = inputUrl.hostname;
var inputUrlHostnameKey = inputUrlHostname.replace(/\./g, '-');
var inputUrlPath = inputUrl.pathname;
var inputUrlPathKey = inputUrlPath.replace(/\/|\./g, '-');
if (!exports.siteToVisitContained(url, baseOnly)) {
if (!exports.siteContained(url, baseOnly)) {
sitesToVisitRef.child(inputUrlHostnameKey + "/" + inputUrlPathKey).set({
url: url
});
}
}
};
/*Queue Internal Links Function*/
exports.collectInternalLinks = function($, baseOnly, baseUrl) {
var relativeLinks = $("a[href^='/']");
if (!baseOnly) {
if(relativeLinksTrue) {
relativeLinks.each(function() {
var href = $(this).attr('href');
exports.queueSiteIfNotContained(baseUrl + href);
});
}
}
var absoluteLinks = $("a[href^='http']");
absoluteLinks.each(function() {
var href = $(this).attr('href');
exports.queueSiteIfNotContained(href);
});
}; /*End of Queue Internal Links Function*/
/*Get Site Function*/
exports.getSite = function(url, baseOnly) {
console.log("getting site");
console.log("url: " + url);
var inputUrl = new URL(url);
var inputUrlHostname = inputUrl.hostname;
var inputUrlHostnameKey = inputUrlHostname.replace(/\./g, '-');
var inputUrlPath = inputUrl.pathname;
var inputUrlPathKey = inputUrlPath.replace(/\/|\./g, '-');
var baseUrl = inputUrl.protocol + "//" + inputUrl.hostname;
request(url, function(error, response, body) {
console.log('error:', error); // Print the error if one occurred
console.log('statusCode:', response && response.statusCode); // Print the response status code if a response was received
/*console.log('body:', body); // Print the HTML for the Google homepage. ONLY FOR TESTING*/
var $ = cheerio.load(body);
var title = $('title').text();
var description = $('meta[name="description"]').attr('content');
sitesRef.child(inputUrlHostnameKey + "/pages/" + inputUrlPathKey).set({
title: title
}).then(function() {
/*Add description later*/
exports.collectInternalLinks($, baseOnly, baseUrl);
}).then(function (){
console.log("then worked!");
console.log("siteNumber: " + siteNumber);
console.log("maxNumber: " + maxNumber);
if (siteNumber < maxNumber) {
siteNumber +=1;
exports.getNextSite(baseOnly);
}
});
}); /*End of request function*/
}; /*end of getSite*/
/*getNextSite function*/
exports.getNextSite = function(baseOnly) {
var firstKey;
var secondKey;
var maybeNextUrl;
var nextUrl;
var removePathRef;
sitesToVisitRef.limitToFirst(1).once('value').then(function(snapshot) {
for (var key in snapshot.val()) {
console.log("snapshot key" + key);
console.log("snapshot.val.url = " + snapshot.val()[key].url);
console.log("snapshot.val" + snapshot.val()[key]);
firstKey = key;
console.log("first key: " + firstKey);
maybeNextUrl = snapshot.val()[key].url;
console.log("maybe next url: " + maybeNextUrl);
}
}).then(function() {
sitesToVisitRef.child(firstKey).once('value').then(function(snapshot) {
if (maybeNextUrl !== undefined) {
nextUrl = maybeNextUrl;
} else {
if (snapshot.hasChildren()) {
console.log("snapshot has children");
for (var key in snapshot.val()) {
console.log("second key" + key);
secondKey = key;
console.log("second key" + secondKey);
console.log("snapshot.val.url = " + snapshot.val()[key].url);
console.log("snapshot.val" + snapshot.val()[key]);
nextUrl = snapshot.val()[key].url;
console.log("next url: " + nextUrl);
}
}
}
}).then(function() {
if (secondKey !== undefined) {
removePathRef = firebase.database().ref(sitesToVisitRefPath + "/" + firstKey + "/" + secondKey);
console.log("first removePathRef: " + removePathRef);
} else {
console.log("second key undefined");
removePathRef = firebase.database().ref(sitesToVisitRefPath + "/" + firstKey + "/url");
console.log("first removePathRef: " + removePathRef);
}
}).then(function() {
removePathRef.remove().then(function() {
console.log("removePathRef: " + removePathRef);
console.log("child should be removed");
}).then(function() {
console.log("child is removed");
console.log("final nextUrl: " + nextUrl);
exports.getSite(nextUrl);
});
});
});
};
/*Main Spider Function*/
exports.spider = function(startUrl, baseOnly, relativeLinksTrueParam, maxNumberParam) {
siteNumber = 0;
maxNumber = maxNumberParam;
if (relativeLinksTrueParam === true ||relativeLinksTrueParam === false) {
relativeLinksTrue = relativeLinks;
} else {
relativeLinksTrue = false;
}
exports.queueSiteIfNotContained(startUrl, baseOnly);
exports.getNextSite(baseOnly);
};