refuse unavailable languages
[opensuse:software-o-o.git] / app / controllers / application_controller.rb
1 # Filters added to this controller apply to all controllers in the application.
2 # Likewise, all the methods added will be available for all controllers.
3
4 class ApplicationController < ActionController::Base
5
6   before_filter :set_distributions
7   before_filter :set_language
8   helper :all # include all helpers, all the time
9   require "rexml/document"
10
11   init_gettext('software')
12
13   def rescue_action_in_public(exception)
14     @message = exception.message
15     if request.xhr?
16       render :template => "error", :layout => false, :status => 400
17     else
18       render :template => 'error', :layout => "application", :status => 400
19     end
20   end
21
22   private
23
24   def set_language
25     if cookies[:lang]
26       @lang = cookies[:lang]
27     elsif params[:lang]
28       @lang = params[:lang][0].gsub(/\-/, '_')
29     end
30     if !@lang || !LANGUAGES.include?( @lang )
31       @lang = request.compatible_language_from(LANGUAGES) || "en"
32     end
33     GetText.locale = @lang
34   end
35
36
37   def set_distributions
38     @distributions = Rails.cache.fetch('distributions', :expires_in => 120.minutes) do
39       load_distributions
40     end
41   end
42
43
44   # load available distributions
45   def load_distributions
46     uri = URI.parse("http://#{API_HOST}/distributions")
47     request = Net::HTTP::Get.new(uri.path)
48     logger.debug "Loading distributions from #{uri}"
49     @distributions = Array.new
50     begin
51       Net::HTTP.start(uri.host, uri.port) do |http|
52         http.read_timeout = 30
53         response = http.request(request)
54         unless( response.kind_of? Net::HTTPSuccess )
55           logger.error "Cannot load distributions: '#{response.code}', message: \n#{response.body}"
56         else
57           doc = REXML::Document.new response.body
58           doc.elements.each("distributions/distribution") { |element|
59             dist = [element.elements['name'].text, element.elements['project'].text]
60             @distributions << dist
61           }
62         end
63       end
64       @distributions << ["ALL Distributions", 'ALL']
65       return @distributions
66     rescue Exception => e
67       logger.error "Error while loading distributions from '#{uri}': " + e.to_s
68     end
69     return nil
70   end
71
72
73 end