45 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			45 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| 'use strict';
 | |
| 
 | |
| var PromiseA = require('bluebird');
 | |
| var OpErr = PromiseA.OperationalError;
 | |
| 
 | |
| function makeB64UrlSafe(b64) {
 | |
|   return b64.replace(/\+/g, '-').replace(/\//g, '_').replace(/=*$/, '');
 | |
| }
 | |
| 
 | |
| function checkIssuerToken(req, expectedSub) {
 | |
|   if (!req.oauth3 || !req.oauth3.verifyAsync) {
 | |
|     return PromiseA.reject(new OpErr("request requires a token for authorization"));
 | |
|   }
 | |
|   return req.oauth3.verifyAsync().then(function (token) {
 | |
|     // Now that we've confirmed the token is valid we also need to make sure the issuer, audience,
 | |
|     // and authorized party are all us, because no other app should be managing user identity.
 | |
|     if (token.iss !== req.experienceId || token.aud !== token.iss || token.azp !== token.iss) {
 | |
|       throw new OpErr("token does not allow access to requested resource");
 | |
|     }
 | |
| 
 | |
|     var sub = token.sub || token.ppid || (token.acx && (token.acx.id || token.acx.appScopedId));
 | |
|     if (!sub) {
 | |
|       if (!expectedSub || !Array.isArray(token.axs) || !token.axs.length) {
 | |
|         throw new OpErr("no account pairwise identifier");
 | |
|       }
 | |
| 
 | |
|       var allowed = token.axs.some(function (acc) {
 | |
|         return expectedSub === (acc.id || acc.ppid || acc.appScopedId);
 | |
|       });
 | |
|       if (!allowed) {
 | |
|         throw new OpErr("no account pairwise identifier matching '" + expectedSub + "'");
 | |
|       }
 | |
|       sub = expectedSub;
 | |
|     }
 | |
| 
 | |
|     if (expectedSub && expectedSub !== sub) {
 | |
|       throw new OpErr("token does not allow access to resources for '"+expectedSub+"'");
 | |
|     }
 | |
|     return sub;
 | |
|   });
 | |
| }
 | |
| 
 | |
| module.exports.checkIssuerToken = checkIssuerToken;
 | |
| module.exports.makeB64UrlSafe = makeB64UrlSafe;
 |