identity_proofs_controller.rb 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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. if current_account.username.casecmp(params[:username]).zero?
  17. render layout: 'auth'
  18. else
  19. redirect_to settings_identity_proofs_path, alert: I18n.t('identity_proofs.errors.wrong_user', proving: params[:username], current: current_account.username)
  20. end
  21. end
  22. def create
  23. @proof = current_account.identity_proofs.where(provider: resource_params[:provider], provider_username: resource_params[:provider_username]).first_or_initialize(resource_params)
  24. @proof.token = resource_params[:token]
  25. if @proof.save
  26. PostStatusService.new.call(current_user.account, text: post_params[:status_text]) if publish_proof?
  27. redirect_to @proof.on_success_path(params[:user_agent])
  28. else
  29. redirect_to settings_identity_proofs_path, alert: I18n.t('identity_proofs.errors.failed', provider: @proof.provider.capitalize)
  30. end
  31. end
  32. def destroy
  33. @proof = current_account.identity_proofs.find(params[:id])
  34. @proof.destroy!
  35. redirect_to settings_identity_proofs_path, success: I18n.t('identity_proofs.removed')
  36. end
  37. private
  38. def check_required_params
  39. redirect_to settings_identity_proofs_path unless [:provider, :provider_username, :username, :token].all? { |k| params[k].present? }
  40. end
  41. def resource_params
  42. params.require(:account_identity_proof).permit(:provider, :provider_username, :token)
  43. end
  44. def publish_proof?
  45. ActiveModel::Type::Boolean.new.cast(post_params[:post_status])
  46. end
  47. def post_params
  48. params.require(:account_identity_proof).permit(:post_status, :status_text)
  49. end
  50. end