Update fetcher.js

This commit is contained in:
Dimitris Grammatikogiannis 2023-08-26 12:42:26 +03:00 committed by GitHub
parent 13d174d1b8
commit 192e86da9b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 87 additions and 109 deletions

View File

@ -1,134 +1,112 @@
/** /**
* Patch testing component for the Joomla! CMS * Patch testing component for the Joomla! CMS
* *
* @copyright Copyright (C) 2011 - 2012 Ian MacLennan, Copyright (C) 2013 - 2018 Open Source Matters, Inc. All rights reserved. * @copyright Copyright (C) 2023 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later * @license GNU General Public License version 2 or later
*/ */
if (typeof jQuery === 'undefined') {
throw new Error('PatchFetcher JavaScript requires jQuery')
}
if (typeof Joomla === 'undefined') { if (typeof Joomla === 'undefined') {
throw new Error('PatchFetcher JavaScript requires the Joomla core JavaScript API') throw new Error('PatchFetcher JavaScript requires the Joomla core JavaScript API')
} }
!function (jQuery, Joomla, window) { const defaultSettings = {
'use strict'; offset: 0,
progress: 0,
lastPage: null,
baseURL: `${Joomla.getOptions('system.paths').baseFull}index.php?option=com_patchtester&tmpl=component&format=json`,
lastPage: null,
};
/** class PatchFetcher {
* Initialize the PatchFetcher object constructor(settings = defaultSettings) {
* this.url = new URL(settings.baseURL);
* @constructor this.offset = settings.offset;
*/ this.progress = settings.progress;
var PatchFetcher = function () { this.lastPage = settings.lastPage;
var offset = null,
progress = null,
path = 'index.php?option=com_patchtester&tmpl=component&format=json',
lastPage = null,
progressBar = jQuery('#progress-bar');
var initialize = function () { this.progressBar = document.getElementById('progress-bar');
offset = 0;
progress = 0;
path = path + '&' + jQuery('#patchtester-token').attr('name') + '=1';
getRequest('startfetch'); this.url.searchParams.append(document.querySelector('#patchtester-token').getAttribute('name'), 1);
}; this.url.searchParams.append('task', `${task}.${task}`);
var getRequest = function (task) { this.request('startfetch');
jQuery.ajax({ }
type: 'GET',
url: path,
data: `task=${task}.${task}`,
dataType: 'json',
success: function (response, textStatus, xhr) {
try {
if (response === null) {
throw textStatus;
}
if (response.error) { request() {
throw response; Joomla.request({
} url: path.toString(),
method: 'GET',
perform: true,
data: `task=${task}.${task}`,
if (response.success === false) { onSuccess: (response) => {
throw response; try {
} if (response === null || response.error || response.success === false) {
throw response;
}
// Store the last page if it is part of this request and not a boolean false // Store the last page if it is part of this request and not a boolean false
if (typeof response.data.lastPage !== 'undefined' && response.data.lastPage !== false) { if (typeof response.data.lastPage !== 'undefined' && response.data.lastPage !== false) {
lastPage = response.data.lastPage; this.lastPage = response.data.lastPage;
} }
// Update the progress bar if we have the data to do so // Update the progress bar if we have the data to do so
if (typeof response.data.page !== 'undefined') { if (typeof response.data.page !== 'undefined') {
progress = (response.data.page / lastPage) * 100; this.progress = (response.data.page / this.lastPage) * 100;
if (progress < 100) { if (progress < 100) {
progressBar.css('width', progress + '%').attr('aria-valuenow', progress); this.progressBar.style.width = `${progress}%`;
} else { this.progressBar.setAttribute('aria-valuenow', progress);
// Both BS2 and BS4 classes are targeted to keep this script simple } else {
progressBar // Both BS2 and BS4 classes are targeted to keep this script simple
.removeClass('bar-success bg-success') this.progressBar.classList.remove(['bar-success', 'bg-success']);
.addClass('bar-warning bg-warning') this.progressBar.classList.remove(['bar-warning', 'bg-warning']);
.css('width', progress + '%') this.progressBar.style.width = `${progress}%`;
.attr('aria-valuemin', 100) this.progressBar.setAttribute('aria-valuemin', 100);
.attr('aria-valuemax', 200) this.progressBar.setAttribute('aria-valuemax', 200);
.attr('aria-valuenow', progress); this.progressBar.setAttribute('aria-valuenow', progress);
} }
} }
jQuery('#patchtester-progress-message').html(response.message); document.getElementById('patchtester-progress-message').innerHTML = Joomla.sanitizeHtml(response.message);
if (response.data.header) { if (response.data.header) {
jQuery('#patchtester-progress-header').html(response.data.header); document.getElementById('patchtester-progress-header').innerHTML = Joomla.sanitizeHtml(response.data.header);
} }
if (!response.data.complete) { if (!response.data.complete) {
// Send another request // Send another request
getRequest('fetch'); this.request('fetch');
} else { } else {
jQuery('#progress').remove(); document.getElementById('rogress').remove();
jQuery('#modal-sync button.btn-close', window.parent.document).trigger('click'); document.getElementById('modal-sync button.btn-close', window.parent.document).click();
} }
} catch (error) { } catch (error) {
try { try {
if (response.error || response.success === false) { if (response.error || response.success === false) {
jQuery('#patchtester-progress-header').text(Joomla.JText._('COM_PATCHTESTER_FETCH_AN_ERROR_HAS_OCCURRED')); document.getElementById('patchtester-progress-header').innerText(Joomla.JText._('COM_PATCHTESTER_FETCH_AN_ERROR_HAS_OCCURRED'));
jQuery('#patchtester-progress-message').html(response.message); document.getElementById('patchtester-progress-message').innerHTML = Joomla.sanitizeHtml(response.message);
} }
} catch (ignore) { } catch (ignore) {
if (error === '') { if (error === '') {
error = Joomla.JText._('COM_PATCHTESTER_NO_ERROR_RETURNED'); error = Joomla.JText._('COM_PATCHTESTER_NO_ERROR_RETURNED');
} }
jQuery('#patchtester-progress-header').text(Joomla.JText._('COM_PATCHTESTER_FETCH_AN_ERROR_HAS_OCCURRED')); document.getElementById('patchtester-progress-header').innerText(Joomla.JText._('COM_PATCHTESTER_FETCH_AN_ERROR_HAS_OCCURRED'));
jQuery('#patchtester-progress-message').html(error); document.getElementById('patchtester-progress-message').innerHTML = Joomla.sanitizeHtml(error);
jQuery('#progress').remove(); document.getElementById('progress').remove();
} }
}
return true;
},
error: function (jqXHR, textStatus, errorThrown) {
var json = (typeof jqXHR === 'object' && jqXHR.responseText) ? jqXHR.responseText : null;
jQuery('#patchtester-progress-header').text(Joomla.JText._('COM_PATCHTESTER_FETCH_AN_ERROR_HAS_OCCURRED'));
jQuery('#patchtester-progress-message').html(json);
jQuery('#progress').remove();
}
});
};
initialize();
};
jQuery(function () {
new PatchFetcher();
if (typeof window.parent.SqueezeBox === 'object') {
jQuery(window.parent.SqueezeBox).on('close', function () {
window.parent.location.reload(true);
});
} }
return true;
},
onError: (jqXHR) => {
const json = (typeof jqXHR === 'object' && jqXHR.responseText) ? jqXHR.responseText : null;
document.getElementById('patchtester-progress-header').innerText(Joomla.JText._('COM_PATCHTESTER_FETCH_AN_ERROR_HAS_OCCURRED'));
document.getElementById('patchtester-progress-message').innerHTML = Joomla.sanitizeHtml(json);
document.getElementById('progress').remove();
}
}); });
}(jQuery, Joomla, window); }
}
new PatchFetcher();