Sha256: 02d1adafd55e539fd07c42626119f915881feeee83e148f49f6a661628e9b5df

Contents?: true

Size: 1.71 KB

Versions: 2

Compression:

Stored size: 1.71 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)
      puts "Starting wti server..."
      Dir::mkdir('log') unless FileTest::directory?('log')
      logger = ::File.open("log/webtranslateit.log", "a+")
      STDOUT.reopen(logger)
      STDERR.reopen(logger)
      WebTranslateIt::Server.run! :host => host, :port => port
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
web_translate_it-1.7.1.7 lib/web_translate_it/server.rb
web_translate_it-1.7.1.6 lib/web_translate_it/server.rb