@excitedjs/tm 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/tm +76 -0
- package/package.json +39 -0
- package/resolver-register.mjs +7 -0
- package/resolver.mjs +86 -0
- package/src/cli/context.ts +63 -0
- package/src/cli/dispatch.ts +444 -0
- package/src/cli/errors.ts +45 -0
- package/src/cli/parse.ts +265 -0
- package/src/cli.ts +12 -0
- package/src/codex-protocol/AbsolutePathBuf.ts +14 -0
- package/src/codex-protocol/AgentPath.ts +5 -0
- package/src/codex-protocol/ApplyPatchApprovalParams.ts +21 -0
- package/src/codex-protocol/ApplyPatchApprovalResponse.ts +6 -0
- package/src/codex-protocol/AuthMode.ts +8 -0
- package/src/codex-protocol/AutoCompactTokenLimitScope.ts +9 -0
- package/src/codex-protocol/ClientInfo.ts +5 -0
- package/src/codex-protocol/ClientNotification.ts +5 -0
- package/src/codex-protocol/ClientRequest.ts +110 -0
- package/src/codex-protocol/CollaborationMode.ts +10 -0
- package/src/codex-protocol/ContentItem.ts +6 -0
- package/src/codex-protocol/ConversationGitInfo.ts +5 -0
- package/src/codex-protocol/ConversationSummary.ts +8 -0
- package/src/codex-protocol/ExecCommandApprovalParams.ts +16 -0
- package/src/codex-protocol/ExecCommandApprovalResponse.ts +6 -0
- package/src/codex-protocol/ExecPolicyAmendment.ts +12 -0
- package/src/codex-protocol/FileChange.ts +5 -0
- package/src/codex-protocol/ForcedLoginMethod.ts +5 -0
- package/src/codex-protocol/FunctionCallOutputBody.ts +6 -0
- package/src/codex-protocol/FunctionCallOutputContentItem.ts +10 -0
- package/src/codex-protocol/FuzzyFileSearchMatchType.ts +5 -0
- package/src/codex-protocol/FuzzyFileSearchParams.ts +5 -0
- package/src/codex-protocol/FuzzyFileSearchResponse.ts +6 -0
- package/src/codex-protocol/FuzzyFileSearchResult.ts +9 -0
- package/src/codex-protocol/FuzzyFileSearchSessionCompletedNotification.ts +5 -0
- package/src/codex-protocol/FuzzyFileSearchSessionStartParams.ts +5 -0
- package/src/codex-protocol/FuzzyFileSearchSessionStartResponse.ts +5 -0
- package/src/codex-protocol/FuzzyFileSearchSessionStopParams.ts +5 -0
- package/src/codex-protocol/FuzzyFileSearchSessionStopResponse.ts +5 -0
- package/src/codex-protocol/FuzzyFileSearchSessionUpdateParams.ts +5 -0
- package/src/codex-protocol/FuzzyFileSearchSessionUpdateResponse.ts +5 -0
- package/src/codex-protocol/FuzzyFileSearchSessionUpdatedNotification.ts +6 -0
- package/src/codex-protocol/GetAuthStatusParams.ts +5 -0
- package/src/codex-protocol/GetAuthStatusResponse.ts +6 -0
- package/src/codex-protocol/GetConversationSummaryParams.ts +6 -0
- package/src/codex-protocol/GetConversationSummaryResponse.ts +6 -0
- package/src/codex-protocol/GitDiffToRemoteParams.ts +5 -0
- package/src/codex-protocol/GitDiffToRemoteResponse.ts +6 -0
- package/src/codex-protocol/GitSha.ts +5 -0
- package/src/codex-protocol/ImageDetail.ts +5 -0
- package/src/codex-protocol/InitializeCapabilities.ts +21 -0
- package/src/codex-protocol/InitializeParams.ts +7 -0
- package/src/codex-protocol/InitializeResponse.ts +20 -0
- package/src/codex-protocol/InputModality.ts +8 -0
- package/src/codex-protocol/InternalSessionSource.ts +5 -0
- package/src/codex-protocol/LocalShellAction.ts +6 -0
- package/src/codex-protocol/LocalShellExecAction.ts +5 -0
- package/src/codex-protocol/LocalShellStatus.ts +5 -0
- package/src/codex-protocol/MessagePhase.ts +11 -0
- package/src/codex-protocol/ModeKind.ts +8 -0
- package/src/codex-protocol/NetworkPolicyAmendment.ts +6 -0
- package/src/codex-protocol/NetworkPolicyRuleAction.ts +5 -0
- package/src/codex-protocol/ParsedCommand.ts +12 -0
- package/src/codex-protocol/Personality.ts +5 -0
- package/src/codex-protocol/PlanType.ts +5 -0
- package/src/codex-protocol/RealtimeConversationVersion.ts +5 -0
- package/src/codex-protocol/RealtimeOutputModality.ts +5 -0
- package/src/codex-protocol/RealtimeVoice.ts +5 -0
- package/src/codex-protocol/RealtimeVoicesList.ts +6 -0
- package/src/codex-protocol/ReasoningEffort.ts +8 -0
- package/src/codex-protocol/ReasoningItemContent.ts +5 -0
- package/src/codex-protocol/ReasoningItemReasoningSummary.ts +5 -0
- package/src/codex-protocol/ReasoningSummary.ts +10 -0
- package/src/codex-protocol/RequestId.ts +5 -0
- package/src/codex-protocol/Resource.ts +9 -0
- package/src/codex-protocol/ResourceContent.ts +17 -0
- package/src/codex-protocol/ResourceTemplate.ts +9 -0
- package/src/codex-protocol/ResponseItem.ts +17 -0
- package/src/codex-protocol/ReviewDecision.ts +10 -0
- package/src/codex-protocol/ServerNotification.ts +73 -0
- package/src/codex-protocol/ServerRequest.ts +19 -0
- package/src/codex-protocol/SessionSource.ts +7 -0
- package/src/codex-protocol/Settings.ts +9 -0
- package/src/codex-protocol/SubAgentSource.ts +7 -0
- package/src/codex-protocol/ThreadId.ts +5 -0
- package/src/codex-protocol/ThreadMemoryMode.ts +5 -0
- package/src/codex-protocol/Tool.ts +9 -0
- package/src/codex-protocol/Verbosity.ts +9 -0
- package/src/codex-protocol/WebSearchAction.ts +5 -0
- package/src/codex-protocol/WebSearchContextSize.ts +5 -0
- package/src/codex-protocol/WebSearchLocation.ts +5 -0
- package/src/codex-protocol/WebSearchMode.ts +5 -0
- package/src/codex-protocol/WebSearchToolConfig.ts +7 -0
- package/src/codex-protocol/index.ts +86 -0
- package/src/codex-protocol/serde_json/JsonValue.ts +5 -0
- package/src/codex-protocol/v2/Account.ts +6 -0
- package/src/codex-protocol/v2/AccountLoginCompletedNotification.ts +5 -0
- package/src/codex-protocol/v2/AccountRateLimitsUpdatedNotification.ts +6 -0
- package/src/codex-protocol/v2/AccountUpdatedNotification.ts +7 -0
- package/src/codex-protocol/v2/ActivePermissionProfile.ts +15 -0
- package/src/codex-protocol/v2/AddCreditsNudgeCreditType.ts +5 -0
- package/src/codex-protocol/v2/AddCreditsNudgeEmailStatus.ts +5 -0
- package/src/codex-protocol/v2/AdditionalFileSystemPermissions.ts +15 -0
- package/src/codex-protocol/v2/AdditionalNetworkPermissions.ts +5 -0
- package/src/codex-protocol/v2/AdditionalPermissionProfile.ts +11 -0
- package/src/codex-protocol/v2/AgentMessageDeltaNotification.ts +5 -0
- package/src/codex-protocol/v2/AnalyticsConfig.ts +6 -0
- package/src/codex-protocol/v2/AppBranding.ts +8 -0
- package/src/codex-protocol/v2/AppInfo.ts +19 -0
- package/src/codex-protocol/v2/AppListUpdatedNotification.ts +9 -0
- package/src/codex-protocol/v2/AppMetadata.ts +7 -0
- package/src/codex-protocol/v2/AppReview.ts +5 -0
- package/src/codex-protocol/v2/AppScreenshot.ts +5 -0
- package/src/codex-protocol/v2/AppSummary.ts +8 -0
- package/src/codex-protocol/v2/AppToolApproval.ts +5 -0
- package/src/codex-protocol/v2/AppToolsConfig.ts +6 -0
- package/src/codex-protocol/v2/ApprovalsReviewer.ts +12 -0
- package/src/codex-protocol/v2/AppsConfig.ts +8 -0
- package/src/codex-protocol/v2/AppsDefaultConfig.ts +5 -0
- package/src/codex-protocol/v2/AppsListParams.ts +24 -0
- package/src/codex-protocol/v2/AppsListResponse.ts +14 -0
- package/src/codex-protocol/v2/AskForApproval.ts +5 -0
- package/src/codex-protocol/v2/AttestationGenerateParams.ts +5 -0
- package/src/codex-protocol/v2/AttestationGenerateResponse.ts +9 -0
- package/src/codex-protocol/v2/AutoReviewDecisionSource.ts +8 -0
- package/src/codex-protocol/v2/ByteRange.ts +5 -0
- package/src/codex-protocol/v2/CancelLoginAccountParams.ts +5 -0
- package/src/codex-protocol/v2/CancelLoginAccountResponse.ts +6 -0
- package/src/codex-protocol/v2/CancelLoginAccountStatus.ts +5 -0
- package/src/codex-protocol/v2/ChatgptAuthTokensRefreshParams.ts +16 -0
- package/src/codex-protocol/v2/ChatgptAuthTokensRefreshReason.ts +5 -0
- package/src/codex-protocol/v2/ChatgptAuthTokensRefreshResponse.ts +5 -0
- package/src/codex-protocol/v2/CodexErrorInfo.ts +12 -0
- package/src/codex-protocol/v2/CollabAgentState.ts +6 -0
- package/src/codex-protocol/v2/CollabAgentStatus.ts +5 -0
- package/src/codex-protocol/v2/CollabAgentTool.ts +5 -0
- package/src/codex-protocol/v2/CollabAgentToolCallStatus.ts +5 -0
- package/src/codex-protocol/v2/CollaborationModeListParams.ts +8 -0
- package/src/codex-protocol/v2/CollaborationModeListResponse.ts +9 -0
- package/src/codex-protocol/v2/CollaborationModeMask.ts +10 -0
- package/src/codex-protocol/v2/CommandAction.ts +6 -0
- package/src/codex-protocol/v2/CommandExecOutputDeltaNotification.ts +30 -0
- package/src/codex-protocol/v2/CommandExecOutputStream.ts +8 -0
- package/src/codex-protocol/v2/CommandExecParams.ts +105 -0
- package/src/codex-protocol/v2/CommandExecResizeParams.ts +18 -0
- package/src/codex-protocol/v2/CommandExecResizeResponse.ts +8 -0
- package/src/codex-protocol/v2/CommandExecResponse.ts +24 -0
- package/src/codex-protocol/v2/CommandExecTerminalSize.ts +16 -0
- package/src/codex-protocol/v2/CommandExecTerminateParams.ts +13 -0
- package/src/codex-protocol/v2/CommandExecTerminateResponse.ts +8 -0
- package/src/codex-protocol/v2/CommandExecWriteParams.ts +22 -0
- package/src/codex-protocol/v2/CommandExecWriteResponse.ts +8 -0
- package/src/codex-protocol/v2/CommandExecutionApprovalDecision.ts +7 -0
- package/src/codex-protocol/v2/CommandExecutionOutputDeltaNotification.ts +5 -0
- package/src/codex-protocol/v2/CommandExecutionRequestApprovalParams.ts +62 -0
- package/src/codex-protocol/v2/CommandExecutionRequestApprovalResponse.ts +6 -0
- package/src/codex-protocol/v2/CommandExecutionSource.ts +5 -0
- package/src/codex-protocol/v2/CommandExecutionStatus.ts +5 -0
- package/src/codex-protocol/v2/CommandMigration.ts +5 -0
- package/src/codex-protocol/v2/ComputerUseRequirements.ts +5 -0
- package/src/codex-protocol/v2/Config.ts +26 -0
- package/src/codex-protocol/v2/ConfigBatchWriteParams.ts +14 -0
- package/src/codex-protocol/v2/ConfigEdit.ts +7 -0
- package/src/codex-protocol/v2/ConfigLayer.ts +7 -0
- package/src/codex-protocol/v2/ConfigLayerMetadata.ts +6 -0
- package/src/codex-protocol/v2/ConfigLayerSource.ts +21 -0
- package/src/codex-protocol/v2/ConfigReadParams.ts +11 -0
- package/src/codex-protocol/v2/ConfigReadResponse.ts +8 -0
- package/src/codex-protocol/v2/ConfigRequirements.ts +13 -0
- package/src/codex-protocol/v2/ConfigRequirementsReadResponse.ts +10 -0
- package/src/codex-protocol/v2/ConfigValueWriteParams.ts +11 -0
- package/src/codex-protocol/v2/ConfigWarningNotification.ts +22 -0
- package/src/codex-protocol/v2/ConfigWriteResponse.ts +12 -0
- package/src/codex-protocol/v2/ConfiguredHookHandler.ts +5 -0
- package/src/codex-protocol/v2/ConfiguredHookMatcherGroup.ts +6 -0
- package/src/codex-protocol/v2/ContextCompactedNotification.ts +8 -0
- package/src/codex-protocol/v2/CreditsSnapshot.ts +5 -0
- package/src/codex-protocol/v2/DeprecationNoticeNotification.ts +13 -0
- package/src/codex-protocol/v2/DynamicToolCallOutputContentItem.ts +5 -0
- package/src/codex-protocol/v2/DynamicToolCallParams.ts +6 -0
- package/src/codex-protocol/v2/DynamicToolCallResponse.ts +6 -0
- package/src/codex-protocol/v2/DynamicToolCallStatus.ts +5 -0
- package/src/codex-protocol/v2/DynamicToolSpec.ts +6 -0
- package/src/codex-protocol/v2/EnvironmentAddParams.ts +5 -0
- package/src/codex-protocol/v2/EnvironmentAddResponse.ts +5 -0
- package/src/codex-protocol/v2/ErrorNotification.ts +6 -0
- package/src/codex-protocol/v2/ExecPolicyAmendment.ts +5 -0
- package/src/codex-protocol/v2/ExperimentalFeature.ts +37 -0
- package/src/codex-protocol/v2/ExperimentalFeatureEnablementSetParams.ts +12 -0
- package/src/codex-protocol/v2/ExperimentalFeatureEnablementSetResponse.ts +9 -0
- package/src/codex-protocol/v2/ExperimentalFeatureListParams.ts +19 -0
- package/src/codex-protocol/v2/ExperimentalFeatureListResponse.ts +11 -0
- package/src/codex-protocol/v2/ExperimentalFeatureStage.ts +5 -0
- package/src/codex-protocol/v2/ExternalAgentConfigDetectParams.ts +13 -0
- package/src/codex-protocol/v2/ExternalAgentConfigDetectResponse.ts +6 -0
- package/src/codex-protocol/v2/ExternalAgentConfigImportCompletedNotification.ts +5 -0
- package/src/codex-protocol/v2/ExternalAgentConfigImportParams.ts +6 -0
- package/src/codex-protocol/v2/ExternalAgentConfigImportResponse.ts +5 -0
- package/src/codex-protocol/v2/ExternalAgentConfigMigrationItem.ts +11 -0
- package/src/codex-protocol/v2/ExternalAgentConfigMigrationItemType.ts +5 -0
- package/src/codex-protocol/v2/FeedbackUploadParams.ts +5 -0
- package/src/codex-protocol/v2/FeedbackUploadResponse.ts +5 -0
- package/src/codex-protocol/v2/FileChangeApprovalDecision.ts +5 -0
- package/src/codex-protocol/v2/FileChangeOutputDeltaNotification.ts +10 -0
- package/src/codex-protocol/v2/FileChangePatchUpdatedNotification.ts +6 -0
- package/src/codex-protocol/v2/FileChangeRequestApprovalParams.ts +18 -0
- package/src/codex-protocol/v2/FileChangeRequestApprovalResponse.ts +6 -0
- package/src/codex-protocol/v2/FileSystemAccessMode.ts +5 -0
- package/src/codex-protocol/v2/FileSystemPath.ts +7 -0
- package/src/codex-protocol/v2/FileSystemSandboxEntry.ts +7 -0
- package/src/codex-protocol/v2/FileSystemSpecialPath.ts +5 -0
- package/src/codex-protocol/v2/FileUpdateChange.ts +6 -0
- package/src/codex-protocol/v2/ForcedChatgptWorkspaceIds.ts +8 -0
- package/src/codex-protocol/v2/FsChangedNotification.ts +17 -0
- package/src/codex-protocol/v2/FsCopyParams.ts +21 -0
- package/src/codex-protocol/v2/FsCopyResponse.ts +8 -0
- package/src/codex-protocol/v2/FsCreateDirectoryParams.ts +17 -0
- package/src/codex-protocol/v2/FsCreateDirectoryResponse.ts +8 -0
- package/src/codex-protocol/v2/FsGetMetadataParams.ts +13 -0
- package/src/codex-protocol/v2/FsGetMetadataResponse.ts +28 -0
- package/src/codex-protocol/v2/FsReadDirectoryEntry.ts +20 -0
- package/src/codex-protocol/v2/FsReadDirectoryParams.ts +13 -0
- package/src/codex-protocol/v2/FsReadDirectoryResponse.ts +13 -0
- package/src/codex-protocol/v2/FsReadFileParams.ts +13 -0
- package/src/codex-protocol/v2/FsReadFileResponse.ts +12 -0
- package/src/codex-protocol/v2/FsRemoveParams.ts +21 -0
- package/src/codex-protocol/v2/FsRemoveResponse.ts +8 -0
- package/src/codex-protocol/v2/FsUnwatchParams.ts +12 -0
- package/src/codex-protocol/v2/FsUnwatchResponse.ts +8 -0
- package/src/codex-protocol/v2/FsWatchParams.ts +17 -0
- package/src/codex-protocol/v2/FsWatchResponse.ts +13 -0
- package/src/codex-protocol/v2/FsWriteFileParams.ts +17 -0
- package/src/codex-protocol/v2/FsWriteFileResponse.ts +8 -0
- package/src/codex-protocol/v2/GetAccountParams.ts +13 -0
- package/src/codex-protocol/v2/GetAccountRateLimitsResponse.ts +14 -0
- package/src/codex-protocol/v2/GetAccountResponse.ts +6 -0
- package/src/codex-protocol/v2/GitInfo.ts +5 -0
- package/src/codex-protocol/v2/GrantedPermissionProfile.ts +7 -0
- package/src/codex-protocol/v2/GuardianApprovalReview.ts +13 -0
- package/src/codex-protocol/v2/GuardianApprovalReviewAction.ts +9 -0
- package/src/codex-protocol/v2/GuardianApprovalReviewStatus.ts +8 -0
- package/src/codex-protocol/v2/GuardianCommandSource.ts +5 -0
- package/src/codex-protocol/v2/GuardianRiskLevel.ts +8 -0
- package/src/codex-protocol/v2/GuardianUserAuthorization.ts +8 -0
- package/src/codex-protocol/v2/GuardianWarningNotification.ts +13 -0
- package/src/codex-protocol/v2/HookCompletedNotification.ts +6 -0
- package/src/codex-protocol/v2/HookErrorInfo.ts +5 -0
- package/src/codex-protocol/v2/HookEventName.ts +5 -0
- package/src/codex-protocol/v2/HookExecutionMode.ts +5 -0
- package/src/codex-protocol/v2/HookHandlerType.ts +5 -0
- package/src/codex-protocol/v2/HookMetadata.ts +10 -0
- package/src/codex-protocol/v2/HookMigration.ts +5 -0
- package/src/codex-protocol/v2/HookOutputEntry.ts +6 -0
- package/src/codex-protocol/v2/HookOutputEntryKind.ts +5 -0
- package/src/codex-protocol/v2/HookPromptFragment.ts +5 -0
- package/src/codex-protocol/v2/HookRunStatus.ts +5 -0
- package/src/codex-protocol/v2/HookRunSummary.ts +13 -0
- package/src/codex-protocol/v2/HookScope.ts +5 -0
- package/src/codex-protocol/v2/HookSource.ts +5 -0
- package/src/codex-protocol/v2/HookStartedNotification.ts +6 -0
- package/src/codex-protocol/v2/HookTrustStatus.ts +5 -0
- package/src/codex-protocol/v2/HooksListEntry.ts +7 -0
- package/src/codex-protocol/v2/HooksListParams.ts +9 -0
- package/src/codex-protocol/v2/HooksListResponse.ts +6 -0
- package/src/codex-protocol/v2/ItemCompletedNotification.ts +10 -0
- package/src/codex-protocol/v2/ItemGuardianApprovalReviewCompletedNotification.ts +38 -0
- package/src/codex-protocol/v2/ItemGuardianApprovalReviewStartedNotification.ts +33 -0
- package/src/codex-protocol/v2/ItemStartedNotification.ts +10 -0
- package/src/codex-protocol/v2/ListMcpServerStatusParams.ts +19 -0
- package/src/codex-protocol/v2/ListMcpServerStatusResponse.ts +11 -0
- package/src/codex-protocol/v2/LoginAccountParams.ts +21 -0
- package/src/codex-protocol/v2/LoginAccountResponse.ts +17 -0
- package/src/codex-protocol/v2/LogoutAccountResponse.ts +5 -0
- package/src/codex-protocol/v2/ManagedHooksRequirements.ts +6 -0
- package/src/codex-protocol/v2/MarketplaceAddParams.ts +5 -0
- package/src/codex-protocol/v2/MarketplaceAddResponse.ts +6 -0
- package/src/codex-protocol/v2/MarketplaceInterface.ts +5 -0
- package/src/codex-protocol/v2/MarketplaceLoadErrorInfo.ts +6 -0
- package/src/codex-protocol/v2/MarketplaceRemoveParams.ts +5 -0
- package/src/codex-protocol/v2/MarketplaceRemoveResponse.ts +6 -0
- package/src/codex-protocol/v2/MarketplaceUpgradeErrorInfo.ts +5 -0
- package/src/codex-protocol/v2/MarketplaceUpgradeParams.ts +5 -0
- package/src/codex-protocol/v2/MarketplaceUpgradeResponse.ts +7 -0
- package/src/codex-protocol/v2/McpAuthStatus.ts +5 -0
- package/src/codex-protocol/v2/McpElicitationArrayType.ts +5 -0
- package/src/codex-protocol/v2/McpElicitationBooleanSchema.ts +6 -0
- package/src/codex-protocol/v2/McpElicitationBooleanType.ts +5 -0
- package/src/codex-protocol/v2/McpElicitationConstOption.ts +5 -0
- package/src/codex-protocol/v2/McpElicitationEnumSchema.ts +8 -0
- package/src/codex-protocol/v2/McpElicitationLegacyTitledEnumSchema.ts +6 -0
- package/src/codex-protocol/v2/McpElicitationMultiSelectEnumSchema.ts +7 -0
- package/src/codex-protocol/v2/McpElicitationNumberSchema.ts +6 -0
- package/src/codex-protocol/v2/McpElicitationNumberType.ts +5 -0
- package/src/codex-protocol/v2/McpElicitationObjectType.ts +5 -0
- package/src/codex-protocol/v2/McpElicitationPrimitiveSchema.ts +9 -0
- package/src/codex-protocol/v2/McpElicitationSchema.ts +13 -0
- package/src/codex-protocol/v2/McpElicitationSingleSelectEnumSchema.ts +7 -0
- package/src/codex-protocol/v2/McpElicitationStringFormat.ts +5 -0
- package/src/codex-protocol/v2/McpElicitationStringSchema.ts +7 -0
- package/src/codex-protocol/v2/McpElicitationStringType.ts +5 -0
- package/src/codex-protocol/v2/McpElicitationTitledEnumItems.ts +6 -0
- package/src/codex-protocol/v2/McpElicitationTitledMultiSelectEnumSchema.ts +7 -0
- package/src/codex-protocol/v2/McpElicitationTitledSingleSelectEnumSchema.ts +7 -0
- package/src/codex-protocol/v2/McpElicitationUntitledEnumItems.ts +6 -0
- package/src/codex-protocol/v2/McpElicitationUntitledMultiSelectEnumSchema.ts +7 -0
- package/src/codex-protocol/v2/McpElicitationUntitledSingleSelectEnumSchema.ts +6 -0
- package/src/codex-protocol/v2/McpResourceReadParams.ts +5 -0
- package/src/codex-protocol/v2/McpResourceReadResponse.ts +6 -0
- package/src/codex-protocol/v2/McpServerElicitationAction.ts +5 -0
- package/src/codex-protocol/v2/McpServerElicitationRequestParams.ts +16 -0
- package/src/codex-protocol/v2/McpServerElicitationRequestResponse.ts +17 -0
- package/src/codex-protocol/v2/McpServerMigration.ts +5 -0
- package/src/codex-protocol/v2/McpServerOauthLoginCompletedNotification.ts +5 -0
- package/src/codex-protocol/v2/McpServerOauthLoginParams.ts +5 -0
- package/src/codex-protocol/v2/McpServerOauthLoginResponse.ts +5 -0
- package/src/codex-protocol/v2/McpServerRefreshResponse.ts +5 -0
- package/src/codex-protocol/v2/McpServerStartupState.ts +5 -0
- package/src/codex-protocol/v2/McpServerStatus.ts +9 -0
- package/src/codex-protocol/v2/McpServerStatusDetail.ts +5 -0
- package/src/codex-protocol/v2/McpServerStatusUpdatedNotification.ts +6 -0
- package/src/codex-protocol/v2/McpServerToolCallParams.ts +6 -0
- package/src/codex-protocol/v2/McpServerToolCallResponse.ts +6 -0
- package/src/codex-protocol/v2/McpToolCallError.ts +5 -0
- package/src/codex-protocol/v2/McpToolCallProgressNotification.ts +5 -0
- package/src/codex-protocol/v2/McpToolCallResult.ts +6 -0
- package/src/codex-protocol/v2/McpToolCallStatus.ts +5 -0
- package/src/codex-protocol/v2/MemoryCitation.ts +6 -0
- package/src/codex-protocol/v2/MemoryCitationEntry.ts +5 -0
- package/src/codex-protocol/v2/MemoryResetResponse.ts +5 -0
- package/src/codex-protocol/v2/MergeStrategy.ts +5 -0
- package/src/codex-protocol/v2/MigrationDetails.ts +11 -0
- package/src/codex-protocol/v2/MockExperimentalMethodParams.ts +9 -0
- package/src/codex-protocol/v2/MockExperimentalMethodResponse.ts +9 -0
- package/src/codex-protocol/v2/Model.ts +19 -0
- package/src/codex-protocol/v2/ModelAvailabilityNux.ts +5 -0
- package/src/codex-protocol/v2/ModelListParams.ts +17 -0
- package/src/codex-protocol/v2/ModelListResponse.ts +11 -0
- package/src/codex-protocol/v2/ModelProviderCapabilitiesReadParams.ts +5 -0
- package/src/codex-protocol/v2/ModelProviderCapabilitiesReadResponse.ts +5 -0
- package/src/codex-protocol/v2/ModelRerouteReason.ts +5 -0
- package/src/codex-protocol/v2/ModelReroutedNotification.ts +6 -0
- package/src/codex-protocol/v2/ModelServiceTier.ts +5 -0
- package/src/codex-protocol/v2/ModelUpgradeInfo.ts +5 -0
- package/src/codex-protocol/v2/ModelVerification.ts +5 -0
- package/src/codex-protocol/v2/ModelVerificationNotification.ts +6 -0
- package/src/codex-protocol/v2/NetworkAccess.ts +5 -0
- package/src/codex-protocol/v2/NetworkApprovalContext.ts +6 -0
- package/src/codex-protocol/v2/NetworkApprovalProtocol.ts +5 -0
- package/src/codex-protocol/v2/NetworkDomainPermission.ts +5 -0
- package/src/codex-protocol/v2/NetworkPolicyAmendment.ts +6 -0
- package/src/codex-protocol/v2/NetworkPolicyRuleAction.ts +5 -0
- package/src/codex-protocol/v2/NetworkRequirements.ts +32 -0
- package/src/codex-protocol/v2/NetworkUnixSocketPermission.ts +5 -0
- package/src/codex-protocol/v2/NonSteerableTurnKind.ts +5 -0
- package/src/codex-protocol/v2/OverriddenMetadata.ts +7 -0
- package/src/codex-protocol/v2/PatchApplyStatus.ts +5 -0
- package/src/codex-protocol/v2/PatchChangeKind.ts +5 -0
- package/src/codex-protocol/v2/PermissionGrantScope.ts +5 -0
- package/src/codex-protocol/v2/PermissionProfileListParams.ts +17 -0
- package/src/codex-protocol/v2/PermissionProfileListResponse.ts +11 -0
- package/src/codex-protocol/v2/PermissionProfileSummary.ts +13 -0
- package/src/codex-protocol/v2/PermissionsRequestApprovalParams.ts +11 -0
- package/src/codex-protocol/v2/PermissionsRequestApprovalResponse.ts +11 -0
- package/src/codex-protocol/v2/PlanDeltaNotification.ts +9 -0
- package/src/codex-protocol/v2/PluginAuthPolicy.ts +5 -0
- package/src/codex-protocol/v2/PluginAvailability.ts +5 -0
- package/src/codex-protocol/v2/PluginDetail.ts +10 -0
- package/src/codex-protocol/v2/PluginHookSummary.ts +6 -0
- package/src/codex-protocol/v2/PluginInstallParams.ts +6 -0
- package/src/codex-protocol/v2/PluginInstallPolicy.ts +5 -0
- package/src/codex-protocol/v2/PluginInstallResponse.ts +7 -0
- package/src/codex-protocol/v2/PluginInstalledParams.ts +15 -0
- package/src/codex-protocol/v2/PluginInstalledResponse.ts +7 -0
- package/src/codex-protocol/v2/PluginInterface.ts +35 -0
- package/src/codex-protocol/v2/PluginListMarketplaceKind.ts +5 -0
- package/src/codex-protocol/v2/PluginListParams.ts +17 -0
- package/src/codex-protocol/v2/PluginListResponse.ts +7 -0
- package/src/codex-protocol/v2/PluginMarketplaceEntry.ts +13 -0
- package/src/codex-protocol/v2/PluginReadParams.ts +6 -0
- package/src/codex-protocol/v2/PluginReadResponse.ts +6 -0
- package/src/codex-protocol/v2/PluginShareCheckoutParams.ts +5 -0
- package/src/codex-protocol/v2/PluginShareCheckoutResponse.ts +6 -0
- package/src/codex-protocol/v2/PluginShareContext.ts +11 -0
- package/src/codex-protocol/v2/PluginShareDeleteParams.ts +5 -0
- package/src/codex-protocol/v2/PluginShareDeleteResponse.ts +5 -0
- package/src/codex-protocol/v2/PluginShareDiscoverability.ts +5 -0
- package/src/codex-protocol/v2/PluginShareListItem.ts +7 -0
- package/src/codex-protocol/v2/PluginShareListParams.ts +5 -0
- package/src/codex-protocol/v2/PluginShareListResponse.ts +6 -0
- package/src/codex-protocol/v2/PluginSharePrincipal.ts +7 -0
- package/src/codex-protocol/v2/PluginSharePrincipalRole.ts +5 -0
- package/src/codex-protocol/v2/PluginSharePrincipalType.ts +5 -0
- package/src/codex-protocol/v2/PluginShareSaveParams.ts +8 -0
- package/src/codex-protocol/v2/PluginShareSaveResponse.ts +5 -0
- package/src/codex-protocol/v2/PluginShareTarget.ts +7 -0
- package/src/codex-protocol/v2/PluginShareTargetRole.ts +5 -0
- package/src/codex-protocol/v2/PluginShareUpdateDiscoverability.ts +5 -0
- package/src/codex-protocol/v2/PluginShareUpdateTargetsParams.ts +7 -0
- package/src/codex-protocol/v2/PluginShareUpdateTargetsResponse.ts +7 -0
- package/src/codex-protocol/v2/PluginSkillReadParams.ts +5 -0
- package/src/codex-protocol/v2/PluginSkillReadResponse.ts +5 -0
- package/src/codex-protocol/v2/PluginSource.ts +6 -0
- package/src/codex-protocol/v2/PluginSummary.ts +27 -0
- package/src/codex-protocol/v2/PluginUninstallParams.ts +5 -0
- package/src/codex-protocol/v2/PluginUninstallResponse.ts +5 -0
- package/src/codex-protocol/v2/PluginsMigration.ts +5 -0
- package/src/codex-protocol/v2/ProcessExitedNotification.ts +42 -0
- package/src/codex-protocol/v2/ProcessKillParams.ts +12 -0
- package/src/codex-protocol/v2/ProcessKillResponse.ts +8 -0
- package/src/codex-protocol/v2/ProcessOutputDeltaNotification.ts +26 -0
- package/src/codex-protocol/v2/ProcessOutputStream.ts +8 -0
- package/src/codex-protocol/v2/ProcessResizePtyParams.ts +17 -0
- package/src/codex-protocol/v2/ProcessResizePtyResponse.ts +8 -0
- package/src/codex-protocol/v2/ProcessSpawnParams.ts +73 -0
- package/src/codex-protocol/v2/ProcessSpawnResponse.ts +8 -0
- package/src/codex-protocol/v2/ProcessTerminalSize.ts +16 -0
- package/src/codex-protocol/v2/ProcessWriteStdinParams.ts +21 -0
- package/src/codex-protocol/v2/ProcessWriteStdinResponse.ts +8 -0
- package/src/codex-protocol/v2/ProfileV2.ts +19 -0
- package/src/codex-protocol/v2/RateLimitReachedType.ts +5 -0
- package/src/codex-protocol/v2/RateLimitSnapshot.ts +9 -0
- package/src/codex-protocol/v2/RateLimitWindow.ts +5 -0
- package/src/codex-protocol/v2/RawResponseItemCompletedNotification.ts +6 -0
- package/src/codex-protocol/v2/ReasoningEffortOption.ts +6 -0
- package/src/codex-protocol/v2/ReasoningSummaryPartAddedNotification.ts +5 -0
- package/src/codex-protocol/v2/ReasoningSummaryTextDeltaNotification.ts +5 -0
- package/src/codex-protocol/v2/ReasoningTextDeltaNotification.ts +5 -0
- package/src/codex-protocol/v2/RemoteControlConnectionStatus.ts +5 -0
- package/src/codex-protocol/v2/RemoteControlDisableResponse.ts +6 -0
- package/src/codex-protocol/v2/RemoteControlEnableResponse.ts +6 -0
- package/src/codex-protocol/v2/RemoteControlStatusChangedNotification.ts +9 -0
- package/src/codex-protocol/v2/RemoteControlStatusReadResponse.ts +6 -0
- package/src/codex-protocol/v2/RequestPermissionProfile.ts +7 -0
- package/src/codex-protocol/v2/ResidencyRequirement.ts +5 -0
- package/src/codex-protocol/v2/ReviewDelivery.ts +5 -0
- package/src/codex-protocol/v2/ReviewStartParams.ts +12 -0
- package/src/codex-protocol/v2/ReviewStartResponse.ts +13 -0
- package/src/codex-protocol/v2/ReviewTarget.ts +9 -0
- package/src/codex-protocol/v2/SandboxMode.ts +5 -0
- package/src/codex-protocol/v2/SandboxPolicy.ts +7 -0
- package/src/codex-protocol/v2/SandboxWorkspaceWrite.ts +5 -0
- package/src/codex-protocol/v2/SendAddCreditsNudgeEmailParams.ts +6 -0
- package/src/codex-protocol/v2/SendAddCreditsNudgeEmailResponse.ts +6 -0
- package/src/codex-protocol/v2/ServerRequestResolvedNotification.ts +6 -0
- package/src/codex-protocol/v2/SessionMigration.ts +5 -0
- package/src/codex-protocol/v2/SessionSource.ts +6 -0
- package/src/codex-protocol/v2/SkillDependencies.ts +6 -0
- package/src/codex-protocol/v2/SkillErrorInfo.ts +5 -0
- package/src/codex-protocol/v2/SkillInterface.ts +6 -0
- package/src/codex-protocol/v2/SkillMetadata.ts +13 -0
- package/src/codex-protocol/v2/SkillScope.ts +5 -0
- package/src/codex-protocol/v2/SkillSummary.ts +7 -0
- package/src/codex-protocol/v2/SkillToolDependency.ts +5 -0
- package/src/codex-protocol/v2/SkillsChangedNotification.ts +11 -0
- package/src/codex-protocol/v2/SkillsConfigWriteParams.ts +14 -0
- package/src/codex-protocol/v2/SkillsConfigWriteResponse.ts +5 -0
- package/src/codex-protocol/v2/SkillsListEntry.ts +7 -0
- package/src/codex-protocol/v2/SkillsListParams.ts +13 -0
- package/src/codex-protocol/v2/SkillsListResponse.ts +6 -0
- package/src/codex-protocol/v2/SortDirection.ts +5 -0
- package/src/codex-protocol/v2/SubagentMigration.ts +5 -0
- package/src/codex-protocol/v2/TerminalInteractionNotification.ts +5 -0
- package/src/codex-protocol/v2/TextElement.ts +14 -0
- package/src/codex-protocol/v2/TextPosition.ts +13 -0
- package/src/codex-protocol/v2/TextRange.ts +6 -0
- package/src/codex-protocol/v2/Thread.ts +86 -0
- package/src/codex-protocol/v2/ThreadActiveFlag.ts +5 -0
- package/src/codex-protocol/v2/ThreadApproveGuardianDeniedActionParams.ts +10 -0
- package/src/codex-protocol/v2/ThreadApproveGuardianDeniedActionResponse.ts +5 -0
- package/src/codex-protocol/v2/ThreadArchiveParams.ts +5 -0
- package/src/codex-protocol/v2/ThreadArchiveResponse.ts +5 -0
- package/src/codex-protocol/v2/ThreadArchivedNotification.ts +5 -0
- package/src/codex-protocol/v2/ThreadBackgroundTerminalsCleanParams.ts +5 -0
- package/src/codex-protocol/v2/ThreadBackgroundTerminalsCleanResponse.ts +5 -0
- package/src/codex-protocol/v2/ThreadClosedNotification.ts +5 -0
- package/src/codex-protocol/v2/ThreadCompactStartParams.ts +5 -0
- package/src/codex-protocol/v2/ThreadCompactStartResponse.ts +5 -0
- package/src/codex-protocol/v2/ThreadDecrementElicitationParams.ts +12 -0
- package/src/codex-protocol/v2/ThreadDecrementElicitationResponse.ts +16 -0
- package/src/codex-protocol/v2/ThreadForkParams.ts +60 -0
- package/src/codex-protocol/v2/ThreadForkResponse.ts +35 -0
- package/src/codex-protocol/v2/ThreadGoal.ts +6 -0
- package/src/codex-protocol/v2/ThreadGoalClearParams.ts +5 -0
- package/src/codex-protocol/v2/ThreadGoalClearResponse.ts +5 -0
- package/src/codex-protocol/v2/ThreadGoalClearedNotification.ts +5 -0
- package/src/codex-protocol/v2/ThreadGoalGetParams.ts +5 -0
- package/src/codex-protocol/v2/ThreadGoalGetResponse.ts +6 -0
- package/src/codex-protocol/v2/ThreadGoalSetParams.ts +6 -0
- package/src/codex-protocol/v2/ThreadGoalSetResponse.ts +6 -0
- package/src/codex-protocol/v2/ThreadGoalStatus.ts +5 -0
- package/src/codex-protocol/v2/ThreadGoalUpdatedNotification.ts +6 -0
- package/src/codex-protocol/v2/ThreadIncrementElicitationParams.ts +12 -0
- package/src/codex-protocol/v2/ThreadIncrementElicitationResponse.ts +16 -0
- package/src/codex-protocol/v2/ThreadInjectItemsParams.ts +10 -0
- package/src/codex-protocol/v2/ThreadInjectItemsResponse.ts +5 -0
- package/src/codex-protocol/v2/ThreadItem.ts +101 -0
- package/src/codex-protocol/v2/ThreadListParams.ts +54 -0
- package/src/codex-protocol/v2/ThreadListResponse.ts +18 -0
- package/src/codex-protocol/v2/ThreadLoadedListParams.ts +13 -0
- package/src/codex-protocol/v2/ThreadLoadedListResponse.ts +14 -0
- package/src/codex-protocol/v2/ThreadMemoryModeSetParams.ts +6 -0
- package/src/codex-protocol/v2/ThreadMemoryModeSetResponse.ts +5 -0
- package/src/codex-protocol/v2/ThreadMetadataGitInfoUpdateParams.ts +20 -0
- package/src/codex-protocol/v2/ThreadMetadataUpdateParams.ts +12 -0
- package/src/codex-protocol/v2/ThreadMetadataUpdateResponse.ts +6 -0
- package/src/codex-protocol/v2/ThreadNameUpdatedNotification.ts +5 -0
- package/src/codex-protocol/v2/ThreadReadParams.ts +9 -0
- package/src/codex-protocol/v2/ThreadReadResponse.ts +6 -0
- package/src/codex-protocol/v2/ThreadRealtimeAppendAudioParams.ts +9 -0
- package/src/codex-protocol/v2/ThreadRealtimeAppendAudioResponse.ts +8 -0
- package/src/codex-protocol/v2/ThreadRealtimeAppendTextParams.ts +8 -0
- package/src/codex-protocol/v2/ThreadRealtimeAppendTextResponse.ts +8 -0
- package/src/codex-protocol/v2/ThreadRealtimeAudioChunk.ts +8 -0
- package/src/codex-protocol/v2/ThreadRealtimeClosedNotification.ts +8 -0
- package/src/codex-protocol/v2/ThreadRealtimeErrorNotification.ts +8 -0
- package/src/codex-protocol/v2/ThreadRealtimeItemAddedNotification.ts +9 -0
- package/src/codex-protocol/v2/ThreadRealtimeListVoicesParams.ts +8 -0
- package/src/codex-protocol/v2/ThreadRealtimeListVoicesResponse.ts +9 -0
- package/src/codex-protocol/v2/ThreadRealtimeOutputAudioDeltaNotification.ts +9 -0
- package/src/codex-protocol/v2/ThreadRealtimeSdpNotification.ts +8 -0
- package/src/codex-protocol/v2/ThreadRealtimeStartParams.ts +16 -0
- package/src/codex-protocol/v2/ThreadRealtimeStartResponse.ts +8 -0
- package/src/codex-protocol/v2/ThreadRealtimeStartTransport.ts +13 -0
- package/src/codex-protocol/v2/ThreadRealtimeStartedNotification.ts +9 -0
- package/src/codex-protocol/v2/ThreadRealtimeStopParams.ts +8 -0
- package/src/codex-protocol/v2/ThreadRealtimeStopResponse.ts +8 -0
- package/src/codex-protocol/v2/ThreadRealtimeTranscriptDeltaNotification.ts +13 -0
- package/src/codex-protocol/v2/ThreadRealtimeTranscriptDoneNotification.ts +13 -0
- package/src/codex-protocol/v2/ThreadResumeParams.ts +71 -0
- package/src/codex-protocol/v2/ThreadResumeResponse.ts +35 -0
- package/src/codex-protocol/v2/ThreadRollbackParams.ts +12 -0
- package/src/codex-protocol/v2/ThreadRollbackResponse.ts +14 -0
- package/src/codex-protocol/v2/ThreadSetNameParams.ts +5 -0
- package/src/codex-protocol/v2/ThreadSetNameResponse.ts +5 -0
- package/src/codex-protocol/v2/ThreadSettings.ts +14 -0
- package/src/codex-protocol/v2/ThreadSettingsUpdateParams.ts +61 -0
- package/src/codex-protocol/v2/ThreadSettingsUpdateResponse.ts +5 -0
- package/src/codex-protocol/v2/ThreadSettingsUpdatedNotification.ts +6 -0
- package/src/codex-protocol/v2/ThreadShellCommandParams.ts +12 -0
- package/src/codex-protocol/v2/ThreadShellCommandResponse.ts +5 -0
- package/src/codex-protocol/v2/ThreadSortKey.ts +5 -0
- package/src/codex-protocol/v2/ThreadSource.ts +5 -0
- package/src/codex-protocol/v2/ThreadSourceKind.ts +5 -0
- package/src/codex-protocol/v2/ThreadStartParams.ts +57 -0
- package/src/codex-protocol/v2/ThreadStartResponse.ts +35 -0
- package/src/codex-protocol/v2/ThreadStartSource.ts +5 -0
- package/src/codex-protocol/v2/ThreadStartedNotification.ts +6 -0
- package/src/codex-protocol/v2/ThreadStatus.ts +6 -0
- package/src/codex-protocol/v2/ThreadStatusChangedNotification.ts +6 -0
- package/src/codex-protocol/v2/ThreadTokenUsage.ts +6 -0
- package/src/codex-protocol/v2/ThreadTokenUsageUpdatedNotification.ts +6 -0
- package/src/codex-protocol/v2/ThreadTurnsItemsListParams.ts +18 -0
- package/src/codex-protocol/v2/ThreadTurnsItemsListResponse.ts +16 -0
- package/src/codex-protocol/v2/ThreadTurnsListParams.ts +23 -0
- package/src/codex-protocol/v2/ThreadTurnsListResponse.ts +18 -0
- package/src/codex-protocol/v2/ThreadUnarchiveParams.ts +5 -0
- package/src/codex-protocol/v2/ThreadUnarchiveResponse.ts +6 -0
- package/src/codex-protocol/v2/ThreadUnarchivedNotification.ts +5 -0
- package/src/codex-protocol/v2/ThreadUnsubscribeParams.ts +5 -0
- package/src/codex-protocol/v2/ThreadUnsubscribeResponse.ts +6 -0
- package/src/codex-protocol/v2/ThreadUnsubscribeStatus.ts +5 -0
- package/src/codex-protocol/v2/TokenUsageBreakdown.ts +5 -0
- package/src/codex-protocol/v2/ToolRequestUserInputAnswer.ts +8 -0
- package/src/codex-protocol/v2/ToolRequestUserInputOption.ts +8 -0
- package/src/codex-protocol/v2/ToolRequestUserInputParams.ts +9 -0
- package/src/codex-protocol/v2/ToolRequestUserInputQuestion.ts +9 -0
- package/src/codex-protocol/v2/ToolRequestUserInputResponse.ts +9 -0
- package/src/codex-protocol/v2/ToolsV2.ts +6 -0
- package/src/codex-protocol/v2/Turn.ts +33 -0
- package/src/codex-protocol/v2/TurnCompletedNotification.ts +6 -0
- package/src/codex-protocol/v2/TurnDiffUpdatedNotification.ts +9 -0
- package/src/codex-protocol/v2/TurnEnvironmentParams.ts +6 -0
- package/src/codex-protocol/v2/TurnError.ts +6 -0
- package/src/codex-protocol/v2/TurnInterruptParams.ts +5 -0
- package/src/codex-protocol/v2/TurnInterruptResponse.ts +5 -0
- package/src/codex-protocol/v2/TurnItemsView.ts +5 -0
- package/src/codex-protocol/v2/TurnPlanStep.ts +6 -0
- package/src/codex-protocol/v2/TurnPlanStepStatus.ts +5 -0
- package/src/codex-protocol/v2/TurnPlanUpdatedNotification.ts +6 -0
- package/src/codex-protocol/v2/TurnStartParams.ts +88 -0
- package/src/codex-protocol/v2/TurnStartResponse.ts +6 -0
- package/src/codex-protocol/v2/TurnStartedNotification.ts +6 -0
- package/src/codex-protocol/v2/TurnStatus.ts +5 -0
- package/src/codex-protocol/v2/TurnSteerParams.ts +15 -0
- package/src/codex-protocol/v2/TurnSteerResponse.ts +5 -0
- package/src/codex-protocol/v2/UserInput.ts +11 -0
- package/src/codex-protocol/v2/WarningNotification.ts +13 -0
- package/src/codex-protocol/v2/WebSearchAction.ts +5 -0
- package/src/codex-protocol/v2/WindowsSandboxReadiness.ts +5 -0
- package/src/codex-protocol/v2/WindowsSandboxReadinessResponse.ts +6 -0
- package/src/codex-protocol/v2/WindowsSandboxSetupCompletedNotification.ts +6 -0
- package/src/codex-protocol/v2/WindowsSandboxSetupMode.ts +5 -0
- package/src/codex-protocol/v2/WindowsSandboxSetupStartParams.ts +7 -0
- package/src/codex-protocol/v2/WindowsSandboxSetupStartResponse.ts +5 -0
- package/src/codex-protocol/v2/WindowsWorldWritableWarningNotification.ts +5 -0
- package/src/codex-protocol/v2/WriteStatus.ts +5 -0
- package/src/codex-protocol/v2/index.ts +503 -0
- package/src/column.ts +44 -0
- package/src/engines/claude/claude-engine.ts +769 -0
- package/src/engines/claude/clock.ts +48 -0
- package/src/engines/claude/compact.ts +107 -0
- package/src/engines/claude/ctx.ts +239 -0
- package/src/engines/claude/doctor.ts +202 -0
- package/src/engines/claude/env.ts +16 -0
- package/src/engines/claude/history.ts +504 -0
- package/src/engines/claude/identifiers.ts +25 -0
- package/src/engines/claude/identity-migration.ts +16 -0
- package/src/engines/claude/idle.ts +91 -0
- package/src/engines/claude/keys.ts +163 -0
- package/src/engines/claude/last.ts +52 -0
- package/src/engines/claude/mem.ts +124 -0
- package/src/engines/claude/persistence.ts +41 -0
- package/src/engines/claude/post-turn.ts +45 -0
- package/src/engines/claude/reload.ts +53 -0
- package/src/engines/claude/repo-fs.ts +63 -0
- package/src/engines/claude/resume.ts +145 -0
- package/src/engines/claude/send.ts +86 -0
- package/src/engines/claude/spawn.ts +435 -0
- package/src/engines/claude/state.ts +124 -0
- package/src/engines/claude/tmux.ts +99 -0
- package/src/engines/claude/wait-signals.ts +128 -0
- package/src/engines/claude/wait.ts +59 -0
- package/src/engines/codex/ask.ts +69 -0
- package/src/engines/codex/engine.ts +1261 -0
- package/src/engines/codex/events.ts +106 -0
- package/src/engines/codex/history.ts +385 -0
- package/src/engines/codex/identity-migration.ts +14 -0
- package/src/engines/codex/ipc-bridge-process.ts +14 -0
- package/src/engines/codex/ipc-bridge.ts +844 -0
- package/src/engines/codex/persistence.ts +236 -0
- package/src/engines/codex/rollout.ts +384 -0
- package/src/engines/codex/rpc.ts +311 -0
- package/src/engines/codex/supervisor.ts +648 -0
- package/src/engines/codex/ui-ipc.ts +374 -0
- package/src/engines/codex/verb-common.ts +34 -0
- package/src/engines/codex/verb-lifecycle.ts +94 -0
- package/src/engines/codex/verb-state.ts +19 -0
- package/src/engines/codex/verb-turns.ts +49 -0
- package/src/engines/codex/verbs.ts +15 -0
- package/src/engines/engine.ts +91 -0
- package/src/engines/git-worktree.ts +137 -0
- package/src/engines/production.ts +19 -0
- package/src/engines/registry.ts +70 -0
- package/src/engines/teammate-record.ts +113 -0
- package/src/engines/types.ts +334 -0
- package/src/env.ts +29 -0
- package/src/grep.ts +39 -0
- package/src/help.ts +433 -0
- package/src/identity/name.ts +58 -0
- package/src/identity/router.ts +80 -0
- package/src/identity/uuid-prefix.ts +40 -0
- package/src/main.ts +39 -0
- package/src/persistence/atomic-file.ts +74 -0
- package/src/persistence/identity-store.ts +294 -0
- package/src/persistence/identity-writer.ts +28 -0
- package/src/persistence/paths.ts +138 -0
- package/src/plugin-root.ts +26 -0
- package/src/proc.ts +66 -0
- package/src/shared/verb-args.ts +331 -0
- package/src/tm.ts +54 -0
- package/src/tmux.ts +57 -0
- package/src/verbs/archive.ts +211 -0
- package/src/verbs/ask.ts +29 -0
- package/src/verbs/compact.ts +25 -0
- package/src/verbs/context.ts +68 -0
- package/src/verbs/ctx.ts +21 -0
- package/src/verbs/format.ts +213 -0
- package/src/verbs/history.ts +190 -0
- package/src/verbs/kill.ts +61 -0
- package/src/verbs/last.ts +34 -0
- package/src/verbs/ls.ts +27 -0
- package/src/verbs/mem.ts +40 -0
- package/src/verbs/poll.ts +61 -0
- package/src/verbs/reload.ts +17 -0
- package/src/verbs/resolve.ts +14 -0
- package/src/verbs/resume.ts +170 -0
- package/src/verbs/send.ts +36 -0
- package/src/verbs/spawn.ts +81 -0
- package/src/verbs/states.ts +74 -0
- package/src/verbs/status.ts +26 -0
- package/src/verbs/wait.ts +40 -0
- package/src/verbs.ts +56 -0
- package/src/ws-types.d.ts +9 -0
- package/third_party/ws/LICENSE +20 -0
- package/third_party/ws/README.md +548 -0
- package/third_party/ws/UPSTREAM.md +55 -0
- package/third_party/ws/browser.js +8 -0
- package/third_party/ws/index.js +22 -0
- package/third_party/ws/lib/buffer-util.js +131 -0
- package/third_party/ws/lib/constants.js +19 -0
- package/third_party/ws/lib/event-target.js +292 -0
- package/third_party/ws/lib/extension.js +203 -0
- package/third_party/ws/lib/limiter.js +55 -0
- package/third_party/ws/lib/permessage-deflate.js +528 -0
- package/third_party/ws/lib/receiver.js +760 -0
- package/third_party/ws/lib/sender.js +607 -0
- package/third_party/ws/lib/stream.js +161 -0
- package/third_party/ws/lib/subprotocol.js +62 -0
- package/third_party/ws/lib/validation.js +152 -0
- package/third_party/ws/lib/websocket-server.js +562 -0
- package/third_party/ws/lib/websocket.js +1407 -0
- package/third_party/ws/package.json +13 -0
- package/third_party/ws/wrapper.mjs +21 -0
|
@@ -0,0 +1,1407 @@
|
|
|
1
|
+
/* eslint no-unused-vars: ["error", { "varsIgnorePattern": "^Duplex|Readable$", "caughtErrors": "none" }] */
|
|
2
|
+
|
|
3
|
+
'use strict';
|
|
4
|
+
|
|
5
|
+
const EventEmitter = require('events');
|
|
6
|
+
const https = require('https');
|
|
7
|
+
const http = require('http');
|
|
8
|
+
const net = require('net');
|
|
9
|
+
const tls = require('tls');
|
|
10
|
+
const { randomBytes, createHash } = require('crypto');
|
|
11
|
+
const { Duplex, Readable } = require('stream');
|
|
12
|
+
const { URL } = require('url');
|
|
13
|
+
|
|
14
|
+
const PerMessageDeflate = require('./permessage-deflate');
|
|
15
|
+
const Receiver = require('./receiver');
|
|
16
|
+
const Sender = require('./sender');
|
|
17
|
+
const { isBlob } = require('./validation');
|
|
18
|
+
|
|
19
|
+
const {
|
|
20
|
+
BINARY_TYPES,
|
|
21
|
+
CLOSE_TIMEOUT,
|
|
22
|
+
EMPTY_BUFFER,
|
|
23
|
+
GUID,
|
|
24
|
+
kForOnEventAttribute,
|
|
25
|
+
kListener,
|
|
26
|
+
kStatusCode,
|
|
27
|
+
kWebSocket,
|
|
28
|
+
NOOP
|
|
29
|
+
} = require('./constants');
|
|
30
|
+
const {
|
|
31
|
+
EventTarget: { addEventListener, removeEventListener }
|
|
32
|
+
} = require('./event-target');
|
|
33
|
+
const { format, parse } = require('./extension');
|
|
34
|
+
const { toBuffer } = require('./buffer-util');
|
|
35
|
+
|
|
36
|
+
const kAborted = Symbol('kAborted');
|
|
37
|
+
const protocolVersions = [8, 13];
|
|
38
|
+
const readyStates = ['CONNECTING', 'OPEN', 'CLOSING', 'CLOSED'];
|
|
39
|
+
const subprotocolRegex = /^[!#$%&'*+\-.0-9A-Z^_`|a-z~]+$/;
|
|
40
|
+
|
|
41
|
+
/**
|
|
42
|
+
* Class representing a WebSocket.
|
|
43
|
+
*
|
|
44
|
+
* @extends EventEmitter
|
|
45
|
+
*/
|
|
46
|
+
class WebSocket extends EventEmitter {
|
|
47
|
+
/**
|
|
48
|
+
* Create a new `WebSocket`.
|
|
49
|
+
*
|
|
50
|
+
* @param {(String|URL)} address The URL to which to connect
|
|
51
|
+
* @param {(String|String[])} [protocols] The subprotocols
|
|
52
|
+
* @param {Object} [options] Connection options
|
|
53
|
+
*/
|
|
54
|
+
constructor(address, protocols, options) {
|
|
55
|
+
super();
|
|
56
|
+
|
|
57
|
+
this._binaryType = BINARY_TYPES[0];
|
|
58
|
+
this._closeCode = 1006;
|
|
59
|
+
this._closeFrameReceived = false;
|
|
60
|
+
this._closeFrameSent = false;
|
|
61
|
+
this._closeMessage = EMPTY_BUFFER;
|
|
62
|
+
this._closeTimer = null;
|
|
63
|
+
this._errorEmitted = false;
|
|
64
|
+
this._extensions = {};
|
|
65
|
+
this._paused = false;
|
|
66
|
+
this._protocol = '';
|
|
67
|
+
this._readyState = WebSocket.CONNECTING;
|
|
68
|
+
this._receiver = null;
|
|
69
|
+
this._sender = null;
|
|
70
|
+
this._socket = null;
|
|
71
|
+
|
|
72
|
+
if (address !== null) {
|
|
73
|
+
this._bufferedAmount = 0;
|
|
74
|
+
this._isServer = false;
|
|
75
|
+
this._redirects = 0;
|
|
76
|
+
|
|
77
|
+
if (protocols === undefined) {
|
|
78
|
+
protocols = [];
|
|
79
|
+
} else if (!Array.isArray(protocols)) {
|
|
80
|
+
if (typeof protocols === 'object' && protocols !== null) {
|
|
81
|
+
options = protocols;
|
|
82
|
+
protocols = [];
|
|
83
|
+
} else {
|
|
84
|
+
protocols = [protocols];
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
initAsClient(this, address, protocols, options);
|
|
89
|
+
} else {
|
|
90
|
+
this._autoPong = options.autoPong;
|
|
91
|
+
this._closeTimeout = options.closeTimeout;
|
|
92
|
+
this._isServer = true;
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
/**
|
|
97
|
+
* For historical reasons, the custom "nodebuffer" type is used by the default
|
|
98
|
+
* instead of "blob".
|
|
99
|
+
*
|
|
100
|
+
* @type {String}
|
|
101
|
+
*/
|
|
102
|
+
get binaryType() {
|
|
103
|
+
return this._binaryType;
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
set binaryType(type) {
|
|
107
|
+
if (!BINARY_TYPES.includes(type)) return;
|
|
108
|
+
|
|
109
|
+
this._binaryType = type;
|
|
110
|
+
|
|
111
|
+
//
|
|
112
|
+
// Allow to change `binaryType` on the fly.
|
|
113
|
+
//
|
|
114
|
+
if (this._receiver) this._receiver._binaryType = type;
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
/**
|
|
118
|
+
* @type {Number}
|
|
119
|
+
*/
|
|
120
|
+
get bufferedAmount() {
|
|
121
|
+
if (!this._socket) return this._bufferedAmount;
|
|
122
|
+
|
|
123
|
+
return this._socket._writableState.length + this._sender._bufferedBytes;
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
/**
|
|
127
|
+
* @type {String}
|
|
128
|
+
*/
|
|
129
|
+
get extensions() {
|
|
130
|
+
return Object.keys(this._extensions).join();
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
/**
|
|
134
|
+
* @type {Boolean}
|
|
135
|
+
*/
|
|
136
|
+
get isPaused() {
|
|
137
|
+
return this._paused;
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
/**
|
|
141
|
+
* @type {Function}
|
|
142
|
+
*/
|
|
143
|
+
/* istanbul ignore next */
|
|
144
|
+
get onclose() {
|
|
145
|
+
return null;
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
/**
|
|
149
|
+
* @type {Function}
|
|
150
|
+
*/
|
|
151
|
+
/* istanbul ignore next */
|
|
152
|
+
get onerror() {
|
|
153
|
+
return null;
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
/**
|
|
157
|
+
* @type {Function}
|
|
158
|
+
*/
|
|
159
|
+
/* istanbul ignore next */
|
|
160
|
+
get onopen() {
|
|
161
|
+
return null;
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
/**
|
|
165
|
+
* @type {Function}
|
|
166
|
+
*/
|
|
167
|
+
/* istanbul ignore next */
|
|
168
|
+
get onmessage() {
|
|
169
|
+
return null;
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
/**
|
|
173
|
+
* @type {String}
|
|
174
|
+
*/
|
|
175
|
+
get protocol() {
|
|
176
|
+
return this._protocol;
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
/**
|
|
180
|
+
* @type {Number}
|
|
181
|
+
*/
|
|
182
|
+
get readyState() {
|
|
183
|
+
return this._readyState;
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
/**
|
|
187
|
+
* @type {String}
|
|
188
|
+
*/
|
|
189
|
+
get url() {
|
|
190
|
+
return this._url;
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
/**
|
|
194
|
+
* Set up the socket and the internal resources.
|
|
195
|
+
*
|
|
196
|
+
* @param {Duplex} socket The network socket between the server and client
|
|
197
|
+
* @param {Buffer} head The first packet of the upgraded stream
|
|
198
|
+
* @param {Object} options Options object
|
|
199
|
+
* @param {Boolean} [options.allowSynchronousEvents=false] Specifies whether
|
|
200
|
+
* any of the `'message'`, `'ping'`, and `'pong'` events can be emitted
|
|
201
|
+
* multiple times in the same tick
|
|
202
|
+
* @param {Function} [options.generateMask] The function used to generate the
|
|
203
|
+
* masking key
|
|
204
|
+
* @param {Number} [options.maxBufferedChunks=0] The maximum number of
|
|
205
|
+
* buffered data chunks
|
|
206
|
+
* @param {Number} [options.maxFragments=0] The maximum number of message
|
|
207
|
+
* fragments
|
|
208
|
+
* @param {Number} [options.maxPayload=0] The maximum allowed message size
|
|
209
|
+
* @param {Boolean} [options.skipUTF8Validation=false] Specifies whether or
|
|
210
|
+
* not to skip UTF-8 validation for text and close messages
|
|
211
|
+
* @private
|
|
212
|
+
*/
|
|
213
|
+
setSocket(socket, head, options) {
|
|
214
|
+
const receiver = new Receiver({
|
|
215
|
+
allowSynchronousEvents: options.allowSynchronousEvents,
|
|
216
|
+
binaryType: this.binaryType,
|
|
217
|
+
extensions: this._extensions,
|
|
218
|
+
isServer: this._isServer,
|
|
219
|
+
maxBufferedChunks: options.maxBufferedChunks,
|
|
220
|
+
maxFragments: options.maxFragments,
|
|
221
|
+
maxPayload: options.maxPayload,
|
|
222
|
+
skipUTF8Validation: options.skipUTF8Validation
|
|
223
|
+
});
|
|
224
|
+
|
|
225
|
+
const sender = new Sender(socket, this._extensions, options.generateMask);
|
|
226
|
+
|
|
227
|
+
this._receiver = receiver;
|
|
228
|
+
this._sender = sender;
|
|
229
|
+
this._socket = socket;
|
|
230
|
+
|
|
231
|
+
receiver[kWebSocket] = this;
|
|
232
|
+
sender[kWebSocket] = this;
|
|
233
|
+
socket[kWebSocket] = this;
|
|
234
|
+
|
|
235
|
+
receiver.on('conclude', receiverOnConclude);
|
|
236
|
+
receiver.on('drain', receiverOnDrain);
|
|
237
|
+
receiver.on('error', receiverOnError);
|
|
238
|
+
receiver.on('message', receiverOnMessage);
|
|
239
|
+
receiver.on('ping', receiverOnPing);
|
|
240
|
+
receiver.on('pong', receiverOnPong);
|
|
241
|
+
|
|
242
|
+
sender.onerror = senderOnError;
|
|
243
|
+
|
|
244
|
+
//
|
|
245
|
+
// These methods may not be available if `socket` is just a `Duplex`.
|
|
246
|
+
//
|
|
247
|
+
if (socket.setTimeout) socket.setTimeout(0);
|
|
248
|
+
if (socket.setNoDelay) socket.setNoDelay();
|
|
249
|
+
|
|
250
|
+
if (head.length > 0) socket.unshift(head);
|
|
251
|
+
|
|
252
|
+
socket.on('close', socketOnClose);
|
|
253
|
+
socket.on('data', socketOnData);
|
|
254
|
+
socket.on('end', socketOnEnd);
|
|
255
|
+
socket.on('error', socketOnError);
|
|
256
|
+
|
|
257
|
+
this._readyState = WebSocket.OPEN;
|
|
258
|
+
this.emit('open');
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
/**
|
|
262
|
+
* Emit the `'close'` event.
|
|
263
|
+
*
|
|
264
|
+
* @private
|
|
265
|
+
*/
|
|
266
|
+
emitClose() {
|
|
267
|
+
if (!this._socket) {
|
|
268
|
+
this._readyState = WebSocket.CLOSED;
|
|
269
|
+
this.emit('close', this._closeCode, this._closeMessage);
|
|
270
|
+
return;
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
if (this._extensions[PerMessageDeflate.extensionName]) {
|
|
274
|
+
this._extensions[PerMessageDeflate.extensionName].cleanup();
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
this._receiver.removeAllListeners();
|
|
278
|
+
this._readyState = WebSocket.CLOSED;
|
|
279
|
+
this.emit('close', this._closeCode, this._closeMessage);
|
|
280
|
+
}
|
|
281
|
+
|
|
282
|
+
/**
|
|
283
|
+
* Start a closing handshake.
|
|
284
|
+
*
|
|
285
|
+
* +----------+ +-----------+ +----------+
|
|
286
|
+
* - - -|ws.close()|-->|close frame|-->|ws.close()|- - -
|
|
287
|
+
* | +----------+ +-----------+ +----------+ |
|
|
288
|
+
* +----------+ +-----------+ |
|
|
289
|
+
* CLOSING |ws.close()|<--|close frame|<--+-----+ CLOSING
|
|
290
|
+
* +----------+ +-----------+ |
|
|
291
|
+
* | | | +---+ |
|
|
292
|
+
* +------------------------+-->|fin| - - - -
|
|
293
|
+
* | +---+ | +---+
|
|
294
|
+
* - - - - -|fin|<---------------------+
|
|
295
|
+
* +---+
|
|
296
|
+
*
|
|
297
|
+
* @param {Number} [code] Status code explaining why the connection is closing
|
|
298
|
+
* @param {(String|Buffer)} [data] The reason why the connection is
|
|
299
|
+
* closing
|
|
300
|
+
* @public
|
|
301
|
+
*/
|
|
302
|
+
close(code, data) {
|
|
303
|
+
if (this.readyState === WebSocket.CLOSED) return;
|
|
304
|
+
if (this.readyState === WebSocket.CONNECTING) {
|
|
305
|
+
const msg = 'WebSocket was closed before the connection was established';
|
|
306
|
+
abortHandshake(this, this._req, msg);
|
|
307
|
+
return;
|
|
308
|
+
}
|
|
309
|
+
|
|
310
|
+
if (this.readyState === WebSocket.CLOSING) {
|
|
311
|
+
if (
|
|
312
|
+
this._closeFrameSent &&
|
|
313
|
+
(this._closeFrameReceived || this._receiver._writableState.errorEmitted)
|
|
314
|
+
) {
|
|
315
|
+
this._socket.end();
|
|
316
|
+
}
|
|
317
|
+
|
|
318
|
+
return;
|
|
319
|
+
}
|
|
320
|
+
|
|
321
|
+
this._readyState = WebSocket.CLOSING;
|
|
322
|
+
this._sender.close(code, data, !this._isServer, (err) => {
|
|
323
|
+
//
|
|
324
|
+
// This error is handled by the `'error'` listener on the socket. We only
|
|
325
|
+
// want to know if the close frame has been sent here.
|
|
326
|
+
//
|
|
327
|
+
if (err) return;
|
|
328
|
+
|
|
329
|
+
this._closeFrameSent = true;
|
|
330
|
+
|
|
331
|
+
if (
|
|
332
|
+
this._closeFrameReceived ||
|
|
333
|
+
this._receiver._writableState.errorEmitted
|
|
334
|
+
) {
|
|
335
|
+
this._socket.end();
|
|
336
|
+
}
|
|
337
|
+
});
|
|
338
|
+
|
|
339
|
+
setCloseTimer(this);
|
|
340
|
+
}
|
|
341
|
+
|
|
342
|
+
/**
|
|
343
|
+
* Pause the socket.
|
|
344
|
+
*
|
|
345
|
+
* @public
|
|
346
|
+
*/
|
|
347
|
+
pause() {
|
|
348
|
+
if (
|
|
349
|
+
this.readyState === WebSocket.CONNECTING ||
|
|
350
|
+
this.readyState === WebSocket.CLOSED
|
|
351
|
+
) {
|
|
352
|
+
return;
|
|
353
|
+
}
|
|
354
|
+
|
|
355
|
+
this._paused = true;
|
|
356
|
+
this._socket.pause();
|
|
357
|
+
}
|
|
358
|
+
|
|
359
|
+
/**
|
|
360
|
+
* Send a ping.
|
|
361
|
+
*
|
|
362
|
+
* @param {*} [data] The data to send
|
|
363
|
+
* @param {Boolean} [mask] Indicates whether or not to mask `data`
|
|
364
|
+
* @param {Function} [cb] Callback which is executed when the ping is sent
|
|
365
|
+
* @public
|
|
366
|
+
*/
|
|
367
|
+
ping(data, mask, cb) {
|
|
368
|
+
if (this.readyState === WebSocket.CONNECTING) {
|
|
369
|
+
throw new Error('WebSocket is not open: readyState 0 (CONNECTING)');
|
|
370
|
+
}
|
|
371
|
+
|
|
372
|
+
if (typeof data === 'function') {
|
|
373
|
+
cb = data;
|
|
374
|
+
data = mask = undefined;
|
|
375
|
+
} else if (typeof mask === 'function') {
|
|
376
|
+
cb = mask;
|
|
377
|
+
mask = undefined;
|
|
378
|
+
}
|
|
379
|
+
|
|
380
|
+
if (typeof data === 'number') data = data.toString();
|
|
381
|
+
|
|
382
|
+
if (this.readyState !== WebSocket.OPEN) {
|
|
383
|
+
sendAfterClose(this, data, cb);
|
|
384
|
+
return;
|
|
385
|
+
}
|
|
386
|
+
|
|
387
|
+
if (mask === undefined) mask = !this._isServer;
|
|
388
|
+
this._sender.ping(data || EMPTY_BUFFER, mask, cb);
|
|
389
|
+
}
|
|
390
|
+
|
|
391
|
+
/**
|
|
392
|
+
* Send a pong.
|
|
393
|
+
*
|
|
394
|
+
* @param {*} [data] The data to send
|
|
395
|
+
* @param {Boolean} [mask] Indicates whether or not to mask `data`
|
|
396
|
+
* @param {Function} [cb] Callback which is executed when the pong is sent
|
|
397
|
+
* @public
|
|
398
|
+
*/
|
|
399
|
+
pong(data, mask, cb) {
|
|
400
|
+
if (this.readyState === WebSocket.CONNECTING) {
|
|
401
|
+
throw new Error('WebSocket is not open: readyState 0 (CONNECTING)');
|
|
402
|
+
}
|
|
403
|
+
|
|
404
|
+
if (typeof data === 'function') {
|
|
405
|
+
cb = data;
|
|
406
|
+
data = mask = undefined;
|
|
407
|
+
} else if (typeof mask === 'function') {
|
|
408
|
+
cb = mask;
|
|
409
|
+
mask = undefined;
|
|
410
|
+
}
|
|
411
|
+
|
|
412
|
+
if (typeof data === 'number') data = data.toString();
|
|
413
|
+
|
|
414
|
+
if (this.readyState !== WebSocket.OPEN) {
|
|
415
|
+
sendAfterClose(this, data, cb);
|
|
416
|
+
return;
|
|
417
|
+
}
|
|
418
|
+
|
|
419
|
+
if (mask === undefined) mask = !this._isServer;
|
|
420
|
+
this._sender.pong(data || EMPTY_BUFFER, mask, cb);
|
|
421
|
+
}
|
|
422
|
+
|
|
423
|
+
/**
|
|
424
|
+
* Resume the socket.
|
|
425
|
+
*
|
|
426
|
+
* @public
|
|
427
|
+
*/
|
|
428
|
+
resume() {
|
|
429
|
+
if (
|
|
430
|
+
this.readyState === WebSocket.CONNECTING ||
|
|
431
|
+
this.readyState === WebSocket.CLOSED
|
|
432
|
+
) {
|
|
433
|
+
return;
|
|
434
|
+
}
|
|
435
|
+
|
|
436
|
+
this._paused = false;
|
|
437
|
+
if (!this._receiver._writableState.needDrain) this._socket.resume();
|
|
438
|
+
}
|
|
439
|
+
|
|
440
|
+
/**
|
|
441
|
+
* Send a data message.
|
|
442
|
+
*
|
|
443
|
+
* @param {*} data The message to send
|
|
444
|
+
* @param {Object} [options] Options object
|
|
445
|
+
* @param {Boolean} [options.binary] Specifies whether `data` is binary or
|
|
446
|
+
* text
|
|
447
|
+
* @param {Boolean} [options.compress] Specifies whether or not to compress
|
|
448
|
+
* `data`
|
|
449
|
+
* @param {Boolean} [options.fin=true] Specifies whether the fragment is the
|
|
450
|
+
* last one
|
|
451
|
+
* @param {Boolean} [options.mask] Specifies whether or not to mask `data`
|
|
452
|
+
* @param {Function} [cb] Callback which is executed when data is written out
|
|
453
|
+
* @public
|
|
454
|
+
*/
|
|
455
|
+
send(data, options, cb) {
|
|
456
|
+
if (this.readyState === WebSocket.CONNECTING) {
|
|
457
|
+
throw new Error('WebSocket is not open: readyState 0 (CONNECTING)');
|
|
458
|
+
}
|
|
459
|
+
|
|
460
|
+
if (typeof options === 'function') {
|
|
461
|
+
cb = options;
|
|
462
|
+
options = {};
|
|
463
|
+
}
|
|
464
|
+
|
|
465
|
+
if (typeof data === 'number') data = data.toString();
|
|
466
|
+
|
|
467
|
+
if (this.readyState !== WebSocket.OPEN) {
|
|
468
|
+
sendAfterClose(this, data, cb);
|
|
469
|
+
return;
|
|
470
|
+
}
|
|
471
|
+
|
|
472
|
+
const opts = {
|
|
473
|
+
binary: typeof data !== 'string',
|
|
474
|
+
mask: !this._isServer,
|
|
475
|
+
compress: true,
|
|
476
|
+
fin: true,
|
|
477
|
+
...options
|
|
478
|
+
};
|
|
479
|
+
|
|
480
|
+
if (!this._extensions[PerMessageDeflate.extensionName]) {
|
|
481
|
+
opts.compress = false;
|
|
482
|
+
}
|
|
483
|
+
|
|
484
|
+
this._sender.send(data || EMPTY_BUFFER, opts, cb);
|
|
485
|
+
}
|
|
486
|
+
|
|
487
|
+
/**
|
|
488
|
+
* Forcibly close the connection.
|
|
489
|
+
*
|
|
490
|
+
* @public
|
|
491
|
+
*/
|
|
492
|
+
terminate() {
|
|
493
|
+
if (this.readyState === WebSocket.CLOSED) return;
|
|
494
|
+
if (this.readyState === WebSocket.CONNECTING) {
|
|
495
|
+
const msg = 'WebSocket was closed before the connection was established';
|
|
496
|
+
abortHandshake(this, this._req, msg);
|
|
497
|
+
return;
|
|
498
|
+
}
|
|
499
|
+
|
|
500
|
+
if (this._socket) {
|
|
501
|
+
this._readyState = WebSocket.CLOSING;
|
|
502
|
+
this._socket.destroy();
|
|
503
|
+
}
|
|
504
|
+
}
|
|
505
|
+
}
|
|
506
|
+
|
|
507
|
+
/**
|
|
508
|
+
* @constant {Number} CONNECTING
|
|
509
|
+
* @memberof WebSocket
|
|
510
|
+
*/
|
|
511
|
+
Object.defineProperty(WebSocket, 'CONNECTING', {
|
|
512
|
+
enumerable: true,
|
|
513
|
+
value: readyStates.indexOf('CONNECTING')
|
|
514
|
+
});
|
|
515
|
+
|
|
516
|
+
/**
|
|
517
|
+
* @constant {Number} CONNECTING
|
|
518
|
+
* @memberof WebSocket.prototype
|
|
519
|
+
*/
|
|
520
|
+
Object.defineProperty(WebSocket.prototype, 'CONNECTING', {
|
|
521
|
+
enumerable: true,
|
|
522
|
+
value: readyStates.indexOf('CONNECTING')
|
|
523
|
+
});
|
|
524
|
+
|
|
525
|
+
/**
|
|
526
|
+
* @constant {Number} OPEN
|
|
527
|
+
* @memberof WebSocket
|
|
528
|
+
*/
|
|
529
|
+
Object.defineProperty(WebSocket, 'OPEN', {
|
|
530
|
+
enumerable: true,
|
|
531
|
+
value: readyStates.indexOf('OPEN')
|
|
532
|
+
});
|
|
533
|
+
|
|
534
|
+
/**
|
|
535
|
+
* @constant {Number} OPEN
|
|
536
|
+
* @memberof WebSocket.prototype
|
|
537
|
+
*/
|
|
538
|
+
Object.defineProperty(WebSocket.prototype, 'OPEN', {
|
|
539
|
+
enumerable: true,
|
|
540
|
+
value: readyStates.indexOf('OPEN')
|
|
541
|
+
});
|
|
542
|
+
|
|
543
|
+
/**
|
|
544
|
+
* @constant {Number} CLOSING
|
|
545
|
+
* @memberof WebSocket
|
|
546
|
+
*/
|
|
547
|
+
Object.defineProperty(WebSocket, 'CLOSING', {
|
|
548
|
+
enumerable: true,
|
|
549
|
+
value: readyStates.indexOf('CLOSING')
|
|
550
|
+
});
|
|
551
|
+
|
|
552
|
+
/**
|
|
553
|
+
* @constant {Number} CLOSING
|
|
554
|
+
* @memberof WebSocket.prototype
|
|
555
|
+
*/
|
|
556
|
+
Object.defineProperty(WebSocket.prototype, 'CLOSING', {
|
|
557
|
+
enumerable: true,
|
|
558
|
+
value: readyStates.indexOf('CLOSING')
|
|
559
|
+
});
|
|
560
|
+
|
|
561
|
+
/**
|
|
562
|
+
* @constant {Number} CLOSED
|
|
563
|
+
* @memberof WebSocket
|
|
564
|
+
*/
|
|
565
|
+
Object.defineProperty(WebSocket, 'CLOSED', {
|
|
566
|
+
enumerable: true,
|
|
567
|
+
value: readyStates.indexOf('CLOSED')
|
|
568
|
+
});
|
|
569
|
+
|
|
570
|
+
/**
|
|
571
|
+
* @constant {Number} CLOSED
|
|
572
|
+
* @memberof WebSocket.prototype
|
|
573
|
+
*/
|
|
574
|
+
Object.defineProperty(WebSocket.prototype, 'CLOSED', {
|
|
575
|
+
enumerable: true,
|
|
576
|
+
value: readyStates.indexOf('CLOSED')
|
|
577
|
+
});
|
|
578
|
+
|
|
579
|
+
[
|
|
580
|
+
'binaryType',
|
|
581
|
+
'bufferedAmount',
|
|
582
|
+
'extensions',
|
|
583
|
+
'isPaused',
|
|
584
|
+
'protocol',
|
|
585
|
+
'readyState',
|
|
586
|
+
'url'
|
|
587
|
+
].forEach((property) => {
|
|
588
|
+
Object.defineProperty(WebSocket.prototype, property, { enumerable: true });
|
|
589
|
+
});
|
|
590
|
+
|
|
591
|
+
//
|
|
592
|
+
// Add the `onopen`, `onerror`, `onclose`, and `onmessage` attributes.
|
|
593
|
+
// See https://html.spec.whatwg.org/multipage/comms.html#the-websocket-interface
|
|
594
|
+
//
|
|
595
|
+
['open', 'error', 'close', 'message'].forEach((method) => {
|
|
596
|
+
Object.defineProperty(WebSocket.prototype, `on${method}`, {
|
|
597
|
+
enumerable: true,
|
|
598
|
+
get() {
|
|
599
|
+
for (const listener of this.listeners(method)) {
|
|
600
|
+
if (listener[kForOnEventAttribute]) return listener[kListener];
|
|
601
|
+
}
|
|
602
|
+
|
|
603
|
+
return null;
|
|
604
|
+
},
|
|
605
|
+
set(handler) {
|
|
606
|
+
for (const listener of this.listeners(method)) {
|
|
607
|
+
if (listener[kForOnEventAttribute]) {
|
|
608
|
+
this.removeListener(method, listener);
|
|
609
|
+
break;
|
|
610
|
+
}
|
|
611
|
+
}
|
|
612
|
+
|
|
613
|
+
if (typeof handler !== 'function') return;
|
|
614
|
+
|
|
615
|
+
this.addEventListener(method, handler, {
|
|
616
|
+
[kForOnEventAttribute]: true
|
|
617
|
+
});
|
|
618
|
+
}
|
|
619
|
+
});
|
|
620
|
+
});
|
|
621
|
+
|
|
622
|
+
WebSocket.prototype.addEventListener = addEventListener;
|
|
623
|
+
WebSocket.prototype.removeEventListener = removeEventListener;
|
|
624
|
+
|
|
625
|
+
module.exports = WebSocket;
|
|
626
|
+
|
|
627
|
+
/**
|
|
628
|
+
* Initialize a WebSocket client.
|
|
629
|
+
*
|
|
630
|
+
* @param {WebSocket} websocket The client to initialize
|
|
631
|
+
* @param {(String|URL)} address The URL to which to connect
|
|
632
|
+
* @param {Array} protocols The subprotocols
|
|
633
|
+
* @param {Object} [options] Connection options
|
|
634
|
+
* @param {Boolean} [options.allowSynchronousEvents=true] Specifies whether any
|
|
635
|
+
* of the `'message'`, `'ping'`, and `'pong'` events can be emitted multiple
|
|
636
|
+
* times in the same tick
|
|
637
|
+
* @param {Boolean} [options.autoPong=true] Specifies whether or not to
|
|
638
|
+
* automatically send a pong in response to a ping
|
|
639
|
+
* @param {Number} [options.closeTimeout=30000] Duration in milliseconds to wait
|
|
640
|
+
* for the closing handshake to finish after `websocket.close()` is called
|
|
641
|
+
* @param {Function} [options.finishRequest] A function which can be used to
|
|
642
|
+
* customize the headers of each http request before it is sent
|
|
643
|
+
* @param {Boolean} [options.followRedirects=false] Whether or not to follow
|
|
644
|
+
* redirects
|
|
645
|
+
* @param {Function} [options.generateMask] The function used to generate the
|
|
646
|
+
* masking key
|
|
647
|
+
* @param {Number} [options.handshakeTimeout] Timeout in milliseconds for the
|
|
648
|
+
* handshake request
|
|
649
|
+
* @param {Number} [options.maxBufferedChunks=1048576] The maximum number of
|
|
650
|
+
* buffered data chunks
|
|
651
|
+
* @param {Number} [options.maxFragments=131072] The maximum number of message
|
|
652
|
+
* fragments
|
|
653
|
+
* @param {Number} [options.maxPayload=104857600] The maximum allowed message
|
|
654
|
+
* size
|
|
655
|
+
* @param {Number} [options.maxRedirects=10] The maximum number of redirects
|
|
656
|
+
* allowed
|
|
657
|
+
* @param {String} [options.origin] Value of the `Origin` or
|
|
658
|
+
* `Sec-WebSocket-Origin` header
|
|
659
|
+
* @param {(Boolean|Object)} [options.perMessageDeflate=true] Enable/disable
|
|
660
|
+
* permessage-deflate
|
|
661
|
+
* @param {Number} [options.protocolVersion=13] Value of the
|
|
662
|
+
* `Sec-WebSocket-Version` header
|
|
663
|
+
* @param {Boolean} [options.skipUTF8Validation=false] Specifies whether or
|
|
664
|
+
* not to skip UTF-8 validation for text and close messages
|
|
665
|
+
* @private
|
|
666
|
+
*/
|
|
667
|
+
function initAsClient(websocket, address, protocols, options) {
|
|
668
|
+
const opts = {
|
|
669
|
+
allowSynchronousEvents: true,
|
|
670
|
+
autoPong: true,
|
|
671
|
+
closeTimeout: CLOSE_TIMEOUT,
|
|
672
|
+
protocolVersion: protocolVersions[1],
|
|
673
|
+
maxBufferedChunks: 1024 * 1024,
|
|
674
|
+
maxFragments: 128 * 1024,
|
|
675
|
+
maxPayload: 100 * 1024 * 1024,
|
|
676
|
+
skipUTF8Validation: false,
|
|
677
|
+
perMessageDeflate: true,
|
|
678
|
+
followRedirects: false,
|
|
679
|
+
maxRedirects: 10,
|
|
680
|
+
...options,
|
|
681
|
+
socketPath: undefined,
|
|
682
|
+
hostname: undefined,
|
|
683
|
+
protocol: undefined,
|
|
684
|
+
timeout: undefined,
|
|
685
|
+
method: 'GET',
|
|
686
|
+
host: undefined,
|
|
687
|
+
path: undefined,
|
|
688
|
+
port: undefined
|
|
689
|
+
};
|
|
690
|
+
|
|
691
|
+
websocket._autoPong = opts.autoPong;
|
|
692
|
+
websocket._closeTimeout = opts.closeTimeout;
|
|
693
|
+
|
|
694
|
+
if (!protocolVersions.includes(opts.protocolVersion)) {
|
|
695
|
+
throw new RangeError(
|
|
696
|
+
`Unsupported protocol version: ${opts.protocolVersion} ` +
|
|
697
|
+
`(supported versions: ${protocolVersions.join(', ')})`
|
|
698
|
+
);
|
|
699
|
+
}
|
|
700
|
+
|
|
701
|
+
let parsedUrl;
|
|
702
|
+
|
|
703
|
+
if (address instanceof URL) {
|
|
704
|
+
parsedUrl = address;
|
|
705
|
+
} else {
|
|
706
|
+
try {
|
|
707
|
+
parsedUrl = new URL(address);
|
|
708
|
+
} catch {
|
|
709
|
+
throw new SyntaxError(`Invalid URL: ${address}`);
|
|
710
|
+
}
|
|
711
|
+
}
|
|
712
|
+
|
|
713
|
+
if (parsedUrl.protocol === 'http:') {
|
|
714
|
+
parsedUrl.protocol = 'ws:';
|
|
715
|
+
} else if (parsedUrl.protocol === 'https:') {
|
|
716
|
+
parsedUrl.protocol = 'wss:';
|
|
717
|
+
}
|
|
718
|
+
|
|
719
|
+
websocket._url = parsedUrl.href;
|
|
720
|
+
|
|
721
|
+
const isSecure = parsedUrl.protocol === 'wss:';
|
|
722
|
+
const isIpcUrl = parsedUrl.protocol === 'ws+unix:';
|
|
723
|
+
let invalidUrlMessage;
|
|
724
|
+
|
|
725
|
+
if (parsedUrl.protocol !== 'ws:' && !isSecure && !isIpcUrl) {
|
|
726
|
+
invalidUrlMessage =
|
|
727
|
+
'The URL\'s protocol must be one of "ws:", "wss:", ' +
|
|
728
|
+
'"http:", "https:", or "ws+unix:"';
|
|
729
|
+
} else if (isIpcUrl && !parsedUrl.pathname) {
|
|
730
|
+
invalidUrlMessage = "The URL's pathname is empty";
|
|
731
|
+
} else if (parsedUrl.hash) {
|
|
732
|
+
invalidUrlMessage = 'The URL contains a fragment identifier';
|
|
733
|
+
}
|
|
734
|
+
|
|
735
|
+
if (invalidUrlMessage) {
|
|
736
|
+
const err = new SyntaxError(invalidUrlMessage);
|
|
737
|
+
|
|
738
|
+
if (websocket._redirects === 0) {
|
|
739
|
+
throw err;
|
|
740
|
+
} else {
|
|
741
|
+
emitErrorAndClose(websocket, err);
|
|
742
|
+
return;
|
|
743
|
+
}
|
|
744
|
+
}
|
|
745
|
+
|
|
746
|
+
const defaultPort = isSecure ? 443 : 80;
|
|
747
|
+
const key = randomBytes(16).toString('base64');
|
|
748
|
+
const request = isSecure ? https.request : http.request;
|
|
749
|
+
const protocolSet = new Set();
|
|
750
|
+
let perMessageDeflate;
|
|
751
|
+
|
|
752
|
+
opts.createConnection =
|
|
753
|
+
opts.createConnection || (isSecure ? tlsConnect : netConnect);
|
|
754
|
+
opts.defaultPort = opts.defaultPort || defaultPort;
|
|
755
|
+
opts.port = parsedUrl.port || defaultPort;
|
|
756
|
+
opts.host = parsedUrl.hostname.startsWith('[')
|
|
757
|
+
? parsedUrl.hostname.slice(1, -1)
|
|
758
|
+
: parsedUrl.hostname;
|
|
759
|
+
opts.headers = {
|
|
760
|
+
...opts.headers,
|
|
761
|
+
'Sec-WebSocket-Version': opts.protocolVersion,
|
|
762
|
+
'Sec-WebSocket-Key': key,
|
|
763
|
+
Connection: 'Upgrade',
|
|
764
|
+
Upgrade: 'websocket'
|
|
765
|
+
};
|
|
766
|
+
opts.path = parsedUrl.pathname + parsedUrl.search;
|
|
767
|
+
opts.timeout = opts.handshakeTimeout;
|
|
768
|
+
|
|
769
|
+
if (opts.perMessageDeflate) {
|
|
770
|
+
perMessageDeflate = new PerMessageDeflate({
|
|
771
|
+
...opts.perMessageDeflate,
|
|
772
|
+
isServer: false,
|
|
773
|
+
maxPayload: opts.maxPayload
|
|
774
|
+
});
|
|
775
|
+
opts.headers['Sec-WebSocket-Extensions'] = format({
|
|
776
|
+
[PerMessageDeflate.extensionName]: perMessageDeflate.offer()
|
|
777
|
+
});
|
|
778
|
+
}
|
|
779
|
+
if (protocols.length) {
|
|
780
|
+
for (const protocol of protocols) {
|
|
781
|
+
if (
|
|
782
|
+
typeof protocol !== 'string' ||
|
|
783
|
+
!subprotocolRegex.test(protocol) ||
|
|
784
|
+
protocolSet.has(protocol)
|
|
785
|
+
) {
|
|
786
|
+
throw new SyntaxError(
|
|
787
|
+
'An invalid or duplicated subprotocol was specified'
|
|
788
|
+
);
|
|
789
|
+
}
|
|
790
|
+
|
|
791
|
+
protocolSet.add(protocol);
|
|
792
|
+
}
|
|
793
|
+
|
|
794
|
+
opts.headers['Sec-WebSocket-Protocol'] = protocols.join(',');
|
|
795
|
+
}
|
|
796
|
+
if (opts.origin) {
|
|
797
|
+
if (opts.protocolVersion < 13) {
|
|
798
|
+
opts.headers['Sec-WebSocket-Origin'] = opts.origin;
|
|
799
|
+
} else {
|
|
800
|
+
opts.headers.Origin = opts.origin;
|
|
801
|
+
}
|
|
802
|
+
}
|
|
803
|
+
if (parsedUrl.username || parsedUrl.password) {
|
|
804
|
+
opts.auth = `${parsedUrl.username}:${parsedUrl.password}`;
|
|
805
|
+
}
|
|
806
|
+
|
|
807
|
+
if (isIpcUrl) {
|
|
808
|
+
const parts = opts.path.split(':');
|
|
809
|
+
|
|
810
|
+
opts.socketPath = parts[0];
|
|
811
|
+
opts.path = parts[1];
|
|
812
|
+
}
|
|
813
|
+
|
|
814
|
+
let req;
|
|
815
|
+
|
|
816
|
+
if (opts.followRedirects) {
|
|
817
|
+
if (websocket._redirects === 0) {
|
|
818
|
+
websocket._originalIpc = isIpcUrl;
|
|
819
|
+
websocket._originalSecure = isSecure;
|
|
820
|
+
websocket._originalHostOrSocketPath = isIpcUrl
|
|
821
|
+
? opts.socketPath
|
|
822
|
+
: parsedUrl.host;
|
|
823
|
+
|
|
824
|
+
const headers = options && options.headers;
|
|
825
|
+
|
|
826
|
+
//
|
|
827
|
+
// Shallow copy the user provided options so that headers can be changed
|
|
828
|
+
// without mutating the original object.
|
|
829
|
+
//
|
|
830
|
+
options = { ...options, headers: {} };
|
|
831
|
+
|
|
832
|
+
if (headers) {
|
|
833
|
+
for (const [key, value] of Object.entries(headers)) {
|
|
834
|
+
options.headers[key.toLowerCase()] = value;
|
|
835
|
+
}
|
|
836
|
+
}
|
|
837
|
+
} else if (websocket.listenerCount('redirect') === 0) {
|
|
838
|
+
const isSameHost = isIpcUrl
|
|
839
|
+
? websocket._originalIpc
|
|
840
|
+
? opts.socketPath === websocket._originalHostOrSocketPath
|
|
841
|
+
: false
|
|
842
|
+
: websocket._originalIpc
|
|
843
|
+
? false
|
|
844
|
+
: parsedUrl.host === websocket._originalHostOrSocketPath;
|
|
845
|
+
|
|
846
|
+
if (!isSameHost || (websocket._originalSecure && !isSecure)) {
|
|
847
|
+
//
|
|
848
|
+
// Match curl 7.77.0 behavior and drop the following headers. These
|
|
849
|
+
// headers are also dropped when following a redirect to a subdomain.
|
|
850
|
+
//
|
|
851
|
+
delete opts.headers.authorization;
|
|
852
|
+
delete opts.headers.cookie;
|
|
853
|
+
|
|
854
|
+
if (!isSameHost) delete opts.headers.host;
|
|
855
|
+
|
|
856
|
+
opts.auth = undefined;
|
|
857
|
+
}
|
|
858
|
+
}
|
|
859
|
+
|
|
860
|
+
//
|
|
861
|
+
// Match curl 7.77.0 behavior and make the first `Authorization` header win.
|
|
862
|
+
// If the `Authorization` header is set, then there is nothing to do as it
|
|
863
|
+
// will take precedence.
|
|
864
|
+
//
|
|
865
|
+
if (opts.auth && !options.headers.authorization) {
|
|
866
|
+
options.headers.authorization =
|
|
867
|
+
'Basic ' + Buffer.from(opts.auth).toString('base64');
|
|
868
|
+
}
|
|
869
|
+
|
|
870
|
+
req = websocket._req = request(opts);
|
|
871
|
+
|
|
872
|
+
if (websocket._redirects) {
|
|
873
|
+
//
|
|
874
|
+
// Unlike what is done for the `'upgrade'` event, no early exit is
|
|
875
|
+
// triggered here if the user calls `websocket.close()` or
|
|
876
|
+
// `websocket.terminate()` from a listener of the `'redirect'` event. This
|
|
877
|
+
// is because the user can also call `request.destroy()` with an error
|
|
878
|
+
// before calling `websocket.close()` or `websocket.terminate()` and this
|
|
879
|
+
// would result in an error being emitted on the `request` object with no
|
|
880
|
+
// `'error'` event listeners attached.
|
|
881
|
+
//
|
|
882
|
+
websocket.emit('redirect', websocket.url, req);
|
|
883
|
+
}
|
|
884
|
+
} else {
|
|
885
|
+
req = websocket._req = request(opts);
|
|
886
|
+
}
|
|
887
|
+
|
|
888
|
+
if (opts.timeout) {
|
|
889
|
+
req.on('timeout', () => {
|
|
890
|
+
abortHandshake(websocket, req, 'Opening handshake has timed out');
|
|
891
|
+
});
|
|
892
|
+
}
|
|
893
|
+
|
|
894
|
+
req.on('error', (err) => {
|
|
895
|
+
if (req === null || req[kAborted]) return;
|
|
896
|
+
|
|
897
|
+
req = websocket._req = null;
|
|
898
|
+
emitErrorAndClose(websocket, err);
|
|
899
|
+
});
|
|
900
|
+
|
|
901
|
+
req.on('response', (res) => {
|
|
902
|
+
const location = res.headers.location;
|
|
903
|
+
const statusCode = res.statusCode;
|
|
904
|
+
|
|
905
|
+
if (
|
|
906
|
+
location &&
|
|
907
|
+
opts.followRedirects &&
|
|
908
|
+
statusCode >= 300 &&
|
|
909
|
+
statusCode < 400
|
|
910
|
+
) {
|
|
911
|
+
if (++websocket._redirects > opts.maxRedirects) {
|
|
912
|
+
abortHandshake(websocket, req, 'Maximum redirects exceeded');
|
|
913
|
+
return;
|
|
914
|
+
}
|
|
915
|
+
|
|
916
|
+
req.abort();
|
|
917
|
+
|
|
918
|
+
let addr;
|
|
919
|
+
|
|
920
|
+
try {
|
|
921
|
+
addr = new URL(location, address);
|
|
922
|
+
} catch (e) {
|
|
923
|
+
const err = new SyntaxError(`Invalid URL: ${location}`);
|
|
924
|
+
emitErrorAndClose(websocket, err);
|
|
925
|
+
return;
|
|
926
|
+
}
|
|
927
|
+
|
|
928
|
+
initAsClient(websocket, addr, protocols, options);
|
|
929
|
+
} else if (!websocket.emit('unexpected-response', req, res)) {
|
|
930
|
+
abortHandshake(
|
|
931
|
+
websocket,
|
|
932
|
+
req,
|
|
933
|
+
`Unexpected server response: ${res.statusCode}`
|
|
934
|
+
);
|
|
935
|
+
}
|
|
936
|
+
});
|
|
937
|
+
|
|
938
|
+
req.on('upgrade', (res, socket, head) => {
|
|
939
|
+
websocket.emit('upgrade', res);
|
|
940
|
+
|
|
941
|
+
//
|
|
942
|
+
// The user may have closed the connection from a listener of the
|
|
943
|
+
// `'upgrade'` event.
|
|
944
|
+
//
|
|
945
|
+
if (websocket.readyState !== WebSocket.CONNECTING) return;
|
|
946
|
+
|
|
947
|
+
req = websocket._req = null;
|
|
948
|
+
|
|
949
|
+
const upgrade = res.headers.upgrade;
|
|
950
|
+
|
|
951
|
+
if (upgrade === undefined || upgrade.toLowerCase() !== 'websocket') {
|
|
952
|
+
abortHandshake(websocket, socket, 'Invalid Upgrade header');
|
|
953
|
+
return;
|
|
954
|
+
}
|
|
955
|
+
|
|
956
|
+
const digest = createHash('sha1')
|
|
957
|
+
.update(key + GUID)
|
|
958
|
+
.digest('base64');
|
|
959
|
+
|
|
960
|
+
if (res.headers['sec-websocket-accept'] !== digest) {
|
|
961
|
+
abortHandshake(websocket, socket, 'Invalid Sec-WebSocket-Accept header');
|
|
962
|
+
return;
|
|
963
|
+
}
|
|
964
|
+
|
|
965
|
+
const serverProt = res.headers['sec-websocket-protocol'];
|
|
966
|
+
let protError;
|
|
967
|
+
|
|
968
|
+
if (serverProt !== undefined) {
|
|
969
|
+
if (!protocolSet.size) {
|
|
970
|
+
protError = 'Server sent a subprotocol but none was requested';
|
|
971
|
+
} else if (!protocolSet.has(serverProt)) {
|
|
972
|
+
protError = 'Server sent an invalid subprotocol';
|
|
973
|
+
}
|
|
974
|
+
} else if (protocolSet.size) {
|
|
975
|
+
protError = 'Server sent no subprotocol';
|
|
976
|
+
}
|
|
977
|
+
|
|
978
|
+
if (protError) {
|
|
979
|
+
abortHandshake(websocket, socket, protError);
|
|
980
|
+
return;
|
|
981
|
+
}
|
|
982
|
+
|
|
983
|
+
if (serverProt) websocket._protocol = serverProt;
|
|
984
|
+
|
|
985
|
+
const secWebSocketExtensions = res.headers['sec-websocket-extensions'];
|
|
986
|
+
|
|
987
|
+
if (secWebSocketExtensions !== undefined) {
|
|
988
|
+
if (!perMessageDeflate) {
|
|
989
|
+
const message =
|
|
990
|
+
'Server sent a Sec-WebSocket-Extensions header but no extension ' +
|
|
991
|
+
'was requested';
|
|
992
|
+
abortHandshake(websocket, socket, message);
|
|
993
|
+
return;
|
|
994
|
+
}
|
|
995
|
+
|
|
996
|
+
let extensions;
|
|
997
|
+
|
|
998
|
+
try {
|
|
999
|
+
extensions = parse(secWebSocketExtensions);
|
|
1000
|
+
} catch (err) {
|
|
1001
|
+
const message = 'Invalid Sec-WebSocket-Extensions header';
|
|
1002
|
+
abortHandshake(websocket, socket, message);
|
|
1003
|
+
return;
|
|
1004
|
+
}
|
|
1005
|
+
|
|
1006
|
+
const extensionNames = Object.keys(extensions);
|
|
1007
|
+
|
|
1008
|
+
if (
|
|
1009
|
+
extensionNames.length !== 1 ||
|
|
1010
|
+
extensionNames[0] !== PerMessageDeflate.extensionName
|
|
1011
|
+
) {
|
|
1012
|
+
const message = 'Server indicated an extension that was not requested';
|
|
1013
|
+
abortHandshake(websocket, socket, message);
|
|
1014
|
+
return;
|
|
1015
|
+
}
|
|
1016
|
+
|
|
1017
|
+
try {
|
|
1018
|
+
perMessageDeflate.accept(extensions[PerMessageDeflate.extensionName]);
|
|
1019
|
+
} catch (err) {
|
|
1020
|
+
const message = 'Invalid Sec-WebSocket-Extensions header';
|
|
1021
|
+
abortHandshake(websocket, socket, message);
|
|
1022
|
+
return;
|
|
1023
|
+
}
|
|
1024
|
+
|
|
1025
|
+
websocket._extensions[PerMessageDeflate.extensionName] =
|
|
1026
|
+
perMessageDeflate;
|
|
1027
|
+
}
|
|
1028
|
+
|
|
1029
|
+
websocket.setSocket(socket, head, {
|
|
1030
|
+
allowSynchronousEvents: opts.allowSynchronousEvents,
|
|
1031
|
+
generateMask: opts.generateMask,
|
|
1032
|
+
maxBufferedChunks: opts.maxBufferedChunks,
|
|
1033
|
+
maxFragments: opts.maxFragments,
|
|
1034
|
+
maxPayload: opts.maxPayload,
|
|
1035
|
+
skipUTF8Validation: opts.skipUTF8Validation
|
|
1036
|
+
});
|
|
1037
|
+
});
|
|
1038
|
+
|
|
1039
|
+
if (opts.finishRequest) {
|
|
1040
|
+
opts.finishRequest(req, websocket);
|
|
1041
|
+
} else {
|
|
1042
|
+
req.end();
|
|
1043
|
+
}
|
|
1044
|
+
}
|
|
1045
|
+
|
|
1046
|
+
/**
|
|
1047
|
+
* Emit the `'error'` and `'close'` events.
|
|
1048
|
+
*
|
|
1049
|
+
* @param {WebSocket} websocket The WebSocket instance
|
|
1050
|
+
* @param {Error} The error to emit
|
|
1051
|
+
* @private
|
|
1052
|
+
*/
|
|
1053
|
+
function emitErrorAndClose(websocket, err) {
|
|
1054
|
+
websocket._readyState = WebSocket.CLOSING;
|
|
1055
|
+
//
|
|
1056
|
+
// The following assignment is practically useless and is done only for
|
|
1057
|
+
// consistency.
|
|
1058
|
+
//
|
|
1059
|
+
websocket._errorEmitted = true;
|
|
1060
|
+
websocket.emit('error', err);
|
|
1061
|
+
websocket.emitClose();
|
|
1062
|
+
}
|
|
1063
|
+
|
|
1064
|
+
/**
|
|
1065
|
+
* Create a `net.Socket` and initiate a connection.
|
|
1066
|
+
*
|
|
1067
|
+
* @param {Object} options Connection options
|
|
1068
|
+
* @return {net.Socket} The newly created socket used to start the connection
|
|
1069
|
+
* @private
|
|
1070
|
+
*/
|
|
1071
|
+
function netConnect(options) {
|
|
1072
|
+
options.path = options.socketPath;
|
|
1073
|
+
return net.connect(options);
|
|
1074
|
+
}
|
|
1075
|
+
|
|
1076
|
+
/**
|
|
1077
|
+
* Create a `tls.TLSSocket` and initiate a connection.
|
|
1078
|
+
*
|
|
1079
|
+
* @param {Object} options Connection options
|
|
1080
|
+
* @return {tls.TLSSocket} The newly created socket used to start the connection
|
|
1081
|
+
* @private
|
|
1082
|
+
*/
|
|
1083
|
+
function tlsConnect(options) {
|
|
1084
|
+
options.path = undefined;
|
|
1085
|
+
|
|
1086
|
+
if (!options.servername && options.servername !== '') {
|
|
1087
|
+
options.servername = net.isIP(options.host) ? '' : options.host;
|
|
1088
|
+
}
|
|
1089
|
+
|
|
1090
|
+
return tls.connect(options);
|
|
1091
|
+
}
|
|
1092
|
+
|
|
1093
|
+
/**
|
|
1094
|
+
* Abort the handshake and emit an error.
|
|
1095
|
+
*
|
|
1096
|
+
* @param {WebSocket} websocket The WebSocket instance
|
|
1097
|
+
* @param {(http.ClientRequest|net.Socket|tls.Socket)} stream The request to
|
|
1098
|
+
* abort or the socket to destroy
|
|
1099
|
+
* @param {String} message The error message
|
|
1100
|
+
* @private
|
|
1101
|
+
*/
|
|
1102
|
+
function abortHandshake(websocket, stream, message) {
|
|
1103
|
+
websocket._readyState = WebSocket.CLOSING;
|
|
1104
|
+
|
|
1105
|
+
const err = new Error(message);
|
|
1106
|
+
Error.captureStackTrace(err, abortHandshake);
|
|
1107
|
+
|
|
1108
|
+
if (stream.setHeader) {
|
|
1109
|
+
stream[kAborted] = true;
|
|
1110
|
+
stream.abort();
|
|
1111
|
+
|
|
1112
|
+
if (stream.socket && !stream.socket.destroyed) {
|
|
1113
|
+
//
|
|
1114
|
+
// On Node.js >= 14.3.0 `request.abort()` does not destroy the socket if
|
|
1115
|
+
// called after the request completed. See
|
|
1116
|
+
// https://github.com/websockets/ws/issues/1869.
|
|
1117
|
+
//
|
|
1118
|
+
stream.socket.destroy();
|
|
1119
|
+
}
|
|
1120
|
+
|
|
1121
|
+
process.nextTick(emitErrorAndClose, websocket, err);
|
|
1122
|
+
} else {
|
|
1123
|
+
stream.destroy(err);
|
|
1124
|
+
stream.once('error', websocket.emit.bind(websocket, 'error'));
|
|
1125
|
+
stream.once('close', websocket.emitClose.bind(websocket));
|
|
1126
|
+
}
|
|
1127
|
+
}
|
|
1128
|
+
|
|
1129
|
+
/**
|
|
1130
|
+
* Handle cases where the `ping()`, `pong()`, or `send()` methods are called
|
|
1131
|
+
* when the `readyState` attribute is `CLOSING` or `CLOSED`.
|
|
1132
|
+
*
|
|
1133
|
+
* @param {WebSocket} websocket The WebSocket instance
|
|
1134
|
+
* @param {*} [data] The data to send
|
|
1135
|
+
* @param {Function} [cb] Callback
|
|
1136
|
+
* @private
|
|
1137
|
+
*/
|
|
1138
|
+
function sendAfterClose(websocket, data, cb) {
|
|
1139
|
+
if (data) {
|
|
1140
|
+
const length = isBlob(data) ? data.size : toBuffer(data).length;
|
|
1141
|
+
|
|
1142
|
+
//
|
|
1143
|
+
// The `_bufferedAmount` property is used only when the peer is a client and
|
|
1144
|
+
// the opening handshake fails. Under these circumstances, in fact, the
|
|
1145
|
+
// `setSocket()` method is not called, so the `_socket` and `_sender`
|
|
1146
|
+
// properties are set to `null`.
|
|
1147
|
+
//
|
|
1148
|
+
if (websocket._socket) websocket._sender._bufferedBytes += length;
|
|
1149
|
+
else websocket._bufferedAmount += length;
|
|
1150
|
+
}
|
|
1151
|
+
|
|
1152
|
+
if (cb) {
|
|
1153
|
+
const err = new Error(
|
|
1154
|
+
`WebSocket is not open: readyState ${websocket.readyState} ` +
|
|
1155
|
+
`(${readyStates[websocket.readyState]})`
|
|
1156
|
+
);
|
|
1157
|
+
process.nextTick(cb, err);
|
|
1158
|
+
}
|
|
1159
|
+
}
|
|
1160
|
+
|
|
1161
|
+
/**
|
|
1162
|
+
* The listener of the `Receiver` `'conclude'` event.
|
|
1163
|
+
*
|
|
1164
|
+
* @param {Number} code The status code
|
|
1165
|
+
* @param {Buffer} reason The reason for closing
|
|
1166
|
+
* @private
|
|
1167
|
+
*/
|
|
1168
|
+
function receiverOnConclude(code, reason) {
|
|
1169
|
+
const websocket = this[kWebSocket];
|
|
1170
|
+
|
|
1171
|
+
websocket._closeFrameReceived = true;
|
|
1172
|
+
websocket._closeMessage = reason;
|
|
1173
|
+
websocket._closeCode = code;
|
|
1174
|
+
|
|
1175
|
+
if (websocket._socket[kWebSocket] === undefined) return;
|
|
1176
|
+
|
|
1177
|
+
websocket._socket.removeListener('data', socketOnData);
|
|
1178
|
+
process.nextTick(resume, websocket._socket);
|
|
1179
|
+
|
|
1180
|
+
if (code === 1005) websocket.close();
|
|
1181
|
+
else websocket.close(code, reason);
|
|
1182
|
+
}
|
|
1183
|
+
|
|
1184
|
+
/**
|
|
1185
|
+
* The listener of the `Receiver` `'drain'` event.
|
|
1186
|
+
*
|
|
1187
|
+
* @private
|
|
1188
|
+
*/
|
|
1189
|
+
function receiverOnDrain() {
|
|
1190
|
+
const websocket = this[kWebSocket];
|
|
1191
|
+
|
|
1192
|
+
if (!websocket.isPaused) websocket._socket.resume();
|
|
1193
|
+
}
|
|
1194
|
+
|
|
1195
|
+
/**
|
|
1196
|
+
* The listener of the `Receiver` `'error'` event.
|
|
1197
|
+
*
|
|
1198
|
+
* @param {(RangeError|Error)} err The emitted error
|
|
1199
|
+
* @private
|
|
1200
|
+
*/
|
|
1201
|
+
function receiverOnError(err) {
|
|
1202
|
+
const websocket = this[kWebSocket];
|
|
1203
|
+
|
|
1204
|
+
if (websocket._socket[kWebSocket] !== undefined) {
|
|
1205
|
+
websocket._socket.removeListener('data', socketOnData);
|
|
1206
|
+
|
|
1207
|
+
//
|
|
1208
|
+
// On Node.js < 14.0.0 the `'error'` event is emitted synchronously. See
|
|
1209
|
+
// https://github.com/websockets/ws/issues/1940.
|
|
1210
|
+
//
|
|
1211
|
+
process.nextTick(resume, websocket._socket);
|
|
1212
|
+
|
|
1213
|
+
websocket.close(err[kStatusCode]);
|
|
1214
|
+
}
|
|
1215
|
+
|
|
1216
|
+
if (!websocket._errorEmitted) {
|
|
1217
|
+
websocket._errorEmitted = true;
|
|
1218
|
+
websocket.emit('error', err);
|
|
1219
|
+
}
|
|
1220
|
+
}
|
|
1221
|
+
|
|
1222
|
+
/**
|
|
1223
|
+
* The listener of the `Receiver` `'finish'` event.
|
|
1224
|
+
*
|
|
1225
|
+
* @private
|
|
1226
|
+
*/
|
|
1227
|
+
function receiverOnFinish() {
|
|
1228
|
+
this[kWebSocket].emitClose();
|
|
1229
|
+
}
|
|
1230
|
+
|
|
1231
|
+
/**
|
|
1232
|
+
* The listener of the `Receiver` `'message'` event.
|
|
1233
|
+
*
|
|
1234
|
+
* @param {Buffer|ArrayBuffer|Buffer[])} data The message
|
|
1235
|
+
* @param {Boolean} isBinary Specifies whether the message is binary or not
|
|
1236
|
+
* @private
|
|
1237
|
+
*/
|
|
1238
|
+
function receiverOnMessage(data, isBinary) {
|
|
1239
|
+
this[kWebSocket].emit('message', data, isBinary);
|
|
1240
|
+
}
|
|
1241
|
+
|
|
1242
|
+
/**
|
|
1243
|
+
* The listener of the `Receiver` `'ping'` event.
|
|
1244
|
+
*
|
|
1245
|
+
* @param {Buffer} data The data included in the ping frame
|
|
1246
|
+
* @private
|
|
1247
|
+
*/
|
|
1248
|
+
function receiverOnPing(data) {
|
|
1249
|
+
const websocket = this[kWebSocket];
|
|
1250
|
+
|
|
1251
|
+
if (websocket._autoPong) websocket.pong(data, !this._isServer, NOOP);
|
|
1252
|
+
websocket.emit('ping', data);
|
|
1253
|
+
}
|
|
1254
|
+
|
|
1255
|
+
/**
|
|
1256
|
+
* The listener of the `Receiver` `'pong'` event.
|
|
1257
|
+
*
|
|
1258
|
+
* @param {Buffer} data The data included in the pong frame
|
|
1259
|
+
* @private
|
|
1260
|
+
*/
|
|
1261
|
+
function receiverOnPong(data) {
|
|
1262
|
+
this[kWebSocket].emit('pong', data);
|
|
1263
|
+
}
|
|
1264
|
+
|
|
1265
|
+
/**
|
|
1266
|
+
* Resume a readable stream
|
|
1267
|
+
*
|
|
1268
|
+
* @param {Readable} stream The readable stream
|
|
1269
|
+
* @private
|
|
1270
|
+
*/
|
|
1271
|
+
function resume(stream) {
|
|
1272
|
+
stream.resume();
|
|
1273
|
+
}
|
|
1274
|
+
|
|
1275
|
+
/**
|
|
1276
|
+
* The `Sender` error event handler.
|
|
1277
|
+
*
|
|
1278
|
+
* @param {Error} The error
|
|
1279
|
+
* @private
|
|
1280
|
+
*/
|
|
1281
|
+
function senderOnError(err) {
|
|
1282
|
+
const websocket = this[kWebSocket];
|
|
1283
|
+
|
|
1284
|
+
if (websocket.readyState === WebSocket.CLOSED) return;
|
|
1285
|
+
if (websocket.readyState === WebSocket.OPEN) {
|
|
1286
|
+
websocket._readyState = WebSocket.CLOSING;
|
|
1287
|
+
setCloseTimer(websocket);
|
|
1288
|
+
}
|
|
1289
|
+
|
|
1290
|
+
//
|
|
1291
|
+
// `socket.end()` is used instead of `socket.destroy()` to allow the other
|
|
1292
|
+
// peer to finish sending queued data. There is no need to set a timer here
|
|
1293
|
+
// because `CLOSING` means that it is already set or not needed.
|
|
1294
|
+
//
|
|
1295
|
+
this._socket.end();
|
|
1296
|
+
|
|
1297
|
+
if (!websocket._errorEmitted) {
|
|
1298
|
+
websocket._errorEmitted = true;
|
|
1299
|
+
websocket.emit('error', err);
|
|
1300
|
+
}
|
|
1301
|
+
}
|
|
1302
|
+
|
|
1303
|
+
/**
|
|
1304
|
+
* Set a timer to destroy the underlying raw socket of a WebSocket.
|
|
1305
|
+
*
|
|
1306
|
+
* @param {WebSocket} websocket The WebSocket instance
|
|
1307
|
+
* @private
|
|
1308
|
+
*/
|
|
1309
|
+
function setCloseTimer(websocket) {
|
|
1310
|
+
websocket._closeTimer = setTimeout(
|
|
1311
|
+
websocket._socket.destroy.bind(websocket._socket),
|
|
1312
|
+
websocket._closeTimeout
|
|
1313
|
+
);
|
|
1314
|
+
}
|
|
1315
|
+
|
|
1316
|
+
/**
|
|
1317
|
+
* The listener of the socket `'close'` event.
|
|
1318
|
+
*
|
|
1319
|
+
* @private
|
|
1320
|
+
*/
|
|
1321
|
+
function socketOnClose() {
|
|
1322
|
+
const websocket = this[kWebSocket];
|
|
1323
|
+
|
|
1324
|
+
this.removeListener('close', socketOnClose);
|
|
1325
|
+
this.removeListener('data', socketOnData);
|
|
1326
|
+
this.removeListener('end', socketOnEnd);
|
|
1327
|
+
|
|
1328
|
+
websocket._readyState = WebSocket.CLOSING;
|
|
1329
|
+
|
|
1330
|
+
//
|
|
1331
|
+
// The close frame might not have been received or the `'end'` event emitted,
|
|
1332
|
+
// for example, if the socket was destroyed due to an error. Ensure that the
|
|
1333
|
+
// `receiver` stream is closed after writing any remaining buffered data to
|
|
1334
|
+
// it. If the readable side of the socket is in flowing mode then there is no
|
|
1335
|
+
// buffered data as everything has been already written. If instead, the
|
|
1336
|
+
// socket is paused, any possible buffered data will be read as a single
|
|
1337
|
+
// chunk.
|
|
1338
|
+
//
|
|
1339
|
+
if (
|
|
1340
|
+
!this._readableState.endEmitted &&
|
|
1341
|
+
!websocket._closeFrameReceived &&
|
|
1342
|
+
!websocket._receiver._writableState.errorEmitted &&
|
|
1343
|
+
this._readableState.length !== 0
|
|
1344
|
+
) {
|
|
1345
|
+
const chunk = this.read(this._readableState.length);
|
|
1346
|
+
|
|
1347
|
+
websocket._receiver.write(chunk);
|
|
1348
|
+
}
|
|
1349
|
+
|
|
1350
|
+
websocket._receiver.end();
|
|
1351
|
+
|
|
1352
|
+
this[kWebSocket] = undefined;
|
|
1353
|
+
|
|
1354
|
+
clearTimeout(websocket._closeTimer);
|
|
1355
|
+
|
|
1356
|
+
if (
|
|
1357
|
+
websocket._receiver._writableState.finished ||
|
|
1358
|
+
websocket._receiver._writableState.errorEmitted
|
|
1359
|
+
) {
|
|
1360
|
+
websocket.emitClose();
|
|
1361
|
+
} else {
|
|
1362
|
+
websocket._receiver.on('error', receiverOnFinish);
|
|
1363
|
+
websocket._receiver.on('finish', receiverOnFinish);
|
|
1364
|
+
}
|
|
1365
|
+
}
|
|
1366
|
+
|
|
1367
|
+
/**
|
|
1368
|
+
* The listener of the socket `'data'` event.
|
|
1369
|
+
*
|
|
1370
|
+
* @param {Buffer} chunk A chunk of data
|
|
1371
|
+
* @private
|
|
1372
|
+
*/
|
|
1373
|
+
function socketOnData(chunk) {
|
|
1374
|
+
if (!this[kWebSocket]._receiver.write(chunk)) {
|
|
1375
|
+
this.pause();
|
|
1376
|
+
}
|
|
1377
|
+
}
|
|
1378
|
+
|
|
1379
|
+
/**
|
|
1380
|
+
* The listener of the socket `'end'` event.
|
|
1381
|
+
*
|
|
1382
|
+
* @private
|
|
1383
|
+
*/
|
|
1384
|
+
function socketOnEnd() {
|
|
1385
|
+
const websocket = this[kWebSocket];
|
|
1386
|
+
|
|
1387
|
+
websocket._readyState = WebSocket.CLOSING;
|
|
1388
|
+
websocket._receiver.end();
|
|
1389
|
+
this.end();
|
|
1390
|
+
}
|
|
1391
|
+
|
|
1392
|
+
/**
|
|
1393
|
+
* The listener of the socket `'error'` event.
|
|
1394
|
+
*
|
|
1395
|
+
* @private
|
|
1396
|
+
*/
|
|
1397
|
+
function socketOnError() {
|
|
1398
|
+
const websocket = this[kWebSocket];
|
|
1399
|
+
|
|
1400
|
+
this.removeListener('error', socketOnError);
|
|
1401
|
+
this.on('error', NOOP);
|
|
1402
|
+
|
|
1403
|
+
if (websocket) {
|
|
1404
|
+
websocket._readyState = WebSocket.CLOSING;
|
|
1405
|
+
this.destroy();
|
|
1406
|
+
}
|
|
1407
|
+
}
|