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

432 lines
13 KiB
JavaScript
Raw Normal View History

2014-09-15 16:08:26 +00:00
const PayloadSources = {
VIEW_ACTION: "VIEW_ACTION",
SERVER_ACTION: "SERVER_ACTION"
};
2014-09-14 00:44:13 +00:00
2014-09-15 16:08:26 +00:00
function Dispatcher() {"use strict";
this.callbacks = [];
}
2014-09-14 00:44:13 +00:00
2014-09-15 16:08:26 +00:00
Dispatcher.prototype.register=function(callback){"use strict";
this.callbacks.push(callback);
};
2014-09-14 00:44:13 +00:00
2014-09-15 16:08:26 +00:00
Dispatcher.prototype.unregister=function(callback){"use strict";
var index = this.callbacks.indexOf(f);
if (index >= 0) {
this.callbacks.splice(this.callbacks.indexOf(f), 1);
2014-09-14 00:44:13 +00:00
}
2014-09-15 16:08:26 +00:00
};
2014-09-14 00:44:13 +00:00
2014-09-15 16:08:26 +00:00
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();
AppDispatcher.dispatchViewAction = function(action){
action.actionSource = PayloadSources.VIEW_ACTION;
this.dispatch(action);
};
2014-09-15 22:05:06 +00:00
AppDispatcher.dispatchServerAction = function(action){
action.actionSource = PayloadSources.SERVER_ACTION;
this.dispatch(action);
};
2014-09-15 16:08:26 +00:00
var ActionTypes = {
SETTINGS_UPDATE: "SETTINGS_UPDATE",
2014-09-15 22:05:06 +00:00
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 = {
update:function(settings) {
2014-09-15 22:05:06 +00:00
settings = _.merge({}, SettingsStore.getAll(), settings);
//TODO: Update server.
//Facebook Flux: We do an optimistic update on the client already.
2014-09-15 16:08:26 +00:00
AppDispatcher.dispatchViewAction({
actionType: ActionTypes.SETTINGS_UPDATE,
settings: settings
});
}
};
2014-09-14 00:44:13 +00:00
2014-09-15 16:08:26 +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) {
2014-09-15 22:05:06 +00:00
listener.apply(this, arguments);
2014-09-15 16:08:26 +00:00
}.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);
}
};
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;
function _SettingsStore() {"use strict";
EventEmitter.call(this);
this.settings = { version: "0.12", showEventLog: true }; //FIXME: Need to get that from somewhere.
}
2014-09-15 22:05:06 +00:00
_SettingsStore.prototype.getAll=function() {"use strict";
2014-09-15 16:08:26 +00:00
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;
}
};
var SettingsStore = new _SettingsStore();
AppDispatcher.register(SettingsStore.handle.bind(SettingsStore));
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;
function EventLogView(store, live){"use strict";
2014-09-15 16:08:26 +00:00
EventEmitter.call(this);
2014-09-15 22:05:06 +00:00
this.$EventLogView_store = store;
this.live = live;
2014-09-15 16:08:26 +00:00
this.log = [];
2014-09-15 22:05:06 +00:00
this.add = this.add.bind(this);
if(live){
this.$EventLogView_store.addListener("new_entry", this.add);
}
2014-09-15 16:08:26 +00:00
}
2014-09-15 22:05:06 +00:00
EventLogView.prototype.close=function() {"use strict";
this.$EventLogView_store.removeListener("new_entry", this.add);
};
EventLogView.prototype.getAll=function() {"use strict";
2014-09-15 16:08:26 +00:00
return this.log;
};
2014-09-15 22:05:06 +00:00
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");
};
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);}}
_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;
};
2014-09-15 16:08:26 +00:00
_EventLogStore.prototype.handle=function(action) {"use strict";
switch (action.actionType) {
2014-09-15 22:05:06 +00:00
case ActionTypes.EVENTLOG_ADD:
this.emit("new_message", action.message);
2014-09-15 16:08:26 +00:00
break;
default:
return;
}
};
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
};
2014-09-14 00:44:13 +00:00
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(){
return React.DOM.div(null,
2014-09-15 22:05:06 +00:00
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 16:08:26 +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-14 00:44:13 +00:00
return (React.DOM.div(null, "Tools Menu"));
}
});
var ReportsMenu = React.createClass({displayName: 'ReportsMenu',
2014-09-15 16:08:26 +00:00
render:function(){
2014-09-14 00:44:13 +00:00
return (React.DOM.div(null, "Reports Menu"));
}
});
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-14 00:44:13 +00:00
}
});
/** @jsx React.DOM */
var TrafficTable = React.createClass({displayName: 'TrafficTable',
2014-09-15 22:05:06 +00:00
getInitialState: function(){
2014-09-14 00:44:13 +00:00
return {
flows: []
};
},
2014-09-15 22:05:06 +00:00
componentDidMount:function(){
//this.flowStore = FlowStore.getView();
//this.flowStore.addListener("change",this.onFlowChange);
},
componentWillUnmount:function(){
//this.flowStore.removeListener("change",this.onFlowChange);
//this.flowStore.close();
2014-09-14 00:44:13 +00:00
},
2014-09-15 22:05:06 +00:00
onFlowChange:function(){
this.setState({
//flows: this.flowStore.getAll()
});
2014-09-14 00:44:13 +00:00
},
render: function () {
2014-09-15 16:08:26 +00:00
/*var flows = this.state.flows.map(function(flow){
return <div>{flow.request.method} {flow.request.scheme}://{flow.request.host}{flow.request.path}</div>;
}); *//**/
2014-09-15 22:05:06 +00:00
x = "Flow";
2014-09-15 16:08:26 +00:00
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:05:06 +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()
});
},
2014-09-15 16:39:25 +00:00
close:function(){
SettingsActions.update({
showEventLog: false
});
},
2014-09-15 16:08:26 +00:00
render:function(){
2014-09-15 22:05:06 +00:00
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"},
React.DOM.pre(null,
2014-09-15 16:39:25 +00:00
React.DOM.i({className: "fa fa-close close-button", onClick: this.close}),
2014-09-15 22:05:06 +00:00
messages
2014-09-15 16:08:26 +00:00
)
)
);
}
});
/** @jsx React.DOM */
var Footer = React.createClass({displayName: 'Footer',
render:function(){
return (
React.DOM.footer(null,
React.DOM.span({className: "label label-success"}, "transparent mode")
)
);
}
});
/** @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 16:08:26 +00:00
render:function(){
2014-09-14 00:44:13 +00:00
return (React.DOM.div(null, "Report Editor"));
}
});
2014-09-15 16:08:26 +00:00
var ProxyAppMain = React.createClass({displayName: 'ProxyAppMain',
2014-09-15 22:05:06 +00:00
getInitialState:function(){
return { settings: SettingsStore.getAll() };
},
componentDidMount:function(){
SettingsStore.addListener("change", this.onSettingsChange);
},
componentWillUnmount:function(){
SettingsStore.removeListener("change", this.onSettingsChange);
},
onSettingsChange:function(){
console.log("onSettingsChange");
this.setState({settings: SettingsStore.getAll()});
},
2014-09-15 16:08:26 +00:00
render:function() {
return (
React.DOM.div({id: "container"},
2014-09-15 22:05:06 +00:00
Header({settings: this.state.settings}),
2014-09-15 16:08:26 +00:00
React.DOM.div({id: "main"}, this.props.activeRouteHandler(null)),
this.state.settings.showEventLog ? EventLog(null) : null,
Footer(null)
)
);
}
});
var ProxyApp = (
2014-09-14 00:44:13 +00:00
ReactRouter.Routes({location: "hash"},
2014-09-15 16:08:26 +00:00
ReactRouter.Route({name: "app", path: "/", handler: ProxyAppMain},
2014-09-14 00:44:13 +00:00
ReactRouter.Route({name: "main", handler: TrafficTable}),
ReactRouter.Route({name: "reports", handler: Reports}),
ReactRouter.Redirect({to: "main"})
)
)
);
2014-09-15 16:08:26 +00:00
$(function(){
2014-09-15 22:05:06 +00:00
Connection.init();
2014-09-15 16:08:26 +00:00
app = React.renderComponent(ProxyApp, document.body);
});
2014-09-14 00:44:13 +00:00
//# sourceMappingURL=app.js.map