2019-07-30 23:29:24 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2020-06-12 15:03:43 -05:00
|
|
|
# License: AGPL-3.0-or-later WITH WTO-AP-3.0-or-later
|
|
|
|
# Full license explanation at https://github.com/houdiniproject/houdini/blob/master/LICENSE
|
2018-03-25 13:30:42 -04:00
|
|
|
module CreateCampaign
|
|
|
|
CAMPAIGN_NAME_LENGTH_LIMIT = 60
|
|
|
|
|
2018-11-08 18:29:00 -06:00
|
|
|
# @return [Object] a json object for historical purposes
|
|
|
|
def self.create(params, nonprofit)
|
|
|
|
Time.use_zone(nonprofit.timezone || 'UTC') do
|
|
|
|
params[:campaign][:end_datetime] = Chronic.parse(params[:campaign][:end_datetime]) if params[:campaign][:end_datetime].present?
|
|
|
|
end
|
|
|
|
|
|
|
|
if !params[:campaign][:parent_campaign_id]
|
|
|
|
campaign = nonprofit.campaigns.create params[:campaign]
|
2020-05-21 13:52:24 -05:00
|
|
|
return campaign
|
2018-11-08 18:29:00 -06:00
|
|
|
else
|
|
|
|
profile_id = params[:campaign][:profile_id]
|
2020-05-20 16:03:16 -05:00
|
|
|
Profile.find(profile_id).update params[:profile]
|
2018-11-08 18:29:00 -06:00
|
|
|
return CreatePeerToPeerCampaign.create(params[:campaign], profile_id)
|
|
|
|
end
|
|
|
|
end
|
2019-07-30 23:29:24 +02:00
|
|
|
end
|