vidpush/app/controllers/campaigns_controller.rb

88 lines
2.8 KiB
Ruby
Raw Normal View History

2014-04-07 18:41:34 +00:00
class CampaignsController < ApplicationController
before_action :set_campaign, only: [:show, :edit, :update, :destroy]
before_action :set_api_key
2014-04-07 18:41:34 +00:00
def index
@campaigns = Campaign.all
end
def show
@campaign
2014-04-07 18:41:34 +00:00
end
def new
@campaign = Campaign.new
@campaign.videolistings.build
@action = campaigns_path
2014-04-07 18:41:34 +00:00
end
def edit
@action = campaign_path(@campaign.listingcode)
2014-04-07 18:41:34 +00:00
end
2014-04-07 18:41:34 +00:00
def create
@campaign = Campaign.new campaign_params
2014-04-07 18:41:34 +00:00
if @campaign.save
2014-04-08 19:27:38 +00:00
respond_to do |format|
format.json { render json: @campaign }
format.html { redirect_to campaign_path(@campaign.listingcode), notice: 'Campaign was successfully created.' }
2014-04-08 19:27:38 +00:00
end
2014-04-07 18:41:34 +00:00
else
2014-04-21 21:22:26 +00:00
respond_to do |format|
format.json { render json: {error: @campaign.errors.full_messages } }
format.html { render action: 'new' }
2014-04-21 21:22:26 +00:00
end
2014-04-07 18:41:34 +00:00
end
end
def update
if @campaign.update(campaign_params)
redirect_to campaign_path(@campaign.listingcode), notice: 'Campaign was successfully updated.'
2014-04-07 18:41:34 +00:00
else
2014-04-21 21:22:26 +00:00
respond_to do |format|
format.json { render json: {error: @campaign.errors.full_messages } }
format.html { render action: 'edit' }
end
2014-04-07 18:41:34 +00:00
end
end
def destroy
@campaign.destroy
redirect_to campaigns_url, notice: 'Campaign was successfully destroyed.'
end
private
def set_campaign
listingcode = params[:listingcode]
if params[:campaign]
@campaign = Campaign.find_by_listingcode(params[:campaign][:listingcode]) || not_found
else
@campaign = Campaign.find_by_listingcode(listingcode) || not_found
end
2014-04-07 18:41:34 +00:00
end
def campaign_params
params.require(:campaign).permit(:id, :address, :advertisername, :awards, :background, :billingcode,
:businessphone, :categories, :city, :clientid, :companycolors, :contactphone,
:customerfirstname, :customerlastname, :description, :emailaddress, :facebookurl,
:listingcode, :productsandservices, :state, :targetaudience, :tollfreephone,
:vpa, :websiteurl, :zip,
2014-04-21 21:22:26 +00:00
videolistings_attributes: [:id, :asseturls, :clientprovidedscript, :focus,
:keywords, :musicselection, :notes, :producttypeid,
:videocode, :voiceoverselection,
])
2014-04-08 19:27:38 +00:00
end
def not_found
raise ActionController::RoutingError.new("Not Found by clientid")
end
def set_api_key
@BETTER_VIDEO_API_KEY = ENV['BETTER_VIDEO_API_KEY']
@BETTER_VIDEO_API_KEY ||= "propel test key"
end
2014-04-07 18:41:34 +00:00
end