1. Go to this page and download the library: Download simplon/jr library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
simplon / jr example snippets
namespace App\Api\Web;
use Simplon\Jr\Interfaces\InterfaceGateway;
class Gateway extends \Simplon\Jr\Gateway implements InterfaceGateway
{
/**
* @return bool
*/
public function isEnabled()
{
return TRUE;
}
// ##########################################
/**
* @return bool|string
*/
public function getNamespace()
{
return __NAMESPACE__;
}
// ##########################################
/**
* @return bool
*/
public function hasAuth()
{
return FALSE;
}
// ##########################################
/**
* @return array|bool
*/
public function getValidServices()
{
return array(
'Web.Base.hello',
'Web.Base.getUsernameById',
);
}
}
namespace App\Api\Web;
class Auth
{
public function init($user, $pass)
{
if($user === 'admin' && $pass == '123456')
{
return TRUE;
}
return FALSE;
}
}
namespace App\Api\Web\Service;
use App\Manager\UserManager;
class BaseService
{
/**
* @return string
*/
public function hello()
{
return 'Hello!';
}
// ##########################################
/**
* @param $userId
* @return string
*/
public function getUsernameById($userId)
{
$username = (new UserManager())->getUsername($userId);
return $username;
}
}
namespace App\Manager;
class UserManager
{
/**
* @param $id
* @return string
*/
public function getUsername($id)
{
$username = NULL;
// do some work and return ...
// return $username;
// fake return
return 'Hansi';
}
}
$gtw = new App\Api\Web\Gateway();
// url to server gateway
$urlServiceGateway = 'http://localhost/opensource/server/simplon/simplon_jr/test/server/public';
// ############################################
// send request
$response = (new JsonRpcCurl())
->setUrl($urlServiceGateway . '/api/web/') // server url
->setId(1) // request ID (important for batch/async)
->setMethod('Web.Base.hello') // requested service
->send(); // send request
// dump response
var_dump($response); // should print: string(6) "Hello!"