SILENT KILLERPanel

Current Path: > home > codekrsu > > ameliagraphics.com > wp-content > plugins > > > extendify > src > Shared > > > api


Operation   : Linux premium131.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
Software     : Apache
Server IP    : 162.0.232.56 | Your IP: 216.73.216.111
Domains      : 1034 Domain(s)
Permission   : [ 0755 ]

Files and Folders in: /home/codekrsu//ameliagraphics.com/wp-content/plugins///extendify/src/Shared///api

NameTypeSizeLast ModifiedActions
__tests__ Directory - -
DataApi.js File 1258 bytes July 16 2025 19:39:24.
wp.js File 914 bytes May 12 2025 16:42:28.

Reading File: /home/codekrsu//ameliagraphics.com/wp-content/plugins///extendify/src/Shared///api/DataApi.js

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;
};

SILENT KILLER Tool