2013-01-22 12:05:01 -05:00
|
|
|
class UsersController < ApplicationController
|
2017-05-01 16:46:30 -04:00
|
|
|
include RoutableActions
|
|
|
|
|
2015-04-16 08:03:37 -04:00
|
|
|
skip_before_action :authenticate_user!
|
2016-09-09 08:21:00 -04:00
|
|
|
before_action :user, except: [:exists]
|
2013-06-07 10:31:12 -04:00
|
|
|
|
2013-01-22 12:05:01 -05:00
|
|
|
def show
|
2015-01-29 04:20:17 -05:00
|
|
|
respond_to do |format|
|
|
|
|
format.html
|
2015-03-22 22:41:12 -04:00
|
|
|
|
|
|
|
format.atom do
|
|
|
|
load_events
|
2017-06-12 13:21:13 -04:00
|
|
|
render layout: 'xml.atom'
|
2015-03-22 22:41:12 -04:00
|
|
|
end
|
|
|
|
|
2015-03-22 18:40:26 -04:00
|
|
|
format.json do
|
|
|
|
load_events
|
|
|
|
pager_json("events/_events", @events.count)
|
|
|
|
end
|
2015-01-29 04:20:17 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-02-24 11:08:00 -05:00
|
|
|
def groups
|
|
|
|
load_groups
|
|
|
|
|
2016-02-29 16:40:57 -05:00
|
|
|
respond_to do |format|
|
2016-03-01 11:22:27 -05:00
|
|
|
format.html { render 'show' }
|
2016-02-29 16:40:57 -05:00
|
|
|
format.json do
|
|
|
|
render json: {
|
|
|
|
html: view_to_html_string("shared/groups/_list", groups: @groups)
|
|
|
|
}
|
|
|
|
end
|
|
|
|
end
|
2016-02-24 11:08:00 -05:00
|
|
|
end
|
|
|
|
|
2016-03-01 11:43:22 -05:00
|
|
|
def projects
|
2016-02-24 11:08:00 -05:00
|
|
|
load_projects
|
|
|
|
|
2016-02-29 16:40:57 -05:00
|
|
|
respond_to do |format|
|
2016-03-01 11:22:27 -05:00
|
|
|
format.html { render 'show' }
|
2016-02-29 16:40:57 -05:00
|
|
|
format.json do
|
|
|
|
render json: {
|
2017-03-17 11:38:41 -04:00
|
|
|
html: view_to_html_string("shared/projects/_list", projects: @projects)
|
2016-02-29 16:40:57 -05:00
|
|
|
}
|
|
|
|
end
|
|
|
|
end
|
2016-02-24 11:08:00 -05:00
|
|
|
end
|
|
|
|
|
2016-03-01 11:43:22 -05:00
|
|
|
def contributed
|
2016-02-24 11:08:00 -05:00
|
|
|
load_contributed_projects
|
|
|
|
|
2016-02-29 16:40:57 -05:00
|
|
|
respond_to do |format|
|
2016-03-01 11:22:27 -05:00
|
|
|
format.html { render 'show' }
|
2016-02-29 16:40:57 -05:00
|
|
|
format.json do
|
|
|
|
render json: {
|
|
|
|
html: view_to_html_string("shared/projects/_list", projects: @contributed_projects)
|
|
|
|
}
|
|
|
|
end
|
|
|
|
end
|
2016-02-24 11:08:00 -05:00
|
|
|
end
|
|
|
|
|
2016-05-02 05:37:12 -04:00
|
|
|
def snippets
|
|
|
|
load_snippets
|
|
|
|
|
|
|
|
respond_to do |format|
|
|
|
|
format.html { render 'show' }
|
|
|
|
format.json do
|
|
|
|
render json: {
|
2017-03-17 11:38:41 -04:00
|
|
|
html: view_to_html_string("snippets/_snippets", collection: @snippets)
|
2016-05-02 05:37:12 -04:00
|
|
|
}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-01-29 04:20:17 -05:00
|
|
|
def calendar
|
2017-07-18 18:05:41 -04:00
|
|
|
render json: contributions_calendar.activity_dates
|
2013-01-22 12:05:01 -05:00
|
|
|
end
|
2014-01-27 09:53:59 -05:00
|
|
|
|
2015-03-13 06:39:26 -04:00
|
|
|
def calendar_activities
|
2016-03-03 06:11:52 -05:00
|
|
|
@calendar_date = Date.parse(params[:date]) rescue Date.today
|
|
|
|
@events = contributions_calendar.events_by_date(@calendar_date)
|
2015-03-13 06:39:26 -04:00
|
|
|
|
|
|
|
render 'calendar_activities', layout: false
|
|
|
|
end
|
|
|
|
|
2016-09-09 08:21:00 -04:00
|
|
|
def exists
|
2016-11-17 13:55:59 -05:00
|
|
|
render json: { exists: !!Namespace.find_by_path_or_name(params[:username]) }
|
2016-09-09 08:21:00 -04:00
|
|
|
end
|
|
|
|
|
2015-01-29 04:20:17 -05:00
|
|
|
private
|
2016-03-31 10:36:40 -04:00
|
|
|
|
2016-04-05 17:56:07 -04:00
|
|
|
def user
|
2017-05-04 17:20:13 -04:00
|
|
|
@user ||= find_routable!(User, params[:username])
|
2015-01-29 04:20:17 -05:00
|
|
|
end
|
2015-02-18 16:28:24 -05:00
|
|
|
|
2015-03-22 02:48:08 -04:00
|
|
|
def contributed_projects
|
2016-04-05 17:56:07 -04:00
|
|
|
ContributedProjectsFinder.new(user).execute(current_user)
|
2015-03-22 02:48:08 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def contributions_calendar
|
2016-11-04 10:15:43 -04:00
|
|
|
@contributions_calendar ||= Gitlab::ContributionsCalendar.new(user, current_user)
|
2015-03-22 02:48:08 -04:00
|
|
|
end
|
2015-03-23 12:45:40 -04:00
|
|
|
|
2015-03-22 18:40:26 -04:00
|
|
|
def load_events
|
|
|
|
# Get user activity feed for projects common for both users
|
2017-06-21 09:48:12 -04:00
|
|
|
@events = user.recent_events
|
|
|
|
.merge(projects_for_current_user)
|
|
|
|
.references(:project)
|
|
|
|
.with_associations
|
|
|
|
.limit_recent(20, params[:offset])
|
2015-11-18 06:32:35 -05:00
|
|
|
end
|
2015-03-22 18:40:26 -04:00
|
|
|
|
2016-02-24 11:08:00 -05:00
|
|
|
def load_projects
|
|
|
|
@projects =
|
2016-04-05 17:56:07 -04:00
|
|
|
PersonalProjectsFinder.new(user).execute(current_user)
|
2016-03-19 17:37:54 -04:00
|
|
|
.page(params[:page])
|
2016-02-24 11:08:00 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def load_contributed_projects
|
2016-04-05 17:56:07 -04:00
|
|
|
@contributed_projects = contributed_projects.joined(user)
|
2016-02-24 11:08:00 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def load_groups
|
2016-04-05 17:56:07 -04:00
|
|
|
@groups = JoinedGroupsFinder.new(user).execute(current_user)
|
2016-02-24 11:08:00 -05:00
|
|
|
end
|
|
|
|
|
2016-05-02 05:37:12 -04:00
|
|
|
def load_snippets
|
2017-04-28 18:06:27 -04:00
|
|
|
@snippets = SnippetsFinder.new(
|
2016-05-02 05:37:12 -04:00
|
|
|
current_user,
|
2017-04-28 18:06:27 -04:00
|
|
|
author: user,
|
2016-05-02 05:37:12 -04:00
|
|
|
scope: params[:scope]
|
2017-04-28 18:06:27 -04:00
|
|
|
).execute.page(params[:page])
|
2016-05-02 05:37:12 -04:00
|
|
|
end
|
|
|
|
|
2015-11-18 06:32:35 -05:00
|
|
|
def projects_for_current_user
|
2017-03-03 05:35:04 -05:00
|
|
|
ProjectsFinder.new(current_user: current_user).execute
|
2015-03-22 18:40:26 -04:00
|
|
|
end
|
2017-05-18 19:23:05 -04:00
|
|
|
|
|
|
|
def build_canonical_path(user)
|
|
|
|
url_for(params.merge(username: user.to_param))
|
|
|
|
end
|
2013-01-22 12:05:01 -05:00
|
|
|
end
|