property_hire/app/controllers/admin/property_hires_controller.rb

212 lines
6.9 KiB
Ruby
Raw Normal View History

2017-01-20 09:02:50 +00:00
class Admin::PropertyHiresController < OrbitAdminController
2020-03-23 17:26:52 +00:00
include Admin::PropertyHiresHelper
2017-01-20 09:02:50 +00:00
def index
@tags = @module_app.tags
@categories = @module_app.categories.enabled
@filter_fields = filter_fields(@categories, @tags)
@table_fields = ["property_hire.title", :category, "property_hire.location", "property_hire.available_for_hire"]
@properties = Property.where(:title.ne => "")
.order_by(sort)
.with_categories(filters("category"))
.with_tags(filters("tag"))
@properties = search_data(@properties,[:title]).page(params[:page]).per(10)
end
def my_bookings
@table_fields = ["property_hire.hiring_person_name", "property_hire.reason_for_hire", "property_hire.hiring_person_number", "property_hire.period", "property_hire.passed", :actions]
@bookings = PHire.where(:hiring_person_id => current_user.member_profile.id.to_s).desc(:created_at).page(params[:page]).per(10)
end
2017-01-20 09:02:50 +00:00
def new
@property = Property.new
2020-03-23 17:26:52 +00:00
create_set (false)
2017-01-20 09:02:50 +00:00
@locations = PropertyLocation.all.desc(:created_at).collect{|loc| [loc.title, loc.id.to_s]}
@locations << ["Other", "other_location"]
end
def edit
@property = Property.where(:uid => params[:id].split("-").last).first rescue nil
2020-03-23 17:26:52 +00:00
create_set (true)
2017-01-20 09:02:50 +00:00
@locations = PropertyLocation.all.desc(:created_at).collect{|loc| [loc.title, loc.id.to_s]}
@locations << ["Other", "other_location"]
end
def show
@table_fields = ["property_hire.hiring_person_name", "property_hire.reason_for_hire", "property_hire.hiring_person_number", "property_hire.period", "property_hire.passed", :actions]
@property = Property.where(:uid => params[:id].split("-").last).first rescue nil
@bookings = @property.p_hires.desc(:created_at).page(params[:page]).per(10)
end
def destroy
property = Property.find(params[:id]) rescue nil
2020-03-23 17:26:52 +00:00
email = Array(MemberProfile.find(property.owners)).collect{|v| v.email} rescue []
email = User.all.select{|v| v.is_admin? && v.user_name != 'rulingcom'}.collect{|v| v.member_profile.email} if email.length == 0
2020-05-20 12:14:02 +00:00
Admin::PropertyHiresHelper::HireMethod.send_mail('delete',email,property.id,nil,nil,current_user.id)
2017-01-20 09:02:50 +00:00
property.destroy if !property.nil?
if params[:page]
redirect_to admin_property_hires_path(:page => params[:page])
else
redirect_to admin_property_hires_path
end
end
def update
property = Property.where(:uid => params[:id].split("-").last).first rescue nil
redirect_to admin_property_hires_path and return if property.nil?
property.update_attributes(property_params)
2020-03-23 17:26:52 +00:00
email = Array(MemberProfile.find(property.owners)).collect{|v| v.email} rescue []
email = User.all.select{|v| v.is_admin? && v.user_name != 'rulingcom'}.collect{|v| v.member_profile.email} if email.length == 0
2020-05-20 12:14:02 +00:00
Admin::PropertyHiresHelper::HireMethod.send_mail('edit',email,property.id,nil,nil,current_user.id)
2017-01-20 09:02:50 +00:00
if params[:page]
redirect_to admin_property_hires_path(:page => params[:page])
else
redirect_to admin_property_hires_path
end
end
def create
2020-03-23 17:26:52 +00:00
if Property.create(property_params)
2017-01-20 09:02:50 +00:00
redirect_to admin_property_hires_path
end
end
def show_booking_details
@booking = PHire.find(params[:id]) rescue nil
end
def settings
if PropertyHireSetting.count == 0
@settings = PropertyHireSetting.create
else
@settings = PropertyHireSetting.first
end
if request.request_method == "PATCH"
@settings.update_attributes(settings_params)
@settings.save
@saved = true
else
@saved = false
end
end
2018-01-17 07:53:58 +00:00
def delete_booking_details
booking = PHire.find(params[:id])
property = booking.property
booking.destroy
if request.referrer.split("/").last == "my_bookings"
redirect_to my_bookings_admin_property_hires_path
else
redirect_to admin_property_hire_path(property)
end
2018-01-17 07:53:58 +00:00
end
2017-01-20 09:02:50 +00:00
def pass_booking
phire = PHire.find(params[:id]) rescue nil
case params[:status]
when "accept"
phire.passed = true
when "reject"
phire.passed = false
end
phire.save
if params[:ref] == "index"
if params[:page]
redirect_to admin_property_hire_path(phire.property, :page => params[:page])
else
redirect_to admin_property_hire_path(phire.property)
end
else
redirect_to show_booking_details_admin_property_hire_path(phire)
end
end
def manage_locations
@table_fields = ["property_hire.location", "property_hire.property_count"]
@locations = PropertyLocation.all.desc(:created_at).page(params[:page]).per(10)
end
def add_location
@location = PropertyLocation.new
render :layout => false
end
def create_location
PropertyLocation.create(location_params)
redirect_to manage_locations_admin_property_hires_path
end
def edit_location
@location = PropertyLocation.find(params[:id])
render :layout => false
end
def update_location
location = PropertyLocation.find(params[:id]) rescue nil
if location.nil?
redirect_to manage_locations_admin_property_hires_path
else
location.update_attributes(location_params)
if params[:page]
redirect_to manage_locations_admin_property_hires_path(:page => params[:page])
else
redirect_to manage_locations_admin_property_hires_path
end
end
end
def destroy_location
location = PropertyLocation.find(params[:id]) rescue nil
if location.nil?
redirect_to manage_locations_admin_property_hires_path
else
location.destroy
if params[:page]
redirect_to manage_locations_admin_property_hires_path(:page => params[:page])
else
redirect_to manage_locations_admin_property_hires_path
end
end
end
private
def settings_params
params.require(:property_hire_setting).permit!
end
2017-01-20 09:02:50 +00:00
def location_params
params.require(:property_location).permit!
end
def property_params
prop = params.require(:property).permit!
prop.delete(:property_location) if prop[:property_location] == "other"
prop
end
2020-03-23 17:26:52 +00:00
def create_set (save_flag)
@email_set = []
['p_hire','edit','delete'].each do |field_name|
email_set = @property.hire_email_sets.select{|v| v.field_name==field_name}
if email_set.length==0
title = Hash.new
content = Hash.new
I18n.available_locales.each do |locale|
I18n.with_locale(locale) do
title[locale] = t("property_hire.email_#{field_name}_success")
content[locale] = t("property_hire.email_#{field_name}_content")
end
end
if save_flag
email_set = @property.hire_email_sets.create(field_name:field_name,title:title,content:content)
else
email_set = @property.hire_email_sets.new(field_name:field_name,title:title,content:content)
end
else
email_set = email_set[0]
end
@email_set << email_set
end
end
2017-01-20 09:02:50 +00:00
end