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

87 lines
2.1 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
@contributed_projects = Project.
where(id: authorized_projects_ids & @user.contributed_projects_ids).
in_group_namespace.
includes(:namespace).
reject(&:forked?)
@projects = @user.personal_projects.
2015-02-18 08:16:42 +00:00
where(id: authorized_projects_ids).includes(:namespace)
# 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 08:16:42 +00:00
where(project_id: authorized_projects_ids).
2015-02-18 17:38:46 +00:00
with_associations.limit(30)
2013-06-07 14:31:12 +00:00
@title = @user.name
@title_url = user_path(@user)
2015-01-29 09:20:17 +00:00
respond_to do |format|
format.html
format.atom { render layout: false }
end
end
def calendar
calendar = contributions_calendar
@timestamps = calendar.timestamps
@starting_year = calendar.starting_year
@starting_month = calendar.starting_month
2015-01-29 09:20:17 +00:00
render 'calendar', layout: false
2013-01-22 17:05:01 +00:00
end
def calendar_activities
@calendar_date = Date.parse(params[:date]) rescue nil
@events = []
if @calendar_date
@events = contributions_calendar.events_by_date(@calendar_date)
end
render 'calendar_activities', layout: false
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
def authorized_projects_ids
# Projects user can view
@authorized_projects_ids ||=
ProjectsFinder.new.execute(current_user).pluck(:id)
end
def contributed_projects
@contributed_projects = Project.
where(id: authorized_projects_ids & @user.contributed_projects_ids).reject(&:forked?)
end
def contributions_calendar
@contributions_calendar ||= Gitlab::ContributionsCalendar.
new(contributed_projects, @user)
end
2013-01-22 17:05:01 +00:00
end