Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
882 views
in Technique[技术] by (71.8m points)

php - Api route pattern on the SlimPhp microframework?

Is there some pattern of routes and how to write the structure using SlimPhp?

Like, I made a api folder with a index.php to store ALL my routes:

$app->get('/api/shirt/{id}', function (Request $request, Response $response) { 
    //CODE
});
$app->get('/api/some-other-endpoint/{id}', function (Request $request, Response $response)
    //CODE
});

But after some time, I realized that my index file will get pretty big.

So, how can I manage my endpoint routes? Using classes, controllers, actions?

Where can I find documentation about these particular concepts?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

I'm using controller's (named Action's in this example) and still have all routing in one file.

Additionally I use grouping whereever I can because it give a better structure (in my opinion). I try to make the Action-classes as small as possible that I do not need to look at the routes-file for getting the class which I want to change.

Here an example:

Routes-File:

$app->get('/user/{name}', [ShowUserAction::class, 'showUser'])->setName('user');
$app->get('/login', [LoginUserAction::class, 'showLogin'])->setName('login');

$app->group('/api', function () {
    $this->get('/images', [ImagesApi::class, 'getImages'])->setName('api.images');
    $this->get('/tags', [ImagesApi::class, 'getTags'])->setName('api.tags');
    $this->get('/notifications', [UserNotificationsApiAction::class, 'getNotifications'])->setName('api.notifications');
    $this->get('/bubbleCount', [BubbleCountApiAction::class, 'getBubbleCount'])->setName('api.bubbleCount');
});

$app->group('/review', function() use ($currentUser) {
   $this->get('', [ReviewAction::class, 'showReviewOverview'])->setName('review.overview')->setName('review')
   $this->get('/{type}', [ReviewAction::class, 'showReviewWithType'])->setName('review.type')
   $this->get('/{type}/{id}', [ReviewAction::class, 'showReview'])->setName('review.type.id')
});

Action-class:

class LoginUserAction
{
    public function __construct() { }  // with parameters

    public function showLogin(Request $request, Response $response)
    {
        if ($this->currentUser->isLoggedIn()) {
            return $response->withRedirect($this->router->pathFor('index'));
        }

        return $this->view->render($response, 'user/login.twig');
    }

    public function doLogin(Request $request, Response $response)
    {
        // check user name password and then login
    }
}

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...