nodejs app - 使用NTLM AUTH从sharepoint下载文件

时间:2014-07-18 18:42:50

标签: node.js sharepoint ssl download ntlm

我必须承认我被卡住了。我需要一个nodejs应用程序从SharePoint库下载文件。简单,对吧?不,不是简单的OOTB SharePoint。唯一允许的ssl,添加了特定的强制标头,当然只有基于域的NTLM身份验证方法。

我已经尝试了httpntlm(https://www.npmjs.org/package/httpntlm),它似乎可能提前工作,但没有。 SP回应时出现了错误信息。

我尝试过node-sharepoint,但它还不支持NTLM。该应用程序获得ETIMEDOUT响应。

任何想法,欢迎。

1 个答案:

答案 0 :(得分:0)

我可以使用httpntlm模块下载该文件。您需要更改几行代码。使用httpntlm.js中的以下代码替换瀑布逻辑。

async.waterfall([
        function ($){
            var type1msg = ntlm.createType1Message(options);

            httpreq.get(options.url, {
                headers:{
                    'Connection' : 'keep-alive',
                    'Authorization': type1msg
                },
                agent: keepaliveAgent
            }, $);
        },

        function (res, $){
            if(!res.headers['www-authenticate'])
                return $(new Error('www-authenticate not found on response of second request'));

            var type2msg = ntlm.parseType2Message(res.headers['www-authenticate']);
            var type3msg = ntlm.createType3Message(type2msg, options);
            if(method!=='download'){
                httpreq[method](options.url, {
                    headers:{
                        'Connection' : 'Close',
                        'Authorization': type3msg
                    },
                    allowRedirects: false,
                    agent: keepaliveAgent
                }, $);
            }else{

                    //By Dheeraj for file download
                    httpreq.download(
                        url,
                    {
                        headers:{
                            'Connection' : 'Close',
                            'Authorization': type3msg
                        },
                        //allowRedirects: false,
                        agent: keepaliveAgent
                    },
                    __dirname + 'your_filename',                        
                     function (err, progress){
                        if (err) return console.log(err);
                        console.log(progress);
                    }, function (err, res){
                        if (err) return console.log(err);
                        console.log(res);
                    });

            }
        }
    ], callback);
};

['get', 'put', 'post', 'delete', 'head','download'].forEach(function(method){
  exports[method] = exports.method.bind(exports, method);
});

并替换httpreq.js的下载方法(httpntm_module / node_modules / httpreq_module / httpreq.js)您可以在大约79号线找到它。

exports.download = function (url,options, downloadlocation, progressCallback, callback) {
    //var options = {};
    options.url = url;
    options.method = 'GET';
    options.downloadlocation = downloadlocation;
    options.allowRedirects = true;
    // if only 3 args are provided, so no progressCallback
    if(callback === undefined && progressCallback && typeof(progressCallback)==="function")
        callback = progressCallback;
    else
        options.progressCallback = progressCallback;

    doRequest(options, callback);
}

如果您仍然遇到问题,请告诉我。