当前位置: 首页>>代码示例>>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;未经允许,请勿转载。