-
-
Notifications
You must be signed in to change notification settings - Fork 142
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Handshake middleware for server #224
Conversation
Server/Type/WebSocketServer.php
Outdated
@@ -89,7 +94,8 @@ public function __construct( | |||
$originCheck, | |||
TopicManager $topicManager, | |||
ServerPushHandlerRegistry $serverPushHandlerRegistry, | |||
LoggerInterface $logger = null | |||
LoggerInterface $logger = null, | |||
HandshakeMiddlewareRegistry $handshakeMiddlewareRegistry |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Arguments with default values must be at the end of the argument list
Hey, Thank your for your contribution, could you open a PR on https://github.com/GeniusesOfSymfony/WebsocketAppDemo and target your branch via composer
And add a sample handshake middleware then I can run integration against it. |
while I made the fix for the constructor and added middleware example to docs (HandshakeMiddleware.md) |
Staging branch |
Sorry, l will look to it in a few days |
|
||
$user = $accessToken->getUser(); | ||
$token = new AnonymousToken( | ||
$request->getQuery()->get('access_token'), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
what if the request object is null? and what if the access token is given in header?
|
||
/** | ||
* @param HandshakeMiddlewareAbstract $middleware | ||
* @throws \Exception |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
where?
@Prophet777 @pierre-tranchard |
@Prophet777 |
Yes sorry, I don't have time, I'll try to test this week end, i'm sorry :/ |
@Prophet777 ping |
Possibility to add own handshake middleware for ws server
For example, I made handshake with OAuth access token)