-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAdapter.php
More file actions
408 lines (377 loc) · 10.5 KB
/
Copy pathAdapter.php
File metadata and controls
408 lines (377 loc) · 10.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
<?php
/**
* SPDX-License-Identifier: MPL-2.0
* SPDX-FileCopyrightText: 2024-2026 Hyperpolymath
*/
declare(strict_types=1);
// NOTE: These WordPress-style helpers live in the GLOBAL namespace on purpose,
// mirroring WordPress's own global functions (esc_html(), esc_attr(), ...).
// Callers invoke them unqualified (aegis_html(...)) and rely on PHP's global
// function fallback, so they must not be namespaced. The `use` imports below
// keep the underlying class references (Sanitizer::html, etc.) resolvable.
use PhpAegis\Validator;
use PhpAegis\Sanitizer;
use PhpAegis\TurtleEscaper;
use PhpAegis\Headers;
/**
* WordPress adapter functions following WordPress naming conventions.
*
* These functions provide WordPress-style wrappers around php-aegis methods
* for developers familiar with esc_html(), esc_attr(), etc.
*
* All functions check if they're already defined to avoid conflicts.
*/
if (!function_exists('aegis_html')) {
/**
* Escape for HTML content context (prevents XSS).
*
* WordPress equivalent: esc_html()
*
* @param string $input Raw user input
* @return string HTML-safe output
*/
function aegis_html(string $input): string
{
return Sanitizer::html($input);
}
}
if (!function_exists('aegis_attr')) {
/**
* Escape for HTML attribute context.
*
* WordPress equivalent: esc_attr()
*
* @param string $input Raw user input
* @return string Attribute-safe output
*/
function aegis_attr(string $input): string
{
return Sanitizer::attr($input);
}
}
if (!function_exists('aegis_js')) {
/**
* Escape for JavaScript string context.
*
* WordPress equivalent: esc_js()
*
* @param string $input Raw user input
* @return string JavaScript-safe output
*/
function aegis_js(string $input): string
{
return Sanitizer::js($input);
}
}
if (!function_exists('aegis_url')) {
/**
* Encode for URL parameter context.
*
* WordPress equivalent: esc_url() (though WP does more validation)
*
* @param string $input Raw URL component
* @return string URL-encoded output
*/
function aegis_url(string $input): string
{
return Sanitizer::url($input);
}
}
if (!function_exists('aegis_css')) {
/**
* Escape for CSS string context.
*
* WordPress equivalent: esc_css() (WP doesn't have this)
*
* @param string $input Raw CSS value
* @return string CSS-safe output
*/
function aegis_css(string $input): string
{
return Sanitizer::css($input);
}
}
if (!function_exists('aegis_json')) {
/**
* Safe JSON encoding with security flags.
*
* WordPress equivalent: wp_json_encode()
*
* @param mixed $input Data to encode
* @return string JSON output
*/
function aegis_json(mixed $input): string
{
return Sanitizer::json($input);
}
}
if (!function_exists('aegis_strip_tags')) {
/**
* Remove all HTML/PHP tags from input.
*
* WordPress equivalent: wp_strip_all_tags()
*
* @param string $input HTML content
* @return string Plain text
*/
function aegis_strip_tags(string $input): string
{
return Sanitizer::stripTags($input);
}
}
if (!function_exists('aegis_filename')) {
/**
* Sanitize filename (remove path components and dangerous characters).
*
* WordPress equivalent: sanitize_file_name()
*
* @param string $input Raw filename
* @return string Safe filename
*/
function aegis_filename(string $input): string
{
return Sanitizer::filename($input);
}
}
// ============================================================================
// RDF/Turtle Functions (UNIQUE - WordPress doesn't have these!)
// ============================================================================
if (!function_exists('aegis_turtle_string')) {
/**
* Escape string for Turtle string literal.
*
* UNIQUE FEATURE: No WordPress equivalent!
* Essential for semantic web themes outputting RDF Turtle.
*
* @param string $input Raw string content
* @return string Turtle-escaped string
*/
function aegis_turtle_string(string $input): string
{
return TurtleEscaper::string($input);
}
}
if (!function_exists('aegis_turtle_iri')) {
/**
* Escape and validate IRI for Turtle.
*
* UNIQUE FEATURE: No WordPress equivalent!
*
* @param string $iri Raw IRI
* @return string Turtle-safe IRI
*/
function aegis_turtle_iri(string $iri): string
{
return TurtleEscaper::iri($iri);
}
}
if (!function_exists('aegis_turtle_literal')) {
/**
* Build complete Turtle literal with language tag or datatype.
*
* UNIQUE FEATURE: No WordPress equivalent!
*
* @param string $value Literal value
* @param string|null $language Language tag (e.g., 'en', 'fr')
* @param string|null $datatype Datatype IRI (e.g., 'xsd:integer')
* @return string Complete Turtle literal
*/
function aegis_turtle_literal(
string $value,
?string $language = null,
?string $datatype = null
): string {
return TurtleEscaper::literal($value, $language, $datatype);
}
}
if (!function_exists('aegis_turtle_triple')) {
/**
* Build complete RDF triple in Turtle syntax.
*
* UNIQUE FEATURE: No WordPress equivalent!
*
* @param string $subject Subject IRI
* @param string $predicate Predicate IRI
* @param string $object Object value
* @param string|null $language Optional language tag
* @return string Complete Turtle triple
*/
function aegis_turtle_triple(
string $subject,
string $predicate,
string $object,
?string $language = null
): string {
return TurtleEscaper::triple($subject, $predicate, $object, $language);
}
}
// ============================================================================
// Validation Functions
// ============================================================================
if (!function_exists('aegis_validate_email')) {
/**
* Validate email address.
*
* WordPress equivalent: is_email()
*
* @param string $email Email to validate
* @return bool True if valid
*/
function aegis_validate_email(string $email): bool
{
return Validator::email($email);
}
}
if (!function_exists('aegis_validate_url')) {
/**
* Validate URL.
*
* WordPress equivalent: wp_http_validate_url()
*
* @param string $url URL to validate
* @param bool $httpsOnly Require HTTPS (default: false)
* @return bool True if valid
*/
function aegis_validate_url(string $url, bool $httpsOnly = false): bool
{
return $httpsOnly ? Validator::httpsUrl($url) : Validator::url($url);
}
}
if (!function_exists('aegis_validate_ip')) {
/**
* Validate IP address (v4 or v6).
*
* WordPress equivalent: rest_is_ip_address()
*
* @param string $ip IP address
* @return bool True if valid
*/
function aegis_validate_ip(string $ip): bool
{
return Validator::ip($ip);
}
}
if (!function_exists('aegis_validate_uuid')) {
/**
* Validate UUID (RFC 4122).
*
* UNIQUE FEATURE: No WordPress equivalent!
*
* @param string $uuid UUID string
* @return bool True if valid
*/
function aegis_validate_uuid(string $uuid): bool
{
return Validator::uuid($uuid);
}
}
if (!function_exists('aegis_validate_slug')) {
/**
* Validate URL-safe slug.
*
* WordPress equivalent: sanitize_title_with_dashes() (but that sanitizes, doesn't validate)
*
* @param string $slug Slug to validate
* @return bool True if valid
*/
function aegis_validate_slug(string $slug): bool
{
return Validator::slug($slug);
}
}
if (!function_exists('aegis_validate_json')) {
/**
* Validate JSON string.
*
* UNIQUE FEATURE: No WordPress equivalent!
*
* @param string $json JSON to validate
* @return bool True if valid
*/
function aegis_validate_json(string $json): bool
{
return Validator::json($json);
}
}
if (!function_exists('aegis_validate_semver')) {
/**
* Validate semantic version string.
*
* UNIQUE FEATURE: No WordPress equivalent!
*
* @param string $version Version string (e.g., "1.2.3-beta.1")
* @return bool True if valid
*/
function aegis_validate_semver(string $version): bool
{
return Validator::semver($version);
}
}
if (!function_exists('aegis_validate_domain')) {
/**
* Validate domain name.
*
* UNIQUE FEATURE: No WordPress equivalent!
*
* @param string $domain Domain name
* @return bool True if valid
*/
function aegis_validate_domain(string $domain): bool
{
return Validator::domain($domain);
}
}
// ============================================================================
// Security Headers
// ============================================================================
if (!function_exists('aegis_send_security_headers')) {
/**
* Apply all recommended security headers.
*
* UNIQUE FEATURE: WordPress doesn't provide header helpers!
*
* Call this on 'send_headers' action:
* add_action('send_headers', 'aegis_send_security_headers');
*/
function aegis_send_security_headers(): void
{
if (!headers_sent()) {
Headers::secure();
}
}
}
if (!function_exists('aegis_csp')) {
/**
* Set Content Security Policy header.
*
* UNIQUE FEATURE: WordPress doesn't have CSP helpers!
*
* @param array<string, string[]> $directives CSP directives
*/
function aegis_csp(array $directives): void
{
if (!headers_sent()) {
Headers::contentSecurityPolicy($directives);
}
}
}
if (!function_exists('aegis_hsts')) {
/**
* Set Strict-Transport-Security header.
*
* UNIQUE FEATURE: WordPress doesn't have HSTS helpers!
*
* @param int $maxAge Max age in seconds (default: 1 year)
* @param bool $includeSubdomains Include subdomains
* @param bool $preload Enable HSTS preload
*/
function aegis_hsts(
int $maxAge = 31536000,
bool $includeSubdomains = true,
bool $preload = false
): void {
if (!headers_sent()) {
Headers::strictTransportSecurity($maxAge, $includeSubdomains, $preload);
}
}
}