2020-06-10 15:00:12 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Config;
|
2020-05-27 18:46:16 +02:00
|
|
|
|
|
|
|
// 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.
|
2020-06-01 21:23:14 +00:00
|
|
|
if (file_exists(SYSTEMPATH . 'Config/Routes.php')) {
|
|
|
|
require SYSTEMPATH . 'Config/Routes.php';
|
2020-05-27 18:46:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* --------------------------------------------------------------------
|
|
|
|
* Router Setup
|
|
|
|
* --------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
$routes->setDefaultNamespace('App\Controllers');
|
|
|
|
$routes->setDefaultController('Home');
|
|
|
|
$routes->setDefaultMethod('index');
|
|
|
|
$routes->setTranslateURIDashes(false);
|
|
|
|
$routes->set404Override();
|
2020-06-01 21:23:14 +00:00
|
|
|
$routes->setAutoRoute(false);
|
2020-06-26 14:34:52 +00:00
|
|
|
$routes->addPlaceholder('podcastName', '[a-z0-9\_]{1,191}');
|
2020-06-10 15:00:12 +00:00
|
|
|
$routes->addPlaceholder('episodeSlug', '[a-z0-9\-]{1,191}');
|
2020-05-27 18:46:16 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* --------------------------------------------------------------------
|
|
|
|
* Route Definitions
|
|
|
|
* --------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
|
|
|
|
// We get a performance increase by specifying the default
|
|
|
|
// route since we don't have to scan directories.
|
2020-06-10 15:00:12 +00:00
|
|
|
$routes->get('/', 'Home::index', ['as' => 'home']);
|
2020-06-26 14:34:52 +00:00
|
|
|
$routes->add('new-podcast', 'Podcast::create', ['as' => 'podcast_create']);
|
2020-06-10 15:00:12 +00:00
|
|
|
|
2020-06-26 14:34:52 +00:00
|
|
|
$routes->group('@(:podcastName)', function ($routes) {
|
|
|
|
$routes->add('/', 'Podcast::view/$1', ['as' => 'podcast_view']);
|
2020-06-30 18:17:41 +02:00
|
|
|
$routes->add('edit', 'Podcast::edit/$1', [
|
|
|
|
'as' => 'podcast_edit',
|
|
|
|
]);
|
|
|
|
$routes->add('delete', 'Podcast::delete/$1', [
|
|
|
|
'as' => 'podcast_delete',
|
|
|
|
]);
|
2020-06-26 14:34:52 +00:00
|
|
|
$routes->add('feed.xml', 'Feed/$1', ['as' => 'podcast_feed']);
|
|
|
|
$routes->add('new-episode', 'Episode::create/$1', [
|
|
|
|
'as' => 'episode_create',
|
2020-06-10 15:00:12 +00:00
|
|
|
]);
|
2020-06-26 14:34:52 +00:00
|
|
|
$routes->add('episodes/(:episodeSlug)', 'Episode::view/$1/$2', [
|
|
|
|
'as' => 'episode_view',
|
2020-06-10 15:00:12 +00:00
|
|
|
]);
|
2020-06-30 18:17:41 +02:00
|
|
|
$routes->add('episodes/(:episodeSlug)/edit', 'Episode::edit/$1/$2', [
|
|
|
|
'as' => 'episode_edit',
|
|
|
|
]);
|
|
|
|
$routes->add('episodes/(:episodeSlug)/delete', 'Episode::delete/$1/$2', [
|
|
|
|
'as' => 'episode_delete',
|
|
|
|
]);
|
2020-06-10 15:00:12 +00:00
|
|
|
});
|
2020-05-27 18:46:16 +02:00
|
|
|
|
2020-06-12 20:41:09 +00:00
|
|
|
// Route for podcast audio file analytics (/stats/podcast_id/episode_id/podcast_folder/filename.mp3)
|
2020-06-26 14:34:52 +00:00
|
|
|
$routes->add('stats/(:num)/(:num)/(:any)', 'Analytics::hit/$1/$2/$3', [
|
|
|
|
'as' => 'analytics_hit',
|
|
|
|
]);
|
2020-06-12 20:41:09 +00:00
|
|
|
|
|
|
|
// Show the Unknown UserAgents
|
2020-06-26 14:34:52 +00:00
|
|
|
$routes->add('.well-known/unknown-useragents', 'UnknownUserAgents');
|
|
|
|
$routes->add('.well-known/unknown-useragents/(:num)', 'UnknownUserAgents/$1');
|
2020-06-12 20:41:09 +00:00
|
|
|
|
2020-05-27 18:46:16 +02:00
|
|
|
/**
|
|
|
|
* --------------------------------------------------------------------
|
|
|
|
* Additional Routing
|
|
|
|
* --------------------------------------------------------------------
|
|
|
|
*
|
|
|
|
* There will often be times that you need additional routing and you
|
|
|
|
* need to it 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.
|
|
|
|
*/
|
2020-06-01 21:23:14 +00:00
|
|
|
if (file_exists(APPPATH . 'Config/' . ENVIRONMENT . '/Routes.php')) {
|
|
|
|
require APPPATH . 'Config/' . ENVIRONMENT . '/Routes.php';
|
2020-05-27 18:46:16 +02:00
|
|
|
}
|