@@ -349,14 +349,32 @@ export class HttpStreamTransport extends AbstractTransport {
349
349
logger . debug ( `Handling GET request to ${ this . _config . endpoint } ` ) ;
350
350
const acceptHeader = req . headers . accept || '' ;
351
351
if ( ! acceptHeader . includes ( SSE_CONTENT_TYPE ) && ! acceptHeader . includes ( '*/*' ) ) throw this . httpError ( 406 , `Not Acceptable: GET requires Accept header including ${ SSE_CONTENT_TYPE } ` ) ;
352
+
352
353
const sessionIdHeader = getRequestHeader ( req . headers , this . _config . session . headerName ) ;
353
354
let session : SessionData | undefined ;
354
- if ( this . _config . session . enabled ) { session = this . validateSession ( sessionIdHeader , req , true ) ; session . lastActivity = Date . now ( ) ; }
355
- await this . handleAuthentication ( req , res , `GET session ${ session ?. id || 'N/A' } ` , session ) ;
355
+
356
+ if ( this . _config . session . enabled && sessionIdHeader ) {
357
+ // If a session ID is provided, validate it
358
+ session = this . validateSession ( sessionIdHeader , req , false ) ;
359
+ session . lastActivity = Date . now ( ) ;
360
+ logger . debug ( `Found valid session: ${ session . id } ` ) ;
361
+ await this . handleAuthentication ( req , res , `GET session ${ session . id } ` , session ) ;
362
+ } else if ( this . _config . session . enabled ) {
363
+ // Allow initial GET requests without session ID during initialization phase
364
+ logger . debug ( `GET request without session ID - allowing as potential initialization connection` ) ;
365
+ await this . handleAuthentication ( req , res , `GET initialization` , undefined ) ;
366
+ } else {
367
+ // Sessions disabled
368
+ await this . handleAuthentication ( req , res , `GET (sessions disabled)` , undefined ) ;
369
+ }
370
+
356
371
const lastEventId = getRequestHeader ( req . headers , "Last-Event-ID" ) ;
357
- if ( lastEventId && ! this . _config . resumability . enabled ) logger . warn ( `Client sent Last-Event-ID (${ lastEventId } ) but resumability is disabled.` ) ;
372
+ if ( lastEventId && ! this . _config . resumability . enabled ) {
373
+ logger . warn ( `Client sent Last-Event-ID (${ lastEventId } ) but resumability is disabled.` ) ;
374
+ }
375
+
358
376
this . setupSSEConnection ( req , res , session ?. id , lastEventId ) ;
359
- logger . debug ( `Established SSE stream for GET request (Session: ${ session ?. id || 'N/A ' } )` ) ;
377
+ logger . debug ( `Established SSE stream for GET request (Session: ${ session ?. id || 'initialization phase ' } )` ) ;
360
378
}
361
379
362
380
private async handleDelete ( req : IncomingMessage , res : ServerResponse ) : Promise < void > {
@@ -520,8 +538,9 @@ export class HttpStreamTransport extends AbstractTransport {
520
538
throw this . httpError ( 400 , `Bad Request: Missing required session header ${ headerName } ` , - 32601 , undefined , requestId ) ;
521
539
}
522
540
else {
523
- logger . error ( `Programming error: validateSession called for initialization request with isMandatory=false` ) ;
524
- throw this . httpError ( 500 , "Internal Server Error: Session validation incorrectly called for initialization" , - 32603 , undefined , requestId ) ;
541
+ // This is a valid case for initialization or when sessionId is optional
542
+ logger . debug ( `No session ID provided and not mandatory - acceptable for initialization` ) ;
543
+ return undefined as any ; // Will be caught by typescript at call site
525
544
}
526
545
}
527
546
0 commit comments