2011-10-08 17:36:38 -04:00
|
|
|
class DashboardController < ApplicationController
|
2012-01-14 14:44:08 -05:00
|
|
|
respond_to :html
|
2011-12-08 15:17:53 -05:00
|
|
|
|
2013-06-19 10:48:43 -04:00
|
|
|
before_filter :load_projects, except: [:projects]
|
2013-01-27 05:56:20 -05:00
|
|
|
before_filter :event_filter, only: :show
|
2014-01-15 09:16:45 -05:00
|
|
|
before_filter :default_filter, only: [:issues, :merge_requests]
|
|
|
|
|
2012-11-05 13:12:26 -05:00
|
|
|
|
2013-01-27 05:56:20 -05:00
|
|
|
def show
|
2013-09-26 12:46:31 -04:00
|
|
|
# Fetch only 30 projects.
|
|
|
|
# If user needs more - point to Dashboard#projects page
|
|
|
|
@projects_limit = 30
|
|
|
|
|
2013-02-19 02:13:19 -05:00
|
|
|
@groups = current_user.authorized_groups.sort_by(&:human_name)
|
2012-12-04 04:18:13 -05:00
|
|
|
@has_authorized_projects = @projects.count > 0
|
2013-01-27 05:34:27 -05:00
|
|
|
@projects_count = @projects.count
|
2013-09-26 12:46:31 -04:00
|
|
|
@projects = @projects.limit(@projects_limit)
|
2012-11-29 10:17:01 -05:00
|
|
|
|
2013-01-02 12:00:00 -05:00
|
|
|
@events = Event.in_projects(current_user.authorized_projects.pluck(:id))
|
2012-11-05 13:12:26 -05:00
|
|
|
@events = @event_filter.apply_filter(@events)
|
|
|
|
@events = @events.limit(20).offset(params[:offset] || 0)
|
|
|
|
|
2012-06-12 16:13:42 -04:00
|
|
|
@last_push = current_user.recent_push
|
2012-02-29 15:38:24 -05:00
|
|
|
|
2014-03-17 05:29:50 -04:00
|
|
|
@publicish_project_count = Project.publicish(current_user).count
|
|
|
|
|
2012-06-12 16:13:42 -04:00
|
|
|
respond_to do |format|
|
2012-10-02 13:42:15 -04:00
|
|
|
format.html
|
2013-11-28 04:38:20 -05:00
|
|
|
format.json { pager_json("events/_events", @events.count) }
|
2012-08-10 18:07:50 -04:00
|
|
|
format.atom { render layout: false }
|
2012-06-12 16:13:42 -04:00
|
|
|
end
|
2011-12-08 15:17:53 -05:00
|
|
|
end
|
|
|
|
|
2013-01-27 05:34:27 -05:00
|
|
|
def projects
|
|
|
|
@projects = case params[:scope]
|
|
|
|
when 'personal' then
|
2013-06-19 10:48:43 -04:00
|
|
|
current_user.namespace.projects
|
2013-01-27 05:34:27 -05:00
|
|
|
when 'joined' then
|
2013-06-19 10:48:43 -04:00
|
|
|
current_user.authorized_projects.joined(current_user)
|
|
|
|
when 'owned' then
|
|
|
|
current_user.owned_projects
|
2013-01-27 05:34:27 -05:00
|
|
|
else
|
2013-06-19 10:48:43 -04:00
|
|
|
current_user.authorized_projects
|
2013-08-29 14:45:19 -04:00
|
|
|
end
|
|
|
|
|
2014-01-19 13:55:59 -05:00
|
|
|
@projects = @projects.where(namespace_id: Group.find_by(name: params[:group])) if params[:group].present?
|
2013-12-05 13:26:21 -05:00
|
|
|
@projects = @projects.where(visibility_level: params[:visibility_level]) if params[:visibility_level].present?
|
2013-12-29 05:58:00 -05:00
|
|
|
@projects = @projects.includes(:namespace)
|
|
|
|
@projects = @projects.tagged_with(params[:label]) if params[:label].present?
|
|
|
|
@projects = @projects.sort(@sort = params[:sort])
|
|
|
|
@projects = @projects.page(params[:page]).per(30)
|
2013-01-27 05:34:27 -05:00
|
|
|
|
2013-06-19 10:48:43 -04:00
|
|
|
@labels = current_user.authorized_projects.tags_on(:labels)
|
2013-08-29 14:45:19 -04:00
|
|
|
@groups = current_user.authorized_groups
|
2013-01-27 05:34:27 -05:00
|
|
|
end
|
|
|
|
|
2011-12-08 15:17:53 -05:00
|
|
|
def merge_requests
|
2014-02-25 12:15:08 -05:00
|
|
|
@merge_requests = MergeRequestsFinder.new.execute(current_user, params)
|
2014-02-10 08:04:52 -05:00
|
|
|
@merge_requests = @merge_requests.page(params[:page]).per(20)
|
2014-02-25 11:15:11 -05:00
|
|
|
@merge_requests = @merge_requests.preload(:author, :target_project)
|
2011-12-08 15:17:53 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def issues
|
2014-02-25 12:15:08 -05:00
|
|
|
@issues = IssuesFinder.new.execute(current_user, params)
|
2014-02-10 08:04:52 -05:00
|
|
|
@issues = @issues.page(params[:page]).per(20)
|
2014-02-25 10:42:22 -05:00
|
|
|
@issues = @issues.preload(:author, :project)
|
2011-12-08 15:17:53 -05:00
|
|
|
|
|
|
|
respond_to do |format|
|
|
|
|
format.html
|
2012-08-10 18:07:50 -04:00
|
|
|
format.atom { render layout: false }
|
2011-12-08 15:17:53 -05:00
|
|
|
end
|
2011-10-11 16:00:00 -04:00
|
|
|
end
|
2012-11-05 13:12:26 -05:00
|
|
|
|
2012-11-21 00:24:05 -05:00
|
|
|
protected
|
|
|
|
|
2013-01-27 05:34:27 -05:00
|
|
|
def load_projects
|
2013-11-29 11:10:59 -05:00
|
|
|
@projects = current_user.authorized_projects.sorted_by_activity.non_archived
|
2012-11-21 00:24:05 -05:00
|
|
|
end
|
2014-01-15 09:16:45 -05:00
|
|
|
|
|
|
|
def default_filter
|
|
|
|
params[:scope] = 'assigned-to-me' if params[:scope].blank?
|
|
|
|
params[:state] = 'opened' if params[:state].blank?
|
2014-02-13 15:45:51 -05:00
|
|
|
params[:authorized_only] = true
|
2014-01-15 09:16:45 -05:00
|
|
|
end
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|