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

60 lines
1.5 KiB
Ruby
Raw Normal View History

2013-01-22 17:05:01 +00:00
class UsersController < ApplicationController
skip_before_filter :authenticate_user!
before_filter :set_user
layout :determine_layout
2013-06-07 14:31:12 +00:00
2013-01-22 17:05:01 +00:00
def show
# Projects user can view
visible_projects = ProjectsFinder.new.execute(current_user)
authorized_projects_ids = visible_projects.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
2015-01-29 09:20:17 +00:00
respond_to do |format|
format.html
format.atom { render layout: false }
end
end
def calendar
visible_projects = ProjectsFinder.new.execute(current_user)
# Get user repositories and collect timestamps for commits
user_repositories = visible_projects.map(&:repository)
calendar = Gitlab::CommitsCalendar.new(user_repositories, @user)
@timestamps = calendar.timestamps
@starting_year = (Time.now - 1.year).strftime("%Y")
@starting_month = Date.today.strftime("%m").to_i
2015-01-29 09:20:17 +00:00
render 'calendar', layout: false
2013-01-22 17:05:01 +00:00
end
def determine_layout
if current_user
'navless'
else
'public_users'
end
end
2015-01-29 09:20:17 +00:00
private
def set_user
2015-01-29 09:20:17 +00:00
@user = User.find_by_username!(params[:username])
unless current_user || @user.public_profile?
return authenticate_user!
end
end
2013-01-22 17:05:01 +00:00
end