Browse Source

加强邮箱保护

打码邮箱中间部分
cs+3.4.6
欧醚 2 years ago
parent
commit
4390b676da
3 changed files with 9 additions and 5 deletions
  1. +5
    -0
      app/helpers/application_helper.rb
  2. +1
    -0
      app/policies/user_policy.rb
  3. +3
    -5
      app/views/admin/accounts/show.html.haml

+ 5
- 0
app/helpers/application_helper.rb View File

@ -77,6 +77,11 @@ module ApplicationHelper
policy(record).public_send("#{action}?")
end
def masked_email(email)
email_username = email.split('@').first
"#{email_username[0]}***#{email_username[-1]}@#{email.split('@').last}"
end
def fa_icon(icon, attributes = {})
class_names = attributes[:class]&.split(' ') || []
class_names << 'fa'

+ 1
- 0
app/policies/user_policy.rb View File

@ -6,6 +6,7 @@ class UserPolicy < ApplicationPolicy
end
def change_email?
return false
staff? && !record.staff?
end

+ 3
- 5
app/views/admin/accounts/show.html.haml View File

@ -104,11 +104,9 @@
= table_link_to 'angle-double-down', t('admin.accounts.demote'), demote_admin_account_role_path(@account.id), method: :post, data: { confirm: t('admin.accounts.are_you_sure') } if can?(:demote, @account.user)
%tr
%th{ rowspan: can?(:create, :email_domain_block) ? 3 : 2 }= t('admin.accounts.email')
%td{ rowspan: can?(:create, :email_domain_block) ? 3 : 2 }= @account.user_email
%td= table_link_to 'edit', t('admin.accounts.change_email.label'), admin_account_change_email_path(@account.id) if can?(:change_email, @account.user)
%tr
%th{ rowspan: can?(:create, :email_domain_block) ? 2 : 1 }= t('admin.accounts.email')
%td{ rowspan: can?(:create, :email_domain_block) ? 2 : 1 }= masked_email(@account.user_email)
//%td= table_link_to 'edit', t('admin.accounts.change_email.label'), admin_account_change_email_path(@account.id) if can?(:change_email, @account.user)
%td= table_link_to 'search', t('admin.accounts.search_same_email_domain'), admin_accounts_path(email: "%@#{@account.user_email.split('@').last}")
- if can?(:create, :email_domain_block)

Loading…
Cancel
Save