0

我在用于生成 pdf 的节点模块中有以下帮助程序代码。它使用 pdfCrowd API 和 Restler。

var rest = require( "restler" );
var create = function() {

    this.pdfConfig = { 
        // data object for generating the pdf
    };

    this.getRaw = function( cb ) {
        this.fetch(function( err, result ) {
            if ( err ) return cb( err );
            cb( null, new Buffer( result.raw ).toString( "base64" ));
        });
    };

    this.fetch = function( cb ) {
        rest.post( "https://pdfcrowd.com/api/pdf/convert/html/", { data: this.pdfConfig })
        .on("success", function( err, result ) {
            if ( err ) return cb( err );
            cb( null, result );
        });
    };

};
module.exports.create = create;

我使用这个助手将 pdf 作为电子邮件附件发送出去。

var Pdf = require( "/helpers/pdf" ),

function sendPdfEmail() {
    var pdf = new Pdf.create();
    pdf.pdfConfig = { ... }
    pdf.getRaw(function( err, pdfData ) {
       sendEmail( from, to, subject, body, pdfData );
    });
}

问题是,我了解到在竞争条件下,很多人都在调用 sendPdfEmail(),我可能会得到其他人的 PDF。也就是说,发送了正确的电子邮件 - 但附件中的数据可能属于其他人。

任何想法我做错了什么?

编辑:根据要求,这里是关于 sendEmail 的更多详细信息。

sendEmail 是我包括的另一个助手。它是 node-postmark 模块的包装器。

   var sendEmail = function( from, to, subject, body, attachment, cb ) {

        var postmark = require( "postmark" )( api_key );
        postmark.send({
            "From": from,
            "To": to,
            "Subject": subject,
            "HtmlBody": body,
            "Attachments": attachment ? [{
              "Content": attachment,
              "Name": "stuff.pdf",
              "ContentType": "application/pdf"
            }] : null
        }, function( err, success ) {
            if ( typeof cb === "function" ) cb();
            postmark = null;
        });

    };
4

0 回答 0