123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <?php
- use Illuminate\Http\Request;
- /*
- |--------------------------------------------------------------------------
- | API Routes
- |--------------------------------------------------------------------------
- |
- | Here is where you can register API routes for your application. These
- | routes are loaded by the RouteServiceProvider within a group which
- | is assigned the "api" middleware group. Enjoy building your API!
- |
- */
- // 游客可以访问的接口
- Route::group([
- 'namespace'=> 'Api',
- ], function ($router){
- // 登录
- $router->post('authorizations', 'AuthorizationsController@login')->name('api.authorizations.login');
- // 全站搜索
- $router->get('search', 'SearchController@index')->name('api.search.index');
- // 文章点赞
- $router->get('blog/articles/{article}/upvote', 'BlogArticlesController@upvote')->name('api.blog.articles.upvote');
- });
- // 需要 token 验证的接口
- Route::group([
- 'namespace'=> 'Api',
- 'middleware'=> 'auth:api',
- ], function ($router){
- // 刷新token
- $router->put('authorizations/refresh', 'AuthorizationsController@refresh')
- ->name('api.authorizations.refresh');
- // 删除token
- $router->delete('authorizations/logout', 'AuthorizationsController@logout')
- ->name('api.authorizations.logout');
- // 获取当前登录用户信息
- $router->get('me', 'AuthorizationsController@me')->name('api.me.show');
- // 图片资源
- $router->post('images', 'ImagesController@store')->name('api.images.store');
- $router->post('images?action=update', 'ImagesController@update')->name('api.images.update');
- $router->delete('images', 'ImagesController@destroy')->name('api.images.destroy');
- // 分类
- $router->post('blog/categories', 'BlogCategoriesController@store')->name('api.blog.articles.store');
- // 评论
- $router->post('replies', 'RepliesController@store')->name('api.replies.store');
- $router->delete('replies/{reply}', 'RepliesController@destroy')->name('api.replies.destroy');
- });
|