fetcher/graphql.js

  1. /*
  2. Copyright 2023 Yarmo Mackenbach
  3. Licensed under the Apache License, Version 2.0 (the "License");
  4. you may not use this file except in compliance with the License.
  5. You may obtain a copy of the License at
  6. http://www.apache.org/licenses/LICENSE-2.0
  7. Unless required by applicable law or agreed to in writing, software
  8. distributed under the License is distributed on an "AS IS" BASIS,
  9. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  10. See the License for the specific language governing permissions and
  11. limitations under the License.
  12. */
  13. /**
  14. * Fetch proofs using GraphQL queries
  15. * @module fetcher/graphql
  16. * @example
  17. * import { fetcher } from 'doipjs';
  18. * const data = await fetcher.graphql.fn({ url: 'https://domain.example/graphql/v2', query: '{ "query": "..." }' });
  19. */
  20. import axios from 'axios'
  21. import { version } from '../constants.js'
  22. /**
  23. * Default timeout after which the fetch is aborted
  24. * @constant
  25. * @type {number}
  26. * @default 5000
  27. */
  28. export const timeout = 5000
  29. /**
  30. * Execute a GraphQL query via HTTP request
  31. * @function
  32. * @param {object} data - Data used in the request
  33. * @param {string} data.url - The URL pointing at the GraphQL HTTP endpoint
  34. * @param {string} data.query - The GraphQL query to fetch the data containing the proof
  35. * @param {number} [data.fetcherTimeout] - Optional timeout for the fetcher
  36. * @param {import('../types').VerificationConfig} [opts] - Options used to enable the request
  37. * @returns {Promise<object>} The fetched GraphQL object
  38. */
  39. export async function fn (data, opts) {
  40. let timeoutHandle
  41. const timeoutPromise = new Promise((resolve, reject) => {
  42. timeoutHandle = setTimeout(
  43. () => reject(new Error('Request was timed out')),
  44. data.fetcherTimeout ? data.fetcherTimeout : timeout
  45. )
  46. })
  47. const fetchPromise = new Promise((resolve, reject) => {
  48. if (!data.url) {
  49. reject(new Error('No valid URI provided'))
  50. return
  51. }
  52. let jsonData
  53. try {
  54. jsonData = JSON.parse(data.query)
  55. } catch (error) {
  56. reject(new Error('Invalid GraphQL query object'))
  57. }
  58. axios.post(data.url, jsonData, {
  59. headers: {
  60. 'Content-Type': 'application/json',
  61. // @ts-ignore
  62. 'User-Agent': `doipjs/${version}`
  63. },
  64. validateStatus: function (status) {
  65. return status >= 200 && status < 400
  66. }
  67. })
  68. .then(res => {
  69. resolve(res.data)
  70. })
  71. .catch(e => {
  72. reject(e)
  73. })
  74. })
  75. return Promise.race([fetchPromise, timeoutPromise]).finally(() => {
  76. clearTimeout(timeoutHandle)
  77. })
  78. }