Mongoose schema plugin for multilingual fields
$ npm install mongoose-intl --save
Schema definition with intl
option enabled for some fields:
var mongoose = require('mongoose'),
mongooseIntl = require('mongoose-intl'),
Schema = mongoose.Schema;
var BlogPost = new Schema({
title : { type: String, intl: true },
body : { type: String, intl: true }
});
Note: intl
option can be enabled for String type only.
Adding plugin to the schema:
BlogPost.plugin(mongooseIntl, { languages: ['en', 'de', 'fr'], defaultLanguage: 'en' });
or it can be defined as a global plugin which will be applied to all schemas:
mongoose.plugin(mongooseIntl, { languages: ['en', 'de', 'fr'], defaultLanguage: 'en' });
languages
- required, array with languages, suggested to use 2- or 3-letters language codes using ISO 639 standarddefaultLanguage
- optional, if omitted the first value fromlanguages
array will be used as a default languagefallback
- whentrue
, another translation is returned for fields that are not available in the currently selected language, chosen according to the order of thelanguages
option (default:false
, i.e. fields with missing translation are returned asnull
)
BlogPost
schema described above will be translated to the following document in the Mongo collection:
{
"_id": ObjectId(...),
"title": {
"en": "...",
"de": "...",
"fr": "..."
},
"body": {
"en": "...",
"de": "...",
"fr": "..."
}
}
intl
-enabled field is converted to a virtual path and continue interacting as a string, not an object.
It means that you can read it and write to it any string, and it will be stored under default language setting.
Other languages values can be set by using model.set()
method. Pass an object with multiple languages instead of the string to set all values together. See examples below.
Multilingual fields can be set with 3 ways:
var BlogPostModel = mongoose.model('Post', BlogPost);
var post = new BlogPostModel();
post.title = 'Title on default language'; // default language definition, will be stored to title.en
post.set('title.de', 'German title'); // any other language value definition
post.title = { // defines all languages in one call using an object
en: 'Title on default language',
de: 'Another German title',
fr: 'French title'
};
post.save(function (err) {
if (err) return handleError(err);
res.send(post);
});
Values can be read using the same options:
var BlogPostModel = mongoose.model('Post', BlogPost);
BlogPostModel.findById('some id', function (err, post) {
if (err) return handleError(err);
post.title; // 'Title on default language'
post.get('title.de'); // 'Another German title'
});
The main intl
-field defined as a virtual, and it will not be returned by toJSON/toObject
methods which are used during the document conversion to JSON or object.
So you'll get the following result be default:
console.log(post.toJSON());
{
_id: '...',
title: {
en: 'Title on default language',
de: 'Another German title',
fr: 'French title'
},
body: {
en: '...',
de: '...',
fr: '...'
}
}
Adding virtuals to the response will allow to get more clean result:
var BlogPost = new Schema({
title : { type: String, intl: true },
body : { type: String, intl: true }
}, {
toJSON: {
virtuals: true,
}
});
....
console.log(post.toJSON());
{
_id: '...',
title: 'Title on default language',
body: '...'
}
The current language can be set/changed on 3 levels:
- Document level: affects only some document (each particular model instance)
- Schema level: affects all documents created from the models with the particular schema
- Connection level: affects all models (and their schemas) created for the particular Mongoose connection
Each document will receive the following language methods:
getLanguages()
- returns an array of available languagesgetLanguage()
- returns current document's languagesetLanguage(lang)
- changes document's language to a new one, the value should be equal to the one of available languagesunsetLanguage()
- removes previously set document-specific language, schema's default language will be used for the translation
Usage examples:
BlogPostModel.find({}, function (err, posts) {
if (err) return handleError(err);
console.log(JSON.stringify(posts)); // [{ _id: '...', title: 'Title 1 on default language' },
// { _id: '...', title: 'Title 2 on default language' }, ...]
posts[0].getLanguages(); // [ 'en', 'de', 'fr' ]
posts[0].getLanguage(); // 'en'
posts[0].setLanguage('de');
console.log(JSON.stringify(posts)); // [{ _id: '...', title: 'Another German title' },
// { _id: '...', title: 'Title 2 on default language' }, ...]
BlogPostModel.setDefaultLanguage('fr'); // schema-level language change (see documentation below)
console.log(JSON.stringify(posts)); // [{ _id: '...', title: 'Another German title' }, // still 'de'
// { _id: '...', title: 'French title 2' }, ...]
posts[0].unsetLanguage();
console.log(JSON.stringify(posts)); // [{ _id: '...', title: 'French title 1' },
// { _id: '...', title: 'French title 2' }, ...]
});
The plugins adds the following language methods to the schema:
getLanguages()
- returns an array of available languagesgetDefaultLanguage()
- returns current default languagesetDefaultLanguage(lang)
- changes default language to a new one, the value should be equal to the one of available languages
Usage examples:
BlogPostModel.find({}, function (err, posts) {
if (err) return handleError(err);
console.log(JSON.stringify(posts)); // [{ _id: '...', title: 'Title 1 on default language' },
// { _id: '...', title: 'Title 2 on default language' }, ...]
BlogPostModel.getLanguages(); // [ 'en', 'de', 'fr' ]
BlogPostModel.getDefaultLanguage(); // 'en'
BlogPostModel.setDefaultLanguage('de');
console.log(JSON.stringify(posts)); // [{ _id: '...', title: 'Another German title 1' },
// { _id: '...', title: 'Another German title 2' }, ...]
});
Note: BlogPostModel.setDefaultLanguage();
method changes language settings on the schema level, it means that in case you have couple models sharing the same schema, language change will be applied to all other models as well.
One more global method to change the language for all your schemas:
setDefaultLanguage(lang)
- updates all schemas for the Mongoose db connection
If you're creating connection explicitly:
var db = mongoose.createConnection('mongodb://user:pass@localhost:port/database');
db.setDefaultLanguage('de');
or using the default connection:
mongoose.connect('mongodb://user:pass@localhost:port/database');
mongoose.setDefaultLanguage('de');
Schema- and Connection-level methods are actually changing schema's settings, which are app-wide. And if your node app serves requests for the different users (e.g. it's a web server), you should use these methods carefully, making sure they will be executed in the same event loop as the data return method.
mongoose.setDefaultLanguage(userLang);
// .find() method is async and callback function can be executed during another event loop
BlogPostModel.find({}, function (err, posts) {
if (err) return handleError(err);
response.write(JSON.stringify(posts));
response.end();
});
If we'll have 2 users that are using different languages, and are sending simultaneous requests, than it can be possible that the code above will return the response on the same language for both of them.
Correct usage:
BlogPostModel.find({}, function (err, posts) {
if (err) return handleError(err);
mongoose.setDefaultLanguage(userLang);
response.write(JSON.stringify(posts));
response.end();
});
default
and required
options are applied to the default language field only.
2 new options were added for all lang-fields: defaultAll
and requiredAll
.
Example:
var BlogPost = new Schema({
title : { type: String, intl: true, default: 'Some default title', requiredAll: true },
body : { type: String, intl: true }
});
All others options and validators (e.g. lowercase
, uppercase
, trim
, minlength
, maxlength
, match
, etc.) will be used for all languages.
But please be careful with some of them like enum
which may not be relevant for multilingual text fields, and indexes which will be added for all fields as well.
v3.x
drops support of field.all
get/set methods. Virtual paths with the dots inside are not ignored since Mongoose v4.11.5 (see #5473). And field.all
overrides field
value which is not expected.
TO set values, instead of
post.set('title.all', {
en: '...',
de: '...'
});
use
post.title = {
en: '...',
de: '...'
};
To read the entire language document or the current language only, disable or enable virtuals for toJSON/toObject
methods.
v2.x
version has incompatible API updates for Mongoose document language methods:
getDefaultLanguage()
- was renamed togetLanguage()
setDefaultLanguage(lang)
- was renamed tosetLanguage(lang)
*DefaultLanguage
methods are not available for the documents any more, they are used for the schema settings changes now.
So in the example from v1.x
documentation:
BlogPostModel.findById('some id', function (err, post) {
if (err) return handleError(err);
console.log(post.toJSON()); // { _id: '...', title: 'Title on default language', body: '...' }
post.getLanguages(); // [ 'en', 'de', 'fr' ]
post.getDefaultLanguage(); // 'en'
post.setDefaultLanguage('de');
console.log(post.toJSON()); // { _id: '...', title: 'Another German title', body: '...' }
});
Default
prefix should be removed from the getter and setter:
BlogPostModel.findById('some id', function (err, post) {
if (err) return handleError(err);
console.log(post.toJSON()); // { _id: '...', title: 'Title on default language', body: '...' }
post.getLanguages(); // [ 'en', 'de', 'fr' ]
post.getLanguage(); // 'en'
post.setLanguage('de');
console.log(post.toJSON()); // { _id: '...', title: 'Another German title', body: '...' }
});