-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
75 lines (66 loc) · 1.45 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
var _ = require('underscore'),
request = require('request');
// fetching Google Translate
// http://translate.google.com
var url = 'http://translate.google.cn/translate_a/t',
base = {
client: 't',
hl: 'en',
sc: 2,
ie: 'UTF-8',
oe: 'UTF-8',
oc: 1,
otf: 2,
rom: 1,
ssel: 5,
tsel: 5
};
exports.create = function(options) {
return new Translator().defaults(options);
}
function Translator() {
this._defaults = {
sl: 'en', // source language
tl: 'zh-CN' // target language
};
}
Translator.prototype.defaults = function(_options) {
// pick `from / to` for `sl / tl`
var options = {};
if (_options.from) options.sl = _options.from;
if (_options.to) options.tl = _options.to;
_.extend(this._defaults, options);
return this;
}
// .get(text, [options], callback)
// options: from, to
Translator.prototype.get = function(text, options, callback) {
// overload method
if (_.isFunction(options)) {
callback = options;
options = null;
}
var params = _.extend({
q: text
}, base, this._defaults, options);
request(url, {
qs: params
}, function(err, res, body) {
if (err) {
return callback(err);
}
var result;
// replace `,+` to `,`
// amazing trap made by Google
body = body.replace(/(\s*,\s*)+/g, ',');
try {
var arr = JSON.parse(body);
// get the key we need
result = arr[0][0][0];
} catch (err) {
return callback(new Error('can not parse the result'));
}
callback(null, result || '');
});
return this;
}