Skip to content
代码片段 群组 项目
projects_controller.rb 3.2 KB
更新 更旧
Valery Sizov's avatar
Valery Sizov 已提交
require File.join(Rails.root, 'lib', 'graph_commit')

gitlabhq's avatar
gitlabhq 已提交
class ProjectsController < ApplicationController
Nihad Abbasov's avatar
Nihad Abbasov 已提交
  before_filter :project, :except => [:index, :new, :create]
gitlabhq's avatar
gitlabhq 已提交
  layout :determine_layout
gitlabhq's avatar
gitlabhq 已提交

  # Authorize
  before_filter :add_project_abilities
Nihad Abbasov's avatar
Nihad Abbasov 已提交
  before_filter :authorize_read_project!, :except => [:index, :new, :create]
  before_filter :authorize_admin_project!, :only => [:edit, :update, :destroy]
Dmitriy Zaporozhets's avatar
Dmitriy Zaporozhets 已提交
  before_filter :require_non_empty_project, :only => [:blob, :tree, :graph]
gitlabhq's avatar
gitlabhq 已提交

gitlabhq's avatar
gitlabhq 已提交
  def index
    @limit, @offset = (params[:limit] || 16), (params[:offset] || 0)
    @projects = current_user.projects.limit(@limit).offset(@offset)
gitlabhq's avatar
gitlabhq 已提交
  end

  def new
    @project = Project.new
  end

  def edit
  end

  def create
    @project = Project.new(params[:project])
    @project.owner = current_user

Nihad Abbasov's avatar
Nihad Abbasov 已提交
    Project.transaction do
gitlabhq's avatar
gitlabhq 已提交
      @project.save!
      @project.users_projects.create!(:repo_access => Repository::REPO_RW , :project_access => Project::PROJECT_RWA, :user => current_user)

      # when project saved no team member exist so 
      # project repository should be updated after first user add
      @project.update_repository
gitlabhq's avatar
gitlabhq 已提交
    end

    respond_to do |format|
      if @project.valid?
        format.html { redirect_to @project, notice: 'Project was successfully created.' }
Nihad Abbasov's avatar
Nihad Abbasov 已提交
        format.js
gitlabhq's avatar
gitlabhq 已提交
      else
        format.html { render action: "new" }
        format.js
      end
    end
  rescue Gitlabhq::Gitolite::AccessDenied
    render :js => "location.href = '#{errors_githost_path}'" and return
gitlabhq's avatar
gitlabhq 已提交
  rescue StandardError => ex
    @project.errors.add(:base, "Cant save project. Please try again later")
    respond_to do |format|
      format.html { render action: "new" }
      format.js
    end
  end
gitlabhq's avatar
gitlabhq 已提交

gitlabhq's avatar
gitlabhq 已提交
  def update
gitlabhq's avatar
gitlabhq 已提交
    respond_to do |format|
gitlabhq's avatar
gitlabhq 已提交
      if project.update_attributes(params[:project])
        format.html { redirect_to info_project_path(project), :notice => 'Project was successfully updated.' }
Nihad Abbasov's avatar
Nihad Abbasov 已提交
        format.js
gitlabhq's avatar
gitlabhq 已提交
      else
        format.html { render action: "edit" }
Nihad Abbasov's avatar
Nihad Abbasov 已提交
        format.js
gitlabhq's avatar
gitlabhq 已提交
      end
gitlabhq's avatar
gitlabhq 已提交
    end
  end

  def show
    return render "projects/empty" unless @project.repo_exists? && @project.has_commits?
    limit = (params[:limit] || 20).to_i
    @activities = @project.cached_updates(limit)
Dmitriy Zaporozhets's avatar
Dmitriy Zaporozhets 已提交
    @notes = @project.notes.where("attachment != 'NULL'").order("created_at DESC").limit(100)
  def info
gitlabhq's avatar
gitlabhq 已提交
  end

gitlabhq's avatar
gitlabhq 已提交
  #
  # Wall
  #
gitlabhq's avatar
gitlabhq 已提交
  def wall
    @note = Note.new
gitlabhq's avatar
gitlabhq 已提交
    @notes = @project.common_notes.order("created_at DESC")
gitlabhq's avatar
gitlabhq 已提交
    @notes = @notes.fresh.limit(20)
gitlabhq's avatar
gitlabhq 已提交

    respond_to do |format|
gitlabhq's avatar
gitlabhq 已提交
      format.html
      format.js { respond_with_notes }
gitlabhq's avatar
gitlabhq 已提交
    end
gitlabhq's avatar
gitlabhq 已提交
  end
Valery Sizov's avatar
Valery Sizov 已提交
  def graph
    @days_json, @commits_json = GraphCommit.to_graph(project)
Valery Sizov's avatar
Valery Sizov 已提交
  end

gitlabhq's avatar
gitlabhq 已提交
  def destroy
    # Disable the UsersProject update_repository call, otherwise it will be
    # called once for every person removed from the project
    UsersProject.skip_callback(:destroy, :after, :update_repository)
gitlabhq's avatar
gitlabhq 已提交
    project.destroy
    UsersProject.set_callback(:destroy, :after, :update_repository)
gitlabhq's avatar
gitlabhq 已提交

    respond_to do |format|
      format.html { redirect_to projects_url }
    end
  end

Nihad Abbasov's avatar
Nihad Abbasov 已提交
  protected
gitlabhq's avatar
gitlabhq 已提交

Nihad Abbasov's avatar
Nihad Abbasov 已提交
  def project
gitlabhq's avatar
gitlabhq 已提交
    @project ||= Project.find_by_code(params[:id])
  end
gitlabhq's avatar
gitlabhq 已提交

  def determine_layout
    if @project && !@project.new_record?
      "project"
    else
      "application"
    end
  end
gitlabhq's avatar
gitlabhq 已提交
end