Skip to content
Snippets Groups Projects
Routes.php 11.5 KiB
Newer Older
  • Learn to ignore specific revisions
  • 
    // Create a new instance of our RouteCollection class.
    $routes = Services::routes();
    
    // Load the system's routing file first, so that the app and ENVIRONMENT
    // can override as needed.
    
    if (file_exists(SYSTEMPATH . 'Config/Routes.php')) {
        require SYSTEMPATH . 'Config/Routes.php';
    
    }
    
    /**
     * --------------------------------------------------------------------
     * Router Setup
     * --------------------------------------------------------------------
     */
    $routes->setDefaultNamespace('App\Controllers');
    $routes->setDefaultController('Home');
    $routes->setDefaultMethod('index');
    $routes->setTranslateURIDashes(false);
    $routes->set404Override();
    
    $routes->setAutoRoute(false);
    
    
    /**
     * --------------------------------------------------------------------
     * Placeholder definitions
     * --------------------------------------------------------------------
     */
    
    
    $routes->addPlaceholder('podcastHandle', '[a-zA-Z0-9\_]{1,32}');
    
    $routes->addPlaceholder('slug', '[a-zA-Z0-9\-]{1,128}');
    
    $routes->addPlaceholder('base64', '[A-Za-z0-9\.\_]+\-{0,2}');
    
    $routes->addPlaceholder('platformType', '\bpodcasting|\bsocial|\bfunding');
    
    $routes->addPlaceholder('postAction', '\bfavourite|\breblog|\breply');
    
    $routes->addPlaceholder('embedTheme', '\blight|\bdark|\blight-transparent|\bdark-transparent');
    
    $routes->addPlaceholder(
        'uuid',
        '[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-4[0-9A-Fa-f]{3}-[89ABab][0-9A-Fa-f]{3}-[0-9A-Fa-f]{12}',
    );
    
    
    /**
     * --------------------------------------------------------------------
     * Route Definitions
     * --------------------------------------------------------------------
     */
    
    
    $routes->get('manifest.webmanifest', 'WebmanifestController', [
        'as' => 'webmanifest',
    ]);
    
    $routes->get('themes/colors', 'ColorsController', [
        'as' => 'themes-colors-css',
    
    // We get a performance increase by specifying the default
    // route since we don't have to scan directories.
    
    $routes->get('.well-known/platforms', 'Platform');
    
    
    $routes->group('@(:podcastHandle)', function ($routes): void {
    
        $routes->get('/', 'PodcastController::activity/$1', [
    
        $routes->get('manifest.webmanifest', 'WebmanifestController::podcastManifest/$1', [
            'as' => 'podcast-webmanifest',
        ]);
    
    
        // override default Fediverse Library's actor route
    
        $routes->options('/', 'ActivityPubController::preflight');
    
        $routes->get('/', 'PodcastController::activity/$1', [
    
            'as' => 'actor',
            'alternate-content' => [
                'application/activity+json' => [
    
                    'controller-method' => 'ActorController/$1',
                ],
    
                'application/podcast-activity+json' => [
                    'namespace' => 'App\Controllers',
                    'controller-method' => 'PodcastController::podcastActor/$1',
                ],
    
                'application/ld+json; profile="https://www.w3.org/ns/activitystreams' => [
    
                    'controller-method' => 'ActorController/$1',
                ],
            ],
    
        $routes->get('about', 'PodcastController::about/$1', [
            'as' => 'podcast-about',
        ]);
    
        $routes->options('episodes', 'ActivityPubController::preflight');
    
        $routes->get('episodes', 'PodcastController::episodes/$1', [
    
            'alternate-content' => [
                'application/activity+json' => [
                    'controller-method' => 'PodcastController::episodeCollection/$1',
                ],
                'application/podcast-activity+json' => [
                    'controller-method' => 'PodcastController::episodeCollection/$1',
                ],
                'application/ld+json; profile="https://www.w3.org/ns/activitystreams' => [
                    'controller-method' => 'PodcastController::episodeCollection/$1',
                ],
            ],
    
        $routes->group('episodes/(:slug)', function ($routes): void {
    
            $routes->options('/', 'ActivityPubController::preflight');
    
            $routes->get('/', 'EpisodeController/$1/$2', [
    
                'alternate-content' => [
                    'application/activity+json' => [
                        'controller-method' => 'EpisodeController::episodeObject/$1/$2',
                    ],
                    'application/podcast-activity+json' => [
                        'controller-method' => 'EpisodeController::episodeObject/$1/$2',
                    ],
                    'application/ld+json; profile="https://www.w3.org/ns/activitystreams' => [
                        'controller-method' => 'EpisodeController::episodeObject/$1/$2',
                    ],
                ],
    
            $routes->get('activity', 'EpisodeController::activity/$1/$2', [
                'as' => 'episode-activity',
            ]);
    
            $routes->options('comments', 'ActivityPubController::preflight');
    
            $routes->get('comments', 'EpisodeController::comments/$1/$2', [
                'as' => 'episode-comments',
                'application/activity+json' => [
                    'controller-method' => 'EpisodeController::comments/$1/$2',
                ],
                'application/podcast-activity+json' => [
                    'controller-method' => 'EpisodeController::comments/$1/$2',
                ],
                'application/ld+json; profile="https://www.w3.org/ns/activitystreams' => [
                    'controller-method' => 'EpisodeController::comments/$1/$2',
                ],
    
            $routes->options('comments/(:uuid)', 'ActivityPubController::preflight');
    
            $routes->get('comments/(:uuid)', 'EpisodeCommentController::view/$1/$2/$3', [
    
                'application/activity+json' => [
                    'controller-method' => 'EpisodeController::commentObject/$1/$2',
                ],
                'application/podcast-activity+json' => [
                    'controller-method' => 'EpisodeController::commentObject/$1/$2',
                ],
                'application/ld+json; profile="https://www.w3.org/ns/activitystreams' => [
                    'controller-method' => 'EpisodeController::commentObject/$1/$2',
                ],
    
            $routes->get('comments/(:uuid)/replies', 'EpisodeCommentController::replies/$1/$2/$3', [
    
            $routes->post('comments/(:uuid)/like', 'EpisodeCommentController::attemptLike/$1/$2/$3', [
    
            $routes->get('oembed.json', 'EpisodeController::oembedJSON/$1/$2', [
    
            $routes->get('oembed.xml', 'EpisodeController::oembedXML/$1/$2', [
    
            $routes->group('embed', function ($routes): void {
                $routes->get('/', 'EpisodeController::embed/$1/$2', [
                    'as' => 'embed',
    
                $routes->get('(:embedTheme)', 'EpisodeController::embed/$1/$2/$3', [
                    'as' => 'embed-theme',
                ],);
    
        $routes->head('feed.xml', 'FeedController/$1', [
            'as' => 'podcast_feed',
        ]);
        $routes->get('feed.xml', 'FeedController/$1', [
            'as' => 'podcast_feed',
        ]);
    
    $routes->get('/credits', 'CreditsController', [
        'as' => 'credits',
    ]);
    
    $routes->get('/episodes-markers', 'MapController::getEpisodesMarkers', [
    
        'as' => 'episodes-markers',
    ]);
    
    $routes->get('/pages/(:slug)', 'PageController/$1', [
        'as' => 'page',
    ]);
    
    $routes->group('@(:podcastHandle)', function ($routes): void {
    
        $routes->post('posts/new', 'PostController::attemptCreate/$1', [
            'as' => 'post-attempt-create',
    
            'filter' => 'permission:podcast-manage_publications',
        ]);
    
    
        // Post
        $routes->group('posts/(:uuid)', function ($routes): void {
    
            $routes->options('/', 'ActivityPubController::preflight');
    
            $routes->get('/', 'PostController::view/$1/$2', [
                'as' => 'post',
    
                'alternate-content' => [
                    'application/activity+json' => [
    
                        'controller-method' => 'PostController/$2',
    
                    ],
                    'application/ld+json; profile="https://www.w3.org/ns/activitystreams' => [
    
                        'controller-method' => 'PostController/$2',
    
            $routes->options('replies', 'ActivityPubController::preflight');
    
            $routes->get('replies', 'PostController/$1/$2', [
                'as' => 'post-replies',
    
                'alternate-content' => [
                    'application/activity+json' => [
    
                        'controller-method' => 'PostController::replies/$2',
    
                    ],
                    'application/ld+json; profile="https://www.w3.org/ns/activitystreams' => [
    
                        'controller-method' => 'PostController::replies/$2',
    
            $routes->post('action', 'PostController::attemptAction/$1/$2', [
                'as' => 'post-attempt-action',
    
                'filter' => 'permission:podcast-interact_as',
            ]);
    
    
                'PostController::attemptBlockActor/$1/$2',
    
                    'filter' => 'permission:fediverse-block_actors',
                ],
            );
            $routes->post(
                'block-domain',
    
                'PostController::attemptBlockDomain/$1/$2',
    
                    'filter' => 'permission:fediverse-block_domains',
                ],
            );
    
            $routes->post('delete', 'PostController::attemptDelete/$1/$2', [
                'as' => 'post-attempt-delete',
    
                'filter' => 'permission:podcast-manage_publications',
            ]);
    
    
                'remote/(:postAction)',
                'PostController::remoteAction/$1/$2/$3',
    
        $routes->get('follow', 'ActorController::follow/$1', [
    
        $routes->get('outbox', 'ActorController::outbox/$1', [
    
            'filter' => 'fediverse:verify-activitystream',
    
     * --------------------------------------------------------------------
     * Additional Routing
     * --------------------------------------------------------------------
     *
     * There will often be times that you need additional routing and you
    
     * need it to be able to override any defaults in this file. Environment
    
     * based routes is one such time. require() additional route files here
     * to make that happen.
     *
     * You will have access to the $routes object within that file without
     * needing to reload it.
     */
    
    if (file_exists(APPPATH . 'Config/' . ENVIRONMENT . '/Routes.php')) {
        require APPPATH . 'Config/' . ENVIRONMENT . '/Routes.php';