Class: SysController

Inherits:
ActionController::Base
  • Object
show all
Defined in:
app/controllers/sys_controller.rb

Overview

Redmine - project management software Copyright © 2006-2009 Jean-Philippe Lang

This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 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 General Public License for more details.

You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.

Instance Method Summary collapse

Instance Method Details

#create_project_repositoryObject



26
27
28
29
30
31
32
33
34
35
36
37
38
39
# File 'app/controllers/sys_controller.rb', line 26

def create_project_repository
  project = Project.find(params[:id])
  if project.repository
    render :nothing => true, :status => 409
  else
    logger.info "Repository for #{project.name} was reported to be created by #{request.remote_ip}."
    project.repository = Repository.factory(params[:vendor], params[:repository])
    if project.repository && project.repository.save
      render :xml => project.repository, :status => 201
    else
      render :nothing => true, :status => 422
    end
  end
end

#fetch_changesetsObject



41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# File 'app/controllers/sys_controller.rb', line 41

def fetch_changesets
  projects = []
  if params[:id]
    projects << Project.active.has_module(:repository).find(params[:id])
  else
    projects = Project.active.has_module(:repository).find(:all, :include => :repository)
  end
  projects.each do |project|
    if project.repository
      project.repository.fetch_changesets
    end
  end
  render :nothing => true, :status => 200
rescue ActiveRecord::RecordNotFound
  render :nothing => true, :status => 404
end

#projectsObject



21
22
23
24
# File 'app/controllers/sys_controller.rb', line 21

def projects
  p = Project.active.has_module(:repository).find(:all, :include => :repository, :order => 'identifier')
  render :xml => p.to_xml(:include => :repository)
end