osem-fcy/app/controllers/admin/registrations_controller.rb

134 lines
6 KiB
Ruby
Raw Normal View History

2013-01-07 09:04:09 +01:00
class Admin::RegistrationsController < ApplicationController
before_filter :verify_organizer
def show
session[:return_to] ||= request.referer
@pdf_filename = "#{@conference.title}.pdf"
@registrations = @conference.registrations.all(:joins => :person,
2013-07-12 10:45:40 +03:00
:order => "registrations.created_at ASC",
2013-01-07 09:04:09 +01:00
:select => "registrations.*,
people.last_name AS last_name,
people.first_name AS first_name,
people.public_name AS public_name,
people.email AS email")
2013-07-12 10:45:40 +03:00
@attended = @conference.registrations.where("attended = ?", true)
2013-07-12 17:43:37 +03:00
@headers = %w[name email social_events attending_with_partner need_access other_needs arrival departure attended]
2013-07-12 10:45:40 +03:00
end
def change_field
@registration = Registration.find(params[:id])
field = params[:view_field]
if @registration.send(field.to_sym)
@registration.update_attribute(:"#{field}",0)
else
@registration.update_attribute(:"#{field}",1)
end
redirect_to admin_conference_registrations_path(@conference.short_title, @registration)
flash[:notice] = "Updated '#{params[:view_field]}' for #{(Person.where("id = ?", @registration.person_id).first).email}"
2013-01-07 09:04:09 +01:00
end
2013-07-12 10:54:59 +03:00
2013-07-12 11:43:31 +03:00
def edit
@registration = @conference.registrations.where("id = ?", params[:id]).first
@person = Person.where("id = ?", @registration.person_id).first
end
def update
reg_id = params[:format]
@registration = @conference.registrations.where("id = ?", reg_id).first
@person = Person.where("id = ?", @registration.person_id).first
begin
@person.update_attributes!(params[:registration][:person_attributes])
params[:registration].delete :person_attributes
if params[:registration][:supporter_registration]
@registration.supporter_registration.update_attributes(params[:registration][:supporter_registration_attributes])
params[:registration].delete :supporter_registration_attributes
end
2013-07-12 11:43:31 +03:00
@registration.update_attributes!(params[:registration])
2013-07-12 20:37:57 +03:00
flash[:notice] = "Successfully updated registration for #{@person.public_name} #{@person.email}"
2013-07-12 11:43:31 +03:00
redirect_to(admin_conference_registrations_path(@conference.short_title))
rescue Exception => e
Rails.logger.debug e.backtrace.join("\n")
redirect_to(admin_conference_registrations_path(@conference.short_title), :alert => 'Failed to update registration:' + e.message)
return
end
end
2013-07-12 17:40:27 +03:00
def new
@user = User.new
@person = Person.new
@registration = @person.registrations.new
@supporter_registration = @conference.supporter_registrations.new
2013-07-12 17:40:27 +03:00
@conference = Conference.find_all_by_short_title(params[:conference_id]).first
end
def create
@conference = Conference.find_all_by_short_title(params[:conference_id]).first
person = Person.where("email LIKE ?", params[:registration][:user][:email]).first
2013-07-12 17:40:27 +03:00
if !person.nil?
reg = @conference.registrations.where("person_id = ?", person.id).first
if reg.nil?
2013-07-12 17:40:27 +03:00
registration = person.registrations.new
else
2013-07-12 17:40:27 +03:00
redirect_to admin_conference_registrations_path(@conference.short_title)
flash[:notice] = "#{person.email} is already registred!"
return
end
else
if params[:registration][:person][:first_name].blank? || params[:registration][:person][:last_name].blank?
redirect_to(:back, :alert => "Please fill in your first and last name before registering.")
return
end
user = User.new
user.email = params[:registration][:user][:email]
user.password = rand(36**6).to_s(36)
begin user.save!
user.skip_confirmation!
person = Person.where("user_id = ?", user.id).first
person.update_attributes(params[:registration][:person])
begin
registration = person.registrations.new
if params[:registration][:supporter_registration]
registration.supporter_registration = @conference.supporter_registrations.new(:supporter_level_id => params[:registration][:supporter_registration][:supporter_level_id], :code => params[:registration][:supporter_registration][:code], :email => person.email, :name => person.public_name)
end
rescue Exception => e
user.destroy
person.destroy
redirect_to(:back, :alert => "Did not create registration. #{e.message}")
return
end
rescue Exception => e
redirect_to(:back, :alert => "Did not create new user/person. #{e.message}")
return
2013-07-12 17:40:27 +03:00
end
end
params[:registration].delete :person
params[:registration].delete :user
params[:registration].delete :supporter_registration
registration.update_attributes(params[:registration])
registration.update_attributes(:conference_id => @conference.id, :attended => true)
registration.save!
redirect_to admin_conference_registrations_path(@conference.short_title)
flash[:notice] = "Successfully created new registration for #{person.email}."
2013-07-12 17:40:27 +03:00
end
2013-07-12 10:54:59 +03:00
def delete
if has_role?(current_user, "Admin")
registration = @conference.registrations.where(:id => params[:id]).first
person = Person.where("id = ?", registration.person_id).first
2013-07-12 17:40:27 +03:00
begin registration.destroy
redirect_to admin_conference_registrations_path
flash[:notice] = "Deleted registration for #{person.public_name} #{person.email}"
rescue Exception => e
Rails.logger.debug e.backtrace.join("\n")
redirect_to(admin_conference_registrations_path(@conference.short_title), :alert => 'Failed to delete registration:' + e.message)
return
end
else
redirect_to(admin_conference_registrations_path(@conference.short_title), :alert => 'You must be an admin to delete a registration.')
2013-07-12 10:54:59 +03:00
end
end
2013-01-07 09:04:09 +01:00
end