Difference between revisions for Users / Eo Ny / dev
| Merge of Version1 & Version2 | |
|---|---|
| 41 | ---- |
| 42 | === Constructor === |
| 43 | |
| 44 | %% |
| 45 | public function __construct(&$db) |
| 46 | %% |
| 47 | |
| … | … |
| 59 | 6. Enforces TLS session upgrade if needed |
| 60 | |
| 61 | **Example:** |
| 62 | %% |
| 63 | $http = new Http($db); |
| 64 | %% |
| 65 | |
| … | … |
| 83 | - Recovers diagnostic logs from previous session |
| 84 | |
| 85 | **Example:** |
| 86 | %% |
| 87 | $http->session(0); // Normal session |
| 88 | $http->session(2); // Static file serving mode |
| 89 | %% |
| … | … |
| 106 | - ✅ Only cached for anonymous users (no logged-in users) |
| 107 | |
| 108 | **Example:** |
| 109 | %% |
| 110 | $http->check_cache('HomePage', 'show'); |
| 111 | %% |
| 112 | |
| … | … |
| 145 | 4. Returns count of invalidated caches |
| 146 | |
| 147 | **Example:** |
| 148 | %% |
| 149 | $count = $http->invalidate_page('HomePage'); |
| 150 | echo "Invalidated $count cache entries"; |
| 151 | %% |
| … | … |
| 163 | - Called when TLS session is detected |
| 164 | |
| 165 | **Example:** |
| 166 | %% |
| 167 | $http->secure_base_url(); |
| 168 | // $db->base_url now uses https:// |
| 169 | %% |
| … | … |
| 182 | - Converts relative URLs using current server name |
| 183 | |
| 184 | **Example:** |
| 185 | %% |
| 186 | $http->ensure_tls('/secure/payment'); |
| 187 | %% |
| 188 | |
| … | … |
| 210 | - ##reverse_proxy_header## - Custom header name (default: ##X-Forwarded-For##) |
| 211 | |
| 212 | **Example:** |
| 213 | %% |
| 214 | $client_ip = $http->ip; // e.g., "203.0.113.42" |
| 215 | %% |
| 216 | |
| … | … |
| 254 | - ##2## - Custom policy (from ##csp_custom.conf##) |
| 255 | |
| 256 | **Example:** |
| 257 | %% |
| 258 | $http->http_security_headers(); |
| 259 | %% |
| 260 | |
| … | … |
| 274 | - Uses output buffering to work anywhere in page processing |
| 275 | |
| 276 | **Example:** |
| 277 | %% |
| 278 | $http->redirect('http://example.com/new-page', true); // 301 |
| 279 | $http->redirect('/wiki/HomePage'); // 302 |
| 280 | %% |
| … | … |
| 289 | - Ends script execution |
| 290 | |
| 291 | **Example:** |
| 292 | %% |
| 293 | $http->terminate(); |
| 294 | %% |
| 295 | |
| … | … |
| 299 | Sets HTTP response status code. |
| 300 | |
| 301 | **Supported Status Codes:** |
| 302 | %% |
| 303 | 200 => 'OK' |
| 304 | 206 => 'Partial Content' |
| 305 | 301 => 'Moved Permanently' |
| … | … |
| 319 | %% |
| 320 | |
| 321 | **Example:** |
| 322 | %% |
| 323 | $http->status(404); // Send 404 Not Found |
| 324 | %% |
| 325 | |
| … | … |
| 340 | - ##Cache-Control: no-store## |
| 341 | |
| 342 | **Example:** |
| 343 | %% |
| 344 | $http->no_cache(); // Client-side only |
| 345 | $http->no_cache(false); // Both client & server |
| 346 | %% |
| … | … |
| 354 | - ##Cache-Control: public## |
| 355 | |
| 356 | **Example:** |
| 357 | %% |
| 358 | $http->cache_promisc(); |
| 359 | %% |
| 360 | |
| … | … |
| 399 | - Associative array: ##['en' => 'en', 'de' => 'de', ...]## |
| 400 | |
| 401 | **Example:** |
| 402 | %% |
| 403 | $all_langs = $http->available_languages(false); |
| 404 | $allowed = $http->available_languages(true); |
| 405 | %% |
| … | … |
| 425 | - GZip compression for text files |
| 426 | |
| 427 | **Special Paths:** |
| 428 | %% |
| 429 | $http->sendfile(404); // Serves file defined by HTTP_404 constant |
| 430 | $http->sendfile(403); // Serves file defined by HTTP_403 constant |
| 431 | %% |
| 432 | |
| 433 | **Example:** |
| 434 | %% |
| 435 | $http->sendfile('uploads/document.pdf', 'my-document.pdf', 30); |
| 436 | %% |
| 437 | |
| … | … |
| 445 | - Default: ##'application/octet-stream'## |
| 446 | |
| 447 | **Example:** |
| 448 | %% |
| 449 | $mime = $http->mime_type('file.pdf'); // 'application/pdf' |
| 450 | %% |
| 451 | |
| … | … |
| 475 | - Headers not already sent |
| 476 | |
| 477 | **Example:** |
| 478 | %% |
| 479 | $http->gzip(); |
| 480 | %% |
| 481 | |
| … | … |
| 491 | - Converts encoding properly |
| 492 | |
| 493 | **Example:** |
| 494 | %% |
| 495 | $data = $http->parse_str('name=John&age=30'); |
| 496 | %% |
| 497 | |
| … | … |
| 597 | |
| 598 | ==== Example 2: Handling TLS/HTTPS Upgrade ==== |
| 599 | |
| 600 | %% |
| 601 | $http = new Http($db); // Constructor detects TLS requirement |
| 602 | // If TLS is enabled and user wasn't in TLS before: |
| 603 | // - Sets TLS session flag |
| … | … |
| 607 | |
| 608 | ==== Example 3: Invalidating Cache After Page Edit ==== |
| 609 | |
| 610 | %% |
| 611 | // User edits a page |
| 612 | $http = new Http($db); |
| 613 | $count = $http->invalidate_page('HomePage'); |
| … | … |
| 616 | |
| 617 | ==== Example 4: Serving a File ==== |
| 618 | |
| 619 | %% |
| 620 | $http = new Http($db); |
| 621 | $http->session(2); // Static file mode - no session replay prevention |
| 622 | |
| … | … |
| 691 | |
| 692 | The class integrates with WackoWiki's diagnostic system: |
| 693 | |
| 694 | %% |
| 695 | // Diagnostic messages are preserved across redirects |
| 696 | // via session flash data |
| 697 | |