wildduck/imap-core/lib/commands/getquota.js
Andris Reinman 942e35349e v1.14.0
2019-01-23 23:38:29 +02:00

86 lines
2.4 KiB
JavaScript

'use strict';
const imapHandler = require('../handler/imap-handler');
// tag GETQUOTA ""
module.exports = {
state: ['Authenticated', 'Selected'],
schema: [
{
name: 'quotaroot',
type: 'string'
}
],
handler(command, callback) {
let quotaRoot = Buffer.from((command.attributes[0] && command.attributes[0].value) || '', 'binary').toString();
if (typeof this._server.onGetQuota !== 'function') {
return callback(null, {
response: 'NO',
message: command.command + ' not implemented'
});
}
let logdata = {
short_message: '[GETQUOTA]',
_mail_action: 'getquota',
_user: this.session.user.id.toString(),
_sess: this.id
};
this._server.onGetQuota(quotaRoot, this.session, (err, data) => {
if (err) {
logdata._error = err.message;
logdata._code = err.code;
logdata._response = err.response;
this._server.loggelf(logdata);
return callback(null, {
response: 'NO',
code: 'TEMPFAIL'
});
}
if (typeof data === 'string') {
return callback(null, {
response: 'NO',
code: data.toUpperCase()
});
}
// * QUOTA "" (STORAGE 220676 15728640)
this.send(
imapHandler.compiler({
tag: '*',
command: 'QUOTA',
attributes: [
data.root || '',
[
{
type: 'atom',
value: 'STORAGE'
},
{
type: 'atom',
value: String(Math.ceil((Number(data.storageUsed) || 0) / 1024))
},
{
type: 'atom',
value: String(Math.ceil((Number(data.quota) || 0) / 1024))
}
]
]
})
);
callback(null, {
response: 'OK',
message: 'Success'
});
});
}
};