The code powering m.abunchtell.com https://m.abunchtell.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

46 lines
1.3 KiB

  1. # frozen_string_literal: true
  2. class Settings::IdentityProofsController < Settings::BaseController
  3. layout 'admin'
  4. before_action :authenticate_user!
  5. before_action :check_required_params, only: :new
  6. def index
  7. @proofs = AccountIdentityProof.where(account: current_account).order(provider: :asc, provider_username: :asc)
  8. @proofs.each(&:refresh!)
  9. end
  10. def new
  11. @proof = current_account.identity_proofs.new(
  12. token: params[:token],
  13. provider: params[:provider],
  14. provider_username: params[:provider_username]
  15. )
  16. render layout: 'auth'
  17. end
  18. def create
  19. @proof = current_account.identity_proofs.where(provider: resource_params[:provider], provider_username: resource_params[:provider_username]).first_or_initialize(resource_params)
  20. @proof.token = resource_params[:token]
  21. if @proof.save
  22. redirect_to @proof.on_success_path(params[:user_agent])
  23. else
  24. flash[:alert] = I18n.t('identity_proofs.errors.failed', provider: @proof.provider.capitalize)
  25. redirect_to settings_identity_proofs_path
  26. end
  27. end
  28. private
  29. def check_required_params
  30. redirect_to settings_identity_proofs_path unless [:provider, :provider_username, :token].all? { |k| params[k].present? }
  31. end
  32. def resource_params
  33. params.require(:account_identity_proof).permit(:provider, :provider_username, :token)
  34. end
  35. end