CyberChef/src/js/views/html/OperationsWaiter.js

284 lines
8.0 KiB
JavaScript
Raw Normal View History

2016-11-28 11:42:58 +01:00
/* globals Sortable */
/**
* Waiter to handle events related to the operations.
*
* @author n1474335 [n1474335@gmail.com]
* @copyright Crown Copyright 2016
* @license Apache-2.0
*
* @constructor
* @param {HTMLApp} app - The main view object for CyberChef.
* @param {Manager} manager - The CyberChef event manager.
*/
var OperationsWaiter = function(app, manager) {
this.app = app;
this.manager = manager;
2017-02-09 16:09:33 +01:00
2016-11-28 11:42:58 +01:00
this.options = {};
this.removeIntent = false;
2016-11-28 11:42:58 +01:00
};
/**
* Handler for search events.
* Finds operations which match the given search term and displays them under the search box.
*
* @param {event} e
*/
OperationsWaiter.prototype.searchOperations = function(e) {
2016-11-28 11:42:58 +01:00
var ops, selected;
2017-02-09 16:09:33 +01:00
2016-12-14 17:39:17 +01:00
if (e.type === "search") { // Search
2016-11-28 11:42:58 +01:00
e.preventDefault();
ops = document.querySelectorAll("#search-results li");
if (ops.length) {
selected = this.getSelectedOp(ops);
2016-11-28 11:42:58 +01:00
if (selected > -1) {
this.manager.recipe.addOperation(ops[selected].innerHTML);
this.app.autoBake();
2016-11-28 11:42:58 +01:00
}
}
}
2017-02-09 16:09:33 +01:00
2016-12-14 17:39:17 +01:00
if (e.keyCode === 13) { // Return
2016-11-28 11:42:58 +01:00
e.preventDefault();
2016-12-14 17:39:17 +01:00
} else if (e.keyCode === 40) { // Down
2016-11-28 11:42:58 +01:00
e.preventDefault();
ops = document.querySelectorAll("#search-results li");
if (ops.length) {
selected = this.getSelectedOp(ops);
2016-11-28 11:42:58 +01:00
if (selected > -1) {
ops[selected].classList.remove("selected-op");
}
2016-12-14 17:39:17 +01:00
if (selected === ops.length-1) selected = -1;
2016-11-28 11:42:58 +01:00
ops[selected+1].classList.add("selected-op");
}
2016-12-14 17:39:17 +01:00
} else if (e.keyCode === 38) { // Up
2016-11-28 11:42:58 +01:00
e.preventDefault();
ops = document.querySelectorAll("#search-results li");
if (ops.length) {
selected = this.getSelectedOp(ops);
2016-11-28 11:42:58 +01:00
if (selected > -1) {
ops[selected].classList.remove("selected-op");
}
if (selected === 0) selected = ops.length;
ops[selected-1].classList.add("selected-op");
}
} else {
var searchResultsEl = document.getElementById("search-results"),
2016-11-28 11:42:58 +01:00
el = e.target,
str = el.value;
2017-02-09 16:09:33 +01:00
while (searchResultsEl.firstChild) {
$(searchResultsEl.firstChild).popover("destroy");
searchResultsEl.removeChild(searchResultsEl.firstChild);
2016-11-28 11:42:58 +01:00
}
2017-02-09 16:09:33 +01:00
2016-11-28 11:42:58 +01:00
$("#categories .in").collapse("hide");
if (str) {
var matchedOps = this.filterOperations(str, true),
matchedOpsHtml = "";
2017-02-09 16:09:33 +01:00
for (var i = 0; i < matchedOps.length; i++) {
matchedOpsHtml += matchedOps[i].toStubHtml();
2016-11-28 11:42:58 +01:00
}
2017-02-09 16:09:33 +01:00
searchResultsEl.innerHTML = matchedOpsHtml;
searchResultsEl.dispatchEvent(this.manager.oplistcreate);
2016-11-28 11:42:58 +01:00
}
}
};
/**
* Filters operations based on the search string and returns the matching ones.
*
* @param {string} searchStr
2016-11-28 11:42:58 +01:00
* @param {boolean} highlight - Whether or not to highlight the matching string in the operation
* name and description
* @returns {string[]}
*/
OperationsWaiter.prototype.filterOperations = function(searchStr, highlight) {
var matchedOps = [],
matchedDescs = [];
2017-02-09 16:09:33 +01:00
searchStr = searchStr.toLowerCase();
2017-02-09 16:09:33 +01:00
for (var opName in this.app.operations) {
var op = this.app.operations[opName],
namePos = opName.toLowerCase().indexOf(searchStr),
descPos = op.description.toLowerCase().indexOf(searchStr);
2017-02-09 16:09:33 +01:00
if (namePos >= 0 || descPos >= 0) {
var operation = new HTMLOperation(opName, this.app.operations[opName], this.app, this.manager);
2016-11-28 11:42:58 +01:00
if (highlight) {
operation.highlightSearchString(searchStr, namePos, descPos);
2016-11-28 11:42:58 +01:00
}
2017-02-09 16:09:33 +01:00
if (namePos < 0) {
matchedOps.push(operation);
2016-11-28 11:42:58 +01:00
} else {
matchedDescs.push(operation);
2016-11-28 11:42:58 +01:00
}
}
}
2017-02-09 16:09:33 +01:00
return matchedDescs.concat(matchedOps);
2016-11-28 11:42:58 +01:00
};
/**
* Finds the operation which has been selected using keyboard shortcuts. This will have the class
* 'selected-op' set. Returns the index of the operation within the given list.
*
* @param {element[]} ops
* @returns {number}
*/
OperationsWaiter.prototype.getSelectedOp = function(ops) {
2016-11-28 11:42:58 +01:00
for (var i = 0; i < ops.length; i++) {
if (ops[i].classList.contains("selected-op")) {
return i;
}
}
return -1;
};
/**
* Handler for oplistcreate events.
*
* @listens Manager#oplistcreate
* @param {event} e
*/
OperationsWaiter.prototype.opListCreate = function(e) {
this.manager.recipe.createSortableSeedList(e.target);
2016-11-28 11:42:58 +01:00
$("[data-toggle=popover]").popover();
};
/**
* Handler for operation doubleclick events.
* Adds the operation to the recipe and auto bakes.
*
* @param {event} e
*/
OperationsWaiter.prototype.operationDblclick = function(e) {
2016-11-28 11:42:58 +01:00
var li = e.target;
2017-02-09 16:09:33 +01:00
this.manager.recipe.addOperation(li.textContent);
this.app.autoBake();
2016-11-28 11:42:58 +01:00
};
/**
* Handler for edit favourites click events.
* Sets up the 'Edit favourites' pane and displays it.
*
* @param {event} e
*/
OperationsWaiter.prototype.editFavouritesClick = function(e) {
2016-11-28 11:42:58 +01:00
e.preventDefault();
e.stopPropagation();
2017-02-09 16:09:33 +01:00
2016-11-28 11:42:58 +01:00
// Add favourites to modal
var favCat = this.app.categories.filter(function(c) {
2016-12-14 17:39:17 +01:00
return c.name === "Favourites";
2016-11-28 11:42:58 +01:00
})[0];
2017-02-09 16:09:33 +01:00
2016-11-28 11:42:58 +01:00
var html = "";
for (var i = 0; i < favCat.ops.length; i++) {
var opName = favCat.ops[i];
var operation = new HTMLOperation(opName, this.app.operations[opName], this.app, this.manager);
html += operation.toStubHtml(true);
2016-11-28 11:42:58 +01:00
}
2017-02-09 16:09:33 +01:00
var editFavouritesList = document.getElementById("edit-favourites-list");
editFavouritesList.innerHTML = html;
this.removeIntent = false;
2017-02-09 16:09:33 +01:00
var editableList = Sortable.create(editFavouritesList, {
2016-12-14 17:39:17 +01:00
filter: ".remove-icon",
2016-11-28 11:42:58 +01:00
onFilter: function (evt) {
var el = editableList.closest(evt.item);
2016-11-28 11:42:58 +01:00
if (el) {
$(el).popover("destroy");
el.parentNode.removeChild(el);
}
},
onEnd: function(evt) {
if (this.removeIntent) evt.item.remove();
2016-11-28 11:42:58 +01:00
}.bind(this),
});
2017-02-09 16:09:33 +01:00
Sortable.utils.on(editFavouritesList, "dragleave", function() {
this.removeIntent = true;
2016-11-28 11:42:58 +01:00
}.bind(this));
2017-02-09 16:09:33 +01:00
Sortable.utils.on(editFavouritesList, "dragover", function() {
this.removeIntent = false;
2016-11-28 11:42:58 +01:00
}.bind(this));
2017-02-09 16:09:33 +01:00
2016-11-28 11:42:58 +01:00
$("#edit-favourites-list [data-toggle=popover]").popover();
$("#favourites-modal").modal();
};
/**
* Handler for save favourites click events.
* Saves the selected favourites and reloads them.
*/
OperationsWaiter.prototype.saveFavouritesClick = function() {
var favouritesList = [],
2016-11-28 11:42:58 +01:00
favs = document.querySelectorAll("#edit-favourites-list li");
2017-02-09 16:09:33 +01:00
2016-11-28 11:42:58 +01:00
for (var i = 0; i < favs.length; i++) {
favouritesList.push(favs[i].textContent);
2016-11-28 11:42:58 +01:00
}
this.app.saveFavourites(favouritesList);
this.app.loadFavourites();
this.app.populateOperationsList();
this.manager.recipe.initialiseOperationDragNDrop();
2016-11-28 11:42:58 +01:00
};
/**
* Handler for reset favourites click events.
* Resets favourites to their defaults.
*/
OperationsWaiter.prototype.resetFavouritesClick = function() {
this.app.resetFavourites();
2016-11-28 11:42:58 +01:00
};
/**
* Handler for opIcon mouseover events.
2016-11-28 11:42:58 +01:00
* Hides any popovers already showing on the operation so that there aren't two at once.
*
* @param {event} e
*/
OperationsWaiter.prototype.opIconMouseover = function(e) {
var opEl = e.target.parentNode;
2016-12-14 17:39:17 +01:00
if (e.target.getAttribute("data-toggle") === "popover") {
$(opEl).popover("hide");
2016-11-28 11:42:58 +01:00
}
};
/**
* Handler for opIcon mouseleave events.
2016-11-28 11:42:58 +01:00
* If this icon created a popover and we're moving back to the operation element, display the
* operation popover again.
*
* @param {event} e
*/
OperationsWaiter.prototype.opIconMouseleave = function(e) {
var opEl = e.target.parentNode,
toEl = e.toElement || e.relatedElement;
2017-02-09 16:09:33 +01:00
if (e.target.getAttribute("data-toggle") === "popover" && toEl === opEl) {
$(opEl).popover("show");
2016-11-28 11:42:58 +01:00
}
};