2013-01-22 12:05:01 -05:00
|
|
|
class UsersController < ApplicationController
|
2015-04-16 08:03:37 -04:00
|
|
|
skip_before_action :authenticate_user!
|
2016-04-05 17:56:07 -04:00
|
|
|
before_action :user
|
2016-03-31 10:36:40 -04:00
|
|
|
before_action :authorize_read_user!, only: [:show]
|
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
|
|
|
|
render layout: false
|
|
|
|
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: {
|
|
|
|
html: view_to_html_string("shared/projects/_list", projects: @projects, remote: true)
|
|
|
|
}
|
|
|
|
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: {
|
|
|
|
html: view_to_html_string("snippets/_snippets", collection: @snippets)
|
|
|
|
}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-01-29 04:20:17 -05:00
|
|
|
def calendar
|
2015-03-22 02:48:08 -04:00
|
|
|
calendar = contributions_calendar
|
2015-01-29 03:53:43 -05:00
|
|
|
@timestamps = calendar.timestamps
|
2015-01-28 16:18:22 -05:00
|
|
|
|
2015-01-29 04:20:17 -05:00
|
|
|
render 'calendar', layout: false
|
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
|
|
|
|
|
2015-01-29 04:20:17 -05:00
|
|
|
private
|
2016-03-31 10:36:40 -04:00
|
|
|
|
|
|
|
def authorize_read_user!
|
2016-04-05 17:56:07 -04:00
|
|
|
render_404 unless can?(current_user, :read_user, user)
|
2016-03-24 11:55:04 -04:00
|
|
|
end
|
2015-01-29 04:20:17 -05:00
|
|
|
|
2016-04-05 17:56:07 -04:00
|
|
|
def user
|
|
|
|
@user ||= User.find_by_username!(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
|
|
|
|
@contributions_calendar ||= Gitlab::ContributionsCalendar.
|
2016-04-05 17:56:07 -04:00
|
|
|
new(contributed_projects, 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
|
2016-04-05 17:56:07 -04:00
|
|
|
@events = user.recent_events.
|
2015-11-18 06:32:35 -05:00
|
|
|
merge(projects_for_current_user).
|
|
|
|
references(:project).
|
|
|
|
with_associations.
|
|
|
|
limit_recent(20, params[:offset])
|
|
|
|
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
|
|
|
|
@snippets = SnippetsFinder.new.execute(
|
|
|
|
current_user,
|
|
|
|
filter: :by_user,
|
|
|
|
user: user,
|
|
|
|
scope: params[:scope]
|
|
|
|
).page(params[:page])
|
|
|
|
end
|
|
|
|
|
2015-11-18 06:32:35 -05:00
|
|
|
def projects_for_current_user
|
|
|
|
ProjectsFinder.new.execute(current_user)
|
2015-03-22 18:40:26 -04:00
|
|
|
end
|
2013-01-22 12:05:01 -05:00
|
|
|
end
|