before_filter :require_admin
before_filter :build_new_custom_field, :only => [:new, :create]
before_filter :find_custom_field, :only => [:edit, :update, :destroy]
+ accept_api_auth :index
def index
- @custom_fields_by_type = CustomField.all.group_by {|f| f.class.name }
- @tab = params[:tab] || 'IssueCustomField'
+ respond_to do |format|
+ format.html {
+ @custom_fields_by_type = CustomField.all.group_by {|f| f.class.name }
+ @tab = params[:tab] || 'IssueCustomField'
+ }
+ format.api {
+ @custom_fields = CustomField.all
+ }
+ end
end
def new
values.each do |value|
value.force_encoding('UTF-8') if value.respond_to?(:force_encoding)
end
+ values
+ else
+ []
end
- values || []
end
end
def self.customized_class
self.name =~ /^(.+)CustomField$/
- begin; $1.constantize; rescue nil; end
+ $1.constantize rescue nil
end
# to move in project_custom_field
--- /dev/null
+api.array :custom_fields do
+ @custom_fields.each do |field|
+ api.custom_field do
+ api.id field.id
+ api.name field.name
+ api.customized_type field.class.customized_class.name.underscore if field.class.customized_class
+ api.field_format field.field_format
+ api.regexp field.regexp
+ api.min_length (field.min_length == 0 ? nil : field.min_length)
+ api.max_length (field.max_length == 0 ? nil : field.max_length)
+ api.is_required field.is_required?
+ api.is_filter field.is_filter?
+ api.searchable field.searchable
+ api.multiple field.multiple?
+ api.default_value field.default_value
+ api.visible field.visible?
+
+ if field.field_format == 'list'
+ api.array :possible_values do
+ field.possible_values.each do |v|
+ api.possible_value do
+ api.value v
+ end
+ end
+ end
+ end
+
+ if field.is_a?(IssueCustomField)
+ api.trackers do
+ field.trackers.each do |tracker|
+ api.tracker :id => tracker.id, :name => tracker.name
+ end
+ end
+ api.roles do
+ field.roles.each do |role|
+ api.role :id => role.id, :name => role.name
+ end
+ end
+ end
+ end
+ end
+end
--- /dev/null
+# Redmine - project management software
+# Copyright (C) 2006-2013 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.
+
+require File.expand_path('../../../test_helper', __FILE__)
+
+class Redmine::ApiTest::CustomFieldsTest < Redmine::ApiTest::Base
+ fixtures :users, :custom_fields
+
+ def setup
+ Setting.rest_api_enabled = '1'
+ end
+
+ test "GET /custom_fields.xml should return custom fields" do
+ get '/custom_fields.xml', {}, credentials('admin')
+ assert_response :success
+ assert_equal 'application/xml', response.content_type
+
+ assert_select 'custom_fields' do
+ assert_select 'custom_field' do
+ assert_select 'name', :text => 'Database'
+ assert_select 'id', :text => '2'
+ assert_select 'customized_type', :text => 'issue'
+ assert_select 'possible_values[type=array]' do
+ assert_select 'possible_value>value', :text => 'PostgreSQL'
+ end
+ end
+ end
+ end
+end
{ :controller => 'custom_fields', :action => 'destroy', :id => '2' }
)
end
+
+ def test_custom_fields_api
+ assert_routing(
+ { :method => 'get', :path => "/custom_fields.xml" },
+ { :controller => 'custom_fields', :action => 'index', :format => 'xml' }
+ )
+ end
end