mirror of
https://github.com/graphql-python/graphene-django.git
synced 2025-07-12 09:12:18 +03:00
Use SRI-stable artifacts for GraphiQL resources
This commit is contained in:
parent
58bd623263
commit
e9c1421462
|
@ -1,43 +1,55 @@
|
||||||
(function (
|
(function (
|
||||||
document,
|
document,
|
||||||
|
|
||||||
GRAPHENE_SETTINGS,
|
GRAPHENE_SETTINGS,
|
||||||
GraphiQL,
|
GraphiQL,
|
||||||
React,
|
React,
|
||||||
ReactDOM,
|
ReactDOM,
|
||||||
SubscriptionsTransportWs,
|
SubscriptionsTransportWs,
|
||||||
|
fetch,
|
||||||
history,
|
history,
|
||||||
location,
|
location,
|
||||||
) {
|
) {
|
||||||
// Parse the cookie value for a CSRF token
|
// Parse the cookie value for a CSRF token
|
||||||
var csrftoken;
|
var csrftoken;
|
||||||
var cookies = ('; ' + document.cookie).split('; csrftoken=');
|
var cookies = ("; " + document.cookie).split("; csrftoken=");
|
||||||
if (cookies.length == 2) {
|
if (cookies.length == 2) {
|
||||||
csrftoken = cookies.pop().split(';').shift();
|
csrftoken = cookies.pop().split(";").shift();
|
||||||
} else {
|
} else {
|
||||||
csrftoken = document.querySelector("[name=csrfmiddlewaretoken]").value;
|
csrftoken = document.querySelector("[name=csrfmiddlewaretoken]").value;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Collect the URL parameters
|
// Collect the URL parameters
|
||||||
var parameters = {};
|
var parameters = {};
|
||||||
location.hash.substr(1).split('&').forEach(function (entry) {
|
location.hash
|
||||||
var eq = entry.indexOf('=');
|
.substr(1)
|
||||||
|
.split("&")
|
||||||
|
.forEach(function (entry) {
|
||||||
|
var eq = entry.indexOf("=");
|
||||||
if (eq >= 0) {
|
if (eq >= 0) {
|
||||||
parameters[decodeURIComponent(entry.slice(0, eq))] =
|
parameters[decodeURIComponent(entry.slice(0, eq))] = decodeURIComponent(
|
||||||
decodeURIComponent(entry.slice(eq + 1));
|
entry.slice(eq + 1),
|
||||||
|
);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
// Produce a Location fragment string from a parameter object.
|
// Produce a Location fragment string from a parameter object.
|
||||||
function locationQuery(params) {
|
function locationQuery(params) {
|
||||||
return '#' + Object.keys(params).map(function (key) {
|
return (
|
||||||
return encodeURIComponent(key) + '=' +
|
"#" +
|
||||||
encodeURIComponent(params[key]);
|
Object.keys(params)
|
||||||
}).join('&');
|
.map(function (key) {
|
||||||
|
return (
|
||||||
|
encodeURIComponent(key) + "=" + encodeURIComponent(params[key])
|
||||||
|
);
|
||||||
|
})
|
||||||
|
.join("&")
|
||||||
|
);
|
||||||
}
|
}
|
||||||
// Derive a fetch URL from the current URL, sans the GraphQL parameters.
|
// Derive a fetch URL from the current URL, sans the GraphQL parameters.
|
||||||
var graphqlParamNames = {
|
var graphqlParamNames = {
|
||||||
query: true,
|
query: true,
|
||||||
variables: true,
|
variables: true,
|
||||||
operationName: true
|
operationName: true,
|
||||||
};
|
};
|
||||||
var otherParams = {};
|
var otherParams = {};
|
||||||
for (var k in parameters) {
|
for (var k in parameters) {
|
||||||
|
@ -51,20 +63,22 @@
|
||||||
// Defines a GraphQL fetcher using the fetch API.
|
// Defines a GraphQL fetcher using the fetch API.
|
||||||
function httpClient(graphQLParams) {
|
function httpClient(graphQLParams) {
|
||||||
var headers = {
|
var headers = {
|
||||||
'Accept': 'application/json',
|
Accept: "application/json",
|
||||||
'Content-Type': 'application/json'
|
"Content-Type": "application/json",
|
||||||
};
|
};
|
||||||
if (csrftoken) {
|
if (csrftoken) {
|
||||||
headers['X-CSRFToken'] = csrftoken;
|
headers["X-CSRFToken"] = csrftoken;
|
||||||
}
|
}
|
||||||
return fetch(fetchURL, {
|
return fetch(fetchURL, {
|
||||||
method: 'post',
|
method: "post",
|
||||||
headers: headers,
|
headers: headers,
|
||||||
body: JSON.stringify(graphQLParams),
|
body: JSON.stringify(graphQLParams),
|
||||||
credentials: 'include',
|
credentials: "include",
|
||||||
}).then(function (response) {
|
})
|
||||||
|
.then(function (response) {
|
||||||
return response.text();
|
return response.text();
|
||||||
}).then(function (responseBody) {
|
})
|
||||||
|
.then(function (responseBody) {
|
||||||
try {
|
try {
|
||||||
return JSON.parse(responseBody);
|
return JSON.parse(responseBody);
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
|
@ -157,7 +171,7 @@
|
||||||
onEditVariables: onEditVariables,
|
onEditVariables: onEditVariables,
|
||||||
onEditOperationName: onEditOperationName,
|
onEditOperationName: onEditOperationName,
|
||||||
query: parameters.query,
|
query: parameters.query,
|
||||||
}
|
};
|
||||||
if (parameters.variables) {
|
if (parameters.variables) {
|
||||||
options.variables = parameters.variables;
|
options.variables = parameters.variables;
|
||||||
}
|
}
|
||||||
|
@ -167,15 +181,17 @@
|
||||||
// Render <GraphiQL /> into the body.
|
// Render <GraphiQL /> into the body.
|
||||||
ReactDOM.render(
|
ReactDOM.render(
|
||||||
React.createElement(GraphiQL, options),
|
React.createElement(GraphiQL, options),
|
||||||
document.getElementById("editor")
|
document.getElementById("editor"),
|
||||||
);
|
);
|
||||||
})(
|
})(
|
||||||
document,
|
document,
|
||||||
|
|
||||||
window.GRAPHENE_SETTINGS,
|
window.GRAPHENE_SETTINGS,
|
||||||
window.GraphiQL,
|
window.GraphiQL,
|
||||||
window.React,
|
window.React,
|
||||||
window.ReactDOM,
|
window.ReactDOM,
|
||||||
window.SubscriptionsTransportWs,
|
window.SubscriptionsTransportWs,
|
||||||
|
window.fetch,
|
||||||
window.history,
|
window.history,
|
||||||
window.location,
|
window.location,
|
||||||
);
|
);
|
||||||
|
|
|
@ -21,7 +21,7 @@ add "&raw" to the end of the URL within a browser.
|
||||||
integrity="{{graphiql_css_sri}}"
|
integrity="{{graphiql_css_sri}}"
|
||||||
rel="stylesheet"
|
rel="stylesheet"
|
||||||
crossorigin="anonymous" />
|
crossorigin="anonymous" />
|
||||||
<script src="https://cdn.jsdelivr.net/npm/whatwg-fetch@{{whatwg_fetch_version}}/fetch.min.js"
|
<script src="https://cdn.jsdelivr.net/npm/whatwg-fetch@{{whatwg_fetch_version}}/dist/fetch.umd.js"
|
||||||
integrity="{{whatwg_fetch_sri}}"
|
integrity="{{whatwg_fetch_sri}}"
|
||||||
crossorigin="anonymous"></script>
|
crossorigin="anonymous"></script>
|
||||||
<script src="https://cdn.jsdelivr.net/npm/react@{{react_version}}/umd/react.production.min.js"
|
<script src="https://cdn.jsdelivr.net/npm/react@{{react_version}}/umd/react.production.min.js"
|
||||||
|
@ -33,7 +33,7 @@ add "&raw" to the end of the URL within a browser.
|
||||||
<script src="https://cdn.jsdelivr.net/npm/graphiql@{{graphiql_version}}/graphiql.min.js"
|
<script src="https://cdn.jsdelivr.net/npm/graphiql@{{graphiql_version}}/graphiql.min.js"
|
||||||
integrity="{{graphiql_sri}}"
|
integrity="{{graphiql_sri}}"
|
||||||
crossorigin="anonymous"></script>
|
crossorigin="anonymous"></script>
|
||||||
<script src="https://cdn.jsdelivr.net/npm/subscriptions-transport-ws@{{subscriptions_transport_ws_version}}/browser/client.min.js"
|
<script src="https://cdn.jsdelivr.net/npm/subscriptions-transport-ws@{{subscriptions_transport_ws_version}}/browser/client.js"
|
||||||
integrity="{{subscriptions_transport_ws_sri}}"
|
integrity="{{subscriptions_transport_ws_sri}}"
|
||||||
crossorigin="anonymous"></script>
|
crossorigin="anonymous"></script>
|
||||||
</head>
|
</head>
|
||||||
|
|
|
@ -56,7 +56,7 @@ class GraphQLView(View):
|
||||||
|
|
||||||
# Polyfill for window.fetch.
|
# Polyfill for window.fetch.
|
||||||
whatwg_fetch_version = "3.2.0"
|
whatwg_fetch_version = "3.2.0"
|
||||||
whatwg_fetch_sri = "sha256-OdOTEWtaemRcFdpGZD+NWFkiCZgo5s6LU3kIT3w2iQk="
|
whatwg_fetch_sri = "sha256-l6HCB9TT2v89oWbDdo2Z3j+PSVypKNLA/nqfzSbM8mo="
|
||||||
|
|
||||||
# React and ReactDOM.
|
# React and ReactDOM.
|
||||||
react_version = "16.13.1"
|
react_version = "16.13.1"
|
||||||
|
@ -71,7 +71,7 @@ class GraphQLView(View):
|
||||||
# The websocket transport library for subscriptions.
|
# The websocket transport library for subscriptions.
|
||||||
subscriptions_transport_ws_version = "0.9.17"
|
subscriptions_transport_ws_version = "0.9.17"
|
||||||
subscriptions_transport_ws_sri = (
|
subscriptions_transport_ws_sri = (
|
||||||
"sha256-AYkMMCvLy9lmI+vvCqO5sVM40CeY6Bf+EdulzGlwTXI="
|
"sha256-kCDzver8iRaIQ/SVlfrIwxaBQ/avXf9GQFJRLlErBnk="
|
||||||
)
|
)
|
||||||
|
|
||||||
schema = None
|
schema = None
|
||||||
|
|
Loading…
Reference in New Issue
Block a user