2015-07-08 18:25:27 +03:00
|
|
|
/*
|
|
|
|
Copyright 2015 OpenMarket Ltd
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
'use strict';
|
|
|
|
|
2015-07-08 21:52:44 +03:00
|
|
|
var filesize = require('filesize');
|
|
|
|
|
2015-07-08 18:25:27 +03:00
|
|
|
module.exports = {
|
|
|
|
presentableTextForFile: function(content) {
|
|
|
|
var linkText = 'Attachment';
|
|
|
|
if (content.body && content.body.length > 0) {
|
|
|
|
linkText = content.body;
|
|
|
|
}
|
|
|
|
|
|
|
|
var additionals = [];
|
2015-07-08 18:50:49 +03:00
|
|
|
if (content.info) {
|
|
|
|
if (content.info.mimetype && content.info.mimetype.length > 0) {
|
|
|
|
additionals.push(content.info.mimetype);
|
|
|
|
}
|
2015-07-08 21:52:44 +03:00
|
|
|
if (content.info.size) {
|
2015-07-08 18:50:49 +03:00
|
|
|
additionals.push(filesize(content.info.size));
|
|
|
|
}
|
2015-07-08 18:25:27 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
if (additionals.length > 0) {
|
2015-07-08 21:57:58 +03:00
|
|
|
linkText += ' (' + additionals.join(', ') + ')';
|
2015-07-08 18:25:27 +03:00
|
|
|
}
|
|
|
|
return linkText;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|