240 lines
4.8 KiB
PHP
240 lines
4.8 KiB
PHP
<?php
|
|
|
|
return [
|
|
// Routes on all controllers
|
|
'common' => [
|
|
'update' => [
|
|
'path' => '/update',
|
|
'action' => ['update'],
|
|
'verb' => 'post'
|
|
],
|
|
'login_form' => [
|
|
'path' => '/login',
|
|
'action' => ['login'],
|
|
'verb' => 'get'
|
|
],
|
|
'login_action' => [
|
|
'path' => '/login',
|
|
'action' => ['login_action'],
|
|
'verb' => 'post'
|
|
],
|
|
'logout' => [
|
|
'path' => '/logout',
|
|
'action' => ['logout']
|
|
],
|
|
],
|
|
// Routes on collection controller
|
|
'collection' => [
|
|
'collection_add_form' => [
|
|
'path' => '/collection/add',
|
|
'action' => ['form'],
|
|
'params' => [],
|
|
],
|
|
'collection_edit_form' => [
|
|
'path' => '/collection/edit/{id}',
|
|
'action' => ['form'],
|
|
'tokens' => [
|
|
'id' => '[0-9]+'
|
|
]
|
|
],
|
|
'collection_add' => [
|
|
'path' => '/collection/add',
|
|
'action' => ['add'],
|
|
'verb' => 'post'
|
|
],
|
|
'collection_edit' => [
|
|
'path' => '/collection/edit',
|
|
'action' => ['edit'],
|
|
'verb' => 'post'
|
|
],
|
|
'collection' => [
|
|
'path' => '/collection/view{/view}',
|
|
'action' => ['index'],
|
|
'params' => [],
|
|
'tokens' => [
|
|
'view' => '[a-z_]+'
|
|
]
|
|
],
|
|
],
|
|
// Routes on stats controller
|
|
'stats' => [
|
|
|
|
],
|
|
// Routes on anime controller
|
|
'anime' => [
|
|
'index' => [
|
|
'path' => '/',
|
|
'action' => ['redirect'],
|
|
'params' => [
|
|
'url' => '', // Determined by config
|
|
'code' => '301'
|
|
]
|
|
],
|
|
'login_form' => [
|
|
'path' => '/anime/login',
|
|
'action' => ['login'],
|
|
'verb' => 'get'
|
|
],
|
|
'login_action' => [
|
|
'path' => '/anime/login',
|
|
'action' => ['login_action'],
|
|
'verb' => 'post'
|
|
],
|
|
'logout' => [
|
|
'path' => '/anime/logout',
|
|
'action' => ['logout']
|
|
],
|
|
'update' => [
|
|
'path' => '/anime/update',
|
|
'action' => ['update'],
|
|
'verb' => 'post'
|
|
],
|
|
'search' => [
|
|
'path' => '/anime/search',
|
|
'action' => ['search'],
|
|
],
|
|
'all' => [
|
|
'path' => '/anime/all{/view}',
|
|
'action' => ['anime_list'],
|
|
'params' => [
|
|
'type' => 'all',
|
|
'title' => WHOSE . " Anime List · All"
|
|
],
|
|
'tokens' => [
|
|
'view' => '[a-z_]+'
|
|
]
|
|
],
|
|
'watching' => [
|
|
'path' => '/anime/watching{/view}',
|
|
'action' => ['anime_list'],
|
|
'params' => [
|
|
'type' => 'currently-watching',
|
|
'title' => WHOSE . " Anime List · Watching"
|
|
],
|
|
'tokens' => [
|
|
'view' => '[a-z_]+'
|
|
]
|
|
],
|
|
'plan_to_watch' => [
|
|
'path' => '/anime/plan_to_watch{/view}',
|
|
'action' => ['anime_list'],
|
|
'params' => [
|
|
'type' => 'plan-to-watch',
|
|
'title' => WHOSE . " Anime List · Plan to Watch"
|
|
],
|
|
'tokens' => [
|
|
'view' => '[a-z_]+'
|
|
]
|
|
],
|
|
'on_hold' => [
|
|
'path' => '/anime/on_hold{/view}',
|
|
'action' => ['anime_list'],
|
|
'params' => [
|
|
'type' => 'on-hold',
|
|
'title' => WHOSE . " Anime List · On Hold"
|
|
],
|
|
'tokens' => [
|
|
'view' => '[a-z_]+'
|
|
]
|
|
],
|
|
'dropped' => [
|
|
'path' => '/anime/dropped{/view}',
|
|
'action' => ['anime_list'],
|
|
'params' => [
|
|
'type' => 'dropped',
|
|
'title' => WHOSE . " Anime List · Dropped"
|
|
],
|
|
'tokens' => [
|
|
'view' => '[a-z_]+'
|
|
]
|
|
],
|
|
'completed' => [
|
|
'path' => '/anime/completed{/view}',
|
|
'action' => ['anime_list'],
|
|
'params' => [
|
|
'type' => 'completed',
|
|
'title' => WHOSE . " Anime List · Completed"
|
|
],
|
|
'tokens' => [
|
|
'view' => '[a-z_]+'
|
|
]
|
|
],
|
|
],
|
|
'manga' => [
|
|
'index' => [
|
|
'path' => '/',
|
|
'action' => ['redirect'],
|
|
'params' => [
|
|
'url' => '', // Determined by config
|
|
'code' => '301',
|
|
'type' => 'manga'
|
|
]
|
|
],
|
|
'all' => [
|
|
'path' => '/manga/all{/view}',
|
|
'action' => ['manga_list'],
|
|
'params' => [
|
|
'type' => 'all',
|
|
'title' => WHOSE . " Manga List · All"
|
|
],
|
|
'tokens' => [
|
|
'view' => '[a-z_]+'
|
|
]
|
|
],
|
|
'reading' => [
|
|
'path' => '/manga/reading{/view}',
|
|
'action' => ['manga_list'],
|
|
'params' => [
|
|
'type' => 'Reading',
|
|
'title' => WHOSE . " Manga List · Reading"
|
|
],
|
|
'tokens' => [
|
|
'view' => '[a-z_]+'
|
|
]
|
|
],
|
|
'plan_to_read' => [
|
|
'path' => '/manga/plan_to_read{/view}',
|
|
'action' => ['manga_list'],
|
|
'params' => [
|
|
'type' => 'Plan to Read',
|
|
'title' => WHOSE . " Manga List · Plan to Read"
|
|
],
|
|
'tokens' => [
|
|
'view' => '[a-z_]+'
|
|
]
|
|
],
|
|
'on_hold' => [
|
|
'path' => '/manga/on_hold{/view}',
|
|
'action' => ['manga_list'],
|
|
'params' => [
|
|
'type' => 'On Hold',
|
|
'title' => WHOSE . " Manga List · On Hold"
|
|
],
|
|
'tokens' => [
|
|
'view' => '[a-z_]+'
|
|
]
|
|
],
|
|
'dropped' => [
|
|
'path' => '/manga/dropped{/view}',
|
|
'action' => ['manga_list'],
|
|
'params' => [
|
|
'type' => 'Dropped',
|
|
'title' => WHOSE . " Manga List · Dropped"
|
|
],
|
|
'tokens' => [
|
|
'view' => '[a-z_]+'
|
|
]
|
|
],
|
|
'completed' => [
|
|
'path' => '/manga/completed{/view}',
|
|
'action' => ['manga_list'],
|
|
'params' => [
|
|
'type' => 'Completed',
|
|
'title' => WHOSE . " Manga List · Completed"
|
|
],
|
|
'tokens' => [
|
|
'view' => '[a-z_]+'
|
|
]
|
|
]
|
|
]
|
|
]; |