summaryrefslogtreecommitdiffstats
path: root/devtools/client/netmonitor/src/actions/http-custom-request.js
diff options
context:
space:
mode:
Diffstat (limited to 'devtools/client/netmonitor/src/actions/http-custom-request.js')
-rw-r--r--devtools/client/netmonitor/src/actions/http-custom-request.js128
1 files changed, 128 insertions, 0 deletions
diff --git a/devtools/client/netmonitor/src/actions/http-custom-request.js b/devtools/client/netmonitor/src/actions/http-custom-request.js
new file mode 100644
index 0000000000..e045107410
--- /dev/null
+++ b/devtools/client/netmonitor/src/actions/http-custom-request.js
@@ -0,0 +1,128 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
+
+"use strict";
+
+const {
+ OPEN_ACTION_BAR,
+ SELECT_ACTION_BAR_TAB,
+ PANELS,
+ RIGHT_CLICK_REQUEST,
+ PRESELECT_REQUEST,
+} = require("resource://devtools/client/netmonitor/src/constants.js");
+
+const {
+ selectRequest,
+} = require("resource://devtools/client/netmonitor/src/actions/selection.js");
+
+const {
+ openNetworkDetails,
+} = require("resource://devtools/client/netmonitor/src/actions/ui.js");
+
+const {
+ getRequestById,
+ getRequestByChannelId,
+} = require("resource://devtools/client/netmonitor/src/selectors/index.js");
+
+const {
+ fetchNetworkUpdatePacket,
+} = require("resource://devtools/client/netmonitor/src/utils/request-utils.js");
+
+/**
+ * Open the entire HTTP Custom Request panel
+ * @returns {Function}
+ */
+function openHTTPCustomRequest(isOpen) {
+ return ({ dispatch, getState }) => {
+ dispatch({ type: OPEN_ACTION_BAR, open: isOpen });
+
+ dispatch({
+ type: SELECT_ACTION_BAR_TAB,
+ id: PANELS.HTTP_CUSTOM_REQUEST,
+ });
+ };
+}
+
+/**
+ * Toggle visibility of New Custom Request panel in network panel
+ */
+function toggleHTTPCustomRequestPanel() {
+ return ({ dispatch, getState }) => {
+ const state = getState();
+
+ const shouldClose =
+ state.ui.networkActionOpen &&
+ state.ui.selectedActionBarTabId === PANELS.HTTP_CUSTOM_REQUEST;
+ dispatch({ type: OPEN_ACTION_BAR, open: !shouldClose });
+
+ // reset the right clicked request
+ dispatch({ type: RIGHT_CLICK_REQUEST, id: null });
+
+ dispatch({
+ type: SELECT_ACTION_BAR_TAB,
+ id: PANELS.HTTP_CUSTOM_REQUEST,
+ });
+ };
+}
+
+/**
+ * Send a new HTTP request using the data in the custom request form.
+ */
+function sendHTTPCustomRequest(request) {
+ return async ({ dispatch, getState, connector, commands }) => {
+ if (!request) {
+ return;
+ }
+
+ // Fetch request headers and post data from the backend, if needed.
+ // This is only needed if we are resending a request without editing.
+
+ if (request.requestHeadersAvailable || request.requestPostDataAvailable) {
+ await fetchNetworkUpdatePacket(connector.requestData, request, [
+ "requestHeaders",
+ "requestPostData",
+ ]);
+
+ // Get the request again, to get all the updated data
+ request = getRequestById(getState(), request.id);
+ }
+
+ // Send a new HTTP request using the data in the custom request form
+ const data = {
+ cause: request.cause || {},
+ url: request.url,
+ method: request.method,
+ httpVersion: request.httpVersion,
+ };
+
+ if (request.requestHeaders) {
+ data.headers = request.requestHeaders.headers;
+ }
+
+ if (request.requestPostData) {
+ data.body = request.requestPostData.postData?.text;
+ }
+
+ const { channelId } = await commands.networkCommand.sendHTTPRequest(data);
+
+ const newRequest = getRequestByChannelId(getState(), channelId);
+ // If the new custom request is available already select the request, else
+ // preselect the request.
+ if (newRequest) {
+ await dispatch(selectRequest(newRequest.id));
+ } else {
+ await dispatch({
+ type: PRESELECT_REQUEST,
+ id: channelId,
+ });
+ }
+ dispatch(openNetworkDetails(true));
+ };
+}
+
+module.exports = {
+ openHTTPCustomRequest,
+ toggleHTTPCustomRequestPanel,
+ sendHTTPCustomRequest,
+};