Mailspring/app/internal_packages/message-autoload-images/lib/autoload-images-store.es6
2017-09-26 11:46:00 -07:00

94 lines
2.6 KiB
JavaScript

import MailspringStore from 'mailspring-store';
import fs from 'fs';
import path from 'path';
import { Utils, MessageBodyProcessor } from 'mailspring-exports';
import AutoloadImagesActions from './autoload-images-actions';
const ImagesRegexp = /((?:src|background|placeholder|icon|background|poster|srcset)\s*=\s*['"]?(?=\w*:\/\/)|:\s*url\()+([^"')]*)/gi;
class AutoloadImagesStore extends MailspringStore {
constructor() {
super();
this.ImagesRegexp = ImagesRegexp;
this._whitelistEmails = {};
this._whitelistMessageIds = {};
const filename = 'autoload-images-whitelist.txt';
this._whitelistEmailsPath = path.join(AppEnv.getConfigDirPath(), filename);
this._loadWhitelist();
this.listenTo(AutoloadImagesActions.temporarilyEnableImages, this._onTemporarilyEnableImages);
this.listenTo(AutoloadImagesActions.permanentlyEnableImages, this._onPermanentlyEnableImages);
AppEnv.config.onDidChange('core.reading.autoloadImages', () => {
MessageBodyProcessor.resetCache();
});
}
shouldBlockImagesIn = message => {
if (AppEnv.config.get('core.reading.autoloadImages') === true) {
return false;
}
if (this._whitelistEmails[Utils.toEquivalentEmailForm(message.fromContact().email)]) {
return false;
}
if (this._whitelistMessageIds[message.id]) {
return false;
}
return ImagesRegexp.test(message.body);
};
_loadWhitelist = () => {
fs.exists(this._whitelistEmailsPath, exists => {
if (!exists) {
return;
}
fs.readFile(this._whitelistEmailsPath, (err, body) => {
if (err || !body) {
console.log(err);
return;
}
this._whitelistEmails = {};
body
.toString()
.split(/[\n\r]+/)
.forEach(email => {
this._whitelistEmails[Utils.toEquivalentEmailForm(email)] = true;
});
this.trigger();
});
});
};
_saveWhitelist = () => {
const data = Object.keys(this._whitelistEmails).join('\n');
fs.writeFile(this._whitelistEmailsPath, data, err => {
if (err) {
console.error(`AutoloadImagesStore could not save whitelist: ${err.toString()}`);
}
});
};
_onTemporarilyEnableImages = message => {
this._whitelistMessageIds[message.id] = true;
MessageBodyProcessor.resetCache();
this.trigger();
};
_onPermanentlyEnableImages = message => {
const email = Utils.toEquivalentEmailForm(message.fromContact().email);
this._whitelistEmails[email] = true;
MessageBodyProcessor.resetCache();
setTimeout(this._saveWhitelist, 1);
this.trigger();
};
}
export default new AutoloadImagesStore();