Welcome to mirror list, hosted at ThFree Co, Russian Federation.

users_controller.rb « controllers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 68130eb128cfdd5eb7bf36034fa6d7296139f962 (plain)
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
class UsersController < ApplicationController
  skip_before_filter :authenticate_user!
  before_filter :set_user
  layout :determine_layout

  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.
      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.
      where(project_id: authorized_projects_ids).
      with_associations.limit(30)

    @title = @user.name
    @title_url = user_path(@user)

    respond_to do |format|
      format.html
      format.atom { render layout: false }
    end
  end

  def calendar
    projects = Project.where(id: authorized_projects_ids & @user.contributed_projects_ids)

    calendar = Gitlab::CommitsCalendar.new(projects, @user)
    @timestamps = calendar.timestamps
    @starting_year = calendar.starting_year
    @starting_month = calendar.starting_month

    render 'calendar', layout: false
  end

  def calendar_activities
    projects = Project.where(id: authorized_projects_ids & @user.contributed_projects_ids)

    date = Date.parse(params[:date]) rescue nil
    if date
      @calendar_activities = Gitlab::CommitsCalendar.get_commits_for_date(projects, @user, date)
    else
      @calendar_activities = {}
    end

    # get the total number of unique commits
    @commit_count = @calendar_activities.values.flatten.map(&:id).uniq.count

    @calendar_date = date

    render 'calendar_activities', layout: false
  end

  def determine_layout
    if current_user
      'navless'
    else
      'public_users'
    end
  end

  private

  def set_user
    @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
end