Mailspring/packages/nylas-api/routes/threads.js

136 lines
3.7 KiB
JavaScript
Raw Normal View History

2016-06-19 18:02:32 +08:00
const Joi = require('joi');
const Serialization = require('../serialization');
const {createSyncbackRequest} = require('../route-helpers')
2016-06-19 18:02:32 +08:00
module.exports = (server) => {
server.route({
method: 'GET',
path: '/threads',
config: {
description: 'Returns threads',
notes: 'Notes go here',
tags: ['threads'],
validate: {
2016-06-25 07:14:04 +08:00
query: {
'id': Joi.number().integer().min(0),
'subject': Joi.string(),
'unread': Joi.boolean(),
'starred': Joi.boolean(),
'startedBefore': Joi.date().timestamp(),
'startedAfter': Joi.date().timestamp(),
'lastMessageBefore': Joi.date().timestamp(),
'lastMessageAfter': Joi.date().timestamp(),
'in': Joi.string().allow(Joi.number()),
2016-06-19 18:02:32 +08:00
},
},
response: {
schema: Joi.array().items(
2016-06-24 06:46:52 +08:00
Serialization.jsonSchema('Thread')
2016-06-19 18:02:32 +08:00
),
},
},
handler: (request, reply) => {
request.getAccountDatabase().then((db) => {
const {Thread, Category} = db;
2016-06-28 03:30:28 +08:00
const query = request.query;
2016-06-28 01:15:05 +08:00
const where = {};
const include = [];
2016-06-28 01:15:05 +08:00
2016-06-28 03:30:28 +08:00
if (query.id) {
where.id = query.id;
2016-06-28 01:35:34 +08:00
}
2016-06-28 04:45:11 +08:00
if (query.subject) {
// the 'like' operator is case-insenstive in sequelite and for
// non-binary strings in mysql
where.cleanedSubject = {like: query.subject};
2016-06-28 04:45:11 +08:00
}
2016-06-28 03:30:28 +08:00
// Boolean queries
if (query.unread) {
2016-06-28 01:15:05 +08:00
where.unreadCount = {gt: 0};
2016-06-28 03:30:28 +08:00
} else if (query.unread !== undefined) {
2016-06-28 01:15:05 +08:00
where.unreadCount = 0;
}
2016-06-28 03:30:28 +08:00
if (query.starred) {
2016-06-28 01:15:05 +08:00
where.starredCount = {gt: 0};
2016-06-28 03:30:28 +08:00
} else if (query.starred !== undefined) {
2016-06-28 01:15:05 +08:00
where.starredCount = 0;
2016-06-25 07:14:04 +08:00
}
2016-06-28 01:15:05 +08:00
2016-06-28 03:30:28 +08:00
// Timestamp queries
if (query.lastMessageBefore) {
where.lastMessageReceivedTimestamp = {lt: query.lastMessageBefore};
}
if (query.lastMessageAfter) {
if (where.lastMessageReceivedTimestamp) {
where.lastMessageReceivedTimestamp.gt = query.lastMessageAfter;
} else {
where.lastMessageReceivedTimestamp = {gt: query.lastMessageAfter};
}
}
if (query.startedBefore) {
where.firstMessageTimestamp = {lt: query.startedBefore};
}
if (query.startedAfter) {
if (where.firstMessageTimestamp) {
where.firstMessageTimestamp.gt = query.startedAfter;
} else {
where.firstMessageTimestamp = {gt: query.startedAfter};
}
}
// Association queries
if (query.in) {
include.push({
model: Category,
where: { $or: [
{ id: query.in },
{ name: query.in },
{ role: query.in },
]},
});
}
2016-06-28 01:15:05 +08:00
Thread.findAll({
where: where,
include: include,
2016-06-28 01:15:05 +08:00
limit: 50,
}).then((threads) => {
reply(Serialization.jsonStringify(threads));
})
2016-06-19 18:02:32 +08:00
})
},
});
2016-06-24 06:46:52 +08:00
server.route({
method: 'PUT',
path: '/threads/${id}',
config: {
description: 'Update a thread',
notes: 'Can move between folders',
tags: ['threads'],
validate: {
params: {
payload: {
folder_id: Joi.string(),
},
},
},
response: {
schema: Joi.array().items(
Serialization.jsonSchema('Thread')
),
},
},
handler: (request, reply) => {
createSyncbackRequest(request, reply, {
type: "MoveToFolder",
props: {
folderId: request.params.folder_id,
threadId: requres.params.id,
}
2016-06-24 06:46:52 +08:00
})
},
});
2016-06-19 18:02:32 +08:00
};