2018-03-25 16:15:39 +00:00
|
|
|
# License: AGPL-3.0-or-later WITH Web-Template-Output-Additional-Permission-3.0-or-later
|
2018-03-25 17:30:42 +00:00
|
|
|
module Nonprofits
|
|
|
|
class DonationsController < ApplicationController
|
|
|
|
include NonprofitHelper
|
|
|
|
|
|
|
|
before_filter :authenticate_nonprofit_user!, only: [:index, :update, :create_offsite]
|
|
|
|
|
|
|
|
# get /nonprofit/:nonprofit_id/donations
|
|
|
|
def index
|
|
|
|
redirect_to controller: :payments, action: :index
|
|
|
|
end # def index
|
|
|
|
|
|
|
|
# post /nonprofits/:nonprofit_id/donations
|
|
|
|
def create
|
|
|
|
|
|
|
|
if params[:token]
|
|
|
|
params[:donation][:token] = params[:token]
|
|
|
|
return render_json{ InsertDonation.with_stripe(params[:donation], current_user) }
|
|
|
|
elsif params[:direct_debit_detail_id]
|
|
|
|
render JsonResp.new(params[:donation]){|data|
|
|
|
|
requires(:amount).as_int
|
|
|
|
requires(:supporter_id, :nonprofit_id)
|
|
|
|
# TODO
|
|
|
|
# requires_either(:card_id, :direct_debit_detail_id).as_int
|
|
|
|
optional(:dedication, :designation).as_string
|
|
|
|
optional(:campaign_id, :event_id).as_int
|
|
|
|
}.when_valid{|data|
|
|
|
|
|
|
|
|
|
|
|
|
InsertDonation.with_sepa(data)
|
|
|
|
|
|
|
|
}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# post /nonprofits/:nonprofit_id/donations/create_offsite
|
|
|
|
def create_offsite
|
|
|
|
render JsonResp.new(params[:donation]){|data|
|
|
|
|
requires(:amount).as_int.min(1)
|
|
|
|
requires(:supporter_id, :nonprofit_id).as_int
|
|
|
|
optional(:dedication, :designation).as_string
|
|
|
|
optional(:campaign_id, :event_id).as_int
|
|
|
|
optional(:date).as_date
|
|
|
|
optional(:offsite_payment).nested{
|
|
|
|
optional(:kind).one_of('cash', 'check')
|
|
|
|
optional(:check_number)
|
|
|
|
}
|
|
|
|
}.when_valid{|data| InsertDonation.offsite(data)}
|
|
|
|
end
|
|
|
|
|
|
|
|
def update
|
|
|
|
render_json{ UpdateDonation.update_payment(params[:id], params[:donation]) }
|
|
|
|
end
|
|
|
|
|
|
|
|
# put /nonprofits/:nonprofit_id/donations/:id
|
|
|
|
# update designation, dedication, or comment on a donation in the followup
|
|
|
|
def followup
|
|
|
|
nonprofit = Nonprofit.find(params[:nonprofit_id])
|
|
|
|
donation = nonprofit.donations.find(params[:id])
|
|
|
|
json_saved UpdateDonation.from_followup(donation, params[:donation])
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|