-
-
Notifications
You must be signed in to change notification settings - Fork 80
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix fetch module definition for Fastboot
Define fetch module with a setupFastboot method export to set host and protocol for every instance. Rename public/fastboot-fetch.js to public/fetch-fastboot.js to avoid lower version ember-fetch overwrite this file. Overrides treeForPublic in index.js to only include public asset if top level addon to avoid any future rename.
- Loading branch information
Showing
7 changed files
with
109 additions
and
63 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
/* globals define FastBoot */ | ||
define('fetch', ['exports'], function(exports) { | ||
var httpRegex = /^https?:\/\//; | ||
var protocolRelativeRegex = /^\/\//; | ||
|
||
var AbortControllerPolyfill = FastBoot.require( | ||
'abortcontroller-polyfill/dist/cjs-ponyfill' | ||
); | ||
var nodeFetch = FastBoot.require('node-fetch'); | ||
|
||
/** | ||
* Build the absolute url if it's not, can handle: | ||
* - protocol-relative URL (//can-be-http-or-https.com/) | ||
* - path-relative URL (/file/under/root) | ||
* | ||
* @param {string} url | ||
* @param {string} protocol | ||
* @param {string} host | ||
* @returns {string} | ||
*/ | ||
function buildAbsoluteUrl(url, protocol, host) { | ||
if (protocolRelativeRegex.test(url)) { | ||
url = host + url; | ||
} else if (!httpRegex.test(url)) { | ||
if (!host) { | ||
throw new Error( | ||
'You are using using fetch with a path-relative URL, but host is missing from Fastboot request. Please set the hostWhitelist property in your environment.js.' | ||
); | ||
} | ||
url = protocol + '//' + host + url; | ||
} | ||
return url; | ||
} | ||
|
||
var FastbootHost, FastbootProtocol; | ||
|
||
/** | ||
* Isomorphic `fetch` API for both browser and fastboot | ||
* | ||
* node-fetch doesn't allow relative URLs, we patch it with Fastboot runtime info. | ||
* Before instance-initializers Absolute URL is still not allowed, in this case | ||
* node-fetch will throw error. | ||
* `FastbootProtocol` and `FastbootHost` are re-set for every instance during its | ||
* initializers through calling `setupFastboot`. | ||
* | ||
* @param {String|Object} input | ||
* @param {Object} [options] | ||
*/ | ||
exports.default = function fetch(input, options) { | ||
if (typeof input === 'object') { | ||
input.url = buildAbsoluteUrl(input.url, FastbootProtocol, FastbootHost); | ||
} else { | ||
input = buildAbsoluteUrl(input, FastbootProtocol, FastbootHost); | ||
} | ||
return nodeFetch(input, options); | ||
}; | ||
/** | ||
* Assign the local protocol and host being used for building absolute URLs | ||
* @private | ||
*/ | ||
exports.setupFastboot = function setupFastboot(protocol, host) { | ||
FastbootProtocol = protocol; | ||
FastbootHost = host; | ||
} | ||
exports.Request = nodeFetch.Request; | ||
exports.Headers = nodeFetch.Headers; | ||
exports.Response = nodeFetch.Response; | ||
exports.AbortController = AbortControllerPolyfill.AbortController; | ||
}); | ||
|
||
define('fetch/ajax', ['exports'], function() { | ||
throw new Error( | ||
'You included `fetch/ajax` but it was renamed to `ember-fetch/ajax`' | ||
); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters