blob: 691f8edd432922cac4cb129bf766f5290e2756fd [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
Tyler Scott4d951222015-07-31 14:38:27 -060017 *
Tyler Scott93cae872015-07-21 14:58:23 -060018 * Configures an Atmos object. This manages the atmos interface.
Tyler Scott4d951222015-07-31 14:38:27 -060019 *
20 * @constructor
Tyler Scott93cae872015-07-21 14:58:23 -060021 * @param {string} catalog - NDN path
Tyler Scott4d951222015-07-31 14:38:27 -060022 * @param {Object} config - Object of configuration options for a Face.
Tyler Scott93cae872015-07-21 14:58:23 -060023 */
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 Scott4d951222015-07-31 14:38:27 -060044 this.alerts = $('#alerts');
Tyler Scott7d076e22015-07-06 19:21:50 -060045
Tyler Scott93cae872015-07-21 14:58:23 -060046 var scope = this;
Tyler Scott7d076e22015-07-06 19:21:50 -060047
Tyler Scott93cae872015-07-21 14:58:23 -060048 this.resultTable.on('click', '.interest-button', function(){
49 var button = $(this);
Tyler Scott087aef72015-07-14 14:11:59 -060050
Tyler Scott93cae872015-07-21 14:58:23 -060051 if (button.is(':disabled')){
52 console.warn("Attempt to request again!");
Tyler Scott7d076e22015-07-06 19:21:50 -060053 }
Tyler Scott93cae872015-07-21 14:58:23 -060054
55 var name = button.parent().prev().text();
56 var interest = new Interest(new Name('/retrieve' + name));
57 scope.face.expressInterest(interest, function(){}, function(){});
58
59 button.text("Requested!")
60 .removeClass('btn-primary')
61 .addClass('btn-default')
62 .addClass('disabled')
63 .prop('disabled', true);
Tyler Scott7d076e22015-07-06 19:21:50 -060064 });
Tyler Scott7d076e22015-07-06 19:21:50 -060065
Tyler Scotta1530052015-07-24 00:13:28 -060066 //Filter setup
Tyler Scott93cae872015-07-21 14:58:23 -060067 $.getJSON("search_catagories.json").done(function (data) {
68 $.each(data, function (pageSection, contents) {
69 if (pageSection == "SearchCatagories") {
Tyler Scotta1530052015-07-24 00:13:28 -060070 $.each(contents, function (category, searchOptions) {
71 //Create the category
72 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 -060073
Tyler Scott93cae872015-07-21 14:58:23 -060074 var sub = e.find('ul.subnav');
75 $.each(searchOptions, function(index, name){
Tyler Scotta1530052015-07-24 00:13:28 -060076 //Create the filter list inside the category
Tyler Scott93cae872015-07-21 14:58:23 -060077 var item = $('<li><a href="#">' + name + '</a></li>');
78 sub.append(item);
Tyler Scotta1530052015-07-24 00:13:28 -060079 item.click(function(){ //Click on the side menu filters
80 if (item.hasClass('active')){ //Does the filter already exist?
81 item.removeClass('active');
82 scope.filters.find(':contains(' + category + ':' + name + ')').remove();
83 } else { //Add a filter
84 item.addClass('active');
85 var filter = $('<span class="label label-default"></span>');
86 filter.text(category + ':' + name);
87
88 scope.filters.append(filter);
89
90 filter.click(function(){ //Click on a filter
91 filter.remove();
92 item.removeClass('active');
93 });
94 }
Tyler Scott4d951222015-07-31 14:38:27 -060095
Tyler Scott93cae872015-07-21 14:58:23 -060096 });
97 });
Tyler Scott7d076e22015-07-06 19:21:50 -060098
Tyler Scott93cae872015-07-21 14:58:23 -060099 //Toggle the menus. (Only respond when the immediate tab is clicked.)
100 e.find('> a').click(function(){
101 scope.categories.find('.subnav').slideUp();
102 var t = $(this).siblings('.subnav');
Tyler Scotta1530052015-07-24 00:13:28 -0600103 if ( !t.is(':visible') ){ //If the sub menu is not visible
104 t.slideDown(function(){
105 t.triggerHandler('focus');
106 }); //Make it visible and look at it.
Tyler Scott93cae872015-07-21 14:58:23 -0600107 }
108 });
Tyler Scott7d076e22015-07-06 19:21:50 -0600109
Tyler Scott93cae872015-07-21 14:58:23 -0600110 scope.categories.append(e);
Tyler Scotta1530052015-07-24 00:13:28 -0600111
Tyler Scott93cae872015-07-21 14:58:23 -0600112 });
113 }
114 });
115 });
116
Tyler Scottc55879f2015-07-28 14:56:37 -0600117 this.searchInput.autoComplete(function(field, callback){
118 scope.autoComplete(field, callback);
119 });
120
Tyler Scotta1530052015-07-24 00:13:28 -0600121 this.searchBar.submit(function(e){
Tyler Scott93cae872015-07-21 14:58:23 -0600122 e.preventDefault();
Tyler Scott4d951222015-07-31 14:38:27 -0600123 console.warn("This feature is incomplete.");
Tyler Scottc55879f2015-07-28 14:56:37 -0600124 });
125
126 this.searchButton.click(function(){
127 console.log("Search Button Pressed");
Tyler Scotta1530052015-07-24 00:13:28 -0600128 scope.search();
129 });
130
Tyler Scottc55879f2015-07-28 14:56:37 -0600131 this.pagers.find('.next').click(function(){
132 if (!$(this).hasClass('disabled')){
133 scope.getResults(scope.page + 1);
134 }
135 });
136 this.pagers.find('.previous').click(function(){
137 if (!$(this).hasClass('disabled')){
138 scope.getResults(scope.page - 1);
139 }
Tyler Scotta1530052015-07-24 00:13:28 -0600140 });
141
142 }
143
144 Atmos.prototype.search = function(){
Tyler Scotta1530052015-07-24 00:13:28 -0600145
Tyler Scottc55879f2015-07-28 14:56:37 -0600146 var filters = this.getFilters();
Tyler Scotta1530052015-07-24 00:13:28 -0600147
148 console.log("Search started!", this.searchInput.val(), filters);
149
Tyler Scott4d951222015-07-31 14:38:27 -0600150 console.log("Initiating query");
Tyler Scotta1530052015-07-24 00:13:28 -0600151
Tyler Scottc55879f2015-07-28 14:56:37 -0600152 this.results = []; //Drop any old results.
153 this.resultTable.empty();
154
Tyler Scottd90f84e2015-07-27 12:43:04 -0600155 var scope = this;
156
Tyler Scott4d951222015-07-31 14:38:27 -0600157 this.query(this.catalog, filters,
Tyler Scotta1530052015-07-24 00:13:28 -0600158 function(interest, data){ //Response function
159 console.log("Query Response:", interest, data);
160
Tyler Scottd90f84e2015-07-27 12:43:04 -0600161 var parameters = JSON.stringify(filters);
162
163 var ack = data.getName();
164
Tyler Scottb6e329f2015-07-28 16:08:33 -0600165 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 -0600166
Tyler Scottc55879f2015-07-28 14:56:37 -0600167 scope.getResults(0);
Tyler Scotta1530052015-07-24 00:13:28 -0600168
169 }, function(interest){ //Timeout function
Tyler Scottb6e329f2015-07-28 16:08:33 -0600170 console.warn("Request failed! Timeout");
Tyler Scott4d951222015-07-31 14:38:27 -0600171 scope.createAlert("Request timed out. \"" + interest.getName().toUri() + "\" See console for details.");
Tyler Scotta1530052015-07-24 00:13:28 -0600172 });
173
174 }
175
176 Atmos.prototype.autoComplete = function(field, callback){
Tyler Scotta1530052015-07-24 00:13:28 -0600177
Tyler Scottc55879f2015-07-28 14:56:37 -0600178 if (this.searchInput.val().length === 0 && !filters.hasOwnProperty()){
179 if (!this.searchBar.hasClass('has-error')){
180 this.searchBar.addClass('has-error').append('<span class="help-block">A filter or search value is required!</span>');
181 }
182 return;
183 } else {
184 this.searchBar.removeClass('has-error').find('.help-block').fadeOut(function(){$(this).remove()});
185 }
186
Tyler Scottb6e329f2015-07-28 16:08:33 -0600187 var scope = this;
188
Tyler Scott4d951222015-07-31 14:38:27 -0600189 this.query(this.catalog, {"?": field},
Tyler Scotta1530052015-07-24 00:13:28 -0600190 function(interest, data){
Tyler Scottb6e329f2015-07-28 16:08:33 -0600191
192 var ack = data.getName();
193
Tyler Scott9eb6abd2015-08-04 14:48:23 -0600194 var name = new Name(scope.catalog).append('query-results').append(JSON.stringify({"?": field})).append(ack.get(-3)).append(ack.get(-2));
Tyler Scottb6e329f2015-07-28 16:08:33 -0600195
196 scope.face.expressInterest(new Interest(name).setInterestLifetimeMilliseconds(5000),
197 function(interest, data){
Tyler Scott4d951222015-07-31 14:38:27 -0600198
Tyler Scottfe8e4932015-07-28 17:45:45 -0600199 if (data.getContent().length !== 0){
200 var options = JSON.parse(data.getContent().toString().replace(/[\n\0]/g, "")).next.map(function(element){
201 return field + element;
202 });
203 callback(options);
204 }
205
Tyler Scottb6e329f2015-07-28 16:08:33 -0600206 }, function(interest){
207 console.warn("Interest timed out!", interest);
Tyler Scott4d951222015-07-31 14:38:27 -0600208 scope.createAlert("Request timed out. \"" + interest.getName().toUri() + "\" See console for details.");
Tyler Scottb6e329f2015-07-28 16:08:33 -0600209 });
210
Tyler Scotta1530052015-07-24 00:13:28 -0600211 }, function(interest){
Tyler Scottb6e329f2015-07-28 16:08:33 -0600212 console.error("Request failed! Timeout", interest);
Tyler Scott4d951222015-07-31 14:38:27 -0600213 scope.createAlert("Request timed out. \"" + interest.getName().toUri() + "\" See console for details.");
Tyler Scotta1530052015-07-24 00:13:28 -0600214 });
Tyler Scott93cae872015-07-21 14:58:23 -0600215
Tyler Scott424ee102015-07-14 16:50:41 -0600216 }
217
Tyler Scottc55879f2015-07-28 14:56:37 -0600218 Atmos.prototype.showResults = function(resultIndex) {
Tyler Scott7d076e22015-07-06 19:21:50 -0600219
Tyler Scottc55879f2015-07-28 14:56:37 -0600220 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>') +
221 '</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 -0600222
Tyler Scottc55879f2015-07-28 14:56:37 -0600223 this.resultTable.empty().append(results);
Tyler Scott7d076e22015-07-06 19:21:50 -0600224
Tyler Scottb6e329f2015-07-28 16:08:33 -0600225 this.pagers.find('.totalResults').text('(Page' + (resultIndex + 1) + ') Showing ' + this.results[resultIndex].length + ' of ' + this.resultCount + ' results');
Tyler Scott7d076e22015-07-06 19:21:50 -0600226
Tyler Scottc55879f2015-07-28 14:56:37 -0600227 if (resultIndex === this.lastPage) {
228 this.pagers.find('.next').addClass('disabled');
229 }
Tyler Scott93cae872015-07-21 14:58:23 -0600230
Tyler Scottc55879f2015-07-28 14:56:37 -0600231 if (resultIndex === 0){
232 this.pagers.find('.next').removeClass('disabled');
233 this.pagers.find('.previous').addClass('disabled');
234 } else if (resultIndex === 1) {
235 this.pagers.find('.previous').removeClass('disabled');
236 }
Tyler Scott93cae872015-07-21 14:58:23 -0600237
Tyler Scottc55879f2015-07-28 14:56:37 -0600238 }
Tyler Scott93cae872015-07-21 14:58:23 -0600239
Tyler Scottc55879f2015-07-28 14:56:37 -0600240 Atmos.prototype.getResults = function(index){
Tyler Scott93cae872015-07-21 14:58:23 -0600241
Tyler Scottc55879f2015-07-28 14:56:37 -0600242 if (this.results[index]){
243 //console.log("We already have index", index);
244 this.page = index;
245 this.showResults(index);
246 return;
247 }
Tyler Scott7d076e22015-07-06 19:21:50 -0600248
Tyler Scottc55879f2015-07-28 14:56:37 -0600249 if (this.name === null) {
250 console.error("This shouldn't be reached! We are getting results before a search has occured!");
251 throw new Error("Illegal State");
252 }
Tyler Scott424ee102015-07-14 16:50:41 -0600253
Tyler Scottc55879f2015-07-28 14:56:37 -0600254 var first = new Name(this.name).appendSegment(index);
255
Tyler Scottb6e329f2015-07-28 16:08:33 -0600256 console.log("Requesting data index: (", index, ") at ", first.toUri());
Tyler Scottc55879f2015-07-28 14:56:37 -0600257
258 var scope = this;
259
260 this.face.expressInterest(new Interest(first).setInterestLifetimeMilliseconds(5000),
261 function(interest, data){ //Response
262
263 if (data.getContent().length === 0){
264 console.log("Empty response.");
265 return;
266 }
267
268 if (data.getName().get(-1).equals(data.getMetaInfo().getFinalBlockId())) { //Final page.
269 scope.lastPage = index;
270 //The next buttons will be disabled by showResults.
271 }
272
273 var content = JSON.parse(data.getContent().toString().replace(/[\n\0]/g,""));
274
275 var results = scope.results[index] = content.results;
276
277 scope.resultCount = content.resultCount;
278
279 scope.pagers.find('.totalResults').text(scope.resultCount + " Results");
280
281 //console.log("Got results:", results);
282
283 scope.page = index;
284
285 if (!results){
286 console.log("No results were found!");
287 return;
288 }
289
290 scope.showResults(index);
291
292 },
293 function(interest){ //Timeout
Tyler Scott4d951222015-07-31 14:38:27 -0600294 console.error("Failed to retrieve results: timeout", interest);
295 scope.createAlert("Request timed out. \"" + interest.getName().toUri() + "\" See console for details.");
Tyler Scottc55879f2015-07-28 14:56:37 -0600296 }
297 );
298
299 }
Tyler Scott7d076e22015-07-06 19:21:50 -0600300
Tyler Scotta1530052015-07-24 00:13:28 -0600301 Atmos.prototype.query = function(prefix, parameters, callback, timeout) {
Tyler Scott7d076e22015-07-06 19:21:50 -0600302
Tyler Scott93cae872015-07-21 14:58:23 -0600303 var queryPrefix = new Name(prefix);
304 queryPrefix.append("query");
Tyler Scott7d076e22015-07-06 19:21:50 -0600305
Tyler Scott93cae872015-07-21 14:58:23 -0600306 var jsonString = JSON.stringify(parameters);
307 queryPrefix.append(jsonString);
Tyler Scott7d076e22015-07-06 19:21:50 -0600308
Tyler Scott93cae872015-07-21 14:58:23 -0600309 var queryInterest = new Interest(queryPrefix);
Tyler Scotta1530052015-07-24 00:13:28 -0600310 queryInterest.setInterestLifetimeMilliseconds(4000);
Tyler Scott7d076e22015-07-06 19:21:50 -0600311
Tyler Scotta1530052015-07-24 00:13:28 -0600312 this.face.expressInterest(queryInterest, callback, timeout);
Tyler Scott93cae872015-07-21 14:58:23 -0600313
Tyler Scott93cae872015-07-21 14:58:23 -0600314 }
315
Tyler Scott93cae872015-07-21 14:58:23 -0600316 /**
Tyler Scotta1530052015-07-24 00:13:28 -0600317 * This function returns a map of all the categories active filters.
318 * @return {Object<string, string>}
Tyler Scott93cae872015-07-21 14:58:23 -0600319 */
Tyler Scotta1530052015-07-24 00:13:28 -0600320 Atmos.prototype.getFilters = function(){
Tyler Scott93cae872015-07-21 14:58:23 -0600321 var filters = this.filters.children().toArray().reduce(function(prev, current){
Tyler Scott575c61b2015-07-13 13:42:16 -0600322 var data = $(current).text().split(/:/);
323 prev[data[0]] = data[1];
324 return prev;
Tyler Scotta1530052015-07-24 00:13:28 -0600325 }, {}); //Collect a map<category, filter>.
326 //TODO Make the return value map<category, Array<filter>>
327 return filters;
Tyler Scott93cae872015-07-21 14:58:23 -0600328 }
329
Tyler Scott4d951222015-07-31 14:38:27 -0600330 /**
331 * Creates a closable alert for the user.
332 *
333 * @param {string} message
334 * @param {string} type - Override the alert type.
335 */
336 Atmos.prototype.createAlert = function(message, type) {
337
338 var alert = $('<div class="alert"><div>');
339 alert.addClass(type?type:'alert-info');
340 alert.text(message);
341 alert.append(Atmos.closeButton);
342
343 this.alerts.append(alert);
344 }
345 Atmos.closeButton = '<button type="button" class="close" data-dismiss="alert" aria-label="Close"><span aria-hidden="true">&times;</span></button>';
346
Tyler Scott93cae872015-07-21 14:58:23 -0600347 return Atmos;
348
349})();
350
351