????JFIF??x?x????'
| Server IP : 172.67.174.47 / Your IP : 216.73.216.83 Web Server : LiteSpeed System : Linux premium151.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 User : tempvsty ( 647) PHP Version : 8.0.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/tempvsty/././eaabusiness.com/custom/wp-content/plugins/extendify/src/Shared/api/ |
Upload File : |
import apiFetch from '@wordpress/api-fetch';
import { INSIGHTS_HOST } from '@constants';
import { extraBody } from '@shared/lib/extra-body';
export const recordPluginActivity = async ({
slug,
source,
action = 'install', //eslint-disable-line no-unused-vars
}) => {
try {
const res = await fetch(`${INSIGHTS_HOST}/api/v1/plugin-install`, {
method: 'POST',
headers: { 'Content-Type': 'application/json', 'X-Extendify': 'true' },
body: JSON.stringify({
...extraBody,
slug,
source,
siteCreatedAt: window.extSharedData?.siteCreatedAt,
}),
});
// this should not break the app.
if (!res.ok) {
console.error('Bad response from server');
return null;
}
return await res.json();
} catch (error) {
console.error('Error sending plugin installation notification:', error);
return null;
}
};
export const pingServer = async () =>
await apiFetch({ path: '/extendify/v1/shared/ping' });
export const getPartnerPlugins = async (key) => {
const plugins = await apiFetch({
path: '/extendify/v1/shared/partner-plugins',
});
if (!Object.keys(plugins?.data ?? {}).length) {
throw new Error('Could not get plugins');
}
if (key && plugins.data?.[key]) {
return plugins.data[key];
}
return plugins.data;
};