SOLFIND
Web Lens
Portal home

protocol | Electron

https://www.electronjs.org/ja/docs/latest/api/protocol • 127 KB fetched
Open original page


protocol | Electron メインコンテンツへ飛ぶ Electron ドキュメント API ブログ ツール * Electron Forge * Electron Fiddle コミュニティ * ガバナンス * 事例紹介 * リソース リリース 日本語 * English * Deutsch * Español * Français * 日本語 * Português * Русский * 中文 検索 * メインプロセスモジュール * app * autoUpdater * BaseWindow * BrowserView * Deprecated * BrowserWindow * clipboard * contentTracing * crashReporter * desktopCapturer * dialog * globalShortcut * ImageView * inAppPurchase * ipcMain * Menu * MenuItem * MessageChannelMain * MessagePortMain * nativeImage * nativeTheme * net * netLog * Notification * powerMonitor * powerSaveBlocker * process * protocol * pushNotifications * safeStorage * screen * session * sharedTexture * ShareMenu * shell * systemPreferences * TouchBar * Tray * utilityProcess * webContents * WebContentsView * webFrameMain * 表示 * レンダラープロセスモジュール * Utility Process Modules * カスタム DOM 要素 * Chromium と Node.js * クラス * API の構造体 * * メインプロセスモジュール * protocol 目次 protocol カスタムプロトコルを登録し、既存のプロトコルリクエストを傍受します。 プロセス: メイン file:// プロトコルと同じ効果を持つプロトコルの実装の例: const { app , protocol , net } = require ( 'electron' ) const path = require ( 'node:path' ) const url = require ( 'node:url' ) app . whenReady ( ) . then ( ( ) => { protocol . handle ( 'atom' , ( request ) => { const filePath = request . url . slice ( 'atom://' . length ) return net . fetch ( url . pathToFileURL ( path . join ( __dirname , filePath ) ) . toString ( ) ) } ) } ) [!NOTE] 指定されていないすべてのメソッドは、 app モジュールの ready イベントが発生した後にのみ使用できます。 protocol をカスタムの partition や session で使用する ​ プロトコルは特定の Electron の session オブジェクトに登録されます。 セッションを指定しない場合は、Electron が使用するデフォルトセッションに protocol が適用されます。 ただし、 browserWindow の webPreferences に partition または session を定義すると、そのウィンドウに electron.protocol.XXX を使用しただけでは別のセッションやカスタムプロトコルは機能しません。 カスタムプロトコルをカスタムセッションと組み合わせて機能させるには、それを明示的にそのセッションに登録する必要があります。 const { app , BrowserWindow , net , protocol , session } = require ( 'electron' ) const path = require ( 'node:path' ) const url = require ( 'node:url' ) app . whenReady ( ) . then ( ( ) => { const partition = 'persist:example' const ses = session . fromPartition ( partition ) ses . protocol . handle ( 'atom' , ( request ) => { const filePath = request . url . slice ( 'atom://' . length ) return net . fetch ( url . pathToFileURL ( path . resolve ( __dirname , filePath ) ) . toString ( ) ) } ) const mainWindow = new BrowserWindow ( { webPreferences : { partition } } ) } ) Protocol names ​ RFC 3986 defines what a valid protocol name is: Scheme names consist of a sequence of characters beginning with a letter and followed by any combination of letters, digits, plus ("+"), period ("."), or hyphen ("-"). Although schemes are case-insensitive, the canonical form is lowercase […]. メソッド ​ protocol モジュールには以下のメソッドがあります。 protocol.registerSchemesAsPrivileged(customSchemes) ​ * customSchemes CustomScheme[] [!NOTE] このメソッドは、 app モジュールの ready イベントが発行される前にのみ使用でき、一度だけ呼び出すことができます。 scheme を標準の安全なものとして登録し、リソースに対するコンテンツセキュリティポリシーをバイパスし、ServiceWorker を登録し、fetch API、video/audio のストリーミングと V8 のコードキャッシュをサポートします。 機能を有効にするには、 true の値で特権を指定します。 以下はコンテンツセキュリティポリシーをバイパスする特権スキームを登録する例です。 const { protocol } = require ( 'electron' ) protocol . registerSchemesAsPrivileged ( [ { scheme : 'foo' , privileges : { bypassCSP : true } } ] ) 標準スキームは、RFC 3986 で Generic URI Syntax と呼ぶものに準拠しています。 例えば http と https は標準スキームですが、 file はそうではありません。 スキームを標準として登録することにより、サービスが提供されるときに相対的および絶対的なリソースが正しく解決されます。 そうでないと、スキームは file プロトコルのように動作しますが、相対 URL を解決することはできません。 たとえば、標準スキームとして登録せずにカスタムプロトコルで以下のページをロードすると、非標準スキームが相対URLを認識できないため、イメージはロードされません。 < body > < img src = ' test.png ' > </ body > スキームを標準として登録すると、 FileSystem API を介してファイルにアクセスできます。 そうしない場合、レンダラーはスキームのセキュリティエラーをスローします。 デフォルトの非標準スキームでは、ウェブストレージ API (localStorage、sessionStorage、webSQL、indexedDB、クッキー) が無効にされます。 そのため、一般的に、カスタムプロトコルを登録して http プロトコルを置き換える場合は、標準のスキームとして登録する必要があります。 (http やストリームプロトコルなどの、) ストリームを使用するプロトコルは、 stream: true を設定する必要があります。 <video> および <audio> の HTML 要素は、デフォルトでプロトコルが応答をバッファリングすることを想定しています。 stream フラグは、ストリーミング応答を期待する これらの要素を正しく設定します。 protocol.handle(scheme, handler) ​ * scheme string - 処理するスキームで、例えば https や my-app などです。 これは URL の : の前の部分です。 * handler Function< GlobalResponse | Promise<GlobalResponse>> * request GlobalRequest scheme のプロトコルハンドラを登録します。 このスキームが付いた URL へのリクエストはこのハンドラに委譲され、どのようなレスポンスを送るべきかが決定されます。 Response または Promise<Response> のいずれかを返せます。 サンプル: const { app , net , protocol } = require ( 'electron' ) const path = require ( 'node:path' ) const { pathToFileURL } = require ( 'node:url' ) protocol . registerSchemesAsPrivileged ( [ { scheme : 'app' , privileges : { standard : true , secure : true , supportFetchAPI : true } } ] ) app . whenReady ( ) . then ( ( ) => { protocol . handle ( 'app' , ( req ) => { const { host , pathname } = new URL ( req . url ) if ( host === 'bundle' ) { if ( pathname === '/' ) { return new Response ( '<h1>hello, world</h1>' , { headers : { 'content-type' : 'text/html' } } ) } // 注意、これはバンドルをエスケープする以下のようなパスをチェックしています。 // app://bundle/../../secret_file.txt const pathToServe = path . resolve ( __dirname , pathname ) const relativePath = path . relative ( __dirname , pathToServe ) const isSafe = relativePath && ! relativePath . startsWith ( '..' ) && ! path . isAbsolute ( relativePath ) if ( ! isSafe ) { return new Response ( 'bad' , { status : 400 , headers : { 'content-type' : 'text/html' } } ) } return net . fetch ( pathToFileURL ( pathToServe ) . toString ( ) ) } else if ( host === 'api' ) { return net . fetch ( 'https://api.my-server.com/' + pathname , { method : req . method , headers : req . headers , body : req . body } ) } } ) } ) 詳細については、 Request および Response に関する MDN のドキュメントをご参照ください。 protocol.unhandle(scheme) ​ * scheme string - ハンドラを除去するスキーム。 protocol.handle で登録したプロトコルハンドラを除去します。 protocol.isProtocolHandled(scheme) ​ * scheme string 戻り値 boolean - scheme がすでにハンドリングされているかどうか。 protocol.registerFileProtocol(scheme, handler) 非推奨 ​ History Version(s) Changes None protocol.register*Protocol および protocol.intercept*Protocol メソッドは protocol.handle に置き換えられました * scheme string * handler Function * request ProtocolRequest * callback Function * response (string | ProtocolResponse ) 戻り値 boolean - protocol が正常に登録されたかどうか ファイルをレスポンスとして送信する scheme のプロトコルを登録します。 handler は request と callback で呼び出されます。この request は scheme の接続リクエストです。 request を処理するには、 callback を、ファイルのパスまたは path プロパティを持つオブジェクトのいずれかを使用して、例えば、 callback(filePath) や callback({ path: filePath }) で呼び出す必要があります。 filePath は絶対パスでなければなりません。 デフォルトでは、 scheme は http: のように扱われます。これは、 file: のような "Generic URI Syntax" に従うプロトコルとは違った解析がなされます。 protocol.registerBufferProtocol(scheme, handler) 非推奨 ​ History Version(s) Changes None protocol.register*Protocol および protocol.intercept*Protocol メソッドは protocol.handle に置き換えられました * scheme string * handler Function * request ProtocolRequest * callback Function * response (Buffer | ProtocolResponse ) 戻り値 boolean - protocol が正常に登録されたかどうか Buffer をレスポンスとして送信する scheme のプロトコルを登録します。 使い方は registerFileProtocol と同じですが、 callback を、 Buffer オブジェクトか data プロパティを持つオブジェクトで呼び出す必要があります。 サンプル: protocol . registerBufferProtocol ( 'atom' , ( request , callback ) => { callback ( { mimeType : 'text/html' , data : Buffer . from ( '<h5>Response</h5>' ) } ) } ) protocol.registerStringProtocol(scheme, handler) 非推奨 ​ History Version(s) Changes None protocol.register*Protocol および protocol.intercept*Protocol メソッドは protocol.handle に置き換えられました * scheme string * handler Function * request ProtocolRequest * callback Function * response (string | ProtocolResponse ) 戻り値 boolean - protocol が正常に登録されたかどうか string をレスポンスとして送信する scheme のプロトコルを登録します。 使い方は registerFileProtocol と同じですが、 callback を、 string か data プロパティを持つオブジェクトで呼び出す必要があります。 protocol.registerHttpProtocol(scheme, handler) 非推奨 ​ History Version(s) Changes None protocol.register*Protocol および protocol.intercept*Protocol メソッドは protocol.handle に置き換えられました * scheme string * handler Function * request ProtocolRequest * callback Function * response ProtocolResponse 戻り値 boolean - protocol が正常に登録されたかどうか HTTP リクエストをレスポンスとして送信する scheme のプロトコルを登録します。 使い方は registerFileProtocol と同じですが、 callback を、 url プロパティを持つオブジェクトで呼び出す必要があります。 protocol.registerStreamProtocol(scheme, handler) 非推奨 ​ History Version(s) Changes None protocol.register*Protocol および protocol.intercept*Protocol メソッドは protocol.handle に置き換えられました * scheme string * handler Function * request ProtocolRequest * callback Function * response (ReadableStream | ProtocolResponse ) 戻り値 boolean - protocol が正常に登録されたかどうか ストリームをレスポンスとして送信する scheme のプロトコルを登録します。 使用法は registerFileProtocol と同じですが、 callback は ReadableStream オブジェクト、または data プロパティを持つオブジェクトのいずれかで呼び出す必要がある点が異なります。 サンプル: const { protocol } = require ( 'electron' ) const { PassThrough } = require ( 'node:stream' ) function createStream ( text ) { const rv = new PassThrough ( ) // PassThrough は Readable なストリームでもあります rv . push ( text ) rv . push ( null ) return rv } protocol . registerStreamProtocol ( 'atom' , ( request , callback ) => { callback ( { statusCode : 200 , headers : { 'content-type' : 'text/html' } , data : createStream ( '<h5>Response</h5>' ) } ) } ) Readable ストリーム API ( data / end / error イベントが発生するもの) を実装するオブジェクトを渡すことが可能です。 例として、ファイルを返す方法を以下に示します。 protocol . registerStreamProtocol ( 'atom' , ( request , callback ) => { callback ( fs . createReadStream ( 'index.html' ) ) } ) protocol.unregisterProtocol(scheme) 非推奨 ​ History Version(s) Changes None protocol.register*Protocol および protocol.intercept*Protocol メソッドは protocol.handle に置き換えられました * scheme string 戻り値 boolean - protocol が正常に登録解除されたかどうか scheme のカスタムプロトコルを登録解除します。 protocol.isProtocolRegistered(scheme) 非推奨 ​ History Version(s) Changes None protocol.register*Protocol および protocol.intercept*Protocol メソッドは protocol.handle に置き換えられました * scheme string 戻り値 boolean - scheme がすでに登録されているかどうか。 protocol.interceptFileProtocol(scheme, handler) 非推奨 ​ History Version(s) Changes None protocol.register*Protocol および protocol.intercept*Protocol メソッドは protocol.handle に置き換えられました * scheme string * handler Function * request ProtocolRequest * callback Function * response (string | ProtocolResponse ) 戻り値 boolean - protocol が正常に割り込みされたかどうか scheme プロトコルを傍受し、ファイルをレスポンスとして送信するプロトコルの新しいハンドラとして handler を使用します。 protocol.interceptStringProtocol(scheme, handler) 非推奨 ​ History Version(s) Changes None protocol.register*Protocol および protocol.intercept*Protocol メソッドは protocol.handle に置き換えられました * scheme string * handler Function * request ProtocolRequest * callback Function * response (string | ProtocolResponse ) 戻り値 boolean - protocol が正常に割り込みされたかどうか scheme プロトコルを傍受し、 string をレスポンスとして送信するプロトコルの新しいハンドラとして handler を使用します。 protocol.interceptBufferProtocol(scheme, handler) 非推奨 ​ History Version(s) Changes None protocol.register*Protocol および protocol.intercept*Protocol メソッドは protocol.handle に置き換えられました * scheme string * handler Function * request ProtocolRequest * callback Function * response (Buffer | ProtocolResponse ) 戻り値 boolean - protocol が正常に割り込みされたかどうか scheme プロトコルを傍受し、 Buffer をレスポンスとして送信するプロトコルの新しいハンドラとして handler を使用します。 protocol.interceptHttpProtocol(scheme, handler) 非推奨 ​ History Version(s) Changes None protocol.register*Protocol および protocol.intercept*Protocol メソッドは protocol.handle に置き換えられました * scheme string * handler Function * request ProtocolRequest * callback Function * response ProtocolResponse 戻り値 boolean - protocol が正常に割り込みされたかどうか scheme プロトコルを傍受し、新しい HTTP リクエストをレスポンスとして送信するプロトコルの新しいハンドラとして handler を使用します。 protocol.interceptStreamProtocol(scheme, handler) 非推奨 ​ History Version(s) Changes None protocol.register*Protocol および protocol.intercept*Protocol メソッドは protocol.handle に置き換えられました * scheme string * handler Function * request ProtocolRequest * callback Function * response (ReadableStream | ProtocolResponse ) 戻り値 boolean - protocol が正常に割り込みされたかどうか protocol.registerStreamProtocol と同じですが、既存のプロトコルハンドラを置き換える点が異なります。 protocol.uninterceptProtocol(scheme) 非推奨 ​ History Version(s) Changes None protocol.register*Protocol および protocol.intercept*Protocol メソッドは protocol.handle に置き換えられました * scheme string 戻り値 boolean - protocol が正常に割り込み解除されたかどうか scheme のためにインストールされた傍受するハンドラを削除し、元のハンドラを復元します。 protocol.isProtocolIntercepted(scheme) 非推奨 ​ History Version(s) Changes None protocol.register*Protocol および protocol.intercept*Protocol メソッドは protocol.handle に置き換えられました * scheme string 戻り値 boolean - scheme がすでにインターセプトされているかどうか。 このページを編集 前 process 次 pushNotifications * protocol をカスタムの partition や session で使用する * Protocol names * メソッド * registerSchemesAsPrivileged * handle * unhandle * isProtocolHandled * registerFileProtocol * registerBufferProtocol * registerStringProtocol * registerHttpProtocol * registerStreamProtocol * unregisterProtocol * isProtocolRegistered * interceptFileProtocol * interceptStringProtocol * interceptBufferProtocol * interceptHttpProtocol * interceptStreamProtocol * uninterceptProtocol * isProtocolIntercepted ドキュメント * 始めましょう * API リファレンス チェックリスト * パフォーマンス * セキュリティ ツール * Electron Forge * Electron Fiddle コミュニティ * ガバナンス * リソース * Discord * Bluesky * X * Mastodon * Stack Overflow その他 * GitHub * Open Collective * Infrastructure Dashboard Copyright OpenJS Foundation and Electron contributors. All rights reserved. The OpenJS Foundation has registered trademarks and uses trademarks. For a list of trademarks of the OpenJS Foundation , please see our Trademark Policy and Trademark List . Trademarks and logos not indicated on the list of OpenJS Foundation trademarks are trademarks™ or registered® trademarks of their respective holders. Use of them does not imply any affiliation with or endorsement by them. The OpenJS Foundation | Terms of Use | Privacy Policy | Bylaws | Code of Conduct | Trademark Policy | Trademark List | Cookie Policy Hosting and infrastructure graciously provided by

