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.
 
 
 
 

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