當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript jwtExtractor.JwtExtractor類代碼示例

本文整理匯總了TypeScript中idam/jwtExtractor.JwtExtractor的典型用法代碼示例。如果您正苦於以下問題:TypeScript JwtExtractor類的具體用法?TypeScript JwtExtractor怎麽用?TypeScript JwtExtractor使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了JwtExtractor類的7個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: it

  it('should return token from cookie', () => {
    const jwtValue = 'a'

    const req = {
      cookies: {
        [sessionCookieName]: jwtValue
      }
    } as Request

    expect(JwtExtractor.extract(req)).to.equal(jwtValue)
  })
開發者ID:hmcts,項目名稱:cmc-citizen-frontend,代碼行數:11,代碼來源:jwtExtractor.ts

示例2: getAuthToken

async function getAuthToken (req: express.Request,
                             receiver: RoutablePath = AppPaths.receiver,
                             checkCookie = true): Promise<string> {
  let authenticationToken
  if (req.query.code) {
    authenticationToken = await getOAuthAccessToken(req, receiver)
  } else if (checkCookie) {
    authenticationToken = JwtExtractor.extract(req)
  }
  return authenticationToken
}
開發者ID:hmcts,項目名稱:cmc-citizen-frontend,代碼行數:11,代碼來源:receiver.ts

示例3: authorizationRequestHandler

async function authorizationRequestHandler (req: express.Request, res: express.Response, next: express.NextFunction) {
  const jwt: string = JwtExtractor.extract(req)
  if (jwt) {
    try {
      await IdamClient.retrieveUserFor(jwt)
      res.locals.isLoggedIn = true
    } catch (err) {
      if (!hasTokenExpired(err)) {
        next(err)
        return
      }
    }
  }
  next()
}
開發者ID:hmcts,項目名稱:cmc-citizen-frontend,代碼行數:15,代碼來源:index.ts

示例4: catch

    ErrorHandling.apply(async (req: express.Request, res: express.Response, next: express.NextFunction): Promise<void> => {
      const jwt: string = JwtExtractor.extract(req)

      if (jwt) {
        try {
          await IdamClient.invalidateSession(jwt)
        } catch (error) {
          const { id } = JwtUtils.decodePayload(jwt)
          logger.error(`Failed invalidating JWT for userId  ${id}`)
        }

        const cookies = new Cookies(req, res)
        cookies.set(sessionCookie, '')
      }

      res.redirect(Paths.homePage.uri)
    })
開發者ID:hmcts,項目名稱:cmc-citizen-frontend,代碼行數:17,代碼來源:logout.ts

示例5: return

    return (req: express.Request, res: express.Response, next: express.NextFunction) => {
      const jwt: string = JwtExtractor.extract(req)

      if (isPathUnprotected(req.path)) {
        logger.debug(`Unprotected path - access to ${req.path} granted`)
        return next()
      }

      if (!jwt) {
        logger.debug(`Protected path - no JWT - access to ${req.path} rejected`)
        return accessDeniedCallback(req, res)
      } else {
        IdamClient
          .retrieveUserFor(jwt)
          .then((user: User) => {
            if (!user.isInRoles(...requiredRoles)) {
              logger.error(`Protected path - valid JWT but user not in ${requiredRoles} roles - redirecting to access denied page`)
              return accessDeniedCallback(req, res)
            } else {
              res.locals.isLoggedIn = true
              res.locals.user = user
              logger.debug(`Protected path - valid JWT & role - access to ${req.path} granted`)
              return next()
            }
          })
          .catch((err) => {
            if (hasTokenExpired(err)) {
              const cookies = new Cookies(req, res)
              cookies.set(sessionCookieName, '')
              logger.debug(`Protected path - invalid JWT - access to ${req.path} rejected`)
              return accessDeniedCallback(req, res)
            }
            return next(err)
          })
      }
    }
開發者ID:hmcts,項目名稱:cmc-citizen-frontend,代碼行數:36,代碼來源:authorizationMiddleware.ts

示例6: receiverPath

function receiverPath (req: express.Request, res: express.Response): string {
  return `${OAuthHelper.forUplift(req, res)}&jwt=${JwtExtractor.extract(req)}`
}
開發者ID:hmcts,項目名稱:cmc-citizen-frontend,代碼行數:3,代碼來源:claim-summary.ts

示例7:

 .get(Paths.startPage.uri, (req: express.Request, res: express.Response): void => {
   res.render(Paths.startPage.associatedView, {
     registeredUser: JwtExtractor.extract(req) !== undefined
   })
 })
開發者ID:hmcts,項目名稱:cmc-citizen-frontend,代碼行數:5,代碼來源:index.ts


注:本文中的idam/jwtExtractor.JwtExtractor類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。