English | 简体中文
A fast and extensible micro-framework for PHP to build RESTful API.
// (Recommend) If you’re using Composer, you can run the following command:
composer create-project --prefer-dist rocboss/batio batio
// Or git clone
git clone https://github.com/rocboss/batio.git batio
cd batio
cp .env.example .env
// Edit .env file
vim .env
composer install
chmod -R 755 app/storage
php -S 127.0.0.1:8888 -t public
Enter http://127.0.0.1:8888
in the browser's address bar. If everything is correct, you can get the following return:
{
"code": 0,
"msg": "success",
"data": "version: Batio 1.0.0"
}
Note: the initial installation needs to edit the related configuration information in the
.env
file under the project root, and you can also extend the other configuration in the file according to specific requirements.
In app\config\routes.php
, you can customize API routes.
route('GET /', ['api\HomeController', 'index']);
This is an ordinary route. When you visit the home page, you directly map to the
api\HomeController
controller, execute the followingindex
method, and note that the type of controller method needs to beprotected
.
In app\config\app.php
, you can customize Middleware
for routes, such as authorization authentication, user roles control, etc.
// Middlewares
'middlewares' => [
'auth' => AuthMiddleware::class,
],
Batio
encapsulates a simple authentication model based on JWT, just call the auth()
method after the routing of the authentication API.
route('GET /', ['api\HomeController', 'user'])->auth();
The example
// Fail
{
"code": 401,
"msg": "[401 Unauthorized]."
}
// Success
{
"code": 0,
"msg": "success",
"data": {
"uid": 1,
"user_name": "Jack",
"user_age": 18
}
}
When you send a request, pass the
X-Authorization
ofJWT
value to the server inheader
.
// This method can be used to obtain JWT.
\Auth::getToken($uid);
if (app()->cache('data')->contains('foo')) {
$unit = app()->cache('data')->fetch('foo');
} else {
$bar = 'bar cache';
app()->cache('data')->save('foo', $bar);
}
$logger = app()->log()->debug('debug log');
$userModel = new UserModel();
$userModel->name = 'Jack';
$userModel->email = 'bar@foo.com';
$userModel->avatar = 'https://foo.com/xxxxxx.png';
$userModel->password = password_hash("mypassword", PASSWORD_DEFAULT);
$userModel->save();
In
app\models
,model
andservice
are stored,model
is mainly dealing with database. The official recommended practice is thatservice
callsmodel
,controller
callsservice
, so that the design makes the layering more reasonable, and the functional modules are decoupled to facilitate the business system.
lcobucci/jwt: 3.2.*
mikecao/flight: 1.3.*
aryelgois/medools: 5.0
catfan/medoo: 1.5.*
monolog/monolog: 1.23.*
doctrine/cache: 1.4.*
vlucas/phpdotenv: 2.0.*
predis/predis: 1.1.*
ruflin/elastica: 6.1.*
elasticsearch/elasticsearch: 6.0.*
Batio
uses some excellent third party components, and you can get specific documents from their websites.