Class MockTokenService

java.lang.Object
io.antmedia.security.MockTokenService
All Implemented Interfaces:
ITokenService, IStreamPublishSecurity

public class MockTokenService extends Object implements IStreamPublishSecurity, ITokenService
  • Field Details

  • Constructor Details

    • MockTokenService

      public MockTokenService()
  • Method Details

    • checkToken

      public boolean checkToken(String tokenId, String streamId, String sessionId, String type)
      Description copied from interface: ITokenService
      Checks the token validity
      Specified by:
      checkToken in interface ITokenService
      Parameters:
      tokenId - - requested token id
      streamId - - id of the stream
      sessionId - - id of the current session
      type - - type of the token (play/publish)
      Returns:
      true or false
    • isPublishAllowed

      public boolean isPublishAllowed(IScope scope, String name, String mode, Map<String,String> queryParams, String metaData)
      Description copied from interface: IStreamPublishSecurity
      Check if publishing a stream with the given name is allowed.
      Specified by:
      isPublishAllowed in interface IStreamPublishSecurity
      Parameters:
      scope - Scope the stream is about to be published in.
      name - Name of the stream to publish.
      mode - Publishing mode.
      Returns:
       True
       
      if publishing is allowed, otherwise
       False
       
    • createToken

      public Token createToken(String streamId, long exprireDate, String type, String roomId)
      Description copied from interface: ITokenService
      creates token according to the provided parameters
      Specified by:
      createToken in interface ITokenService
      Parameters:
      streamId - - id of the requested stream for token creation
      exprireDate - - expire date of the token
      type - type of the token (play/publish)
      roomId - - id of the room for playing streams in the room
      Returns:
      token
    • createJwtToken

      public Token createJwtToken(String streamId, long exprireDate, String type, String roomId)
      Description copied from interface: ITokenService
      creates token according to the provided parameters
      Specified by:
      createJwtToken in interface ITokenService
      Parameters:
      streamId - - id of the requested stream for token creation
      exprireDate - - expire date of the token (unix timestamp)
      type - type of the token (play/publish)
      roomId - - id of the room for playing streams in the room
      Returns:
      token
    • getAuthenticatedMap

      public Map<String,String> getAuthenticatedMap()
      Description copied from interface: ITokenService
      gets map of authenticated sessions
      Specified by:
      getAuthenticatedMap in interface ITokenService
      Returns:
      list
    • getSubscriberAuthenticatedMap

      public Map<String,String> getSubscriberAuthenticatedMap()
      Description copied from interface: ITokenService
      gets map of authenticated subscriber sessions
      Specified by:
      getSubscriberAuthenticatedMap in interface ITokenService
      Returns:
      list
    • checkHash

      public boolean checkHash(String hash, String streamId, String sessionId, String type)
      Description copied from interface: ITokenService
      Compare hash string with computed one which is based on streamId,type and secret
      Specified by:
      checkHash in interface ITokenService
      Parameters:
      hash - - client hash
      streamId - - id of the stream
      sessionId - - session of the request
      type - - type of the request (publish/play)
      Returns:
    • checkTimeBasedSubscriber

      public boolean checkTimeBasedSubscriber(String subscriberId, String streamId, String sessionId, String subscriberCode, String tokenType)
      Description copied from interface: ITokenService
      Checks the time based token validity
      Specified by:
      checkTimeBasedSubscriber in interface ITokenService
      Parameters:
      subscriberId - - requested subscriberId
      streamId - - id of the stream
      sessionId - - id of the current session
      subscriberCode - - with TOTP generated code
      tokenType - - or @link Subscriber#PUBLISH_TYPE or @link Subscriber#PLAY_TYPE
      Returns:
      true or false
    • isJwtTokenValid

      public boolean isJwtTokenValid(String jwtTokenId, String tokenSecret, String streamId, String type)
      Description copied from interface: ITokenService
      Check the JWT token if it's valid. It accepts the secret key to check the validity;
      Specified by:
      isJwtTokenValid in interface ITokenService
      Returns:
    • checkJwtToken

      public boolean checkJwtToken(String jwtTokenId, String streamId, String sessionId, String type)
      Description copied from interface: ITokenService
      Checks the JWT token validity
      Specified by:
      checkJwtToken in interface ITokenService
      Parameters:
      jwtTokenId - - requested token id
      streamId - - id of the stream
      type - - type of the token (play/publish)
      Returns:
      true or false