2013-01-22 12:05:01 -05:00
|
|
|
class UsersController < ApplicationController
|
2015-01-29 11:55:57 -05:00
|
|
|
skip_before_filter :authenticate_user!
|
|
|
|
before_filter :set_user
|
2014-01-27 09:53:59 -05:00
|
|
|
layout :determine_layout
|
2013-06-07 10:31:12 -04:00
|
|
|
|
2013-01-22 12:05:01 -05:00
|
|
|
def show
|
2015-02-18 16:28:24 -05:00
|
|
|
@contributed_projects = Project.
|
|
|
|
where(id: authorized_projects_ids & @user.contributed_projects_ids).
|
2015-02-24 10:28:23 -05:00
|
|
|
in_group_namespace.
|
|
|
|
includes(:namespace).
|
|
|
|
reject(&:forked?)
|
2015-02-18 01:40:00 -05:00
|
|
|
|
2014-06-05 13:37:35 -04:00
|
|
|
@projects = @user.personal_projects.
|
2015-02-18 03:16:42 -05:00
|
|
|
where(id: authorized_projects_ids).includes(:namespace)
|
2014-06-05 13:37:35 -04:00
|
|
|
|
|
|
|
# Collect only groups common for both users
|
|
|
|
@groups = @user.groups & GroupsFinder.new.execute(current_user)
|
|
|
|
|
|
|
|
# Get user activity feed for projects common for both users
|
|
|
|
@events = @user.recent_events.
|
2015-02-18 03:16:42 -05:00
|
|
|
where(project_id: authorized_projects_ids).
|
2015-02-18 12:38:46 -05:00
|
|
|
with_associations.limit(30)
|
2014-06-05 13:37:35 -04:00
|
|
|
|
2013-06-07 10:31:12 -04:00
|
|
|
@title = @user.name
|
2015-02-13 08:31:42 -05:00
|
|
|
@title_url = user_path(@user)
|
2014-12-04 14:49:19 -05:00
|
|
|
|
2015-01-29 04:20:17 -05:00
|
|
|
respond_to do |format|
|
|
|
|
format.html
|
|
|
|
format.atom { render layout: false }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def calendar
|
2015-02-18 16:28:24 -05:00
|
|
|
projects = Project.where(id: authorized_projects_ids & @user.contributed_projects_ids)
|
|
|
|
calendar = Gitlab::CommitsCalendar.new(projects, @user)
|
2015-01-29 03:53:43 -05:00
|
|
|
@timestamps = calendar.timestamps
|
2015-01-29 20:07:44 -05:00
|
|
|
@starting_year = calendar.starting_year
|
|
|
|
@starting_month = calendar.starting_month
|
2015-01-28 16:18:22 -05:00
|
|
|
|
2015-01-29 04:20:17 -05:00
|
|
|
render 'calendar', layout: false
|
2013-01-22 12:05:01 -05:00
|
|
|
end
|
2014-01-27 09:53:59 -05:00
|
|
|
|
|
|
|
def determine_layout
|
|
|
|
if current_user
|
|
|
|
'navless'
|
|
|
|
else
|
|
|
|
'public_users'
|
|
|
|
end
|
|
|
|
end
|
2015-01-29 04:20:17 -05:00
|
|
|
|
|
|
|
private
|
|
|
|
|
2015-01-29 11:55:57 -05:00
|
|
|
def set_user
|
2015-01-29 04:20:17 -05:00
|
|
|
@user = User.find_by_username!(params[:username])
|
|
|
|
|
|
|
|
unless current_user || @user.public_profile?
|
|
|
|
return authenticate_user!
|
|
|
|
end
|
|
|
|
end
|
2015-02-18 16:28:24 -05:00
|
|
|
|
|
|
|
def authorized_projects_ids
|
|
|
|
# Projects user can view
|
|
|
|
@authorized_projects_ids ||=
|
|
|
|
ProjectsFinder.new.execute(current_user).pluck(:id)
|
|
|
|
end
|
2013-01-22 12:05:01 -05:00
|
|
|
end
|