2016-02-24 14:55:47 +08:00
|
|
|
import uuid from 'node-uuid';
|
2016-02-24 10:20:26 +08:00
|
|
|
import {
|
|
|
|
ComposerExtension,
|
|
|
|
Actions,
|
|
|
|
QuotedHTMLTransformer,
|
2016-02-24 14:55:47 +08:00
|
|
|
RegExpUtils,
|
|
|
|
} from 'nylas-exports';
|
|
|
|
import {PLUGIN_ID, PLUGIN_URL} from './link-tracking-constants'
|
2016-02-20 04:30:24 +08:00
|
|
|
|
|
|
|
|
|
|
|
class DraftBody {
|
|
|
|
constructor(draft) {this._body = draft.body}
|
|
|
|
get unquoted() {return QuotedHTMLTransformer.removeQuotedHTML(this._body);}
|
|
|
|
set unquoted(text) {this._body = QuotedHTMLTransformer.appendQuotedHTML(text, this._body);}
|
|
|
|
get body() {return this._body}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default class LinkTrackingComposerExtension extends ComposerExtension {
|
|
|
|
static finalizeSessionBeforeSending({session}) {
|
|
|
|
const draft = session.draft();
|
|
|
|
|
|
|
|
// grab message metadata, if any
|
|
|
|
const metadata = draft.metadataForPluginId(PLUGIN_ID);
|
|
|
|
if (metadata) {
|
|
|
|
const draftBody = new DraftBody(draft);
|
|
|
|
const links = [];
|
|
|
|
const messageUid = uuid.v4().replace(/-/g, "");
|
|
|
|
|
|
|
|
// loop through all <a href> elements, replace with redirect links and save mappings
|
2016-02-24 10:20:26 +08:00
|
|
|
draftBody.unquoted = draftBody.unquoted.replace(RegExpUtils.linkTagRegex(), (match, prefix, url, suffix, content, closingTag) => {
|
2016-02-20 04:30:24 +08:00
|
|
|
const encoded = encodeURIComponent(url);
|
2016-02-25 04:24:19 +08:00
|
|
|
// the links param is an index of the link array.
|
2016-02-25 04:17:39 +08:00
|
|
|
const redirectUrl = `${PLUGIN_URL}/link/${draft.accountId}/${messageUid}/${links.length}?redirect=${encoded}`;
|
2016-02-24 10:51:05 +08:00
|
|
|
links.push({url: url, click_count: 0, click_data: [], redirect_url: redirectUrl});
|
2016-02-24 10:20:26 +08:00
|
|
|
return prefix + redirectUrl + suffix + content + closingTag;
|
2016-02-20 04:30:24 +08:00
|
|
|
});
|
|
|
|
|
|
|
|
// save the draft
|
|
|
|
session.changes.add({body: draftBody.body});
|
|
|
|
session.changes.commit();
|
|
|
|
|
|
|
|
// save the link info to draft metadata
|
|
|
|
metadata.uid = messageUid;
|
|
|
|
metadata.links = links;
|
|
|
|
Actions.setMetadata(draft, PLUGIN_ID, metadata);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|