Merge pull request #123 from jaredevantabor/tooltip-escaping

HTML tag escaping in tooltips
This commit is contained in:
jaredevantabor 2015-04-06 15:55:30 -04:00
commit a5452fa432
9 changed files with 36 additions and 69 deletions

View File

@ -22,6 +22,7 @@ import 'tower/forms';
import 'tower/lists';
import 'tower/widgets';
import 'tower/help';
import 'tower/filters';
import {Home, HomeGroups, HomeHosts} from 'tower/controllers/Home';
import {SocketsController} from 'tower/controllers/Sockets';
import {Authenticate} from 'tower/controllers/Authentication';

View File

@ -0,0 +1,5 @@
import sanitizeFilters from 'tower/filters/sanitize/xss-sanitizer.filter';
export {
sanitizeFilters
};

View File

@ -0,0 +1,6 @@
angular.module('sanitizeFilter', []).filter('sanitize', function() {
return function(input) {
input = input.replace(/</g, "&lt;").replace(/>/g, "&gt;");
return input;
};
});

View File

@ -9,7 +9,7 @@
export default
angular.module('CompletedJobsDefinition', [])
angular.module('CompletedJobsDefinition', ['sanitizeFilter'])
.value( 'CompletedJobsList', {
name: 'completed_jobs',
@ -71,7 +71,8 @@ export default
columnClass: 'col-md-3 col-sm-4 col-xs-4',
ngClick: "viewJobLog(completed_job.id, completed_job.nameHref)",
defaultSearchField: true,
awToolTipEllipses: "{{ completed_job.name }}"
awToolTip: "{{ completed_job.name | sanitize }}",
dataPlacement: 'top'
},
failed: {
label: 'Job failed?',

View File

@ -9,7 +9,7 @@
export default
angular.module('QueuedJobsDefinition', [])
angular.module('QueuedJobsDefinition', ['sanitizeFilter'])
.value( 'QueuedJobsList', {
name: 'queued_jobs',
@ -63,7 +63,8 @@ export default
columnClass: 'col-md-3 col-sm-4 col-xs-4',
ngClick: "viewJobLog(queued_job.id, queued_job.nameHref)",
defaultSearchField: true,
awToolTipEllipses: "{{ queued_job.name }}"
awToolTip: "{{ queued_job.name | sanitize }}",
awTipPlacement: "top"
}
},

View File

@ -9,7 +9,7 @@
export default
angular.module('RunningJobsDefinition', [])
angular.module('RunningJobsDefinition', ['sanitizeFilter'])
.value( 'RunningJobsList', {
name: 'running_jobs',
@ -64,7 +64,8 @@ export default
columnClass: 'col-md-3 col-sm-4 col-xs-4',
ngClick: "viewJobLog(running_job.id, running_job.nameHref)",
defaultSearchField: true,
awToolTipEllipses: "{{ running_job.name }}"
awToolTip: "{{ running_job.name | sanitize }}",
awTipPlacement: "top"
}
},

View File

@ -9,7 +9,7 @@
export default
angular.module('ScheduledJobsDefinition', [])
angular.module('ScheduledJobsDefinition', ['sanitizeFilter'])
.value( 'ScheduledJobsList', {
name: 'schedules',
@ -62,7 +62,7 @@ export default
sourceModel: 'unified_job_template',
sourceField: 'name',
ngClick: "editSchedule(schedule.id)",
awToolTip: "{{ schedule.nameTip }}",
awToolTip: "{{ schedule.nameTip | sanitize}}",
dataPlacement: "top",
defaultSearchField: true
}

View File

@ -402,7 +402,7 @@ angular.module('AWDirectives', ['RestServices', 'Utilities', 'AuthService', 'Job
* Include the standard TB data-XXX attributes to controll a tooltip's appearance. We will
* default placement to the left and delay to the config setting.
*/
.directive('awToolTip', ['$sce', function($sce) {
.directive('awToolTip', [ function() {
return {
link: function(scope, element, attrs) {
var delay = (attrs.delay !== undefined && attrs.delay !== null) ? attrs.delay : ($AnsibleConfig) ? $AnsibleConfig.tooltip_delay : {show: 500, hide: 100},
@ -423,67 +423,25 @@ angular.module('AWDirectives', ['RestServices', 'Utilities', 'AuthService', 'Job
});
});
attrs.awToolTip = attrs.awToolTip.replace(/</g, "&lt;");
attrs.awToolTip = attrs.awToolTip.replace(/>/g, "&gt;");
attrs.awToolTip = $sce.getTrustedHtml(attrs.awToolTip);
$(element).tooltip({
placement: placement,
delay: delay,
html: true,
title: attrs.awToolTip,
container: 'body',
trigger: 'hover focus'
});
if (attrs.tipWatch) {
// Add dataTipWatch: 'variable_name'
scope.$watch(attrs.tipWatch, function(newVal, oldVal) {
if (newVal !== oldVal) {
// Where did fixTitle come from?:
// http://stackoverflow.com/questions/9501921/change-twitter-bootstrap-tooltip-content-on-click
$(element).tooltip('hide').attr('data-original-title', newVal).tooltip('fixTitle');
}
});
}
}
};
}])
/*
* This is a copy of awToolTip currently.
* TODO: only display these tool tips if the length of the anchor *as interpolated* to be larger than the table cell
*/
.directive('awToolTipEllipses', [ function() {
return {
link: function(scope, element, attrs) {
var delay = (attrs.delay !== undefined && attrs.delay !== null) ? attrs.delay : ($AnsibleConfig) ? $AnsibleConfig.tooltip_delay : {show: 500, hide: 100},
placement;
if (attrs.awTipPlacement) {
placement = attrs.awTipPlacement;
}
else {
placement = (attrs.placement !== undefined && attrs.placement !== null) ? attrs.placement : 'left';
}
$(element).on('hidden.bs.tooltip', function( ) {
// TB3RC1 is leaving behind tooltip <div> elements. This will remove them
// after a tooltip fades away. If not, they lay overtop of other elements and
// honk up the page.
$('.tooltip').each(function() {
$(this).remove();
});
});
$(element).tooltip({
placement: placement,
delay: delay,
html: true,
title: attrs.awToolTipEllipses,
title: attrs.awToolTip,
container: 'body',
trigger: 'hover focus'
});
if (attrs.tipWatch) {
// Add dataTipWatch: 'variable_name'
scope.$watch(attrs.tipWatch, function(newVal, oldVal) {
if (newVal !== oldVal) {
// Where did fixTitle come from?:
// http://stackoverflow.com/questions/9501921/change-twitter-bootstrap-tooltip-content-on-click
$(element).tooltip('hide').attr('data-original-title', newVal).tooltip('fixTitle');
}
});
}
}
};
}])

View File

@ -442,12 +442,6 @@ angular.module('GeneratorHelpers', [systemStatus.name])
html += (field.dataTipWatch) ? Attr(field, 'dataTipWatch') : "";
html += (field.awTipPlacement) ? Attr(field, 'awTipPlacement') : "";
}
if (field.awToolTipEllipses) {
html += Attr(field, 'awToolTipEllipses');
html += (field.dataPlacement && !field.awPopOver) ? Attr(field, 'dataPlacement') : "";
html += (field.dataTipWatch) ? Attr(field, 'dataTipWatch') : "";
html += (field.awTipPlacement) ? Attr(field, 'awTipPlacement') : "";
}
if (field.awPopOver) {
html += "aw-pop-over=\"" + field.awPopOver + "\" ";
html += (field.dataPlacement) ? "data-placement=\"" + field.dataPlacement + "\" " : "";