6772312ea7
The primary license of the project is changing to: AGPL-3.0-or-later WITH Web-Template-Output-Additional-Permission-3.0-or-later with some specific files to be licensed under the one of two licenses: CC0-1.0 LGPL-3.0-or-later This commit is one of the many steps to relicense the entire codebase. Documentation granting permission for this relicensing (from all past contributors who hold copyrights) is on file with Software Freedom Conservancy, Inc.
64 lines
2 KiB
Ruby
64 lines
2 KiB
Ruby
# License: AGPL-3.0-or-later WITH Web-Template-Output-Additional-Permission-3.0-or-later
|
|
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
|