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

183 lines
4.4 KiB
Ruby
Raw Normal View History

# frozen_string_literal: true
2013-01-22 17:05:01 +00:00
class UsersController < ApplicationController
include RoutableActions
include RendersMemberAccess
include ControllerWithCrossProjectAccessCheck
requires_cross_project_access show: false,
groups: false,
projects: false,
contributed: false,
snippets: true,
calendar: false,
calendar_activities: true
skip_before_action :authenticate_user!
prepend_before_action(only: [:show]) { authenticate_sessionless_user!(:rss) }
before_action :user, except: [:exists]
before_action :authorize_read_user_profile!,
only: [:calendar, :calendar_activities, :groups, :projects, :contributed_projects, :starred_projects, :snippets]
2013-06-07 14:31:12 +00:00
2013-01-22 17:05:01 +00:00
def show
2015-01-29 09:20:17 +00:00
respond_to do |format|
format.html
2015-03-23 02:41:12 +00:00
format.atom do
load_events
render layout: 'xml.atom'
2015-03-23 02:41:12 +00:00
end
format.json do
load_events
pager_json("events/_events", @events.count, events: @events)
end
2015-01-29 09:20:17 +00:00
end
end
def activity
respond_to do |format|
format.html { render 'show' }
end
end
def groups
load_groups
2016-02-29 21:40:57 +00:00
respond_to do |format|
format.html { render 'show' }
2016-02-29 21:40:57 +00:00
format.json do
render json: {
html: view_to_html_string("shared/groups/_list", groups: @groups)
}
end
end
end
def projects
load_projects
present_projects(@projects)
end
def contributed
load_contributed_projects
present_projects(@contributed_projects)
end
def starred
load_starred_projects
present_projects(@starred_projects)
end
def present_projects(projects)
2019-01-28 18:08:18 +00:00
skip_pagination = Gitlab::Utils.to_boolean(params[:skip_pagination])
skip_namespace = Gitlab::Utils.to_boolean(params[:skip_namespace])
compact_mode = Gitlab::Utils.to_boolean(params[:compact_mode])
respond_to do |format|
format.html { render 'show' }
format.json do
pager_json("shared/projects/_list", projects.count, projects: projects, skip_pagination: skip_pagination, skip_namespace: skip_namespace, compact_mode: compact_mode)
end
end
end
2016-05-02 09:37:12 +00:00
def snippets
load_snippets
respond_to do |format|
format.html { render 'show' }
format.json do
render json: {
html: view_to_html_string("snippets/_snippets", collection: @snippets)
2016-05-02 09:37:12 +00:00
}
end
end
end
2015-01-29 09:20:17 +00:00
def calendar
2017-07-18 22:05:41 +00:00
render json: contributions_calendar.activity_dates
2013-01-22 17:05:01 +00:00
end
def calendar_activities
@calendar_date = Date.parse(params[:date]) rescue Date.today
@events = contributions_calendar.events_by_date(@calendar_date)
render 'calendar_activities', layout: false
end
def exists
render json: { exists: !!Namespace.find_by_path_or_name(params[:username]) }
end
2015-01-29 09:20:17 +00:00
private
2016-03-31 14:36:40 +00:00
2016-04-05 21:56:07 +00:00
def user
@user ||= find_routable!(User, params[:username])
2015-01-29 09:20:17 +00:00
end
def contributed_projects
2016-04-05 21:56:07 +00:00
ContributedProjectsFinder.new(user).execute(current_user)
end
def starred_projects
StarredProjectsFinder.new(user, current_user: current_user).execute
end
def contributions_calendar
@contributions_calendar ||= Gitlab::ContributionsCalendar.new(user, current_user)
end
def load_events
@events = UserRecentEventsFinder.new(current_user, user, params).execute
Events::RenderService.new(current_user).execute(@events, atom_request: request.format.atom?)
end
def load_projects
@projects =
2016-04-05 21:56:07 +00:00
PersonalProjectsFinder.new(user).execute(current_user)
.page(params[:page])
.per(params[:limit])
prepare_projects_for_rendering(@projects)
end
def load_contributed_projects
2016-04-05 21:56:07 +00:00
@contributed_projects = contributed_projects.joined(user)
prepare_projects_for_rendering(@contributed_projects)
end
def load_starred_projects
@starred_projects = starred_projects
prepare_projects_for_rendering(@starred_projects)
end
def load_groups
2016-04-05 21:56:07 +00:00
@groups = JoinedGroupsFinder.new(user).execute(current_user)
prepare_groups_for_rendering(@groups)
end
2016-05-02 09:37:12 +00:00
def load_snippets
@snippets = SnippetsFinder.new(
2016-05-02 09:37:12 +00:00
current_user,
author: user,
2016-05-02 09:37:12 +00:00
scope: params[:scope]
).execute.page(params[:page])
2016-05-02 09:37:12 +00:00
end
def build_canonical_path(user)
url_for(safe_params.merge(username: user.to_param))
end
def authorize_read_user_profile!
access_denied! unless can?(current_user, :read_user_profile, user)
end
2013-01-22 17:05:01 +00:00
end