summaryrefslogtreecommitdiffstats
path: root/app/controllers/committerships_controller.rb
blob: 4c4c9ed5e624b54592175d0c02834068ff79e543 (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
86
87
88
89
90
91
#--
#   Copyright (C) 2009 Johan Sørensen <johan@johansorensen.com>
#
#   This program is free software: you can redistribute it and/or modify
#   it under the terms of the GNU Affero General Public License as published by
#   the Free Software Foundation, either version 3 of the License, or
#   (at your option) any later version.
#
#   This program is distributed in the hope that it will be useful,
#   but WITHOUT ANY WARRANTY; without even the implied warranty of
#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#   GNU Affero General Public License for more details.
#
#   You should have received a copy of the GNU Affero General Public License
#   along with this program.  If not, see <http://www.gnu.org/licenses/>.
#++

class CommittershipsController < ApplicationController
  before_filter :find_repository_owner, :except => [:auto_complete_for_group_name, :auto_complete_for_user_login]
  before_filter :find_repository, :except => [:auto_complete_for_group_name, :auto_complete_for_user_login]
  before_filter :require_adminship, :except => [:auto_complete_for_group_name, :auto_complete_for_user_login]
  
  def index
    @committerships = @repository.committerships.paginate(:all, :page => params[:page])
    @root = Breadcrumb::Committerships.new(@repository)
  end
  
  def new
    @committership = @repository.committerships.new
  end
  
  def create
    @committership = @repository.committerships.new
    if params[:group][:name].blank? && !params[:user][:login].blank?
      @committership.committer = User.find_by_login(params[:user][:login])
    else
      @committership.committer = Group.find_by_name(params[:group][:name])
    end
    @committership.creator = current_user
    
    if @committership.save
      flash[:success] = "Team added as committers"
      redirect_to([@owner, @repository, :committerships])
    else
      render :action => "new"
    end
  end
  
  def destroy
    @committership = @repository.committerships.find(params[:id])
    if @committership.destroy
      flash[:notice] = "The team was removed as a committer"
    end
    redirect_to([@owner, @repository, :committerships])
  end
  
  def auto_complete_for_group_name
    @groups = Group.find(:all, 
      :conditions => [ 'LOWER(name) LIKE ?', '%' + params[:group][:name].downcase + '%' ],
      :limit => 10)
    render :layout => false
  end
  
  def auto_complete_for_user_login
    @users = User.find(:all, 
      :conditions => [ 'LOWER(login) LIKE ?', '%' + params[:user][:login].downcase + '%' ],
      :limit => 10)
    render "/memberships/auto_complete_for_user_login", :layout => false
  end
  
  protected
    def require_adminship
      unless @owner.admin?(current_user)
        respond_to do |format|
          format.html { 
            flash[:error] = I18n.t "repositories_controller.adminship_error"
            redirect_to([@owner, @repository]) 
          }
          format.xml  { 
            render :text => I18n.t( "repositories_controller.adminship_error"), 
                    :status => :forbidden 
          }
        end
        return
      end
    end
    
    def find_repository
      @repository = @owner.repositories.find_by_name!(params[:repository_id])
    end
end