Skip to content

Escape bot console logging by default #145

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 27 additions & 11 deletions src/game/console.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,22 +7,38 @@ exports.makeConsole = function(id, sandboxedFunctionWrapper) {
messages[id] = [];
commandResults[id] = [];
visual[id] = {};
return Object.create(null, {
log: {
writable: true,
configurable: true,
value: sandboxedFunctionWrapper(function() {

if(typeof self != 'undefined' && self.navigator.userAgent) {
self['console']['log'].apply(console, arguments);
}
const rawLog = (args, escape_message = true) => {
if(typeof self != 'undefined' && self.navigator.userAgent) {
self['console']['log'].apply(console, args);
}

messages[id].push(
_.map(arguments, (i) => {
let m = _.map(args, (i) => {
if(i && i.toString) return i.toString();
if(typeof i === 'undefined') return 'undefined';
return JSON.stringify(i);
}).join(' '));
}).join(' ');

if (escape__message) {
m = _.escape(m);
}

messages[id].push(m);
};

return Object.create(null, {
unescapedLog: {
writable: true,
configurable: true,
value: sandboxedFunctionWrapper(function() {
rawLog(arguments, false);
})
},
log: {
writable: true,
configurable: true,
value: sandboxedFunctionWrapper(function() {
rawLog(arguments, true);
})
},
commandResult: {
Expand Down