2013-01-22 12:05:01 -05:00
|
|
|
class UsersController < ApplicationController
|
2014-01-27 09:53:59 -05:00
|
|
|
skip_before_filter :authenticate_user!, only: [:show]
|
|
|
|
layout :determine_layout
|
2013-06-07 10:31:12 -04:00
|
|
|
|
2013-01-22 12:05:01 -05:00
|
|
|
def show
|
2014-01-27 09:53:59 -05:00
|
|
|
@user = User.find_by_username!(params[:username])
|
2014-05-30 11:22:59 -04:00
|
|
|
|
2014-06-02 06:43:07 -04:00
|
|
|
unless current_user || @user.public_profile?
|
2014-01-27 09:53:59 -05:00
|
|
|
return authenticate_user!
|
|
|
|
end
|
2014-05-30 11:22:59 -04:00
|
|
|
|
2014-06-05 13:37:35 -04:00
|
|
|
# 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(20)
|
|
|
|
|
2013-06-07 10:31:12 -04:00
|
|
|
@title = @user.name
|
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
|
2013-01-22 12:05:01 -05:00
|
|
|
end
|