| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226 | <!DOCTYPE html><html lang="en"><head>    <meta charset="utf-8">    <title>JSDoc: Source: src/credentials.js</title>    <script src="scripts/prettify/prettify.js"> </script>    <script src="scripts/prettify/lang-css.js"> </script>    <!--[if lt IE 9]>      <script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>    <![endif]-->    <link type="text/css" rel="stylesheet" href="styles/prettify-tomorrow.css">    <link type="text/css" rel="stylesheet" href="styles/jsdoc-default.css"></head><body><div id="main">    <h1 class="page-title">Source: src/credentials.js</h1>            <section>        <article>            <pre class="prettyprint source linenums"><code>/* * * Copyright 2015, Google Inc. * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * *     * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. *     * Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following disclaimer * in the documentation and/or other materials provided with the * distribution. *     * Neither the name of Google Inc. nor the names of its * contributors may be used to endorse or promote products derived from * this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * *//** * Credentials module * * This module contains factory methods for two different credential types: * CallCredentials and ChannelCredentials. ChannelCredentials are things like * SSL credentials that can be used to secure a connection, and are used to * construct a Client object. CallCredentials genrally modify metadata, so they * can be attached to an individual method call. * * CallCredentials can be composed with other CallCredentials to create * CallCredentials. ChannelCredentials can be composed with CallCredentials * to create ChannelCredentials. No combined credential can have more than * one ChannelCredentials. * * For example, to create a client secured with SSL that uses Google * default application credentials to authenticate: * * var channel_creds = credentials.createSsl(root_certs); * (new GoogleAuth()).getApplicationDefault(function(err, credential) { *   var call_creds = credentials.createFromGoogleCredential(credential); *   var combined_creds = credentials.combineChannelCredentials( *       channel_creds, call_creds); *   var client = new Client(address, combined_creds); * }); * * @module */'use strict';var grpc = require('./grpc_extension');var CallCredentials = grpc.CallCredentials;var ChannelCredentials = grpc.ChannelCredentials;var Metadata = require('./metadata.js');var common = require('./common.js');var _ = require('lodash');/** * Create an SSL Credentials object. If using a client-side certificate, both * the second and third arguments must be passed. * @param {Buffer} root_certs The root certificate data * @param {Buffer=} private_key The client certificate private key, if *     applicable * @param {Buffer=} cert_chain The client certificate cert chain, if applicable * @return {ChannelCredentials} The SSL Credentials object */exports.createSsl = ChannelCredentials.createSsl;/** * Create a gRPC credentials object from a metadata generation function. This * function gets the service URL and a callback as parameters. The error * passed to the callback can optionally have a 'code' value attached to it, * which corresponds to a status code that this library uses. * @param {function(String, function(Error, Metadata))} metadata_generator The *     function that generates metadata * @return {CallCredentials} The credentials object */exports.createFromMetadataGenerator = function(metadata_generator) {  return CallCredentials.createFromPlugin(function(service_url, cb_data,                                                   callback) {    metadata_generator({service_url: service_url}, function(error, metadata) {      var code = grpc.status.OK;      var message = '';      if (error) {        message = error.message;        if (error.hasOwnProperty('code') && _.isFinite(error.code)) {          code = error.code;        } else {          code = grpc.status.UNAUTHENTICATED;        }        if (!metadata) {          metadata = new Metadata();        }      }      callback(code, message, metadata._getCoreRepresentation(), cb_data);    });  });};/** * Create a gRPC credential from a Google credential object. * @param {Object} google_credential The Google credential object to use * @return {CallCredentials} The resulting credentials object */exports.createFromGoogleCredential = function(google_credential) {  return exports.createFromMetadataGenerator(function(auth_context, callback) {    var service_url = auth_context.service_url;    google_credential.getRequestMetadata(service_url, function(err, header) {      if (err) {        common.log(grpc.logVerbosity.INFO, 'Auth error:' + err);        callback(err);        return;      }      var metadata = new Metadata();      metadata.add('authorization', header.Authorization);      callback(null, metadata);    });  });};/** * Combine a ChannelCredentials with any number of CallCredentials into a single * ChannelCredentials object. * @param {ChannelCredentials} channel_credential The ChannelCredentials to *     start with * @param {...CallCredentials} credentials The CallCredentials to compose * @return ChannelCredentials A credentials object that combines all of the *     input credentials */exports.combineChannelCredentials = function(channel_credential) {  var current = channel_credential;  for (var i = 1; i < arguments.length; i++) {    current = current.compose(arguments[i]);  }  return current;};/** * Combine any number of CallCredentials into a single CallCredentials object * @param {...CallCredentials} credentials the CallCredentials to compose * @return CallCredentials A credentials object that combines all of the input *     credentials */exports.combineCallCredentials = function() {  var current = arguments[0];  for (var i = 1; i < arguments.length; i++) {    current = current.compose(arguments[i]);  }  return current;};/** * Create an insecure credentials object. This is used to create a channel that * does not use SSL. This cannot be composed with anything. * @return {ChannelCredentials} The insecure credentials object */exports.createInsecure = ChannelCredentials.createInsecure;</code></pre>        </article>    </section></div><nav>    <h2><a href="index.html">Home</a></h2><h3>Modules</h3><ul><li><a href="module-src_client.html">src/client</a></li><li><a href="module-src_common.html">src/common</a></li><li><a href="module-src_credentials.html">src/credentials</a></li><li><a href="module-src_metadata.html">src/metadata</a></li><li><a href="module-src_server.html">src/server</a></li></ul><h3>Classes</h3><ul><li><a href="module-src_client.makeClientConstructor-Client.html">Client</a></li><li><a href="module-src_client-ClientDuplexStream.html">ClientDuplexStream</a></li><li><a href="module-src_client-ClientReadableStream.html">ClientReadableStream</a></li><li><a href="module-src_client-ClientWritableStream.html">ClientWritableStream</a></li><li><a href="module-src_metadata-Metadata.html">Metadata</a></li><li><a href="module-src_server-Server.html">Server</a></li><li><a href="module-src_server-ServerDuplexStream.html">ServerDuplexStream</a></li><li><a href="module-src_server-ServerReadableStream.html">ServerReadableStream</a></li><li><a href="module-src_server-ServerWritableStream.html">ServerWritableStream</a></li></ul><h3>Global</h3><ul><li><a href="global.html#callError">callError</a></li><li><a href="global.html#credentials">credentials</a></li><li><a href="global.html#getClientChannel">getClientChannel</a></li><li><a href="global.html#load">load</a></li><li><a href="global.html#loadObject">loadObject</a></li><li><a href="global.html#logVerbosity">logVerbosity</a></li><li><a href="global.html#makeGenericClientConstructor">makeGenericClientConstructor</a></li><li><a href="global.html#Metadata">Metadata</a></li><li><a href="global.html#propagate">propagate</a></li><li><a href="global.html#Server">Server</a></li><li><a href="global.html#ServerCredentials">ServerCredentials</a></li><li><a href="global.html#setLogger">setLogger</a></li><li><a href="global.html#setLogVerbosity">setLogVerbosity</a></li><li><a href="global.html#status">status</a></li><li><a href="global.html#waitForClientReady">waitForClientReady</a></li><li><a href="global.html#writeFlags">writeFlags</a></li></ul></nav><br class="clear"><footer>    Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.4.0</a> on Thu Aug 18 2016 12:19:14 GMT-0700 (PDT)</footer><script> prettyPrint(); </script><script src="scripts/linenumber.js"> </script></body></html>
 |