Sha256: 7b934748cbb5122f6dd8b8bed76403ce6b074e70cc41df6706245bf64a691836

Contents?: true

Size: 1.5 KB

Versions: 5

Compression:

Stored size: 1.5 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
      @config = WebTranslateIt::Configuration.new('.')
      erb :index, :locals => { :config => config, :locale => "" }
    end
    
    get '/:locale' do
      @config = WebTranslateIt::Configuration.new('.')
      erb :index, :locals => { :config => config, :locale => params[:locale] }
    end
    
    post '/pull/' do
      @config = WebTranslateIt::Configuration.new('.')
      `#{config.before_pull}` if config.before_pull
      `wti pull`
      `#{config.after_pull}` if config.after_pull
      redirect "/"
    end
    
    post '/pull/:locale' do
      @config = WebTranslateIt::Configuration.new('.')
      `#{config.before_pull}` if config.before_pull
      `wti pull -l #{params[:locale]}`
      `#{config.after_pull}` if config.after_pull
      redirect "/#{params[:locale]}"
    end
    
    def self.start(host, port)
      WebTranslateIt::Server.run! :host => host, :port => port
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
web_translate_it-1.7.1.3 lib/web_translate_it/server.rb
web_translate_it-1.7.1.2 lib/web_translate_it/server.rb
web_translate_it-1.7.1.1 lib/web_translate_it/server.rb
web_translate_it-1.7.1.0 lib/web_translate_it/server.rb
web_translate_it-1.7.1.pre1 lib/web_translate_it/server.rb