2019-03-16 09:37:35 +00:00
|
|
|
# frozen_string_literal: true
|
2019-03-15 01:32:57 +00:00
|
|
|
|
2010-12-03 11:25:21 +00:00
|
|
|
# Redmine - project management software
|
2023-01-01 06:19:35 +00:00
|
|
|
# Copyright (C) 2006-2023 Jean-Philippe Lang
|
2010-12-03 11:25:21 +00:00
|
|
|
#
|
|
|
|
|
# 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.
|
2011-09-01 02:11:54 +00:00
|
|
|
#
|
2010-12-03 11:25:21 +00:00
|
|
|
# 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.
|
2011-09-01 02:11:54 +00:00
|
|
|
#
|
2010-12-03 11:25:21 +00:00
|
|
|
# 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.
|
|
|
|
|
|
2012-12-02 18:06:06 +00:00
|
|
|
require 'redmine/views/builders/json'
|
|
|
|
|
require 'redmine/views/builders/xml'
|
|
|
|
|
|
2010-12-03 11:25:21 +00:00
|
|
|
module Redmine
|
|
|
|
|
module Views
|
|
|
|
|
module Builders
|
2019-10-22 12:40:33 +00:00
|
|
|
class << self
|
|
|
|
|
def for(format, request, response, &block)
|
|
|
|
|
builder =
|
|
|
|
|
case format
|
|
|
|
|
when 'xml', :xml then Builders::Xml.new(request, response)
|
|
|
|
|
when 'json', :json then Builders::Json.new(request, response)
|
|
|
|
|
else
|
2022-01-30 13:39:06 +00:00
|
|
|
Rails.logger.error "No builder for format #{format.inspect}"
|
|
|
|
|
response.status = 406
|
|
|
|
|
return "We couldn't handle your request, sorry. If you were trying to access the API, make sure to append .json or .xml to your request URL.\n"
|
2019-10-22 12:40:33 +00:00
|
|
|
end
|
2023-01-11 13:20:52 +00:00
|
|
|
if block
|
2019-10-22 12:40:57 +00:00
|
|
|
yield(builder)
|
2019-10-17 16:40:20 +00:00
|
|
|
else
|
2019-10-22 12:40:33 +00:00
|
|
|
builder
|
2019-10-17 16:40:32 +00:00
|
|
|
end
|
2010-12-03 11:25:21 +00:00
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|