Skip to content

Commit aa1f1eb

Browse files
committed
Merge pull request gitlabhq#2746 from gitlabhq/features/teams
New feature: Teams
2 parents 097e605 + d839f6c commit aa1f1eb

File tree

115 files changed

+2714
-174
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

115 files changed

+2714
-174
lines changed

app/assets/javascripts/dashboard.js.coffee

+4-4
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ window.dashboardPage = ->
44
event.preventDefault()
55
toggleFilter $(this)
66
reloadActivities()
7-
7+
88
reloadActivities = ->
99
$(".content_list").html ''
1010
Pager.init 20, true
11-
11+
1212
toggleFilter = (sender) ->
1313
sender.parent().toggleClass "inactive"
1414
event_filters = $.cookie("event_filter")
@@ -17,11 +17,11 @@ toggleFilter = (sender) ->
1717
event_filters = event_filters.split(",")
1818
else
1919
event_filters = new Array()
20-
20+
2121
index = event_filters.indexOf(filter)
2222
if index is -1
2323
event_filters.push filter
2424
else
2525
event_filters.splice index, 1
26-
26+
2727
$.cookie "event_filter", event_filters.join(",")

app/assets/javascripts/merge_requests.js.coffee

+9-9
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
11
#
22
# * Filter merge requests
3-
#
3+
#
44
@merge_requestsPage = ->
55
$('#assignee_id').chosen()
66
$('#milestone_id').chosen()
77
$('#milestone_id, #assignee_id').on 'change', ->
88
$(this).closest('form').submit()
99

1010
class MergeRequest
11-
11+
1212
constructor: (@opts) ->
1313
this.$el = $('.merge-request')
1414
@diffs_loaded = false
1515
@commits_loaded = false
16-
16+
1717
this.activateTab(@opts.action)
18-
18+
1919
this.bindEvents()
20-
20+
2121
this.initMergeWidget()
2222
this.$('.show-all-commits').on 'click', =>
2323
this.showAllCommits()
@@ -28,7 +28,7 @@ class MergeRequest
2828

2929
initMergeWidget: ->
3030
this.showState( @opts.current_state )
31-
31+
3232
if this.$('.automerge_widget').length and @opts.check_enable
3333
$.get @opts.url_to_automerge_check, (data) =>
3434
this.showState( data.state )
@@ -42,12 +42,12 @@ class MergeRequest
4242
bindEvents: ->
4343
this.$('.nav-tabs').on 'click', 'a', (event) =>
4444
a = $(event.currentTarget)
45-
45+
4646
href = a.attr('href')
4747
History.replaceState {path: href}, document.title, href
48-
48+
4949
event.preventDefault()
50-
50+
5151
this.$('.nav-tabs').on 'click', 'li', (event) =>
5252
this.activateTab($(event.currentTarget).data('action'))
5353

app/assets/stylesheets/sections/projects.scss

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
@extend .right;
88

