2013-01-22 12:05:01 -05:00
|
|
|
class UsersController < ApplicationController
|
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
|
2014-06-05 13:37:35 -04:00
|
|
|
# Projects user can view
|
2015-01-28 16:18:22 -05:00
|
|
|
visible_projects = ProjectsFinder.new.execute(current_user)
|
|
|
|
authorized_projects_ids = visible_projects.pluck(:id)
|
2014-06-05 13:37:35 -04:00
|
|
|
|
|
|
|
@projects = @user.personal_projects.
|
|
|
|
where(id: authorized_projects_ids)
|
|
|
|
|
|
|
|
# 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.
|
2014-12-04 14:49:19 -05:00
|
|
|
where(project_id: authorized_projects_ids).limit(30)
|
2014-06-05 13:37:35 -04:00
|
|
|
|
2013-06-07 10:31:12 -04:00
|
|
|
@title = @user.name
|
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
|
|
|
|
visible_projects = ProjectsFinder.new.execute(current_user)
|
|
|
|
|
2015-01-29 03:53:43 -05:00
|
|
|
# Get user repositories and collect timestamps for commits
|
2015-01-28 16:18:22 -05:00
|
|
|
user_repositories = visible_projects.map(&:repository)
|
2015-01-29 03:53:43 -05:00
|
|
|
calendar = Gitlab::CommitsCalendar.new(user_repositories, @user)
|
|
|
|
@timestamps = calendar.timestamps
|
2015-01-29 02:00:41 -05:00
|
|
|
@starting_year = (Time.now - 1.year).strftime("%Y")
|
|
|
|
@starting_month = Date.today.strftime("%m").to_i
|
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
|
|
|
|
|
|
|
|
def authenticate_user!
|
|
|
|
@user = User.find_by_username!(params[:username])
|
|
|
|
|
|
|
|
unless current_user || @user.public_profile?
|
|
|
|
return authenticate_user!
|
|
|
|
end
|
|
|
|
end
|
2013-01-22 12:05:01 -05:00
|
|
|
end
|