Links found on this page

  1. メインコンテンツへ飛ぶ [direct]
  2. Electron [direct]
  3. ドキュメント [direct]
  4. API [direct]
  5. ブログ [direct]
  6. Electron Forge [direct]
  7. Electron Fiddle [direct]
  8. ガバナンス [direct]
  9. 事例紹介 [direct]
  10. リソース [direct]
  11. リリース [direct]
  12. English [direct]
  13. Deutsch [direct]
  14. Español [direct]
  15. Français [direct]
  16. Português [direct]
  17. Русский [direct]
  18. 中文 [direct]
  19. autoUpdater [direct]
  20. BaseWindow [direct]
  21. BrowserView Deprecated [direct]
  22. BrowserWindow [direct]
  23. clipboard [direct]
  24. contentTracing [direct]
  25. crashReporter [direct]
  26. desktopCapturer [direct]
  27. dialog [direct]
  28. globalShortcut [direct]
  29. ImageView [direct]
  30. inAppPurchase [direct]
  31. ipcMain [direct]
  32. Menu [direct]
  33. MenuItem [direct]
  34. MessageChannelMain [direct]
  35. MessagePortMain [direct]
  36. nativeImage [direct]
  37. nativeTheme [direct]
  38. net [direct]
  39. netLog [direct]
  40. Notification [direct]
  41. powerMonitor [direct]
  42. powerSaveBlocker [direct]
  43. process [direct]
  44. pushNotifications [direct]
  45. safeStorage [direct]
  46. screen [direct]
  47. session [direct]
  48. sharedTexture [direct]
  49. ShareMenu [direct]
  50. shell [direct]
  51. systemPreferences [direct]
  52. TouchBar [direct]
  53. Tray [direct]
  54. utilityProcess [direct]
  55. webContents [direct]
  56. WebContentsView [direct]
  57. webFrameMain [direct]
  58. 表示 [direct]
  59. カスタム DOM 要素 [direct]
  60. Chromium と Node.js [direct]
  61. クラス [direct]
  62. API の構造体 [direct]
  63. メイン [direct]
  64. RFC 3986 [direct]
  65. CustomScheme[] [direct]
  66. Generic URI Syntax [direct]
  67. FileSystem API [direct]
  68. GlobalResponse [direct]
  69. Request [direct]
  70. Response [direct]
  71. protocol.register*Protocol および protocol.intercept*Protocol メソッドは protocol.handle に置き換えられました [direct]
  72. ProtocolRequest [direct]
  73. ProtocolResponse [direct]
  74. ReadableStream [direct]
  75. このページを編集 [direct]
  76. パフォーマンス [direct]
  77. セキュリティ [direct]
  78. Discord [direct]
  79. Bluesky [direct]
  80. X [direct]