99
.groups_box,
10+
.teams_box,
1011
.projects_box {
1112
> .title {
1213
padding: 2px 15px;

app/controllers/admin_controller.rb app/controllers/admin/application_controller.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Provides a base class for Admin controllers to subclass
22
#
33
# Automatically sets the layout and ensures an administrator is logged in
4-
class AdminController < ApplicationController
4+
class Admin::ApplicationController < ApplicationController
55
layout 'admin'
66
before_filter :authenticate_admin!
77

app/controllers/admin/dashboard_controller.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
class Admin::DashboardController < AdminController
1+
class Admin::DashboardController < Admin::ApplicationController
22
def index
33
@projects = Project.order("created_at DESC").limit(10)
44
@users = User.order("created_at DESC").limit(10)

app/controllers/admin/groups_controller.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
class Admin::GroupsController < AdminController
1+
class Admin::GroupsController < Admin::ApplicationController
22
before_filter :group, only: [:edit, :show, :update, :destroy, :project_update, :project_teams_update]
33

44
def index

app/controllers/admin/hooks_controller.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
class Admin::HooksController < AdminController
1+
class Admin::HooksController < Admin::ApplicationController
22
def index
33
@hooks = SystemHook.all
44
@hook = SystemHook.new
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
class Admin::LogsController < AdminController
1+
class Admin::LogsController < Admin::ApplicationController
22
end
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Provides a base class for Admin controllers to subclass
2+
#
3+
# Automatically sets the layout and ensures an administrator is logged in
4+
class Admin::Projects::ApplicationController < Admin::ApplicationController
5+
6+
protected
7+
8+
def project
9+
@project ||= Project.find_by_path(params[:project_id])
10+
end
11+
end
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
class Admin::Projects::MembersController < Admin::Projects::ApplicationController
2+
def edit
3+
@member = team_member
4+
@project = project
5+
@team_member_relation = team_member_relation
6+
end
7+
8+
def update
9+
if team_member_relation.update_attributes(params[:team_member])
10+
redirect_to [:admin, project], notice: 'Project Access was successfully updated.'
11+
else
12+
render action: "edit"
13+
end
14+
end
15+
16+
def destroy
17+
team_member_relation.destroy
18+
19+
redirect_to :back
20+
end
21+
22+
private
23+
24+
def team_member
25+
@member ||= project.users.find(params[:id])
26+
end
27+
28+
def team_member_relation
29+
team_member.users_projects.find_by_project_id(project)
30+
end
31+
32+
end

app/controllers/admin/projects_controller.rb

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
class Admin::ProjectsController < AdminController
1+
class Admin::ProjectsController < Admin::ApplicationController
22
before_filter :project, only: [:edit, :show, :update, :destroy, :team_update]
33

44
def index
@@ -29,7 +29,9 @@ def team_update
2929
end
3030

3131
def update
32-
status = Projects::UpdateContext.new(project, current_user, params).execute(:admin)
32+
project.creator = current_user unless project.creator
33+
34+
status = ::Projects::UpdateContext.new(project, current_user, params).execute(:admin)
3335

3436
if status
3537
redirect_to [:admin, @project], notice: 'Project was successfully updated.'
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
class Admin::ResqueController < AdminController
1+
class Admin::ResqueController < Admin::ApplicationController
22
def show
33
end
44
end

app/controllers/admin/team_members_controller.rb

-22
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Provides a base class for Admin controllers to subclass
2+
#
3+
# Automatically sets the layout and ensures an administrator is logged in
4+
class Admin::Teams::ApplicationController < Admin::ApplicationController
5+
6+
private
7+
8+
def user_team
9+
@team = UserTeam.find_by_path(params[:team_id])
10+
end
11+
end
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
class Admin::Teams::MembersController < Admin::Teams::ApplicationController
2+
def new
3+
@users = User.potential_team_members(user_team)
4+
@users = UserDecorator.decorate @users
5+
end
6+
7+
def create
8+
unless params[:user_ids].blank?
9+
user_ids = params[:user_ids]
10+
access = params[:default_project_access]
11+
is_admin = params[:group_admin]
12+
user_team.add_members(user_ids, access, is_admin)
13+
end
14+
15+
redirect_to admin_team_path(user_team), notice: 'Members was successfully added into Team of users.'
16+
end
17+
18+
def edit
19+
team_member
20+
end
21+
22+
def update
23+
options = {default_projects_access: params[:default_project_access], group_admin: params[:group_admin]}
24+
if user_team.update_membership(team_member, options)
25+
redirect_to admin_team_path(user_team), notice: "Membership for #{team_member.name} was successfully updated in Team of users."
26+
else
27+
render :edit
28+
end
29+
end
30+
31+
def destroy
32+
user_team.remove_member(team_member)
33+
redirect_to admin_team_path(user_team), notice: "Member #{team_member.name} was successfully removed from Team of users."
34+
end
35+
36+
protected
37+
38+
def team_member
39+
@member ||= user_team.members.find(params[:id])
40+
end
41+
end
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
class Admin::Teams::ProjectsController < Admin::Teams::ApplicationController
2+
def new
3+
@projects = Project.scoped
4+
@projects = @projects.without_team(user_team) if user_team.projects.any?
5+
#@projects.reject!(&:empty_repo?)
6+
end
7+
8+
def create
9+
unless params[:project_ids].blank?
10+
project_ids = params[:project_ids]
11+
access = params[:greatest_project_access]
12+
user_team.assign_to_projects(project_ids, access)
13+
end
14+
15+
redirect_to admin_team_path(user_team), notice: 'Team of users was successfully assgned to projects.'
16+
end
17+
18+
def edit
19+
team_project
20+
end
21+
22+
def update
23+
if user_team.update_project_access(team_project, params[:greatest_project_access])
24+
redirect_to admin_team_path(user_team), notice: 'Access was successfully updated.'
25+
else
26+
render :edit
27+
end
28+
end
29+
30+
def destroy
31+
user_team.resign_from_project(team_project)
32+
redirect_to admin_team_path(user_team), notice: 'Team of users was successfully reassigned from project.'
33+
end
34+
35+
protected
36+
37+
def team_project
38+
@project ||= user_team.projects.find_with_namespace(params[:id])
39+
end
40+
41+
end
+59
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
class Admin::TeamsController < Admin::ApplicationController
2+
def index
3+
@teams = UserTeam.order('name ASC')
4+
@teams = @teams.search(params[:name]) if params[:name].present?
5+
@teams = @teams.page(params[:page]).per(20)
6+
end
7+
8+
def show
9+
user_team
10+
end
11+
12+
def new
13+
@team = UserTeam.new
14+
end
15+
16+
def edit
17+
user_team
18+
end
19+
20+
def create
21+
@team = UserTeam.new(params[:user_team])
22+
@team.path = @team.name.dup.parameterize if @team.name
23+
@team.owner = current_user
24+
25+
if @team.save
26+
redirect_to admin_team_path(@team), notice: 'Team of users was successfully created.'
27+
else
28+
render action: "new"
29+
end
30+
end
31+
32+
def update
33+
user_team_params = params[:user_team].dup
34+
owner_id = user_team_params.delete(:owner_id)
35+
36+
if owner_id
37+
user_team.owner = User.find(owner_id)
38+
end
39+
40+
if user_team.update_attributes(user_team_params)
41+
redirect_to admin_team_path(user_team), notice: 'Team of users was successfully updated.'
42+
else
43+
render action: "edit"
44+
end
45+
end
46+
47+
def destroy
48+
user_team.destroy
49+
50+
redirect_to admin_user_teams_path, notice: 'Team of users was successfully deleted.'
51+
end
52+
53+
protected
54+
55+
def user_team
56+
@team ||= UserTeam.find_by_path(params[:id])
57+
end
58+
59+
end

app/controllers/admin/users_controller.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
class Admin::UsersController < AdminController
1+
class Admin::UsersController < Admin::ApplicationController
22
def index
33
@admin_users = User.scoped
44
@admin_users = @admin_users.filter(params[:filter])

app/controllers/application_controller.rb

+9
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,14 @@ def authorize_code_access!
9494
return access_denied! unless can?(current_user, :download_code, project)
9595
end
9696

97+
def authorize_manage_user_team!
98+
return access_denied! unless user_team.present? && can?(current_user, :manage_user_team, user_team)
99+
end
100+
101+
def authorize_admin_user_team!
102+
return access_denied! unless user_team.present? && can?(current_user, :admin_user_team, user_team)
103+
end
104+
97105
def access_denied!
98106
render "errors/access_denied", layout: "errors", status: 404
99107
end
@@ -135,4 +143,5 @@ def no_cache_headers
135143
def dev_tools
136144
Rack::MiniProfiler.authorize_request
137145
end
146+
138147
end

0 commit comments

Comments
 (0)