Package io.antmedia.security
Class MockTokenService
java.lang.Object
io.antmedia.security.MockTokenService
- All Implemented Interfaces:
ITokenService
,IStreamPublishSecurity
-
Nested Class Summary
Nested classes/interfaces inherited from interface io.antmedia.security.ITokenService
ITokenService.BeanName
-
Field Summary
FieldsModifier and TypeFieldDescriptionFields inherited from interface io.antmedia.security.ITokenService
HMAC_SHA1, logger
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionboolean
Compare hash string with computed one which is based on streamId,type and secretboolean
checkJwtToken
(String jwtTokenId, String streamId, String sessionId, String type) Checks the JWT token validityboolean
checkTimeBasedSubscriber
(String subscriberId, String streamId, String sessionId, String subscriberCode, String tokenType) Checks the time based token validityboolean
checkToken
(String tokenId, String streamId, String sessionId, String type) Checks the token validitycreateJwtToken
(String streamId, long exprireDate, String type, String roomId) creates token according to the provided parameterscreateToken
(String streamId, long exprireDate, String type, String roomId) creates token according to the provided parametersgets map of authenticated sessionsgets map of authenticated subscriber sessionsboolean
isJwtTokenValid
(String jwtTokenId, String tokenSecret, String streamId, String type) Check the JWT token if it's valid.boolean
isPublishAllowed
(IScope scope, String name, String mode, Map<String, String> queryParams, String metaData) Check if publishing a stream with the given name is allowed.
-
Field Details
-
authenticatedMap
-
subscriberAuthenticatedMap
-
-
Constructor Details
-
MockTokenService
public MockTokenService()
-
-
Method Details
-
checkToken
Description copied from interface:ITokenService
Checks the token validity- Specified by:
checkToken
in interfaceITokenService
- Parameters:
tokenId
- - requested token idstreamId
- - id of the streamsessionId
- - id of the current sessiontype
- - 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 interfaceIStreamPublishSecurity
- 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, otherwiseFalse
-
createToken
Description copied from interface:ITokenService
creates token according to the provided parameters- Specified by:
createToken
in interfaceITokenService
- Parameters:
streamId
- - id of the requested stream for token creationexprireDate
- - expire date of the tokentype
- type of the token (play/publish)roomId
- - id of the room for playing streams in the room- Returns:
- token
-
createJwtToken
Description copied from interface:ITokenService
creates token according to the provided parameters- Specified by:
createJwtToken
in interfaceITokenService
- Parameters:
streamId
- - id of the requested stream for token creationexprireDate
- - 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
Description copied from interface:ITokenService
gets map of authenticated sessions- Specified by:
getAuthenticatedMap
in interfaceITokenService
- Returns:
- list
-
getSubscriberAuthenticatedMap
Description copied from interface:ITokenService
gets map of authenticated subscriber sessions- Specified by:
getSubscriberAuthenticatedMap
in interfaceITokenService
- Returns:
- list
-
checkHash
Description copied from interface:ITokenService
Compare hash string with computed one which is based on streamId,type and secret- Specified by:
checkHash
in interfaceITokenService
- Parameters:
hash
- - client hashstreamId
- - id of the streamsessionId
- - session of the requesttype
- - 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 interfaceITokenService
- Parameters:
subscriberId
- - requested subscriberIdstreamId
- - id of the streamsessionId
- - id of the current sessionsubscriberCode
- - with TOTP generated codetokenType
- -or @link Subscriber#PUBLISH_TYPE or @link Subscriber#PLAY_TYPE
- Returns:
- true or false
-
isJwtTokenValid
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 interfaceITokenService
- Returns:
-
checkJwtToken
Description copied from interface:ITokenService
Checks the JWT token validity- Specified by:
checkJwtToken
in interfaceITokenService
- Parameters:
jwtTokenId
- - requested token idstreamId
- - id of the streamtype
- - type of the token (play/publish)- Returns:
- true or false
-