summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorPeter Kozak <spag@golwen.net>2013-04-29 13:41:55 +0200
committerPeter Kozak <spag@golwen.net>2013-04-29 13:41:55 +0200
commit0f0314eb0e38fc8a50530abab6aca67918ab240c (patch)
tree9b4758e6258bfc2309d5c5db6d006fda3792e488 /app
parent07e0df9203bbeae4b289add2c8b80de20a725637 (diff)
pagination added
Diffstat (limited to 'app')
-rw-r--r--app/controllers/call_histories_controller.rb33
1 files changed, 24 insertions, 9 deletions
diff --git a/app/controllers/call_histories_controller.rb b/app/controllers/call_histories_controller.rb
index 2bfd4e3..a4d0c21 100644
--- a/app/controllers/call_histories_controller.rb
+++ b/app/controllers/call_histories_controller.rb
@@ -1,5 +1,8 @@
class CallHistoriesController < ApplicationController
-
+ MAX_CALL_HISTORY_ENTRIES = 10000;
+
+ helper_method :sort_column, :sort_descending
+
load_resource :sip_account
before_filter :set_and_authorize_parent
@@ -18,12 +21,7 @@ class CallHistoriesController < ApplicationController
def index
hunt_group_member_ids = PhoneNumber.where(:phone_numberable_type => 'HuntGroupMember', :number => @sip_account.phone_numbers.map {|a| a.number}).map {|a| a.phone_numberable_id}
hunt_group_ids = HuntGroupMember.where(:id => hunt_group_member_ids, :active => true).map {|a| a.hunt_group_id}
- calls = CallHistory.where('(call_historyable_type = "SipAccount" AND call_historyable_id = ?) OR (call_historyable_type = "HuntGroup" AND call_historyable_id IN (?))', @sip_account.id, hunt_group_ids).order('start_stamp DESC')
-
- @call_histories = calls.paginate(
- :page => @pagination_page_number,
- :per_page => GsParameter.get('DEFAULT_PAGINATION_ENTRIES_PER_PAGE')
- )
+ calls = CallHistory.where('(call_historyable_type = "SipAccount" AND call_historyable_id = ?) OR (call_historyable_type = "HuntGroup" AND call_historyable_id IN (?))', @sip_account.id, hunt_group_ids).order(sort_column + ' ' + (sort_descending ? 'DESC' : 'ASC'))
@calls_count = calls.count
@calls_received_count = calls.where(:entry_type => 'received').count
@@ -32,10 +30,15 @@ class CallHistoriesController < ApplicationController
@calls_forwarded_count = calls.where(:entry_type => 'forwarded').count
if ! @type.blank?
- @call_histories = @call_histories.where(:entry_type => @type)
+ @call_histories = calls.where(:entry_type => @type).limit(MAX_CALL_HISTORY_ENTRIES)
+ else
+ @call_histories = calls.limit(MAX_CALL_HISTORY_ENTRIES)
end
- @call_histories = @call_histories.order(:created_at).reverse_order.limit(1000)
+ @call_histories = @call_histories.paginate(
+ :page => @pagination_page_number,
+ :per_page => GsParameter.get('DEFAULT_PAGINATION_ENTRIES_PER_PAGE')
+ )
end
@@ -102,4 +105,16 @@ class CallHistoriesController < ApplicationController
end
end
+ def sort_descending
+ if sort_column == 'start_stamp' && params[:desc].to_s.blank?
+ return true
+ end
+
+ params[:desc].to_s == 'true'
+ end
+
+ def sort_column
+ CallHistory.column_names.include?(params[:sort]) ? params[:sort] : 'start_stamp'
+ end
+
end