2011-12-23 04:12:01 +04:00
|
|
|
var fs = require('fs')
|
|
|
|
, util = require('util');
|
2011-12-22 10:50:01 +04:00
|
|
|
|
|
|
|
var PO = function() {
|
|
|
|
this.headers = {};
|
|
|
|
this.items = [];
|
|
|
|
};
|
|
|
|
|
2011-12-23 04:12:01 +04:00
|
|
|
PO.prototype.save = function(filename, callback) {
|
|
|
|
var lines = ['msgid ""', 'msgstr ""']
|
|
|
|
, that = this;
|
|
|
|
|
|
|
|
var keys = Object.keys(this.headers);
|
|
|
|
keys.forEach(function(key){
|
|
|
|
lines.push(util.format('"%s: %s\\n"', key, that.headers[key]));
|
|
|
|
});
|
|
|
|
|
|
|
|
lines.push('');
|
|
|
|
|
|
|
|
var _processEach = function(keyword, text, i) {
|
|
|
|
var lines = []
|
|
|
|
, parts = text.split(/\n/)
|
|
|
|
, index = typeof i != 'undefined' ? util.format('[%d]', i) : '';
|
|
|
|
if (parts.length > 1) {
|
|
|
|
lines.push(util.format('%s%s ""', keyword, index));
|
|
|
|
parts.forEach(function(part){
|
|
|
|
lines.push(util.format('"%s"', part))
|
|
|
|
});
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
lines.push(util.format('%s%s "%s"', keyword, index, text));
|
|
|
|
}
|
|
|
|
return lines;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.items.forEach(function(item){
|
|
|
|
if (item.references.length > 0) {
|
|
|
|
item.references.forEach(function(ref){
|
|
|
|
lines.push(util.format('#: %s', ref));
|
|
|
|
});
|
|
|
|
['msgid', 'msgid_plural', 'msgstr'].forEach(function(keyword){
|
|
|
|
var text = item[keyword];
|
|
|
|
if (text != null) {
|
|
|
|
if (util.isArray(text) && text.length > 1) {
|
|
|
|
text.forEach(function(t, i){
|
|
|
|
lines = lines.concat(_processEach(keyword, t, i));
|
|
|
|
});
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
text = util.isArray(text) ? text.join() : text;
|
|
|
|
lines = lines.concat(_processEach(keyword, text));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
};
|
|
|
|
lines.push('');
|
|
|
|
});
|
2011-12-22 10:50:01 +04:00
|
|
|
|
2011-12-23 04:12:01 +04:00
|
|
|
fs.writeFile(filename, lines.join("\n"), function(err){
|
|
|
|
if (err) throw err;
|
|
|
|
callback && callback();
|
|
|
|
})
|
2011-12-22 10:50:01 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
PO.load = function(filename, callback) {
|
|
|
|
fs.readFile(filename, 'utf-8', function(err, data){
|
|
|
|
if (err) throw err;
|
|
|
|
var po = new PO
|
|
|
|
, parts = data.split(/\n\n/)
|
|
|
|
, headers = parts.shift().split(/\n/);
|
|
|
|
|
|
|
|
headers.forEach(function(header){
|
|
|
|
if (header.match(/^"/)) {
|
2011-12-23 04:12:01 +04:00
|
|
|
header = header.trim().replace(/^"/, '').replace(/\\n"$/, '');
|
|
|
|
var p = header.split(/:/)
|
|
|
|
, name = p.shift().trim()
|
|
|
|
, value = p.join(':').trim().replace(/n$/);
|
|
|
|
po.headers[name] = value;
|
2011-12-22 10:50:01 +04:00
|
|
|
}
|
|
|
|
});
|
2011-12-23 04:12:01 +04:00
|
|
|
|
2011-12-22 10:50:01 +04:00
|
|
|
parts.forEach(function(part){
|
2011-12-23 04:12:01 +04:00
|
|
|
if (part.length < 1) return;
|
2011-12-22 10:50:01 +04:00
|
|
|
var item = PO.Item.parse(part);
|
|
|
|
po.items.push(item);
|
|
|
|
});
|
|
|
|
|
2011-12-23 04:12:01 +04:00
|
|
|
callback && callback(po);
|
2011-12-22 10:50:01 +04:00
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
PO.Item = function() {
|
|
|
|
this.msgid = null;
|
|
|
|
this.references = [];
|
|
|
|
this.msgid_plural = null;
|
|
|
|
this.msgstr = [];
|
|
|
|
};
|
|
|
|
|
|
|
|
PO.Item.parse = function(chunk) {
|
|
|
|
|
|
|
|
var item = new PO.Item();
|
|
|
|
var parts = chunk.split(/\nmsg/);
|
|
|
|
|
2011-12-23 04:12:01 +04:00
|
|
|
var _extract = function(string) {
|
2011-12-22 10:50:01 +04:00
|
|
|
var lines = string.split(/\n/);
|
|
|
|
var value = '';
|
|
|
|
lines.forEach(function(line){
|
|
|
|
var p = line.split(/"/); p.shift(); p.pop();
|
|
|
|
value += "\n" + p.join('"');
|
|
|
|
});
|
|
|
|
return value.trim();
|
|
|
|
};
|
|
|
|
|
|
|
|
parts.forEach(function(part){
|
|
|
|
if (part.match(/^#:/)) {
|
|
|
|
item.references.push(part.replace(/^#:\s/, ''));
|
|
|
|
}
|
|
|
|
else if (part.match(/^id\s/)) {
|
2011-12-23 04:12:01 +04:00
|
|
|
item.msgid = _extract(part);
|
2011-12-22 10:50:01 +04:00
|
|
|
}
|
|
|
|
else if (part.match(/id_plural/)) {
|
2011-12-23 04:12:01 +04:00
|
|
|
item.msgid_plural = _extract(part);
|
2011-12-22 10:50:01 +04:00
|
|
|
}
|
|
|
|
else if (part.match(/str/)) {
|
2011-12-23 04:12:01 +04:00
|
|
|
item.msgstr.push(_extract(part));
|
2011-12-22 10:50:01 +04:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
return item;
|
|
|
|
};
|
|
|
|
|
2011-12-23 04:12:01 +04:00
|
|
|
module.exports = PO;
|