You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
815 B
40 lines
815 B
9 years ago
|
/**
|
||
|
* CurrencyController
|
||
|
*
|
||
|
* @description :: Server-side logic for managing currencies
|
||
|
* @help :: See http://sailsjs.org/#!/documentation/concepts/Controllers
|
||
|
*/
|
||
|
|
||
|
module.exports = {
|
||
|
|
||
|
search: function(req, res) {
|
||
|
var word = req.param('query'),
|
||
|
query = Currency.find();
|
||
|
|
||
|
if (word != undefined)
|
||
|
query = Currency.find({
|
||
|
where: {
|
||
|
or: [
|
||
|
{currency: {contains: word}},
|
||
|
{code: word},
|
||
|
{country: {contains: word}},
|
||
|
]
|
||
|
},
|
||
|
sort: {
|
||
|
code: 1
|
||
|
}
|
||
|
});
|
||
|
|
||
|
page = ((req.query.page != undefined) ? +req.query.page : 1);
|
||
|
query.paginate({page: page, limit: 10}).exec(function(err, items) {
|
||
|
if (err) {
|
||
|
res.send(400);
|
||
|
} else {
|
||
|
res.send(items);
|
||
|
}
|
||
|
});
|
||
|
}
|
||
|
|
||
|
};
|
||
|
|