gitlab-org--gitlab-foss/app/controllers/users_controller.rb

41 lines
992 B
Ruby
Raw Normal View History

2013-01-22 17:05:01 +00:00
class UsersController < ApplicationController
skip_before_filter :authenticate_user!, only: [:show]
layout :determine_layout
2013-06-07 14:31:12 +00:00
2013-01-22 17:05:01 +00:00
def show
@user = User.find_by_username!(params[:username])
unless current_user || @user.public_profile?
return authenticate_user!
end
# Projects user can view
authorized_projects_ids = ProjectsFinder.new.execute(current_user).pluck(:id)
@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.
where(project_id: authorized_projects_ids).limit(30)
2013-06-07 14:31:12 +00:00
@title = @user.name
respond_to do |format|
format.html
format.atom { render layout: false }
end
2013-01-22 17:05:01 +00:00
end
def determine_layout
if current_user
'navless'
else
'public_users'
end
end
2013-01-22 17:05:01 +00:00
end