blob: 3993c4350c02b3cb060cc27f4f42b1b5132ceacf [file] [log] [blame]
Tyler Scott3c17d5f2015-06-23 17:49:29 -06001var catalog = "/catalog/myUniqueName";
Tyler Scotta1ac69d2015-07-02 17:42:03 -06002var config = {
Tyler Scott087aef72015-07-14 14:11:59 -06003 host: "atmos-csu.research-lan.colostate.edu",
Tyler Scott3c17d5f2015-06-23 17:49:29 -06004 port: 9696
Tyler Scotta1ac69d2015-07-02 17:42:03 -06005};
Tyler Scott3c17d5f2015-06-23 17:49:29 -06006
Tyler Scotta1ac69d2015-07-02 17:42:03 -06007//Run when the document loads.
8$(function () {
Tyler Scottbb013562015-07-16 15:52:40 -06009 new Atmos(catalog, config);
Tyler Scott3c17d5f2015-06-23 17:49:29 -060010});
11
Tyler Scott93cae872015-07-21 14:58:23 -060012var Atmos = (function(){
Tyler Scott7d076e22015-07-06 19:21:50 -060013 "use strict";
Tyler Scott93cae872015-07-21 14:58:23 -060014 /**
15 * Atmos
16 * @version 2.0
17 *
18 * Configures an Atmos object. This manages the atmos interface.
19 *
20 * @constructor
21 * @param {string} catalog - NDN path
22 * @param {Object} config - Object of configuration options for a Face.
23 */
24 function Atmos(catalog, config){
Tyler Scott7d076e22015-07-06 19:21:50 -060025
Tyler Scott93cae872015-07-21 14:58:23 -060026 //Internal variables.
27 this.results = [];
Tyler Scotta1530052015-07-24 00:13:28 -060028 this.resultCount = 0;
Tyler Scottc55879f2015-07-28 14:56:37 -060029 this.name = null;
30 this.page = 0;
31 this.lastPage = -1;
32 //this.itemsPerPage = 25; //TODO
Tyler Scotte815d3e2015-07-09 16:56:17 -060033
Tyler Scott93cae872015-07-21 14:58:23 -060034 this.catalog = catalog;
Tyler Scott7d076e22015-07-06 19:21:50 -060035
Tyler Scott93cae872015-07-21 14:58:23 -060036 this.face = new Face(config);
37 this.categories = $('#side-menu');
38 this.resultTable = $('#resultTable');
39 this.filters = $('#filters');
Tyler Scotta1530052015-07-24 00:13:28 -060040 this.searchInput = $('#search');
41 this.searchBar = $('#searchBar');
Tyler Scottc55879f2015-07-28 14:56:37 -060042 this.searchButton = $('#searchButton');
43 this.pagers = $('.pager');
Tyler Scott7d076e22015-07-06 19:21:50 -060044
Tyler Scott93cae872015-07-21 14:58:23 -060045 var scope = this;
Tyler Scott7d076e22015-07-06 19:21:50 -060046
Tyler Scott93cae872015-07-21 14:58:23 -060047 this.resultTable.on('click', '.interest-button', function(){
48 var button = $(this);
Tyler Scott087aef72015-07-14 14:11:59 -060049
Tyler Scott93cae872015-07-21 14:58:23 -060050 if (button.is(':disabled')){
51 console.warn("Attempt to request again!");
Tyler Scott7d076e22015-07-06 19:21:50 -060052 }
Tyler Scott93cae872015-07-21 14:58:23 -060053
54 var name = button.parent().prev().text();
55 var interest = new Interest(new Name('/retrieve' + name));
56 scope.face.expressInterest(interest, function(){}, function(){});
57
58 button.text("Requested!")
59 .removeClass('btn-primary')
60 .addClass('btn-default')
61 .addClass('disabled')
62 .prop('disabled', true);
Tyler Scott7d076e22015-07-06 19:21:50 -060063 });
Tyler Scott7d076e22015-07-06 19:21:50 -060064
Tyler Scotta1530052015-07-24 00:13:28 -060065 //Filter setup
Tyler Scott93cae872015-07-21 14:58:23 -060066 $.getJSON("search_catagories.json").done(function (data) {
67 $.each(data, function (pageSection, contents) {
68 if (pageSection == "SearchCatagories") {
Tyler Scotta1530052015-07-24 00:13:28 -060069 $.each(contents, function (category, searchOptions) {
70 //Create the category
71 var e = $('<li><a href="#">' + category.replace(/\_/g, " ") + '</a><ul class="subnav nav nav-pills nav-stacked"></ul></li>');
Tyler Scott7d076e22015-07-06 19:21:50 -060072
Tyler Scott93cae872015-07-21 14:58:23 -060073 var sub = e.find('ul.subnav');
74 $.each(searchOptions, function(index, name){
Tyler Scotta1530052015-07-24 00:13:28 -060075 //Create the filter list inside the category
Tyler Scott93cae872015-07-21 14:58:23 -060076 var item = $('<li><a href="#">' + name + '</a></li>');
77 sub.append(item);
Tyler Scotta1530052015-07-24 00:13:28 -060078 item.click(function(){ //Click on the side menu filters
79 if (item.hasClass('active')){ //Does the filter already exist?
80 item.removeClass('active');
81 scope.filters.find(':contains(' + category + ':' + name + ')').remove();
82 } else { //Add a filter
83 item.addClass('active');
84 var filter = $('<span class="label label-default"></span>');
85 filter.text(category + ':' + name);
86
87 scope.filters.append(filter);
88
89 filter.click(function(){ //Click on a filter
90 filter.remove();
91 item.removeClass('active');
92 });
93 }
94
Tyler Scott93cae872015-07-21 14:58:23 -060095 });
96 });
Tyler Scott7d076e22015-07-06 19:21:50 -060097
Tyler Scott93cae872015-07-21 14:58:23 -060098 //Toggle the menus. (Only respond when the immediate tab is clicked.)
99 e.find('> a').click(function(){
100 scope.categories.find('.subnav').slideUp();
101 var t = $(this).siblings('.subnav');
Tyler Scotta1530052015-07-24 00:13:28 -0600102 if ( !t.is(':visible') ){ //If the sub menu is not visible
103 t.slideDown(function(){
104 t.triggerHandler('focus');
105 }); //Make it visible and look at it.
Tyler Scott93cae872015-07-21 14:58:23 -0600106 }
107 });
Tyler Scott7d076e22015-07-06 19:21:50 -0600108
Tyler Scott93cae872015-07-21 14:58:23 -0600109 scope.categories.append(e);
Tyler Scotta1530052015-07-24 00:13:28 -0600110
Tyler Scott93cae872015-07-21 14:58:23 -0600111 });
112 }
113 });
114 });
115
Tyler Scottc55879f2015-07-28 14:56:37 -0600116 this.searchInput.autoComplete(function(field, callback){
117 scope.autoComplete(field, callback);
118 });
119
Tyler Scotta1530052015-07-24 00:13:28 -0600120 this.searchBar.submit(function(e){
Tyler Scott93cae872015-07-21 14:58:23 -0600121 e.preventDefault();
Tyler Scottc55879f2015-07-28 14:56:37 -0600122 scope.searchInput.trigger('autoComplete');
123 });
124
125 this.searchButton.click(function(){
126 console.log("Search Button Pressed");
Tyler Scotta1530052015-07-24 00:13:28 -0600127 scope.search();
128 });
129
Tyler Scottc55879f2015-07-28 14:56:37 -0600130 this.pagers.find('.next').click(function(){
131 if (!$(this).hasClass('disabled')){
132 scope.getResults(scope.page + 1);
133 }
134 });
135 this.pagers.find('.previous').click(function(){
136 if (!$(this).hasClass('disabled')){
137 scope.getResults(scope.page - 1);
138 }
Tyler Scotta1530052015-07-24 00:13:28 -0600139 });
140
141 }
142
143 Atmos.prototype.search = function(){
Tyler Scotta1530052015-07-24 00:13:28 -0600144
Tyler Scottc55879f2015-07-28 14:56:37 -0600145 var filters = this.getFilters();
Tyler Scotta1530052015-07-24 00:13:28 -0600146
147 console.log("Search started!", this.searchInput.val(), filters);
148
149 console.log("Initiating query");
150
Tyler Scottc55879f2015-07-28 14:56:37 -0600151 this.results = []; //Drop any old results.
152 this.resultTable.empty();
153
Tyler Scottd90f84e2015-07-27 12:43:04 -0600154 var scope = this;
155
Tyler Scotta1530052015-07-24 00:13:28 -0600156 this.query(this.catalog, filters,
157 function(interest, data){ //Response function
158 console.log("Query Response:", interest, data);
159
Tyler Scottd90f84e2015-07-27 12:43:04 -0600160 var parameters = JSON.stringify(filters);
161
162 var ack = data.getName();
163
Tyler Scottb6e329f2015-07-28 16:08:33 -0600164 scope.name = new Name(scope.catalog).append("query-results").append(parameters).append(ack.get(-3)).append(ack.get(-2));
Tyler Scottd90f84e2015-07-27 12:43:04 -0600165
Tyler Scottc55879f2015-07-28 14:56:37 -0600166 scope.getResults(0);
Tyler Scotta1530052015-07-24 00:13:28 -0600167
168 }, function(interest){ //Timeout function
Tyler Scottb6e329f2015-07-28 16:08:33 -0600169 console.warn("Request failed! Timeout");
Tyler Scotta1530052015-07-24 00:13:28 -0600170 });
171
172 }
173
174 Atmos.prototype.autoComplete = function(field, callback){
175 console.log("Autocomplete triggered");
176
Tyler Scottc55879f2015-07-28 14:56:37 -0600177 if (this.searchInput.val().length === 0 && !filters.hasOwnProperty()){
178 if (!this.searchBar.hasClass('has-error')){
179 this.searchBar.addClass('has-error').append('<span class="help-block">A filter or search value is required!</span>');
180 }
181 return;
182 } else {
183 this.searchBar.removeClass('has-error').find('.help-block').fadeOut(function(){$(this).remove()});
184 }
185
Tyler Scotta1530052015-07-24 00:13:28 -0600186 var filters = this.getFilters();
187
188 filters["?"] = this.searchInput.val();
189
Tyler Scottb6e329f2015-07-28 16:08:33 -0600190 var scope = this;
191
Tyler Scotta1530052015-07-24 00:13:28 -0600192 this.query(this.catalog, filters,
193 function(interest, data){
Tyler Scottb6e329f2015-07-28 16:08:33 -0600194
195 var ack = data.getName();
196
197 var name = new Name(scope.catalog).append('query-results').append(JSON.stringify(filters)).append(ack.get(-3)).append(ack.get(-2));
198
199 console.log(name.toUri(), filters);
200
201 scope.face.expressInterest(new Interest(name).setInterestLifetimeMilliseconds(5000),
202 function(interest, data){
203 console.log("Autocomplete query return: ", data.getContent().toString());
Tyler Scottfe8e4932015-07-28 17:45:45 -0600204
205 if (data.getContent().length !== 0){
206 var options = JSON.parse(data.getContent().toString().replace(/[\n\0]/g, "")).next.map(function(element){
207 return field + element;
208 });
209 callback(options);
210 }
211
Tyler Scottb6e329f2015-07-28 16:08:33 -0600212 }, function(interest){
213 console.warn("Interest timed out!", interest);
214 });
215
Tyler Scotta1530052015-07-24 00:13:28 -0600216 }, function(interest){
Tyler Scottb6e329f2015-07-28 16:08:33 -0600217 console.error("Request failed! Timeout", interest);
Tyler Scotta1530052015-07-24 00:13:28 -0600218 });
Tyler Scott93cae872015-07-21 14:58:23 -0600219
Tyler Scott424ee102015-07-14 16:50:41 -0600220 }
221
Tyler Scottc55879f2015-07-28 14:56:37 -0600222 Atmos.prototype.showResults = function(resultIndex) {
Tyler Scott7d076e22015-07-06 19:21:50 -0600223
Tyler Scottc55879f2015-07-28 14:56:37 -0600224 var results = $('<tr><td>' + this.results[resultIndex].join('</td><td><button class="interest-button btn btn-primary btn-sm">Retrieve</button></td></tr><tr><td>') +
225 '</td><td><button class="interest-button btn btn-primary btn-sm">Retrieve</button></td></tr>'); //Fastest way to generate the table.
Tyler Scott7d076e22015-07-06 19:21:50 -0600226
Tyler Scottc55879f2015-07-28 14:56:37 -0600227 this.resultTable.empty().append(results);
Tyler Scott7d076e22015-07-06 19:21:50 -0600228
Tyler Scottb6e329f2015-07-28 16:08:33 -0600229 this.pagers.find('.totalResults').text('(Page' + (resultIndex + 1) + ') Showing ' + this.results[resultIndex].length + ' of ' + this.resultCount + ' results');
Tyler Scott7d076e22015-07-06 19:21:50 -0600230
Tyler Scottc55879f2015-07-28 14:56:37 -0600231 if (resultIndex === this.lastPage) {
232 this.pagers.find('.next').addClass('disabled');
233 }
Tyler Scott93cae872015-07-21 14:58:23 -0600234
Tyler Scottc55879f2015-07-28 14:56:37 -0600235 if (resultIndex === 0){
236 this.pagers.find('.next').removeClass('disabled');
237 this.pagers.find('.previous').addClass('disabled');
238 } else if (resultIndex === 1) {
239 this.pagers.find('.previous').removeClass('disabled');
240 }
Tyler Scott93cae872015-07-21 14:58:23 -0600241
Tyler Scottc55879f2015-07-28 14:56:37 -0600242 }
Tyler Scott93cae872015-07-21 14:58:23 -0600243
Tyler Scottc55879f2015-07-28 14:56:37 -0600244 Atmos.prototype.getResults = function(index){
Tyler Scott93cae872015-07-21 14:58:23 -0600245
Tyler Scottc55879f2015-07-28 14:56:37 -0600246 if (this.results[index]){
247 //console.log("We already have index", index);
248 this.page = index;
249 this.showResults(index);
250 return;
251 }
Tyler Scott7d076e22015-07-06 19:21:50 -0600252
Tyler Scottc55879f2015-07-28 14:56:37 -0600253 if (this.name === null) {
254 console.error("This shouldn't be reached! We are getting results before a search has occured!");
255 throw new Error("Illegal State");
256 }
Tyler Scott424ee102015-07-14 16:50:41 -0600257
Tyler Scottc55879f2015-07-28 14:56:37 -0600258 var first = new Name(this.name).appendSegment(index);
259
Tyler Scottb6e329f2015-07-28 16:08:33 -0600260 console.log("Requesting data index: (", index, ") at ", first.toUri());
Tyler Scottc55879f2015-07-28 14:56:37 -0600261
262 var scope = this;
263
264 this.face.expressInterest(new Interest(first).setInterestLifetimeMilliseconds(5000),
265 function(interest, data){ //Response
266
267 if (data.getContent().length === 0){
268 console.log("Empty response.");
269 return;
270 }
271
272 if (data.getName().get(-1).equals(data.getMetaInfo().getFinalBlockId())) { //Final page.
273 scope.lastPage = index;
274 //The next buttons will be disabled by showResults.
275 }
276
277 var content = JSON.parse(data.getContent().toString().replace(/[\n\0]/g,""));
278
279 var results = scope.results[index] = content.results;
280
281 scope.resultCount = content.resultCount;
282
283 scope.pagers.find('.totalResults').text(scope.resultCount + " Results");
284
285 //console.log("Got results:", results);
286
287 scope.page = index;
288
289 if (!results){
290 console.log("No results were found!");
291 return;
292 }
293
294 scope.showResults(index);
295
296 },
297 function(interest){ //Timeout
298 console.error("Failed to retrieve results: timeout");
299 }
300 );
301
302 }
Tyler Scott7d076e22015-07-06 19:21:50 -0600303
Tyler Scotta1530052015-07-24 00:13:28 -0600304 Atmos.prototype.query = function(prefix, parameters, callback, timeout) {
Tyler Scott7d076e22015-07-06 19:21:50 -0600305
Tyler Scott93cae872015-07-21 14:58:23 -0600306 var queryPrefix = new Name(prefix);
307 queryPrefix.append("query");
Tyler Scott7d076e22015-07-06 19:21:50 -0600308
Tyler Scott93cae872015-07-21 14:58:23 -0600309 var jsonString = JSON.stringify(parameters);
310 queryPrefix.append(jsonString);
Tyler Scott7d076e22015-07-06 19:21:50 -0600311
Tyler Scott93cae872015-07-21 14:58:23 -0600312 var queryInterest = new Interest(queryPrefix);
Tyler Scotta1530052015-07-24 00:13:28 -0600313 queryInterest.setInterestLifetimeMilliseconds(4000);
Tyler Scott7d076e22015-07-06 19:21:50 -0600314
Tyler Scotta1530052015-07-24 00:13:28 -0600315 this.face.expressInterest(queryInterest, callback, timeout);
Tyler Scott93cae872015-07-21 14:58:23 -0600316
Tyler Scott93cae872015-07-21 14:58:23 -0600317 }
318
Tyler Scott93cae872015-07-21 14:58:23 -0600319 /**
Tyler Scotta1530052015-07-24 00:13:28 -0600320 * This function returns a map of all the categories active filters.
321 * @return {Object<string, string>}
Tyler Scott93cae872015-07-21 14:58:23 -0600322 */
Tyler Scotta1530052015-07-24 00:13:28 -0600323 Atmos.prototype.getFilters = function(){
Tyler Scott93cae872015-07-21 14:58:23 -0600324 var filters = this.filters.children().toArray().reduce(function(prev, current){
Tyler Scott575c61b2015-07-13 13:42:16 -0600325 var data = $(current).text().split(/:/);
326 prev[data[0]] = data[1];
327 return prev;
Tyler Scotta1530052015-07-24 00:13:28 -0600328 }, {}); //Collect a map<category, filter>.
329 //TODO Make the return value map<category, Array<filter>>
330 return filters;
Tyler Scott93cae872015-07-21 14:58:23 -0600331 }
332
333 return Atmos;
334
335})();
336
337