mitmproxy/libmproxy/web/static/js/app.js

450 lines
15 KiB
JavaScript
Raw Normal View History

2014-09-15 16:08:26 +00:00
const PayloadSources = {
2014-09-15 22:56:43 +00:00
VIEW_ACTION: "VIEW_ACTION",
SERVER_ACTION: "SERVER_ACTION"
2014-09-15 16:08:26 +00:00
};
2014-09-14 00:44:13 +00:00
2014-09-15 22:56:43 +00:00
function Dispatcher() {"use strict";
this.callbacks = [];
2014-09-14 00:44:13 +00:00
}
2014-09-15 22:56:43 +00:00
Dispatcher.prototype.register=function(callback) {"use strict";
this.callbacks.push(callback);
};
Dispatcher.prototype.unregister=function(callback) {"use strict";
var index = this.callbacks.indexOf(f);
if (index >= 0) {
this.callbacks.splice(this.callbacks.indexOf(f), 1);
}
};
Dispatcher.prototype.dispatch=function(payload) {"use strict";
console.debug("dispatch", payload);
this.callbacks.forEach(function(callback) {
callback(payload);
});
};
2014-09-14 00:44:13 +00:00
2014-09-15 16:08:26 +00:00
AppDispatcher = new Dispatcher();
2014-09-15 22:56:43 +00:00
AppDispatcher.dispatchViewAction = function(action) {
action.actionSource = PayloadSources.VIEW_ACTION;
this.dispatch(action);
2014-09-15 16:08:26 +00:00
};
2014-09-15 22:56:43 +00:00
AppDispatcher.dispatchServerAction = function(action) {
action.actionSource = PayloadSources.SERVER_ACTION;
this.dispatch(action);
2014-09-15 22:05:06 +00:00
};
2014-09-15 16:08:26 +00:00
var ActionTypes = {
2014-09-15 22:56:43 +00:00
SETTINGS_UPDATE: "SETTINGS_UPDATE",
EVENTLOG_ADD: "EVENTLOG_ADD"
2014-09-15 16:08:26 +00:00
};
2014-09-14 00:44:13 +00:00
2014-09-15 16:08:26 +00:00
var SettingsActions = {
2014-09-15 22:56:43 +00:00
update:function(settings) {
settings = _.merge({}, SettingsStore.getAll(), settings);
//TODO: Update server.
//Facebook Flux: We do an optimistic update on the client already.
AppDispatcher.dispatchViewAction({
actionType: ActionTypes.SETTINGS_UPDATE,
settings: settings
});
}
2014-09-15 16:08:26 +00:00
};
2014-09-14 00:44:13 +00:00
2014-09-15 22:56:43 +00:00
function EventEmitter() {"use strict";
this.listeners = {};
}
EventEmitter.prototype.emit=function(event) {"use strict";
if (!(event in this.listeners)) {
return;
}
this.listeners[event].forEach(function(listener) {
listener.apply(this, arguments);
}.bind(this));
};
EventEmitter.prototype.addListener=function(event, f) {"use strict";
this.listeners[event] = this.listeners[event] || [];
this.listeners[event].push(f);
};
EventEmitter.prototype.removeListener=function(event, f) {"use strict";
if (!(event in this.listeners)) {
return false;
}
var index = this.listeners[event].indexOf(f);
if (index >= 0) {
this.listeners[event].splice(index, 1);
}
};
2014-09-15 16:08:26 +00:00
for(var EventEmitter____Key in EventEmitter){if(EventEmitter.hasOwnProperty(EventEmitter____Key)){_SettingsStore[EventEmitter____Key]=EventEmitter[EventEmitter____Key];}}var ____SuperProtoOfEventEmitter=EventEmitter===null?null:EventEmitter.prototype;_SettingsStore.prototype=Object.create(____SuperProtoOfEventEmitter);_SettingsStore.prototype.constructor=_SettingsStore;_SettingsStore.__superConstructor__=EventEmitter;
2014-09-15 22:56:43 +00:00
function _SettingsStore() {"use strict";
EventEmitter.call(this);
//FIXME: What do we do if we haven't requested anything from the server yet?
this.settings = {
version: "0.12",
2014-09-15 23:05:29 +00:00
showEventLog: true,
mode: "transparent",
2014-09-15 22:56:43 +00:00
};
}
_SettingsStore.prototype.getAll=function() {"use strict";
return this.settings;
};
_SettingsStore.prototype.handle=function(action) {"use strict";
switch (action.actionType) {
case ActionTypes.SETTINGS_UPDATE:
this.settings = action.settings;
this.emit("change");
break;
default:
return;
}
};
2014-09-15 16:08:26 +00:00
var SettingsStore = new _SettingsStore();
AppDispatcher.register(SettingsStore.handle.bind(SettingsStore));
2014-09-15 22:56:43 +00:00
//
// We have an EventLogView and an EventLogStore:
// The basic architecture is that one can request views on the event log
// from the store, which returns a view object and then deals with getting the data required for the view.
// The view object is accessed by React components and distributes updates etc.
//
// See also: components/EventLog.react.js
2014-09-15 16:08:26 +00:00
2014-09-15 22:05:06 +00:00
for(var EventEmitter____Key in EventEmitter){if(EventEmitter.hasOwnProperty(EventEmitter____Key)){EventLogView[EventEmitter____Key]=EventEmitter[EventEmitter____Key];}}var ____SuperProtoOfEventEmitter=EventEmitter===null?null:EventEmitter.prototype;EventLogView.prototype=Object.create(____SuperProtoOfEventEmitter);EventLogView.prototype.constructor=EventLogView;EventLogView.__superConstructor__=EventEmitter;
2014-09-15 22:56:43 +00:00
function EventLogView(store, live) {"use strict";
EventEmitter.call(this);
this.$EventLogView_store = store;
this.live = live;
this.log = [];
this.add = this.add.bind(this);
if (live) {
this.$EventLogView_store.addListener("new_entry", this.add);
}
}
EventLogView.prototype.close=function() {"use strict";
this.$EventLogView_store.removeListener("new_entry", this.add);
};
EventLogView.prototype.getAll=function() {"use strict";
return this.log;
};
EventLogView.prototype.add=function(entry) {"use strict";
this.log.push(entry);
this.emit("change");
};
EventLogView.prototype.add_bulk=function(messages) {"use strict";
var log = messages;
var last_id = log[log.length - 1].id;
var to_add = _.filter(this.log, function(entry) {return entry.id > last_id;});
this.log = log.concat(to_add);
this.emit("change");
};
2014-09-15 22:05:06 +00:00
for(EventEmitter____Key in EventEmitter){if(EventEmitter.hasOwnProperty(EventEmitter____Key)){_EventLogStore[EventEmitter____Key]=EventEmitter[EventEmitter____Key];}}_EventLogStore.prototype=Object.create(____SuperProtoOfEventEmitter);_EventLogStore.prototype.constructor=_EventLogStore;_EventLogStore.__superConstructor__=EventEmitter;function _EventLogStore(){"use strict";if(EventEmitter!==null){EventEmitter.apply(this,arguments);}}
2014-09-15 22:56:43 +00:00
_EventLogStore.prototype.getView=function(since) {"use strict";
var view = new EventLogView(this, !since);
//TODO: Really do bulk retrieval of last messages.
window.setTimeout(function() {
view.add_bulk([{
id: 1,
message: "Hello World"
}, {
id: 2,
message: "I was already transmitted as an event."
}]);
}, 100);
var id = 2;
view.add({
id: id++,
message: "I was already transmitted as an event."
});
view.add({
id: id++,
message: "I was only transmitted as an event before the bulk was added.."
});
window.setInterval(function() {
view.add({
id: id++,
message: "."
});
}, 1000);
return view;
};
_EventLogStore.prototype.handle=function(action) {"use strict";
switch (action.actionType) {
case ActionTypes.EVENTLOG_ADD:
this.emit("new_message", action.message);
break;
default:
return;
}
};
2014-09-15 16:08:26 +00:00
var EventLogStore = new _EventLogStore();
AppDispatcher.register(EventLogStore.handle.bind(EventLogStore));
2014-09-15 22:05:06 +00:00
function _Connection(root) {"use strict";
if (!root) {
2014-09-15 16:08:26 +00:00
root = location.origin + "/api/v1";
}
this.root = root;
2014-09-14 00:44:13 +00:00
}
2014-09-15 22:05:06 +00:00
_Connection.prototype.init=function() {"use strict";
2014-09-15 16:08:26 +00:00
this.openWebSocketConnection();
2014-09-15 22:05:06 +00:00
};
_Connection.prototype.openWebSocketConnection=function() {"use strict";
this.ws = new WebSocket(this.root.replace("http", "ws") + "/ws");
2014-09-15 16:08:26 +00:00
var ws = this.ws;
2014-09-14 00:44:13 +00:00
2014-09-15 16:08:26 +00:00
ws.onopen = this.onopen.bind(this);
ws.onmessage = this.onmessage.bind(this);
ws.onerror = this.onerror.bind(this);
ws.onclose = this.onclose.bind(this);
2014-09-14 00:44:13 +00:00
};
2014-09-15 22:05:06 +00:00
_Connection.prototype.onopen=function(open) {"use strict";
2014-09-15 16:08:26 +00:00
console.log("onopen", this, arguments);
2014-09-14 00:44:13 +00:00
};
2014-09-15 22:05:06 +00:00
_Connection.prototype.onmessage=function(message) {"use strict";
//AppDispatcher.dispatchServerAction(...);
2014-09-15 16:08:26 +00:00
console.log("onmessage", this, arguments);
2014-09-14 00:44:13 +00:00
};
2014-09-15 22:05:06 +00:00
_Connection.prototype.onerror=function(error) {"use strict";
2014-09-15 16:08:26 +00:00
console.log("onerror", this, arguments);
};
2014-09-15 22:05:06 +00:00
_Connection.prototype.onclose=function(close) {"use strict";
2014-09-15 16:08:26 +00:00
console.log("onclose", this, arguments);
2014-09-14 00:44:13 +00:00
};
2014-09-15 22:05:06 +00:00
var Connection = new _Connection();
2014-09-14 00:44:13 +00:00
/** @jsx React.DOM */
var MainMenu = React.createClass({displayName: 'MainMenu',
2014-09-15 22:05:06 +00:00
toggleEventLog:function() {
2014-09-15 16:08:26 +00:00
SettingsActions.update({
2014-09-15 22:05:06 +00:00
showEventLog: !this.props.settings.showEventLog
2014-09-15 16:08:26 +00:00
});
},
render:function(){
2014-09-15 22:56:43 +00:00
return (
React.DOM.div(null,
React.DOM.button({className: "btn " + (this.props.settings.showEventLog ? "btn-primary" : "btn-default"), onClick: this.toggleEventLog},
2014-09-15 16:39:25 +00:00
React.DOM.i({className: "fa fa-database"}), " Display Event Log"
2014-09-15 22:56:43 +00:00
)
2014-09-15 16:08:26 +00:00
)
2014-09-15 22:56:43 +00:00
);
2014-09-14 00:44:13 +00:00
}
});
var ToolsMenu = React.createClass({displayName: 'ToolsMenu',
2014-09-15 16:08:26 +00:00
render:function(){
2014-09-15 22:56:43 +00:00
return React.DOM.div(null, "Tools Menu");
2014-09-14 00:44:13 +00:00
}
});
var ReportsMenu = React.createClass({displayName: 'ReportsMenu',
2014-09-15 16:08:26 +00:00
render:function(){
2014-09-15 22:56:43 +00:00
return React.DOM.div(null, "Reports Menu");
2014-09-14 00:44:13 +00:00
}
});
2014-09-15 16:08:26 +00:00
2014-09-14 00:44:13 +00:00
var _Header_Entries = {
main: {
title: "Traffic",
route: "main",
menu: MainMenu
},
tools: {
title: "Tools",
route: "main",
menu: ToolsMenu
},
reports: {
title: "Visualization",
route: "reports",
menu: ReportsMenu
}
};
var Header = React.createClass({displayName: 'Header',
2014-09-15 16:08:26 +00:00
getInitialState:function(){
return {
active: "main"
};
2014-09-14 00:44:13 +00:00
},
2014-09-15 16:08:26 +00:00
handleClick:function(active){
2014-09-14 00:44:13 +00:00
this.setState({active: active});
ReactRouter.transitionTo(_Header_Entries[active].route);
return false;
},
2014-09-15 16:08:26 +00:00
handleFileClick:function(){
2014-09-14 00:44:13 +00:00
console.log("File click");
},
2014-09-15 16:08:26 +00:00
render:function(){
2014-09-14 00:44:13 +00:00
var header = [];
for(var item in _Header_Entries){
var classes = this.state.active == item ? "active" : "";
header.push(React.DOM.a({key: item, href: "#", className: classes,
2014-09-15 16:08:26 +00:00
onClick: this.handleClick.bind(this, item)}, _Header_Entries[item].title));
2014-09-14 00:44:13 +00:00
}
2014-09-15 22:05:06 +00:00
var menu = _Header_Entries[this.state.active].menu({
settings: this.props.settings
});
2014-09-14 00:44:13 +00:00
return (
2014-09-15 16:08:26 +00:00
React.DOM.header(null,
React.DOM.div({className: "title-bar"},
2014-09-15 22:05:06 +00:00
"mitmproxy ", this.props.settings.version
2014-09-15 16:08:26 +00:00
),
React.DOM.nav(null,
React.DOM.a({href: "#", className: "special", onClick: this.handleFileClick}, " File "),
header
),
React.DOM.div({className: "menu"},
menu
)
2014-09-15 22:56:43 +00:00
)
);
2014-09-14 00:44:13 +00:00
}
});
/** @jsx React.DOM */
var TrafficTable = React.createClass({displayName: 'TrafficTable',
2014-09-15 22:56:43 +00:00
getInitialState:function() {
2014-09-14 00:44:13 +00:00
return {
flows: []
};
},
2014-09-15 22:56:43 +00:00
componentDidMount:function() {
2014-09-15 22:05:06 +00:00
//this.flowStore = FlowStore.getView();
//this.flowStore.addListener("change",this.onFlowChange);
},
2014-09-15 22:56:43 +00:00
componentWillUnmount:function() {
2014-09-15 22:05:06 +00:00
//this.flowStore.removeListener("change",this.onFlowChange);
//this.flowStore.close();
2014-09-14 00:44:13 +00:00
},
2014-09-15 22:56:43 +00:00
onFlowChange:function() {
2014-09-15 22:05:06 +00:00
this.setState({
//flows: this.flowStore.getAll()
});
2014-09-14 00:44:13 +00:00
},
2014-09-15 22:56:43 +00:00
render:function() {
/*var flows = this.state.flows.map(function(flow){
return <div>{flow.request.method} {flow.request.scheme}://{flow.request.host}{flow.request.path}</div>;
}); */
//Dummy Text for layout testing
x = "Flow";
i = 12;
while (i--) x += x;
return (
React.DOM.div(null, React.DOM.pre(null, " ", x, " "))
);
}
2014-09-14 00:44:13 +00:00
});
2014-09-15 16:08:26 +00:00
/** @jsx React.DOM */
2014-09-14 00:44:13 +00:00
2014-09-15 16:08:26 +00:00
var EventLog = React.createClass({displayName: 'EventLog',
2014-09-15 22:56:43 +00:00
getInitialState:function() {
return {
log: []
};
},
componentDidMount:function() {
this.log = EventLogStore.getView();
this.log.addListener("change", this.onEventLogChange);
},
componentWillUnmount:function() {
this.log.removeListener("change", this.onEventLogChange);
this.log.close();
},
onEventLogChange:function() {
this.setState({
log: this.log.getAll()
});
},
close:function() {
SettingsActions.update({
showEventLog: false
});
},
render:function() {
var messages = this.state.log.map(function(row) {return React.DOM.div({key: row.id}, row.message);});
2014-09-15 16:08:26 +00:00
return (
React.DOM.div({className: "eventlog"},
2014-09-15 22:56:43 +00:00
React.DOM.pre(null,
React.DOM.i({className: "fa fa-close close-button", onClick: this.close}),
messages
)
2014-09-15 16:08:26 +00:00
)
);
}
});
/** @jsx React.DOM */
var Footer = React.createClass({displayName: 'Footer',
render:function(){
2014-09-15 23:05:29 +00:00
var mode = this.props.settings.mode;
2014-09-15 16:08:26 +00:00
return (
React.DOM.footer(null,
2014-09-15 23:05:29 +00:00
mode != "regular" ? React.DOM.span({className: "label label-success"}, mode, " mode") : null
2014-09-15 16:08:26 +00:00
)
);
}
});
/** @jsx React.DOM */
//TODO: Move out of here, just a stub.
2014-09-14 00:44:13 +00:00
var Reports = React.createClass({displayName: 'Reports',
2014-09-15 22:56:43 +00:00
render:function(){
return React.DOM.div(null, "Report Editor");
}
2014-09-14 00:44:13 +00:00
});
2014-09-15 16:08:26 +00:00
var ProxyAppMain = React.createClass({displayName: 'ProxyAppMain',
2014-09-15 22:05:06 +00:00
getInitialState:function(){
2014-09-15 22:56:43 +00:00
return { settings: SettingsStore.getAll() };
2014-09-15 22:05:06 +00:00
},
componentDidMount:function(){
2014-09-15 22:56:43 +00:00
SettingsStore.addListener("change", this.onSettingsChange);
2014-09-15 22:05:06 +00:00
},
componentWillUnmount:function(){
2014-09-15 22:56:43 +00:00
SettingsStore.removeListener("change", this.onSettingsChange);
2014-09-15 22:05:06 +00:00
},
onSettingsChange:function(){
2014-09-15 22:56:43 +00:00
console.log("onSettingsChange");
this.setState({settings: SettingsStore.getAll()});
2014-09-15 22:05:06 +00:00
},
2014-09-15 16:08:26 +00:00
render:function() {
2014-09-15 22:56:43 +00:00
return (
React.DOM.div({id: "container"},
Header({settings: this.state.settings}),
React.DOM.div({id: "main"}, this.props.activeRouteHandler(null)),
this.state.settings.showEventLog ? EventLog(null) : null,
2014-09-15 23:05:29 +00:00
Footer({settings: this.state.settings})
2014-09-15 22:56:43 +00:00
)
);
2014-09-15 16:08:26 +00:00
}
});
var ProxyApp = (
2014-09-15 22:56:43 +00:00
ReactRouter.Routes({location: "hash"},
ReactRouter.Route({name: "app", path: "/", handler: ProxyAppMain},
ReactRouter.Route({name: "main", handler: TrafficTable}),
ReactRouter.Route({name: "reports", handler: Reports}),
ReactRouter.Redirect({to: "main"})
)
2014-09-14 00:44:13 +00:00
)
);
2014-09-15 16:08:26 +00:00
2014-09-15 22:56:43 +00:00
$(function() {
2014-09-15 16:08:26 +00:00
2014-09-15 22:56:43 +00:00
Connection.init();
app = React.renderComponent(ProxyApp, document.body);
2014-09-15 16:08:26 +00:00
});
2014-09-14 00:44:13 +00:00
//# sourceMappingURL=app.js.map