diff options
author | Raine Virta <rane@kapsi.fi> | 2009-04-30 00:52:41 +0300 |
---|---|---|
committer | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2009-04-30 13:46:49 +0200 |
commit | e8556ad9161cc6f2f4596eedb430fea0892bbe5f (patch) | |
tree | ea4d2f68a8ae25ea9bcf73b6a0ce44fddf7db621 | |
parent | cdbaaee4b94473dac0f3284d66e971ae70f276b7 (diff) |
remove fish.rb and map translate in translator.rb
Translator plugin supports babelfish, and getting rid of this plugin
allows us to use ´translate´ command for better purposes.
-rw-r--r-- | data/rbot/plugins/fish.rb | 121 | ||||
-rw-r--r-- | data/rbot/plugins/translator.rb | 2 |
2 files changed, 2 insertions, 121 deletions
diff --git a/data/rbot/plugins/fish.rb b/data/rbot/plugins/fish.rb deleted file mode 100644 index 2394fa09..00000000 --- a/data/rbot/plugins/fish.rb +++ /dev/null @@ -1,121 +0,0 @@ -class BabelPlugin < Plugin - LANGS = %w{en fr de it pt es nl ru zh zt el ja ko} - BASEURL = 'http://babelfish.yahoo.com' - - Config.register Config::EnumValue.new('translate.default_from', - :values => LANGS, :default => 'en', - :desc => "Default language to translate from") - Config.register Config::EnumValue.new('translate.default_to', - :values => LANGS, :default => 'en', - :desc => "Default language to translate to") - - def help(plugin, topic="") - case topic - when 'cache' - "translate cache [view|clear] => view or clear the translate cache contents" - else - from = @bot.config['translate.default_from'] - to = @bot.config['translate.default_to'] - "translate to <lang> <string> => translate from #{from} to <lang>, translate from <lang> <string> => translate to #{to} from <lang>, translate <fromlang> <tolang> <string> => translate from <fromlang> to <tolang>. If <string> is an http url, translates the referenced webpage and returns the 1st content paragraph. Languages: #{LANGS.join(', ')}. Other topics: cache" - end - end - - def translate(m, params) - langs = LANGS - trans_from = params[:fromlang] ? params[:fromlang] : @bot.config['translate.default_from'] - trans_to = params[:tolang] ? params[:tolang] : @bot.config['translate.default_to'] - trans_text = params[:phrase].to_s - - lang_match = langs.join("|") - unless(trans_from =~ /^(#{lang_match})$/ && trans_to =~ /^(#{lang_match})$/) - m.reply "invalid language: valid languagess are: #{langs.join(' ')}" - return - end - - data_text = CGI.escape trans_text - trans_pair = "#{trans_from}_#{trans_to}" - - if (trans_text =~ /^http:\/\//) && (URI.parse(trans_text) rescue nil) - m.reply 'webpage translation is not currently supported' - return - # TODO FIXME - # url = BASEURL+'/translate_url' + - # "?lp=#{trans_pair}&trurl=#{data_text}" - # - # return Utils.get_first_pars([url], 1, :message => m) - end - - data = "lp=#{trans_pair}&doit=done&intl=1&tt=urltext&urltext=#{data_text}" - - # check cache for previous lookups - if @registry.has_key?("#{trans_pair}/#{data_text}") - m.reply @registry["#{trans_pair}/#{data_text}"] - return - end - - headers = { - "content-type" => "application/x-www-form-urlencoded; charset=utf-8" - } - - query = "/translate_txt" - - begin - body = @bot.httputil.get(BASEURL+query, - :method => :post, - :body => data, - :headers => headers) - rescue Exception => e - m.reply "http error: #{e.message}" - return - end - - case body - when nil - m.reply "couldn't talk to babelfish :(" - when /^\s*<div id="result"><div style="[^"]*">(.*?)<\/div><\/div>\s*$/ - answer = $1 - # cache the answer - if(answer.length > 0) - @registry["#{trans_pair}/#{data_text}"] = answer - end - m.reply answer - return - when /^\s+<option value="#{trans_pair}"\s+SELECTED>/ - m.reply "couldn't parse babelfish response html :(" - else - m.reply "babelfish doesn't support translation from #{trans_from} to #{trans_to}" - end - end - - def cache_mgmt(m, params) - cmd = params[:cmd].intern - case cmd - when :view - cache = [] - @registry.each { |key, val| - cache << "%s => %s" % [key, val] - } - m.reply "translate cache: #{cache.inspect}" - when :clear - keys = [] - @registry.each { |key, val| - keys << key - } - keys.each { |key| - @registry.delete(key) - } - cache_mgmt(m, :cmd => 'view') - end - end - -end - -plugin = BabelPlugin.new - -plugin.default_auth('cache', false) - -plugin.map 'translate to :tolang *phrase', :thread => true -plugin.map 'translate from :fromlang *phrase', :thread => true -plugin.map 'translate cache :cmd', :action => :cache_mgmt, :auth_path => 'cache!', :requirements => { :cmd => /view|clear/ } -plugin.map 'translate :fromlang :tolang *phrase', :thread => true - diff --git a/data/rbot/plugins/translator.rb b/data/rbot/plugins/translator.rb index 4354fdc5..5f2dece7 100644 --- a/data/rbot/plugins/translator.rb +++ b/data/rbot/plugins/translator.rb @@ -374,5 +374,7 @@ class TranslatorPlugin < Plugin end plugin = TranslatorPlugin.new +plugin.map 'translate [:from] [:to] *phrase', + :action => :cmd_translator, :thread => true plugin.map 'translator [:from] [:to] *phrase', :action => :cmd_translator, :thread => true |