1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323
|
# frozen_string_literal: true
class UsersController < ApplicationController
include InternalRedirect
include RoutableActions
include RendersMemberAccess
include RendersProjectsList
include ControllerWithCrossProjectAccessCheck
include Gitlab::NoteableMetadata
FOLLOWERS_FOLLOWING_USERS_PER_PAGE = 21
requires_cross_project_access show: false,
groups: false,
projects: false,
contributed: false,
snippets: true,
calendar: false,
followers: false,
following: 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 :set_legacy_data
before_action :authorize_read_user_profile!, only: [
:calendar, :calendar_activities, :groups, :projects, :contributed, :starred, :snippets, :followers, :following
]
before_action only: [:exists] do
check_rate_limit!(:username_exists, scope: request.ip)
end
before_action only: [:show, :activity, :groups, :projects, :contributed, :starred, :snippets, :followers, :following] do
push_frontend_feature_flag(:profile_tabs_vue, current_user)
end
feature_category :user_profile, [:show, :activity, :groups, :projects, :contributed, :starred,
:followers, :following, :calendar, :calendar_activities,
:exists, :activity, :follow, :unfollow, :ssh_keys]
feature_category :source_code_management, [:snippets, :gpg_keys]
# TODO: Set higher urgency after resolving https://gitlab.com/gitlab-org/gitlab/-/issues/357914
urgency :low, [:show, :calendar_activities, :contributed, :activity, :projects, :groups, :calendar, :snippets]
urgency :default, [:followers, :following, :starred]
urgency :high, [:exists]
def show
respond_to do |format|
format.html
format.atom do
load_events
render layout: 'xml'
end
format.json do
msg = "This endpoint is deprecated. Use %s instead." % user_activity_path
render json: { message: msg }, status: :not_found
end
end
end
# Get all keys of a user(params[:username]) in a text format
# Helpful for sysadmins to put in respective servers
def ssh_keys
keys = user.all_ssh_keys.join("\n")
keys << "\n" unless keys.empty?
render plain: keys
end
def activity
respond_to do |format|
format.html { render 'show' }
format.json do
load_events
if Feature.enabled?(:profile_tabs_vue, current_user)
@events = if user.include_private_contributions?
@events
else
@events.select { |event| event.visible_to_user?(current_user) }
end
render json: ::Profile::EventSerializer.new(current_user: current_user, target_user: user)
.represent(@events)
else
pager_json("events/_events", @events.count, events: @events)
end
end
end
end
# Get all gpg keys of a user(params[:username]) in a text format
def gpg_keys
keys = user.gpg_keys.filter_map { |gpg_key| gpg_key.key if gpg_key.verified? }.join("\n")
keys << "\n" unless keys.empty?
render plain: keys
end
def groups
respond_to do |format|
format.html { render 'show' }
format.json do
load_groups
render json: {
html: view_to_html_string("shared/groups/_list", groups: @groups)
}
end
end
end
def projects
present_projects do
load_projects
end
end
def contributed
present_projects do
load_contributed_projects
end
end
def starred
present_projects do
load_starred_projects
end
end
def followers
present_users do
@user_followers = user.followers.page(params[:page]).per(FOLLOWERS_FOLLOWING_USERS_PER_PAGE)
end
end
def following
present_users do
@user_following = user.followees.page(params[:page]).per(FOLLOWERS_FOLLOWING_USERS_PER_PAGE)
end
end
def present_projects
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])
card_mode = Gitlab::Utils.to_boolean(params[:card_mode])
respond_to do |format|
format.html { render 'show' }
format.json do
projects = yield
pager_json("shared/projects/_list", projects.count, projects: projects, skip_pagination: skip_pagination, skip_namespace: skip_namespace, compact_mode: compact_mode, card_mode: card_mode)
end
end
end
def snippets
respond_to do |format|
format.html { render 'show' }
format.json do
load_snippets
render json: {
html: view_to_html_string("snippets/_snippets", collection: @snippets)
}
end
end
end
def calendar
render json: contributions_calendar.activity_dates
end
def calendar_activities
@calendar_date = begin
Date.parse(params[:date])
rescue StandardError
Date.today
end
@events = contributions_calendar.events_by_date(@calendar_date).map(&:present)
render 'calendar_activities', layout: false
end
def exists
if Gitlab::CurrentSettings.signup_enabled? || current_user
render json: { exists: Namespace.username_reserved?(params[:username]) }
else
render json: { error: _('You must be authenticated to access this path.') }, status: :unauthorized
end
end
def follow
followee = current_user.follow(user)
if followee
flash[:alert] = followee.errors.full_messages.join(', ') if followee&.errors&.any?
else
flash[:alert] = s_('Action not allowed.')
end
redirect_path = referer_path(request) || @user
redirect_to redirect_path
end
def unfollow
response = ::Users::UnfollowService.new(
follower: current_user,
followee: user
).execute
flash[:alert] = response.message if response.error?
redirect_path = referer_path(request) || @user
redirect_to redirect_path
end
private
def user
@user ||= find_routable!(User, params[:username], request.fullpath)
end
def personal_projects
PersonalProjectsFinder.new(user).execute(current_user)
end
def contributed_projects
ContributedProjectsFinder.new(
user: user, current_user: current_user, params: { sort: 'latest_activity_desc' }
).execute
end
def starred_projects
StarredProjectsFinder.new(user, params: finder_params, 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, nil, params).execute
Events::RenderService.new(current_user).execute(@events, atom_request: request.format.atom?)
end
def load_projects
@projects = personal_projects
.page(params[:page])
.per(params[:limit])
prepare_projects_for_rendering(@projects)
end
def load_contributed_projects
@contributed_projects = contributed_projects.with_route.joined(user).page(params[:page]).without_count
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
groups = JoinedGroupsFinder.new(user).execute(current_user)
@groups = groups.page(params[:page]).without_count
prepare_groups_for_rendering(@groups)
end
def load_snippets
@snippets = SnippetsFinder.new(current_user, author: user, scope: params[:scope])
.execute
.page(params[:page])
.inc_author
@noteable_meta_data = noteable_meta_data(@snippets, 'Snippet')
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
def present_users
respond_to do |format|
format.html { render 'show' }
format.json do
users = yield
render json: {
html: view_to_html_string("shared/users/index", users: users)
}
end
end
end
def finder_params
{
# don't display projects marked for deletion
not_aimed_for_deletion: true
}
end
def set_legacy_data
controller_action = params[:action]
@action = controller_action.gsub('show', 'overview')
@endpoint = request.path
end
end
UsersController.prepend_mod_with('UsersController')
|