2015-04-30 13:06:18 -04:00
|
|
|
class DashboardController < Dashboard::ApplicationController
|
2015-11-17 05:03:18 -05:00
|
|
|
include IssuesAction
|
|
|
|
include MergeRequestsAction
|
|
|
|
|
2018-03-23 10:27:15 -04:00
|
|
|
FILTER_PARAMS = [
|
|
|
|
:author_id,
|
|
|
|
:assignee_id,
|
|
|
|
:milestone_title,
|
|
|
|
:label_name
|
|
|
|
].freeze
|
|
|
|
|
2015-08-25 08:13:04 -04:00
|
|
|
before_action :event_filter, only: :activity
|
2016-03-22 14:19:53 -04:00
|
|
|
before_action :projects, only: [:issues, :merge_requests]
|
2017-01-10 18:52:25 -05:00
|
|
|
before_action :set_show_full_reference, only: [:issues, :merge_requests]
|
2018-03-27 11:29:13 -04:00
|
|
|
before_action :check_filters_presence!, only: [:issues, :merge_requests]
|
2015-05-16 09:04:45 -04:00
|
|
|
|
2015-04-30 13:06:18 -04:00
|
|
|
respond_to :html
|
2012-11-05 13:12:26 -05:00
|
|
|
|
2015-08-25 08:13:04 -04:00
|
|
|
def activity
|
|
|
|
respond_to do |format|
|
|
|
|
format.html
|
|
|
|
|
|
|
|
format.json do
|
|
|
|
load_events
|
|
|
|
pager_json("events/_events", @events.count)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-11-21 00:24:05 -05:00
|
|
|
protected
|
|
|
|
|
2015-02-18 12:38:46 -05:00
|
|
|
def load_events
|
2016-01-25 10:56:23 -05:00
|
|
|
projects =
|
2015-09-02 13:17:04 -04:00
|
|
|
if params[:filter] == "starred"
|
2017-05-30 17:24:17 -04:00
|
|
|
ProjectsFinder.new(current_user: current_user, params: { starred: true }).execute
|
2015-09-02 13:17:04 -04:00
|
|
|
else
|
|
|
|
current_user.authorized_projects
|
2016-01-25 10:56:23 -05:00
|
|
|
end
|
2015-09-02 13:17:04 -04:00
|
|
|
|
2017-07-27 13:42:15 -04:00
|
|
|
@events = EventCollection
|
|
|
|
.new(projects, offset: params[:offset].to_i, filter: @event_filter)
|
|
|
|
.to_a
|
2017-11-06 11:52:56 -05:00
|
|
|
|
|
|
|
Events::RenderService.new(current_user).execute(@events)
|
2015-02-18 12:38:46 -05:00
|
|
|
end
|
2017-01-10 18:52:25 -05:00
|
|
|
|
|
|
|
def set_show_full_reference
|
|
|
|
@show_full_reference = true
|
|
|
|
end
|
2018-03-23 10:27:15 -04:00
|
|
|
|
2018-03-27 11:29:13 -04:00
|
|
|
def check_filters_presence!
|
2018-03-23 10:27:15 -04:00
|
|
|
@no_filters_set = FILTER_PARAMS.none? { |k| params.key?(k) }
|
|
|
|
|
2018-03-27 11:29:13 -04:00
|
|
|
return unless @no_filters_set
|
|
|
|
|
|
|
|
respond_to do |format|
|
|
|
|
format.html
|
|
|
|
format.atom { head :bad_request }
|
|
|
|
end
|
2018-03-23 10:27:15 -04:00
|
|
|
end
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|