sirius-press/wp-includes/js/dist/script-modules/core-abilities/index.js
Silent Mode 1f173de885 WordPress 7.1.1
Pristine upstream, unpacked from the official wordpress.org tarball.

  https://wordpress.org/wordpress-7.1.1.tar.gz
  sha1   2a9d68474e8703aa3a66f80427b325e0941b6a1e  (published by wordpress.org)
  sha256 3996fee13448ef12e07e9f0c77db2f655ffa1b7cde71c80a4965d3bf1fb956b3

This branch carries nothing but upstream releases, one commit each, and is
never edited. It is the other side of the git-subtree merge that brings
security releases into SiriusPress/wordpress/ — see
SiriusPress/docs/upstream-merges.md.
2026-09-21 02:53:57 +02:00

127 lines
4.2 KiB
JavaScript

var __create = Object.create;
var __defProp = Object.defineProperty;
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
var __getOwnPropNames = Object.getOwnPropertyNames;
var __getProtoOf = Object.getPrototypeOf;
var __hasOwnProp = Object.prototype.hasOwnProperty;
var __commonJS = (cb, mod) => function __require() {
return mod || (0, cb[__getOwnPropNames(cb)[0]])((mod = { exports: {} }).exports, mod), mod.exports;
};
var __copyProps = (to, from, except, desc) => {
if (from && typeof from === "object" || typeof from === "function") {
for (let key of __getOwnPropNames(from))
if (!__hasOwnProp.call(to, key) && key !== except)
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
}
return to;
};
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
// If the importer is in node compatibility mode or this is not an ESM
// file that has been converted to a CommonJS file using a Babel-
// compatible transform (i.e. "__esModule" has not been set), then set
// "default" to the CommonJS "module.exports" for node compatibility.
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
mod
));
// package-external:@wordpress/api-fetch
var require_api_fetch = __commonJS({
"package-external:@wordpress/api-fetch"(exports, module) {
module.exports = window.wp.apiFetch;
}
});
// package-external:@wordpress/url
var require_url = __commonJS({
"package-external:@wordpress/url"(exports, module) {
module.exports = window.wp.url;
}
});
// packages/core-abilities/build-module/index.mjs
var import_api_fetch = __toESM(require_api_fetch(), 1);
var import_url = __toESM(require_url(), 1);
import { registerAbility, registerAbilityCategory } from "@wordpress/abilities";
var API_BASE = "/wp-abilities/v1";
var ABILITIES_ENDPOINT = `${API_BASE}/abilities`;
var CATEGORIES_ENDPOINT = `${API_BASE}/categories`;
function createServerCallback(ability) {
return async (input) => {
let method = "POST";
if (!!ability.meta?.annotations?.readonly) {
method = "GET";
} else if (!!ability.meta?.annotations?.destructive && !!ability.meta?.annotations?.idempotent) {
method = "DELETE";
}
let path = `${ABILITIES_ENDPOINT}/${ability.name}/run`;
const options = {
method
};
if (["GET", "DELETE"].includes(method) && input !== null && input !== void 0) {
path = (0, import_url.addQueryArgs)(path, { input });
} else if (method === "POST" && input !== null && input !== void 0) {
options.data = { input };
}
return (0, import_api_fetch.default)({
path,
...options
});
};
}
async function initializeCategories() {
try {
const categories = await (0, import_api_fetch.default)({
path: (0, import_url.addQueryArgs)(CATEGORIES_ENDPOINT, {
per_page: -1,
context: "edit"
})
});
if (categories && Array.isArray(categories)) {
for (const category of categories) {
registerAbilityCategory(category.slug, {
label: category.label,
description: category.description,
meta: {
annotations: { serverRegistered: true }
}
});
}
}
} catch (error) {
console.error("Failed to fetch ability categories:", error);
}
}
async function initializeAbilities() {
try {
const abilities = await (0, import_api_fetch.default)({
path: (0, import_url.addQueryArgs)(ABILITIES_ENDPOINT, {
per_page: -1,
context: "edit"
})
});
if (abilities && Array.isArray(abilities)) {
for (const ability of abilities) {
registerAbility({
...ability,
callback: createServerCallback(ability),
meta: {
annotations: {
...ability.meta?.annotations,
serverRegistered: true
}
}
});
}
}
} catch (error) {
console.error("Failed to fetch abilities:", error);
}
}
async function initialize() {
await initializeCategories();
await initializeAbilities();
}
var ready = initialize();
export {
ready
};