Skip to content

Commit

Permalink
Fix HTML escaping issues with user role icons
Browse files Browse the repository at this point in the history
  • Loading branch information
tomhughes committed Nov 13, 2020
1 parent bfffe7e commit 99e5378
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 16 deletions.
6 changes: 0 additions & 6 deletions .rubocop_todo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -172,9 +172,3 @@ Style/FrozenStringLiteralComment:
# Configuration parameters: Strict.
Style/NumericLiterals:
MinDigits: 11

# Offense count: 19
# Cop supports --auto-correct.
Style/StringConcatenation:
Exclude:
- 'test/helpers/user_roles_helper_test.rb'
4 changes: 1 addition & 3 deletions app/helpers/user_roles_helper.rb
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
module UserRolesHelper
def role_icons(user)
UserRole::ALL_ROLES.reduce("".html_safe) do |acc, elem|
"#{acc} #{role_icon(user, elem)}"
end
safe_join(UserRole::ALL_ROLES.collect { |role| role_icon(user, role) }.compact, " ")
end

def role_icon(user, role)
Expand Down
2 changes: 1 addition & 1 deletion app/views/users/show.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<div id='userinformation'>
<%= user_image @user %>
<div class='userinformation-inner'>
<h1><%= @user.display_name %><%= role_icons(@user) %></h1>
<h1><%= @user.display_name %> <%= role_icons(@user) %></h1>
<% if current_user and @user.id == current_user.id %>
<!-- Displaying user's own profile page to themself -->
<ul class='secondary-actions clearfix'>
Expand Down
12 changes: 6 additions & 6 deletions test/helpers/user_roles_helper_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,10 @@ def test_role_icons_normal
self.current_user = create(:user)

icons = role_icons(current_user)
assert_dom_equal " ", icons
assert_dom_equal "", icons

icons = role_icons(create(:moderator_user))
expected = " " + <<~HTML.delete("\n")
expected = <<~HTML.delete("\n")
<picture>
<source srcset="/images/roles/moderator.svg" type="image/svg+xml" />
<img srcset="/images/roles/moderator.svg" border="0" alt="This user is a moderator" title="This user is a moderator" src="/images/roles/moderator.png" width="20" height="20" />
Expand All @@ -63,7 +63,7 @@ def test_role_icons_normal
assert_dom_equal expected, icons

icons = role_icons(create(:super_user))
expected = " " + <<~HTML.delete("\n")
expected = <<~HTML.delete("\n")
<picture>
<source srcset="/images/roles/administrator.svg" type="image/svg+xml" />
<img srcset="/images/roles/administrator.svg" border="0" alt="This user is an administrator" title="This user is an administrator" src="/images/roles/administrator.png" width="20" height="20" />
Expand All @@ -81,7 +81,7 @@ def test_role_icons_administrator

user = create(:user)
icons = role_icons(user)
expected = " " + <<~HTML.delete("\n")
expected = <<~HTML.delete("\n")
<a confirm="Are you sure you want to grant the role `administrator&#39; to the user `#{user.display_name}&#39;?" rel="nofollow" data-method="post" href="/user/#{ERB::Util.u(user.display_name)}/role/administrator/grant">
<picture>
<source srcset="/images/roles/blank_administrator.svg" type="image/svg+xml" />
Expand All @@ -99,7 +99,7 @@ def test_role_icons_administrator

moderator_user = create(:moderator_user)
icons = role_icons(moderator_user)
expected = " " + <<~HTML.delete("\n")
expected = <<~HTML.delete("\n")
<a confirm="Are you sure you want to grant the role `administrator&#39; to the user `#{moderator_user.display_name}&#39;?" rel="nofollow" data-method="post" href="/user/#{ERB::Util.u(moderator_user.display_name)}/role/administrator/grant">
<picture>
<source srcset="/images/roles/blank_administrator.svg" type="image/svg+xml" />
Expand All @@ -117,7 +117,7 @@ def test_role_icons_administrator

super_user = create(:super_user)
icons = role_icons(super_user)
expected = " " + <<~HTML.delete("\n")
expected = <<~HTML.delete("\n")
<a confirm="Are you sure you want to revoke the role `administrator&#39; from the user `#{super_user.display_name}&#39;?" rel="nofollow" data-method="post" href="/user/#{ERB::Util.u(super_user.display_name)}/role/administrator/revoke">
<picture>
<source srcset="/images/roles/administrator.svg" type="image/svg+xml" />
Expand Down

0 comments on commit 99e5378

Please sign in to comment.