Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Segment url intercepts for fetch-based Segment JS API #1365

Merged
merged 1 commit into from
Aug 29, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 18 additions & 12 deletions lms/templates/widgets/segment-io.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,25 @@
% if settings.LMS_SEGMENT_KEY and settings.LMS_SEGMENT_SITE:
## begin Copy from edx-platform/cms/templates/widgets/segment-io.html
## Appsembler: begin Segment Site
<script>
!function(){
var realOpen = XMLHttpRequest.prototype.open;
var originalAPI = '${settings.SEGMENT_ORIGINAL_API}';
var replicateAPI = '${settings.SEGMENT_REPLICATE_API}';
XMLHttpRequest.prototype.open = function() {
if (arguments[1].substr(0, originalAPI.length) === originalAPI) {
arguments[1] = replicateAPI + arguments[1].substr(originalAPI.length);
<script type="text/javascript">
!function(){
var originalAPI = '${settings.SEGMENT_ORIGINAL_API}';
var replicateAPI = '${settings.SEGMENT_REPLICATE_API}';
function replaceFetchResourceForSegmentSite(resource){
if (resource.substr(0, originalAPI.length) === originalAPI) {
resource = replicateAPI + resource.substr(originalAPI.length);
}
return realOpen.apply(this, arguments);
};
}();
</script>
return resource;
}
const { fetch: originalFetch } = window;
window.fetch = async (...args) => {
let [resource, config ] = args;
resource = replaceFetchResourceForSegmentSite(resource);
const response = await originalFetch(resource, config);
return response;
};
}();
</script>
## Appsembler: end Segment Site
## end Copy
% endif
Expand Down
Loading