/* NEW BSD LICENSE {{{ Copyright (c) 2009-2010, anekos. Copyright (c) 2012-2015, Jagua. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. The names of the authors may not be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ################################################################################### # http://sourceforge.jp/projects/opensource/wiki/licenses%2Fnew_BSD_license # # に参考になる日本語訳がありますが、有効なのは上記英文となります。 # ################################################################################### }}} */ // INFO {{{ let INFO = xml` anekos Jagua New BSD License

Translate with Microsoft AJAX Language API.

:mstrans :mstrans -action=actionName text

Translate!!!!!!!!!!!

You need to get an Access Token from http://msdn.microsoft.com/en-us/library/hh454950.aspx to use this plugin. and add g:microsoft_translator_client_id and g:microsoft_translator_client_secret settings to your ".vimperatorrc".

The following options are interpreted.

-action
以下のactionNameが設定可能
  • echo
  • replace(not implemented)
  • copy
`; // }}} (function () { const refererURL = 'https://github.com/vimpr/vimperator-plugins/raw/master/microsoft-translator.js'; const languages = [ ['ar', 'Arabic'], ['bg', 'Bulgarian'], ['ca', 'Catalan'], ['zh-CHS', 'Chinese (Simplified)'], ['zh-CHT', 'Chinese (Traditional)'], ['cs', 'Czech'], ['da', 'Danish'], ['nl', 'Dutch'], ['en', 'English'], ['et', 'Estonian'], ['fi', 'Finnish'], ['fr', 'French'], ['de', 'German'], ['el', 'Greek'], ['ht', 'Haitian Creole'], ['he', 'Hebrew'], ['hi', 'Hindi'], ['mww', 'Hmong Daw'], ['hu', 'Hungarian'], ['id', 'Indonesian'], ['it', 'Italian'], ['ja', 'Japanese'], ['ko', 'Korean'], ['lv', 'Latvian'], ['lt', 'Lithuanian'], ['ms', 'Malay'], ['no', 'Norwegian'], ['fa', 'Persian (Farsi)'], ['pl', 'Polish'], ['pt', 'Portuguese'], ['ro', 'Romanian'], ['ru', 'Russian'], ['sk', 'Slovak'], ['sl', 'Slovenian'], ['es', 'Spanish'], ['sv', 'Swedish'], ['th', 'Thai'], ['tr', 'Turkish'], ['uk', 'Ukrainian'], ['ur', 'Urdu'], ['vi', 'Vietnamese'], ['', 'Unknown'] ]; const config = { access_token: liberator.globalVariables.mstrans_appid || '', expires: 0, get client_id () liberator.globalVariables.microsoft_translator_client_id, get client_secret () liberator.globalVariables.microsoft_translator_client_secret, }; const settings = { get pair () (liberator.globalVariables.microsoft_translator_pair || 'ja en').split(' '), get actions () (liberator.globalVariables.microsoft_translator_actions || 'echo').split(' ') }; function auth(config, text, opts, callback) { if (config.client_secret == undefined || (new Date()).getTime() / 1000 < config.expires) { callback(config, text, opts); } else { let url = 'https://datamarket.accesscontrol.windows.net/v2/OAuth2-13'; let postBody = 'client_id=' + encodeURIComponent(config.client_id) + '&client_secret=' + encodeURIComponent(config.client_secret) + '&scope=http://api.microsofttranslator.com' + '&grant_type=client_credentials'; let req = new plugins.libly.Request( url, { Referrer: refererURL, }, { postBody: postBody, } ); req.addEventListener( 'onSuccess', function (res) { let token = JSON.parse(res.responseText); if (token.hasOwnProperty('expires_in') && token.expires_in.match(/^\d+$/)) { config.expires = (new Date()).getTime() / 1000 + parseInt(token.expires_in, 10); config.access_token = token.access_token; callback(config, text, opts); } } ); req.post(); } } function guessRequest (config, text, opts /* from, to, done */) { auth(config, text, opts, function (config, text, opts) { let url = 'http://api.microsofttranslator.com/V2/Ajax.svc/Detect' + '?appId=' + (config.client_secret == undefined ? config.access_token : '') + '&text=' + encodeURIComponent(text); let req = new plugins.libly.Request( url, { Referrer: refererURL, Authorization: 'Bearer ' + config.access_token, } ); req.addEventListener( 'onSuccess', function (res) { var result = res.responseText; opts.done(result.substring(1,result.length-1)); } ); req.get(); }); } function translateRequest (config, text, opts /* from, to, done */) { auth(config, text, opts, function (config, text, opts) { opts || (opts = {}); let url = 'http://api.microsofttranslator.com/V2/Ajax.svc/Translate' + '?appId=' + (config.client_secret == undefined ? config.access_token : '') + '&text=' + encodeURIComponent(text) + '&from=' + (opts.from || 'en') + '&to=' + (opts.to || 'ja') + '&contentType=text/plain'; let req = new plugins.libly.Request( url, { Referrer: refererURL, Authorization: 'Bearer ' + config.access_token, } ); req.addEventListener( 'onSuccess', function (res) { let translated = res.responseText; liberator.log('translated: ' + translated); opts.done(translated); } ); req.get(); }); } // 何語か妄想する // XXX 使ってないよ! function guess (text) { const codePatterns = { ja: /[\u3041-\u3093\u30A1-\u30F6\u30FC\u3005\u3007\u303B\u3400-\u9FFF\uF900-\uFAFF\u20000-\u2FFFF]/g, en: /[a-zA-Z]/g, // ko: // /[\uac00-\ud79f]/g, }; function matchCount (s, re) { let r = 0; s.replace(re, function (m) (r += m.toString().length)); return r; } let max = {lang: null, length: 0}; for (let lang in codePatterns) { let len = matchCount(test, codePatterns[lang]); if (len > max.length) max = {lang: lang, length: len}; } return max.lang || 'en'; } let actions = { echo: // function (text) liberator.echo(text,commandline.FORCE_MULTILINE), // function (text) liberator.echo("

"+text+"

",commandline.FORCE_MULTILINE), // function (text) liberator.echo("

"+text+"

",commandline.FORCE_MULTILINE), // function (text) liberator.echo("
"+content.document.documentElement.clientWidth+text+"
",commandline.FORCE_MULTILINE), // function (text) liberator.echo("
"+text+"
",commandline.FORCE_MULTILINE), function (text) liberator.echo("
"+text+"
",commandline.FORCE_MULTILINE), insert: // FIXME 見えない要素相手だとうまくいかない function (text) { let div = content.document.createElement('div'); div.setAttribute('style', 'border: dotted 2px blue; padding: 5px;'); div.textContent = text; let selection = content.window.getSelection(); if (selection.rangeCount > 0) { let range = selection.getRangeAt(0); range.insertNode(div); } }, copy: function (text) util.copyToClipboard(text, true) }; let actionTypes = [n for (n in actions)]; function makeListValidator (list) function (vs) (!vs || !vs.some(function (v) !list.some(function (at) (v == at)))); commands.addUserCommand( ['mstrans'], 'Microsoft Translator', function (args) { let text = args.literalArg; let actionNames = args['-action'] || settings.actions; let [from, to] = [args['-from'], args['-to']]; if (config.client_id == undefined && config.client_secret == undefined && liberator.globalVariables.mstrans_appid == undefined) { liberator.echoerr('The setting of g:microsoft_translator_client_(id|secret) in .vimperatorrc is required.'); return false; } if (!text) text = buffer.getCurrentWord(); if (args['-guess']) { guessRequest( config, text, { done: function (lang) [liberator.echo("

"+v+"

",commandline.FORCE_MULTILINE) for ([, [k, v]] in Iterator(languages)) if (k == lang)] } ); return; } if (args.bang) actionNames.push('insert'); if (!actionNames.length) actionNames.push('echo'); function setPair () { if ((!from ^ !to) && settings.pair.length >= 2) { let v = settings.pair[(settings.pair[0] == (from || to)) - 0]; (from ? (to = v) : (from = v)); } } function req () { translateRequest( config, text, { done: function (text) actionNames.forEach(function (name) actions[name](text)), from: from, to: to } ); } if (from) { setPair(); req(); } else { guessRequest( config, text, { done: function (fromLang) { from = fromLang; liberator.log('lang: ' + fromLang); setPair(); if (args['-to']) to = args['-to']; req(); }, } ); } }, { literal: 0, bang: true, options: [ [ ['-action', '-a'], commands.OPTION_LIST, makeListValidator(actionTypes), actionTypes.map(function (v) [v, v]), true ], [['-from', '-f'], commands.OPTION_STRING, null, languages], [['-to', '-t'], commands.OPTION_STRING, null, languages], [['-guess', '-g'], commands.OPTION_NOARG] ], }, true ); })(); // vim:sw=2 ts=2 et si fdm=marker: