Sha256: 419386b6b8076bb4f856c8250d9701ebe5356cef80e0c34be541259e4fe302c0

Contents?: true

Size: 1.39 KB

Versions: 4

Compression:

Stored size: 1.39 KB

Contents

# encoding: utf-8
require 'sinatra/base'
require 'erb'

module WebTranslateIt
  class Server < Sinatra::Base
    attr_reader :config
    
    dir = File.dirname(File.expand_path(__FILE__))

    set :views,  "#{dir}/views"
    set :public, "#{dir}/public"
    set :static, true
    set :lock, true
    
    helpers do
      def wti_root
        ""
      end
      
      def highlight(value, expected)
        return if value.nil?
        print_value = value == true ? "Yes" : "No"
        value == expected ? "<em>#{print_value}</em>" : "<em class=\"information\">#{print_value}</em>"
      end
    end
    
    get '/' do
      erb :index, :locals => { :config => config, :locale => "" }
    end
    
    get '/:locale' do
      erb :index, :locals => { :config => config, :locale => params[:locale] }
    end
    
    post '/pull/' do
      `#{config.before_pull}` if config.before_pull
      `wti pull`
      `#{config.after_pull}` if config.after_pull
      redirect "/"
    end
    
    post '/pull/:locale' do
      `#{config.before_pull}` if config.before_pull
      `wti pull -l #{params[:locale]}`
      `#{config.after_pull}` if config.after_pull
      redirect "/#{params[:locale]}"
    end
        
    def initialize(*args)
      super
      @config = WebTranslateIt::Configuration.new('.')
    end

    def self.start(host, port)
      WebTranslateIt::Server.run! :host => host, :port => port
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
web_translate_it-1.7.0.7 lib/web_translate_it/server.rb
web_translate_it-1.7.0.7.pre2 lib/web_translate_it/server.rb
web_translate_it-1.7.0.7.pre lib/web_translate_it/server.rb
web_translate_it-1.7.0.6 lib/web_translate_it/server.rb